MODFLOW 6  version 6.6.0.dev0
USGS Modular Hydrologic Model
gwticinputmodule Module Reference

Data Types

type  gwticparamfoundtype
 

Variables

logical, public gwt_ic_multi_package = .false.
 
character(len=16), dimension(*), parameter, public gwt_ic_subpackages = [ ' ' ]
 
type(inputparamdefinitiontype), parameter gwtic_export_ascii = InputParamDefinitionType ( 'GWT', 'IC', 'OPTIONS', 'EXPORT_ARRAY_ASCII', 'EXPORT_ASCII', 'KEYWORD', '', 'export array variables to layered ascii files.', .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gwtic_export_nc = InputParamDefinitionType ( 'GWT', 'IC', 'OPTIONS', 'EXPORT_ARRAY_NETCDF', 'EXPORT_NC', 'KEYWORD', '', 'export array variables to netcdf output files.', .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter gwtic_strt = InputParamDefinitionType ( 'GWT', 'IC', 'GRIDDATA', 'STRT', 'STRT', 'DOUBLE1D', 'NODES', 'starting concentration', .true., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), dimension(*), parameter, public gwt_ic_param_definitions = [ gwtic_export_ascii, gwtic_export_nc, gwtic_strt ]
 
type(inputparamdefinitiontype), dimension(*), parameter, public gwt_ic_aggregate_definitions = [ InputParamDefinitionType ( '', '', '', '', '', '', '', '', .false., .false., .false., .false., .false. ) ]
 
type(inputblockdefinitiontype), dimension(*), parameter, public gwt_ic_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'GRIDDATA', .true., .false., .false. ) ]
 

Variable Documentation

◆ gwt_ic_aggregate_definitions

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

Definition at line 90 of file gwt-icidm.f90.

90  type(InputParamDefinitionType), parameter :: &
91  gwt_ic_aggregate_definitions(*) = &
92  [ &
93  inputparamdefinitiontype &
94  ( &
95  '', & ! component
96  '', & ! subcomponent
97  '', & ! block
98  '', & ! tag name
99  '', & ! fortran variable
100  '', & ! type
101  '', & ! shape
102  '', & ! longname
103  .false., & ! required
104  .false., & ! multi-record
105  .false., & ! preserve case
106  .false., & ! layered
107  .false. & ! timeseries
108  ) &
109  ]

◆ gwt_ic_block_definitions

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

Definition at line 111 of file gwt-icidm.f90.

111  type(InputBlockDefinitionType), parameter :: &
112  gwt_ic_block_definitions(*) = &
113  [ &
114  inputblockdefinitiontype( &
115  'OPTIONS', & ! blockname
116  .false., & ! required
117  .false., & ! aggregate
118  .false. & ! block_variable
119  ), &
120  inputblockdefinitiontype( &
121  'GRIDDATA', & ! blockname
122  .true., & ! required
123  .false., & ! aggregate
124  .false. & ! block_variable
125  ) &
126  ]

◆ gwt_ic_multi_package

logical, public gwticinputmodule::gwt_ic_multi_package = .false.

Definition at line 20 of file gwt-icidm.f90.

20  logical :: gwt_ic_multi_package = .false.

◆ gwt_ic_param_definitions

type(inputparamdefinitiontype), dimension(*), parameter, public gwticinputmodule::gwt_ic_param_definitions = [ gwtic_export_ascii, gwtic_export_nc, gwtic_strt ]

Definition at line 82 of file gwt-icidm.f90.

82  type(InputParamDefinitionType), parameter :: &
83  gwt_ic_param_definitions(*) = &
84  [ &
85  gwtic_export_ascii, &
86  gwtic_export_nc, &
87  gwtic_strt &
88  ]

◆ gwt_ic_subpackages

character(len=16), dimension(*), parameter, public gwticinputmodule::gwt_ic_subpackages = [ ' ' ]

Definition at line 22 of file gwt-icidm.f90.

22  character(len=16), parameter :: &
23  gwt_ic_subpackages(*) = &
24  [ &
25  ' ' &
26  ]

◆ gwtic_export_ascii

type(inputparamdefinitiontype), parameter gwticinputmodule::gwtic_export_ascii = InputParamDefinitionType ( 'GWT', 'IC', 'OPTIONS', 'EXPORT_ARRAY_ASCII', 'EXPORT_ASCII', 'KEYWORD', '', 'export array variables to layered ascii files.', .false., .false., .false., .false., .false. )
private

Definition at line 28 of file gwt-icidm.f90.

28  type(InputParamDefinitionType), parameter :: &
29  gwtic_export_ascii = inputparamdefinitiontype &
30  ( &
31  'GWT', & ! component
32  'IC', & ! subcomponent
33  'OPTIONS', & ! block
34  'EXPORT_ARRAY_ASCII', & ! tag name
35  'EXPORT_ASCII', & ! fortran variable
36  'KEYWORD', & ! type
37  '', & ! shape
38  'export array variables to layered ascii files.', & ! longname
39  .false., & ! required
40  .false., & ! multi-record
41  .false., & ! preserve case
42  .false., & ! layered
43  .false. & ! timeseries
44  )

◆ gwtic_export_nc

type(inputparamdefinitiontype), parameter gwticinputmodule::gwtic_export_nc = InputParamDefinitionType ( 'GWT', 'IC', 'OPTIONS', 'EXPORT_ARRAY_NETCDF', 'EXPORT_NC', 'KEYWORD', '', 'export array variables to netcdf output files.', .false., .false., .false., .false., .false. )
private

Definition at line 46 of file gwt-icidm.f90.

46  type(InputParamDefinitionType), parameter :: &
47  gwtic_export_nc = inputparamdefinitiontype &
48  ( &
49  'GWT', & ! component
50  'IC', & ! subcomponent
51  'OPTIONS', & ! block
52  'EXPORT_ARRAY_NETCDF', & ! tag name
53  'EXPORT_NC', & ! fortran variable
54  'KEYWORD', & ! type
55  '', & ! shape
56  'export array variables to netcdf output files.', & ! longname
57  .false., & ! required
58  .false., & ! multi-record
59  .false., & ! preserve case
60  .false., & ! layered
61  .false. & ! timeseries
62  )

◆ gwtic_strt

type(inputparamdefinitiontype), parameter gwticinputmodule::gwtic_strt = InputParamDefinitionType ( 'GWT', 'IC', 'GRIDDATA', 'STRT', 'STRT', 'DOUBLE1D', 'NODES', 'starting concentration', .true., .false., .false., .true., .false. )
private

Definition at line 64 of file gwt-icidm.f90.

64  type(InputParamDefinitionType), parameter :: &
65  gwtic_strt = inputparamdefinitiontype &
66  ( &
67  'GWT', & ! component
68  'IC', & ! subcomponent
69  'GRIDDATA', & ! block
70  'STRT', & ! tag name
71  'STRT', & ! fortran variable
72  'DOUBLE1D', & ! type
73  'NODES', & ! shape
74  'starting concentration', & ! longname
75  .true., & ! required
76  .false., & ! multi-record
77  .false., & ! preserve case
78  .true., & ! layered
79  .false. & ! timeseries
80  )