MODFLOW 6  version 6.8.0.dev0
USGS Modular Hydrologic Model
chfcxsinputmodule Module Reference

Data Types

type  chfcxsparamfoundtype
 

Variables

logical, public chf_cxs_multi_package = .false.
 
character(len=16), dimension(*), parameter, public chf_cxs_subpackages = [ ' ' ]
 
type(inputparamdefinitiontype), parameter chfcxs_iprpak = InputParamDefinitionType ( 'CHF', 'CXS', 'OPTIONS', 'PRINT_INPUT', 'IPRPAK', 'KEYWORD', '', 'print input to listing file', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_nsections = InputParamDefinitionType ( 'CHF', 'CXS', 'DIMENSIONS', 'NSECTIONS', 'NSECTIONS', 'INTEGER', '', 'number of reaches', .true., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_npoints = InputParamDefinitionType ( 'CHF', 'CXS', 'DIMENSIONS', 'NPOINTS', 'NPOINTS', 'INTEGER', '', 'total number of points defined for all reaches', .true., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_ifno_pkgdata = InputParamDefinitionType ( 'CHF', 'CXS', 'PACKAGEDATA', 'IFNO', 'IFNO_PKGDATA', 'INTEGER', '', 'cross section number for this entry', .true., .false., .true., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_nxspoints = InputParamDefinitionType ( 'CHF', 'CXS', 'PACKAGEDATA', 'NXSPOINTS', 'NXSPOINTS', 'INTEGER', '', 'number of points used to define cross section', .true., .false., .true., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_ifno = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'IFNO', 'IFNO', 'INTEGER', '', 'cross section number for this entry', .true., .false., .true., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_xfraction = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'XFRACTION', 'XFRACTION', 'DOUBLE', '', 'fractional width', .true., .false., .true., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_height = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'HEIGHT', 'HEIGHT', 'DOUBLE', '', 'depth', .true., .false., .true., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_manfraction = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'MANFRACTION', 'MANFRACTION', 'DOUBLE', '', 'Mannings roughness coefficient', .true., .false., .true., .false., .false., .false. )
 
type(inputparamdefinitiontype), dimension(*), parameter, public chf_cxs_param_definitions = [ chfcxs_iprpak, chfcxs_nsections, chfcxs_npoints, chfcxs_ifno_pkgdata, chfcxs_nxspoints, chfcxs_ifno, chfcxs_xfraction, chfcxs_height, chfcxs_manfraction ]
 
type(inputparamdefinitiontype), parameter chfcxs_packagedata = InputParamDefinitionType ( 'CHF', 'CXS', 'PACKAGEDATA', 'PACKAGEDATA', 'PACKAGEDATA', 'RECARRAY IFNO NXSPOINTS', 'NSECTIONS', '', .true., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfcxs_crosssectiondata = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'CROSSSECTIONDATA', 'CROSSSECTIONDATA', 'RECARRAY IFNO XFRACTION HEIGHT MANFRACTION', 'NPOINTS', '', .true., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), dimension(*), parameter, public chf_cxs_aggregate_definitions = [ chfcxs_packagedata, chfcxs_crosssectiondata ]
 
type(inputblockdefinitiontype), dimension(*), parameter, public chf_cxs_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'DIMENSIONS', .true., .false., .false. ), InputBlockDefinitionType( 'PACKAGEDATA', .true., .true., .false. ), InputBlockDefinitionType( 'CROSSSECTIONDATA', .true., .true., .false. ) ]
 

Variable Documentation

◆ chf_cxs_aggregate_definitions

type(inputparamdefinitiontype), dimension(*), parameter, public chfcxsinputmodule::chf_cxs_aggregate_definitions = [ chfcxs_packagedata, chfcxs_crosssectiondata ]

Definition at line 257 of file chf-cxsidm.f90.

257  type(InputParamDefinitionType), parameter :: &
258  chf_cxs_aggregate_definitions(*) = &
259  [ &
260  chfcxs_packagedata, &
261  chfcxs_crosssectiondata &
262  ]

◆ chf_cxs_block_definitions

type(inputblockdefinitiontype), dimension(*), parameter, public chfcxsinputmodule::chf_cxs_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'DIMENSIONS', .true., .false., .false. ), InputBlockDefinitionType( 'PACKAGEDATA', .true., .true., .false. ), InputBlockDefinitionType( 'CROSSSECTIONDATA', .true., .true., .false. ) ]

Definition at line 264 of file chf-cxsidm.f90.

