MODFLOW 6  version 6.9.0.dev0
USGS Modular Hydrologic Model
chficinputmodule Module Reference

Data Types

type  chficparamfoundtype
 

Variables

logical, public chf_ic_multi_package = .false.
 
logical, public chf_ic_is_advanced = .false.
 
character(len=16), dimension(*), parameter, public chf_ic_subpackages = [ ' ' ]
 
type(inputparamdefinitiontype), parameter chfic_export_ascii = InputParamDefinitionType ( 'CHF', 'IC', 'OPTIONS', 'EXPORT_ARRAY_ASCII', 'EXPORT_ASCII', 'KEYWORD', '', 'export array variables to layered ascii files.', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter chfic_strt = InputParamDefinitionType ( 'CHF', 'IC', 'GRIDDATA', 'STRT', 'STRT', 'DOUBLE1D', 'NODES', 'starting concentration', .true., .false., .false., .false., .true., .false. )
 
type(inputparamdefinitiontype), dimension(*), parameter, public chf_ic_param_definitions = [ chfic_export_ascii, chfic_strt ]
 
type(inputparamdefinitiontype), dimension(*), parameter, public chf_ic_aggregate_definitions = [ InputParamDefinitionType ( '', '', '', '', '', '', '', '', .false., .false., .false., .false., .false., .false. ) ]
 
type(inputblockdefinitiontype), dimension(*), parameter, public chf_ic_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'GRIDDATA', .true., .false., .false. ) ]
 

Variable Documentation

◆ chf_ic_aggregate_definitions

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

Definition at line 74 of file chf-icidm.f90.

74  type(InputParamDefinitionType), parameter :: &
75  chf_ic_aggregate_definitions(*) = &
76  [ &
77  inputparamdefinitiontype &
78  ( &
79  '', & ! component
80  '', & ! subcomponent
81  '', & ! block
82  '', & ! tag name
83  '', & ! fortran variable
84  '', & ! type
85  '', & ! shape
86  '', & ! longname
87  .false., & ! required
88  .false., & ! developmode
89  .false., & ! multi-record
90  .false., & ! preserve case
91  .false., & ! layered
92  .false. & ! timeseries
93  ) &
94  ]

◆ chf_ic_block_definitions

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

Definition at line 96 of file chf-icidm.f90.

96  type(InputBlockDefinitionType), parameter :: &
97  chf_ic_block_definitions(*) = &
98  [ &
99  inputblockdefinitiontype( &
100  'OPTIONS', & ! blockname
101  .false., & ! required
102  .false., & ! aggregate
103  .false. & ! block_variable
104  ), &
105  inputblockdefinitiontype( &
106  'GRIDDATA', & ! blockname
107  .true., & ! required
108  .false., & ! aggregate
109  .false. & ! block_variable
110  ) &
111  ]

◆ chf_ic_is_advanced

logical, public chficinputmodule::chf_ic_is_advanced = .false.

Definition at line 21 of file chf-icidm.f90.

21  logical :: chf_ic_is_advanced = .false.

◆ chf_ic_multi_package

logical, public chficinputmodule::chf_ic_multi_package = .false.

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

20  logical :: chf_ic_multi_package = .false.

◆ chf_ic_param_definitions

type(inputparamdefinitiontype), dimension(*), parameter, public chficinputmodule::chf_ic_param_definitions = [ chfic_export_ascii, chfic_strt ]

Definition at line 67 of file chf-icidm.f90.

67  type(InputParamDefinitionType), parameter :: &
68  chf_ic_param_definitions(*) = &
69  [ &
70  chfic_export_ascii, &
71  chfic_strt &
72  ]

◆ chf_ic_subpackages

character(len=16), dimension(*), parameter, public chficinputmodule::chf_ic_subpackages = [ ' ' ]

Definition at line 23 of file chf-icidm.f90.

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

◆ chfic_export_ascii

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

Definition at line 29 of file chf-icidm.f90.

29  type(InputParamDefinitionType), parameter :: &
30  chfic_export_ascii = inputparamdefinitiontype &
31  ( &
32  'CHF', & ! component
33  'IC', & ! 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., & ! developmode
42  .false., & ! multi-record
43  .false., & ! preserve case
44  .false., & ! layered
45  .false. & ! timeseries
46  )

◆ chfic_strt

type(inputparamdefinitiontype), parameter chficinputmodule::chfic_strt = InputParamDefinitionType ( 'CHF', 'IC', 'GRIDDATA', 'STRT', 'STRT', 'DOUBLE1D', 'NODES', 'starting concentration', .true., .false., .false., .false., .true., .false. )
private

Definition at line 48 of file chf-icidm.f90.

48  type(InputParamDefinitionType), parameter :: &
49  chfic_strt = inputparamdefinitiontype &
50  ( &
51  'CHF', & ! component
52  'IC', & ! subcomponent
53  'GRIDDATA', & ! block
54  'STRT', & ! tag name
55  'STRT', & ! fortran variable
56  'DOUBLE1D', & ! type
57  'NODES', & ! shape
58  'starting concentration', & ! longname
59  .true., & ! required
60  .false., & ! developmode
61  .false., & ! multi-record
62  .false., & ! preserve case
63  .true., & ! layered
64  .false. & ! timeseries
65  )