updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / hydro / Data_Rec / gw_field_include.inc
blobff9f300740fecf0201e43d1972d9eb0bfc6f4ff8
2  type gw_field
3       integer :: ix, jx
4       integer :: allo_status = -99
6       real :: dx, dt
8       integer, allocatable, dimension(:,:) ::  ltype     ! land-sfc type
9       real,    allocatable, dimension(:,:) ::  &
10         elev,           &  ! elev/bathymetry of sfc rel to sl (m)
11         bot,            &  ! elev. aquifer bottom rel to sl (m)
12         hycond,         &  ! hydraulic conductivity (m/s per m/m)
13         poros,          &  ! porosity (m3/m3)
14         compres,        &  ! compressibility (1/Pa)
15         ho                 ! head at start of timestep (m)
17       real,    allocatable, dimension(:,:) ::  &
18         h,              &  ! head, after ghmcompute (m)
19         convgw,         &  ! convergence due to gw flow (m/s)
20         excess             ! surface exceeding groundwater (mm)
22       real,    allocatable, dimension(:,:) ::  &
23         qdarcyRT,       &  ! approximated flux between soil and groundwater for coupled simulations on routing grid
24         qsgwrt,         &  ! flux between soil and groundwater for coupled simulations on routing grid
25         qsgw,           &  ! flux between soil and groundwater for coupled simulations on lsm grid
26         qgw_chanrt         ! flux between groundwater and channel
28       real  :: ebot, eocn
29       integer ::istep = 0
30       
31       real :: its, ite, jts, jte
33   end type gw_field