264  type(InputBlockDefinitionType), parameter :: &
265  chf_cxs_block_definitions(*) = &
266  [ &
267  inputblockdefinitiontype( &
268  'OPTIONS', & ! blockname
269  .false., & ! required
270  .false., & ! aggregate
271  .false. & ! block_variable
272  ), &
273  inputblockdefinitiontype( &
274  'DIMENSIONS', & ! blockname
275  .true., & ! required
276  .false., & ! aggregate
277  .false. & ! block_variable
278  ), &
279  inputblockdefinitiontype( &
280  'PACKAGEDATA', & ! blockname
281  .true., & ! required
282  .true., & ! aggregate
283  .false. & ! block_variable
284  ), &
285  inputblockdefinitiontype( &
286  'CROSSSECTIONDATA', & ! blockname
287  .true., & ! required
288  .true., & ! aggregate
289  .false. & ! block_variable
290  ) &
291  ]

◆ chf_cxs_multi_package

logical, public chfcxsinputmodule::chf_cxs_multi_package = .false.

Definition at line 26 of file chf-cxsidm.f90.

26  logical :: chf_cxs_multi_package = .false.

◆ chf_cxs_param_definitions

type(inputparamdefinitiontype), dimension(*), parameter, public chfcxsinputmodule::chf_cxs_param_definitions = [ chfcxs_iprpak, chfcxs_nsections, chfcxs_npoints, chfcxs_ifno_pkgdata, chfcxs_nxspoints, chfcxs_ifno, chfcxs_xfraction, chfcxs_height, chfcxs_manfraction ]

Definition at line 205 of file chf-cxsidm.f90.

205  type(InputParamDefinitionType), parameter :: &
206  chf_cxs_param_definitions(*) = &
207  [ &
208  chfcxs_iprpak, &
209  chfcxs_nsections, &
210  chfcxs_npoints, &
211  chfcxs_ifno_pkgdata, &
212  chfcxs_nxspoints, &
213  chfcxs_ifno, &
214  chfcxs_xfraction, &
215  chfcxs_height, &
216  chfcxs_manfraction &
217  ]

◆ chf_cxs_subpackages

character(len=16), dimension(*), parameter, public chfcxsinputmodule::chf_cxs_subpackages = [ ' ' ]

Definition at line 28 of file chf-cxsidm.f90.

28  character(len=16), parameter :: &
29  chf_cxs_subpackages(*) = &
30  [ &
31  ' ' &
32  ]

◆ chfcxs_crosssectiondata

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_crosssectiondata = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'CROSSSECTIONDATA', 'CROSSSECTIONDATA', 'RECARRAY IFNO XFRACTION HEIGHT MANFRACTION', 'NPOINTS', '', .true., .false., .false., .false., .false., .false. )
private

Definition at line 238 of file chf-cxsidm.f90.

238  type(InputParamDefinitionType), parameter :: &
239  chfcxs_crosssectiondata = inputparamdefinitiontype &
240  ( &
241  'CHF', & ! component
242  'CXS', & ! subcomponent
243  'CROSSSECTIONDATA', & ! block
244  'CROSSSECTIONDATA', & ! tag name
245  'CROSSSECTIONDATA', & ! fortran variable
246  'RECARRAY IFNO XFRACTION HEIGHT MANFRACTION', & ! type
247  'NPOINTS', & ! shape
248  '', & ! longname
249  .true., & ! required
250  .false., & ! developmode
251  .false., & ! multi-record
252  .false., & ! preserve case
253  .false., & ! layered
254  .false. & ! timeseries
255  )

◆ chfcxs_height

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_height = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'HEIGHT', 'HEIGHT', 'DOUBLE', '', 'depth', .true., .false., .true., .false., .false., .false. )
private

Definition at line 167 of file chf-cxsidm.f90.

167  type(InputParamDefinitionType), parameter :: &
168  chfcxs_height = inputparamdefinitiontype &
169  ( &
170  'CHF', & ! component
171  'CXS', & ! subcomponent
172  'CROSSSECTIONDATA', & ! block
173  'HEIGHT', & ! tag name
174  'HEIGHT', & ! fortran variable
175  'DOUBLE', & ! type
176  '', & ! shape
177  'depth', & ! longname
178  .true., & ! required
179  .false., & ! developmode
180  .true., & ! multi-record
181  .false., & ! preserve case
182  .false., & ! layered
183  .false. & ! timeseries
184  )

