MODFLOW 6  version 6.7.0.dev3
USGS Modular Hydrologic Model
gweestinputmodule Module Reference

Data Types

type  gweestparamfoundtype
 

Variables

logical, public gwe_est_multi_package = .false.
 
character(len=16), dimension(*), parameter, public gwe_est_subpackages = [ ' ' ]
 
type(inputparamdefinitiontype), parameter gweest_save_flows = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'SAVE_FLOWS', 'SAVE_FLOWS', 'KEYWORD', '', 'save calculated flows to budget file', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gweest_ord0_decay_water = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'ZERO_ORDER_DECAY_WATER', 'ORD0_DECAY_WATER', 'KEYWORD', '', 'activate zero-order decay in aqueous phase', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gweest_ord0_decay_solid = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'ZERO_ORDER_DECAY_SOLID', 'ORD0_DECAY_SOLID', 'KEYWORD', '', 'activate zero-order decay in solid phase', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gweest_rhow = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'DENSITY_WATER', 'RHOW', 'DOUBLE', '', 'density of water', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gweest_cpw = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'HEAT_CAPACITY_WATER', 'CPW', 'DOUBLE', '', 'heat capacity of water', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gweest_latheatvap = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'LATENT_HEAT_VAPORIZATION', 'LATHEATVAP', 'DOUBLE', '', 'latent heat of vaporization', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gweest_porosity = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'POROSITY', 'POROSITY', 'DOUBLE1D', 'NODES', 'porosity', .true., .false., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), parameter gweest_decay_water = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'DECAY_WATER', 'DECAY_WATER', 'DOUBLE1D', 'NODES', 'aqueous phase decay rate coefficient', .false., .false., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), parameter gweest_decay_solid = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'DECAY_SOLID', 'DECAY_SOLID', 'DOUBLE1D', 'NODES', 'solid phase decay rate coefficient', .false., .false., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), parameter gweest_cps = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'HEAT_CAPACITY_SOLID', 'CPS', 'DOUBLE1D', 'NODES', 'heat capacity of the aquifer material', .true., .false., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), parameter gweest_rhos = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'DENSITY_SOLID', 'RHOS', 'DOUBLE1D', 'NODES', 'density of aquifer material', .true., .false., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), dimension(*), parameter, public gwe_est_param_definitions = [ gweest_save_flows, gweest_ord0_decay_water, gweest_ord0_decay_solid, gweest_rhow, gweest_cpw, gweest_latheatvap, gweest_porosity, gweest_decay_water, gweest_decay_solid, gweest_cps, gweest_rhos ]
 
type(inputparamdefinitiontype), dimension(*), parameter, public gwe_est_aggregate_definitions = [ InputParamDefinitionType ( '', '', '', '', '', '', '', '', .false., .false., .false., .false., .false., .false. ) ]
 
type(inputblockdefinitiontype), dimension(*), parameter, public gwe_est_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'GRIDDATA', .true., .false., .false. ) ]
 

Variable Documentation

◆ gwe_est_aggregate_definitions

type(inputparamdefinitiontype), dimension(*), parameter, public gweestinputmodule::gwe_est_aggregate_definitions = [ InputParamDefinitionType ( '', '', '', '', '', '', '', '', .false., .false., .false., .false., .false., .false. ) ]

Definition at line 261 of file gwe-estidm.f90.

261  type(InputParamDefinitionType), parameter :: &
262  gwe_est_aggregate_definitions(*) = &
263  [ &
264  inputparamdefinitiontype &
265  ( &
266  '', & ! component
267  '', & ! subcomponent
268  '', & ! block
269  '', & ! tag name
270  '', & ! fortran variable
271  '', & ! type
272  '', & ! shape
273  '', & ! longname
274  .false., & ! required
275  .false., & ! prerelease
276  .false., & ! multi-record
277  .false., & ! preserve case
278  .false., & ! layered
279  .false. & ! timeseries
280  ) &
281  ]

◆ gwe_est_block_definitions

type(inputblockdefinitiontype), dimension(*), parameter, public gweestinputmodule::gwe_est_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'GRIDDATA', .true., .false., .false. ) ]

