-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc_cha.f90
46 lines (33 loc) · 1.08 KB
/
proc_cha.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
subroutine proc_cha
use hydrograph_module
implicit none
integer :: irch ! |
integer :: idat ! |
integer :: i !none |counter
call ch_read_init
call sd_hydsed_read
call ch_read_hyd
call ch_read_sed
call ch_read_nut
call ch_read
call sd_channel_read
call sd_hydsed_init
call channel_allo
!! intialize stream-aquifer interactions for geomorphic baseflow
!! aquifer to channel flow
call aqu2d_init
do ich = 1, sp_ob%chan
!! initialize flow routing variables
call ch_ttcoef (ich)
end do
do irch = 1, sp_ob%chan
i = sp_ob1%chan + irch - 1
idat = ob(i)%props
call ch_initial (idat, irch)
end do
!set parms for sd-channel-landscape linkage
call overbank_read
call sd_channel_surf_link
call time_conc_init
return
end subroutine proc_cha