◆ chfcxs_ifno

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_ifno = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'IFNO', 'IFNO', 'INTEGER', '', 'cross section number for this entry', .true., .false., .true., .false., .false., .false. )
private

Definition at line 129 of file chf-cxsidm.f90.

129  type(InputParamDefinitionType), parameter :: &
130  chfcxs_ifno = inputparamdefinitiontype &
131  ( &
132  'CHF', & ! component
133  'CXS', & ! subcomponent
134  'CROSSSECTIONDATA', & ! block
135  'IFNO', & ! tag name
136  'IFNO', & ! fortran variable
137  'INTEGER', & ! type
138  '', & ! shape
139  'cross section number for this entry', & ! longname
140  .true., & ! required
141  .false., & ! developmode
142  .true., & ! multi-record
143  .false., & ! preserve case
144  .false., & ! layered
145  .false. & ! timeseries
146  )

◆ chfcxs_ifno_pkgdata

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_ifno_pkgdata = InputParamDefinitionType ( 'CHF', 'CXS', 'PACKAGEDATA', 'IFNO', 'IFNO_PKGDATA', 'INTEGER', '', 'cross section number for this entry', .true., .false., .true., .false., .false., .false. )
private

Definition at line 91 of file chf-cxsidm.f90.

91  type(InputParamDefinitionType), parameter :: &
92  chfcxs_ifno_pkgdata = inputparamdefinitiontype &
93  ( &
94  'CHF', & ! component
95  'CXS', & ! subcomponent
96  'PACKAGEDATA', & ! block
97  'IFNO', & ! tag name
98  'IFNO_PKGDATA', & ! fortran variable
99  'INTEGER', & ! type
100  '', & ! shape
101  'cross section number for this entry', & ! longname
102  .true., & ! required
103  .false., & ! developmode
104  .true., & ! multi-record
105  .false., & ! preserve case
106  .false., & ! layered
107  .false. & ! timeseries
108  )

◆ chfcxs_iprpak

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_iprpak = InputParamDefinitionType ( 'CHF', 'CXS', 'OPTIONS', 'PRINT_INPUT', 'IPRPAK', 'KEYWORD', '', 'print input to listing file', .false., .false., .false., .false., .false., .false. )
private

Definition at line 34 of file chf-cxsidm.f90.

34  type(InputParamDefinitionType), parameter :: &
35  chfcxs_iprpak = inputparamdefinitiontype &
36  ( &
37  'CHF', & ! component
38  'CXS', & ! subcomponent
39  'OPTIONS', & ! block
40  'PRINT_INPUT', & ! tag name
41  'IPRPAK', & ! fortran variable
42  'KEYWORD', & ! type
43  '', & ! shape
44  'print input to listing file', & ! longname
45  .false., & ! required
46  .false., & ! developmode
47  .false., & ! multi-record
48  .false., & ! preserve case
49  .false., & ! layered
50  .false. & ! timeseries
51  )

◆ chfcxs_manfraction

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_manfraction = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'MANFRACTION', 'MANFRACTION', 'DOUBLE', '', 'Mannings roughness coefficient', .true., .false., .true., .false., .false., .false. )
private

Definition at line 186 of file chf-cxsidm.f90.

186  type(InputParamDefinitionType), parameter :: &
187  chfcxs_manfraction = inputparamdefinitiontype &
188  ( &
189  'CHF', & ! component
190  'CXS', & ! subcomponent
191  'CROSSSECTIONDATA', & ! block
192  'MANFRACTION', & ! tag name
193  'MANFRACTION', & ! fortran variable
194  'DOUBLE', & ! type
195  '', & ! shape
196  'Mannings roughness coefficient', & ! longname
197  .true., & ! required
198  .false., & ! developmode
199  .true., & ! multi-record
200  .false., & ! preserve case
201  .false., & ! layered
202  .false. & ! timeseries
203  )

◆ chfcxs_npoints

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_npoints = InputParamDefinitionType ( 'CHF', 'CXS', 'DIMENSIONS', 'NPOINTS', 'NPOINTS', 'INTEGER', '', 'total number of points defined for all reaches', .true., .false., .false., .false., .false., .false. )
private

Definition at line 72 of file chf-cxsidm.f90.