Definition at line 283 of file gwe-estidm.f90.

283  type(InputBlockDefinitionType), parameter :: &
284  gwe_est_block_definitions(*) = &
285  [ &
286  inputblockdefinitiontype( &
287  'OPTIONS', & ! blockname
288  .false., & ! required
289  .false., & ! aggregate
290  .false. & ! block_variable
291  ), &
292  inputblockdefinitiontype( &
293  'GRIDDATA', & ! blockname
294  .true., & ! required
295  .false., & ! aggregate
296  .false. & ! block_variable
297  ) &
298  ]

◆ gwe_est_multi_package

logical, public gweestinputmodule::gwe_est_multi_package = .false.

Definition at line 28 of file gwe-estidm.f90.

28  logical :: gwe_est_multi_package = .false.

◆ gwe_est_param_definitions

Definition at line 245 of file gwe-estidm.f90.

245  type(InputParamDefinitionType), parameter :: &
246  gwe_est_param_definitions(*) = &
247  [ &
248  gweest_save_flows, &
249  gweest_ord0_decay_water, &
250  gweest_ord0_decay_solid, &
251  gweest_rhow, &
252  gweest_cpw, &
253  gweest_latheatvap, &
254  gweest_porosity, &
255  gweest_decay_water, &
256  gweest_decay_solid, &
257  gweest_cps, &
258  gweest_rhos &
259  ]

◆ gwe_est_subpackages

character(len=16), dimension(*), parameter, public gweestinputmodule::gwe_est_subpackages = [ ' ' ]

Definition at line 30 of file gwe-estidm.f90.

30  character(len=16), parameter :: &
31  gwe_est_subpackages(*) = &
32  [ &
33  ' ' &
34  ]

◆ gweest_cps

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_cps = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'HEAT_CAPACITY_SOLID', 'CPS', 'DOUBLE1D', 'NODES', 'heat capacity of the aquifer material', .true., .false., .false., .false., .true., .false. )
private

Definition at line 207 of file gwe-estidm.f90.

207  type(InputParamDefinitionType), parameter :: &
208  gweest_cps = inputparamdefinitiontype &
209  ( &
210  'GWE', & ! component
211  'EST', & ! subcomponent
212  'GRIDDATA', & ! block
213  'HEAT_CAPACITY_SOLID', & ! tag name
214  'CPS', & ! fortran variable
215  'DOUBLE1D', & ! type
216  'NODES', & ! shape
217  'heat capacity of the aquifer material', & ! longname
218  .true., & ! required
219  .false., & ! prerelease
220  .false., & ! multi-record
221  .false., & ! preserve case
222  .true., & ! layered
223  .false. & ! timeseries
224  )

◆ gweest_cpw

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_cpw = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'HEAT_CAPACITY_WATER', 'CPW', 'DOUBLE', '', 'heat capacity of water', .false., .false., .false., .false., .false., .false. )
private

Definition at line 112 of file gwe-estidm.f90.

112  type(InputParamDefinitionType), parameter :: &
113  gweest_cpw = inputparamdefinitiontype &
114  ( &
115  'GWE', & ! component
116  'EST', & ! subcomponent
117  'OPTIONS', & ! block
118  'HEAT_CAPACITY_WATER', & ! tag name
119  'CPW', & ! fortran variable
120  'DOUBLE', & ! type
121  '', & ! shape
122  'heat capacity of water', & ! longname
123  .false., & ! required
124  .false., & ! prerelease
125  .false., & ! multi-record
126  .false., & ! preserve case
127  .false., & ! layered
128  .false. & ! timeseries
129  )

◆ gweest_decay_solid

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_decay_solid = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'DECAY_SOLID', 'DECAY_SOLID', 'DOUBLE1D', 'NODES', 'solid phase decay rate coefficient', .false., .false., .false., .false., .true., .false. )
private

Definition at line 188 of file gwe-estidm.f90.

