MODFLOW 6  version 6.6.0.dev0
USGS Modular Hydrologic Model
prt-mipidm.f90
Go to the documentation of this file.
1 ! ** Do Not Modify! MODFLOW 6 system generated file. **
3  use constantsmodule, only: lenvarname
6  private
12  public prt_mip_subpackages
13 
15  logical :: export_ascii = .false.
16  logical :: porosity = .false.
17  logical :: retfactor = .false.
18  logical :: izone = .false.
19  end type prtmipparamfoundtype
20 
21  logical :: prt_mip_multi_package = .false.
22 
23  character(len=16), parameter :: &
24  prt_mip_subpackages(*) = &
25  [ &
26  ' ' &
27  ]
28 
29  type(inputparamdefinitiontype), parameter :: &
31  ( &
32  'PRT', & ! component
33  'MIP', & ! subcomponent
34  'OPTIONS', & ! block
35  'EXPORT_ARRAY_ASCII', & ! tag name
36  'EXPORT_ASCII', & ! fortran variable
37  'KEYWORD', & ! type
38  '', & ! shape
39  'export array variables to layered ascii files.', & ! longname
40  .false., & ! required
41  .false., & ! multi-record
42  .false., & ! preserve case
43  .false., & ! layered
44  .false. & ! timeseries
45  )
46 
47  type(inputparamdefinitiontype), parameter :: &
49  ( &
50  'PRT', & ! component
51  'MIP', & ! subcomponent
52  'GRIDDATA', & ! block
53  'POROSITY', & ! tag name
54  'POROSITY', & ! fortran variable
55  'DOUBLE1D', & ! type
56  'NODES', & ! shape
57  'porosity', & ! longname
58  .true., & ! required
59  .false., & ! multi-record
60  .false., & ! preserve case
61  .true., & ! layered
62  .false. & ! timeseries
63  )
64 
65  type(inputparamdefinitiontype), parameter :: &
67  ( &
68  'PRT', & ! component
69  'MIP', & ! subcomponent
70  'GRIDDATA', & ! block
71  'RETFACTOR', & ! tag name
72  'RETFACTOR', & ! fortran variable
73  'DOUBLE1D', & ! type
74  'NODES', & ! shape
75  'retardation factor', & ! longname
76  .false., & ! required
77  .false., & ! multi-record
78  .false., & ! preserve case
79  .true., & ! layered
80  .false. & ! timeseries
81  )
82 
83  type(inputparamdefinitiontype), parameter :: &
85  ( &
86  'PRT', & ! component
87  'MIP', & ! subcomponent
88  'GRIDDATA', & ! block
89  'IZONE', & ! tag name
90  'IZONE', & ! fortran variable
91  'INTEGER1D', & ! type
92  'NODES', & ! shape
93  'zone number', & ! longname
94  .false., & ! required
95  .false., & ! multi-record
96  .false., & ! preserve case
97  .true., & ! layered
98  .false. & ! timeseries
99  )
100 
101  type(inputparamdefinitiontype), parameter :: &
103  [ &
105  prtmip_porosity, &
107  prtmip_izone &
108  ]
109 
110  type(inputparamdefinitiontype), parameter :: &
112  [ &
114  ( &
115  '', & ! component
116  '', & ! subcomponent
117  '', & ! block
118  '', & ! tag name
119  '', & ! fortran variable
120  '', & ! type
121  '', & ! shape
122  '', & ! longname
123  .false., & ! required
124  .false., & ! multi-record
125  .false., & ! preserve case
126  .false., & ! layered
127  .false. & ! timeseries
128  ) &
129  ]
130 
131  type(inputblockdefinitiontype), parameter :: &
133  [ &
135  'OPTIONS', & ! blockname
136  .false., & ! required
137  .false., & ! aggregate
138  .false. & ! block_variable
139  ), &
141  'GRIDDATA', & ! blockname
142  .true., & ! required
143  .false., & ! aggregate
144  .false. & ! block_variable
145  ) &
146  ]
147 
148 end module prtmipinputmodule
This module contains simulation constants.
Definition: Constants.f90:9
integer(i4b), parameter lenvarname
maximum length of a variable name
Definition: Constants.f90:17
This module contains the InputDefinitionModule.
type(inputblockdefinitiontype), dimension(*), parameter, public prt_mip_block_definitions
Definition: prt-mipidm.f90:131
logical, public prt_mip_multi_package
Definition: prt-mipidm.f90:21
type(inputparamdefinitiontype), dimension(*), parameter, public prt_mip_aggregate_definitions
Definition: prt-mipidm.f90:110
type(inputparamdefinitiontype), dimension(*), parameter, public prt_mip_param_definitions
Definition: prt-mipidm.f90:101
type(inputparamdefinitiontype), parameter prtmip_export_ascii
Definition: prt-mipidm.f90:29
type(inputparamdefinitiontype), parameter prtmip_retfactor
Definition: prt-mipidm.f90:65
type(inputparamdefinitiontype), parameter prtmip_porosity
Definition: prt-mipidm.f90:47
type(inputparamdefinitiontype), parameter prtmip_izone
Definition: prt-mipidm.f90:83
character(len=16), dimension(*), parameter, public prt_mip_subpackages
Definition: prt-mipidm.f90:23