72  type(InputParamDefinitionType), parameter :: &
73  chfcxs_npoints = inputparamdefinitiontype &
74  ( &
75  'CHF', & ! component
76  'CXS', & ! subcomponent
77  'DIMENSIONS', & ! block
78  'NPOINTS', & ! tag name
79  'NPOINTS', & ! fortran variable
80  'INTEGER', & ! type
81  '', & ! shape
82  'total number of points defined for all reaches', & ! longname
83  .true., & ! required
84  .false., & ! developmode
85  .false., & ! multi-record
86  .false., & ! preserve case
87  .false., & ! layered
88  .false. & ! timeseries
89  )

◆ chfcxs_nsections

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_nsections = InputParamDefinitionType ( 'CHF', 'CXS', 'DIMENSIONS', 'NSECTIONS', 'NSECTIONS', 'INTEGER', '', 'number of reaches', .true., .false., .false., .false., .false., .false. )
private

Definition at line 53 of file chf-cxsidm.f90.

53  type(InputParamDefinitionType), parameter :: &
54  chfcxs_nsections = inputparamdefinitiontype &
55  ( &
56  'CHF', & ! component
57  'CXS', & ! subcomponent
58  'DIMENSIONS', & ! block
59  'NSECTIONS', & ! tag name
60  'NSECTIONS', & ! fortran variable
61  'INTEGER', & ! type
62  '', & ! shape
63  'number of reaches', & ! longname
64  .true., & ! required
65  .false., & ! developmode
66  .false., & ! multi-record
67  .false., & ! preserve case
68  .false., & ! layered
69  .false. & ! timeseries
70  )

◆ chfcxs_nxspoints

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_nxspoints = InputParamDefinitionType ( 'CHF', 'CXS', 'PACKAGEDATA', 'NXSPOINTS', 'NXSPOINTS', 'INTEGER', '', 'number of points used to define cross section', .true., .false., .true., .false., .false., .false. )
private

Definition at line 110 of file chf-cxsidm.f90.

110  type(InputParamDefinitionType), parameter :: &
111  chfcxs_nxspoints = inputparamdefinitiontype &
112  ( &
113  'CHF', & ! component
114  'CXS', & ! subcomponent
115  'PACKAGEDATA', & ! block
116  'NXSPOINTS', & ! tag name
117  'NXSPOINTS', & ! fortran variable
118  'INTEGER', & ! type
119  '', & ! shape
120  'number of points used to define cross section', & ! longname
121  .true., & ! required
122  .false., & ! developmode
123  .true., & ! multi-record
124  .false., & ! preserve case
125  .false., & ! layered
126  .false. & ! timeseries
127  )

◆ chfcxs_packagedata

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_packagedata = InputParamDefinitionType ( 'CHF', 'CXS', 'PACKAGEDATA', 'PACKAGEDATA', 'PACKAGEDATA', 'RECARRAY IFNO NXSPOINTS', 'NSECTIONS', '', .true., .false., .false., .false., .false., .false. )
private

Definition at line 219 of file chf-cxsidm.f90.

219  type(InputParamDefinitionType), parameter :: &
220  chfcxs_packagedata = inputparamdefinitiontype &
221  ( &
222  'CHF', & ! component
223  'CXS', & ! subcomponent
224  'PACKAGEDATA', & ! block
225  'PACKAGEDATA', & ! tag name
226  'PACKAGEDATA', & ! fortran variable
227  'RECARRAY IFNO NXSPOINTS', & ! type
228  'NSECTIONS', & ! shape
229  '', & ! longname
230  .true., & ! required
231  .false., & ! developmode
232  .false., & ! multi-record
233  .false., & ! preserve case
234  .false., & ! layered
235  .false. & ! timeseries
236  )

◆ chfcxs_xfraction

type(inputparamdefinitiontype), parameter chfcxsinputmodule::chfcxs_xfraction = InputParamDefinitionType ( 'CHF', 'CXS', 'CROSSSECTIONDATA', 'XFRACTION', 'XFRACTION', 'DOUBLE', '', 'fractional width', .true., .false., .true., .false., .false., .false. )
private

Definition at line 148 of file chf-cxsidm.f90.

148  type(InputParamDefinitionType), parameter :: &
149  chfcxs_xfraction = inputparamdefinitiontype &
150  ( &
151  'CHF', & ! component
152  'CXS', & ! subcomponent
153  'CROSSSECTIONDATA', & ! block
154  'XFRACTION', & ! tag name
155  'XFRACTION', & ! fortran variable
156  'DOUBLE', & ! type
157  '', & ! shape
158  'fractional width', & ! longname
159  .true., & ! required
160  .false., & ! developmode
161  .true., & ! multi-record
162  .false., & ! preserve case
163  .false., & ! layered
164  .false. & ! timeseries
165  )