188  type(InputParamDefinitionType), parameter :: &
189  gweest_decay_solid = inputparamdefinitiontype &
190  ( &
191  'GWE', & ! component
192  'EST', & ! subcomponent
193  'GRIDDATA', & ! block
194  'DECAY_SOLID', & ! tag name
195  'DECAY_SOLID', & ! fortran variable
196  'DOUBLE1D', & ! type
197  'NODES', & ! shape
198  'solid phase decay rate coefficient', & ! longname
199  .false., & ! required
200  .false., & ! prerelease
201  .false., & ! multi-record
202  .false., & ! preserve case
203  .true., & ! layered
204  .false. & ! timeseries
205  )

◆ gweest_decay_water

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_decay_water = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'DECAY_WATER', 'DECAY_WATER', 'DOUBLE1D', 'NODES', 'aqueous phase decay rate coefficient', .false., .false., .false., .false., .true., .false. )
private

Definition at line 169 of file gwe-estidm.f90.

169  type(InputParamDefinitionType), parameter :: &
170  gweest_decay_water = inputparamdefinitiontype &
171  ( &
172  'GWE', & ! component
173  'EST', & ! subcomponent
174  'GRIDDATA', & ! block
175  'DECAY_WATER', & ! tag name
176  'DECAY_WATER', & ! fortran variable
177  'DOUBLE1D', & ! type
178  'NODES', & ! shape
179  'aqueous phase decay rate coefficient', & ! longname
180  .false., & ! required
181  .false., & ! prerelease
182  .false., & ! multi-record
183  .false., & ! preserve case
184  .true., & ! layered
185  .false. & ! timeseries
186  )

◆ gweest_latheatvap

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_latheatvap = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'LATENT_HEAT_VAPORIZATION', 'LATHEATVAP', 'DOUBLE', '', 'latent heat of vaporization', .false., .false., .false., .false., .false., .false. )
private

Definition at line 131 of file gwe-estidm.f90.

131  type(InputParamDefinitionType), parameter :: &
132  gweest_latheatvap = inputparamdefinitiontype &
133  ( &
134  'GWE', & ! component
135  'EST', & ! subcomponent
136  'OPTIONS', & ! block
137  'LATENT_HEAT_VAPORIZATION', & ! tag name
138  'LATHEATVAP', & ! fortran variable
139  'DOUBLE', & ! type
140  '', & ! shape
141  'latent heat of vaporization', & ! longname
142  .false., & ! required
143  .false., & ! prerelease
144  .false., & ! multi-record
145  .false., & ! preserve case
146  .false., & ! layered
147  .false. & ! timeseries
148  )

◆ gweest_ord0_decay_solid

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_ord0_decay_solid = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'ZERO_ORDER_DECAY_SOLID', 'ORD0_DECAY_SOLID', 'KEYWORD', '', 'activate zero-order decay in solid phase', .false., .false., .false., .false., .false., .false. )
private

Definition at line 74 of file gwe-estidm.f90.

74  type(InputParamDefinitionType), parameter :: &
75  gweest_ord0_decay_solid = inputparamdefinitiontype &
76  ( &
77  'GWE', & ! component
78  'EST', & ! subcomponent
79  'OPTIONS', & ! block
80  'ZERO_ORDER_DECAY_SOLID', & ! tag name
81  'ORD0_DECAY_SOLID', & ! fortran variable
82  'KEYWORD', & ! type
83  '', & ! shape
84  'activate zero-order decay in solid phase', & ! longname
85  .false., & ! required
86  .false., & ! prerelease
87  .false., & ! multi-record
88  .false., & ! preserve case
89  .false., & ! layered
90  .false. & ! timeseries
91  )

◆ gweest_ord0_decay_water

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_ord0_decay_water = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'ZERO_ORDER_DECAY_WATER', 'ORD0_DECAY_WATER', 'KEYWORD', '', 'activate zero-order decay in aqueous phase', .false., .false., .false., .false., .false., .false. )
private

Definition at line 55 of file gwe-estidm.f90.

55  type(InputParamDefinitionType), parameter :: &
56  gweest_ord0_decay_water = inputparamdefinitiontype &
57  ( &
58  'GWE', & ! component
59  'EST', & ! subcomponent
60  'OPTIONS', & ! block
61  'ZERO_ORDER_DECAY_WATER', & ! tag name
62  'ORD0_DECAY_WATER', & ! fortran variable
63  'KEYWORD', & ! type
64  '', & ! shape
65  'activate zero-order decay in aqueous phase', & ! longname
66  .false., & ! required
67  .false., & ! prerelease
68  .false., & ! multi-record
69  .false., & ! preserve case
70  .false., & ! layered
71  .false. & ! timeseries
72  )

◆ gweest_porosity

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_porosity = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'POROSITY', 'POROSITY', 'DOUBLE1D', 'NODES', 'porosity', .true., .false., .false., .false., .true., .false. )
private

Definition at line 150 of file gwe-estidm.f90.

150  type(InputParamDefinitionType), parameter :: &
151  gweest_porosity = inputparamdefinitiontype &
152  ( &
153  'GWE', & ! component
154  'EST', & ! subcomponent
155  'GRIDDATA', & ! block
156  'POROSITY', & ! tag name
157  'POROSITY', & ! fortran variable
158  'DOUBLE1D', & ! type
159  'NODES', & ! shape
160  'porosity', & ! longname
161  .true., & ! required
162  .false., & ! prerelease
163  .false., & ! multi-record
164  .false., & ! preserve case
165  .true., & ! layered
166  .false. & ! timeseries
167  )

◆ gweest_rhos

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_rhos = InputParamDefinitionType ( 'GWE', 'EST', 'GRIDDATA', 'DENSITY_SOLID', 'RHOS', 'DOUBLE1D', 'NODES', 'density of aquifer material', .true., .false., .false., .false., .true., .false. )
private

Definition at line 226 of file gwe-estidm.f90.

226  type(InputParamDefinitionType), parameter :: &
227  gweest_rhos = inputparamdefinitiontype &
228  ( &
229  'GWE', & ! component
230  'EST', & ! subcomponent
231  'GRIDDATA', & ! block
232  'DENSITY_SOLID', & ! tag name
233  'RHOS', & ! fortran variable
234  'DOUBLE1D', & ! type
235  'NODES', & ! shape
236  'density of aquifer material', & ! longname
237  .true., & ! required
238  .false., & ! prerelease
239  .false., & ! multi-record
240  .false., & ! preserve case
241  .true., & ! layered
242  .false. & ! timeseries
243  )

◆ gweest_rhow

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_rhow = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'DENSITY_WATER', 'RHOW', 'DOUBLE', '', 'density of water', .false., .false., .false., .false., .false., .false. )
private

Definition at line 93 of file gwe-estidm.f90.

93  type(InputParamDefinitionType), parameter :: &
94  gweest_rhow = inputparamdefinitiontype &
95  ( &
96  'GWE', & ! component
97  'EST', & ! subcomponent
98  'OPTIONS', & ! block
99  'DENSITY_WATER', & ! tag name
100  'RHOW', & ! fortran variable
101  'DOUBLE', & ! type
102  '', & ! shape
103  'density of water', & ! longname
104  .false., & ! required
105  .false., & ! prerelease
106  .false., & ! multi-record
107  .false., & ! preserve case
108  .false., & ! layered
109  .false. & ! timeseries
110  )

◆ gweest_save_flows

type(inputparamdefinitiontype), parameter gweestinputmodule::gweest_save_flows = InputParamDefinitionType ( 'GWE', 'EST', 'OPTIONS', 'SAVE_FLOWS', 'SAVE_FLOWS', 'KEYWORD', '', 'save calculated flows to budget file', .false., .false., .false., .false., .false., .false. )
private

Definition at line 36 of file gwe-estidm.f90.

36  type(InputParamDefinitionType), parameter :: &
37  gweest_save_flows = inputparamdefinitiontype &
38  ( &
39  'GWE', & ! component
40  'EST', & ! subcomponent
41  'OPTIONS', & ! block
42  'SAVE_FLOWS', & ! tag name
43  'SAVE_FLOWS', & ! fortran variable
44  'KEYWORD', & ! type
45  '', & ! shape
46  'save calculated flows to budget file', & ! longname
47  .false., & ! required
48  .false., & ! prerelease
49  .false., & ! multi-record
50  .false., & ! preserve case
51  .false., & ! layered
52  .false. & ! timeseries
53  )