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

Data Types

type  olfstoparamfoundtype
 

Variables

logical, public olf_sto_multi_package = .false.
 
logical, public olf_sto_is_advanced = .false.
 
character(len=16), dimension(*), parameter, public olf_sto_subpackages = [ ' ' ]
 
type(inputparamdefinitiontype), parameter olfsto_ipakcb = InputParamDefinitionType ( 'OLF', 'STO', 'OPTIONS', 'SAVE_FLOWS', 'IPAKCB', 'KEYWORD', '', 'keyword to save NPF flows', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter olfsto_export_ascii = InputParamDefinitionType ( 'OLF', 'STO', 'OPTIONS', 'EXPORT_ARRAY_ASCII', 'EXPORT_ASCII', 'KEYWORD', '', 'export array variables to layered ascii files.', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter olfsto_steady_state = InputParamDefinitionType ( 'OLF', 'STO', 'PERIOD', 'STEADY-STATE', 'STEADY_STATE', 'KEYWORD', '', 'steady state indicator', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), parameter olfsto_transient = InputParamDefinitionType ( 'OLF', 'STO', 'PERIOD', 'TRANSIENT', 'TRANSIENT', 'KEYWORD', '', 'transient indicator', .false., .false., .false., .false., .false., .false. )
 
type(inputparamdefinitiontype), dimension(*), parameter, public olf_sto_param_definitions = [ olfsto_ipakcb, olfsto_export_ascii, olfsto_steady_state, olfsto_transient ]
 
type(inputparamdefinitiontype), dimension(*), parameter, public olf_sto_aggregate_definitions = [ InputParamDefinitionType ( '', '', '', '', '', '', '', '', .false., .false., .false., .false., .false., .false. ) ]
 
type(inputblockdefinitiontype), dimension(*), parameter, public olf_sto_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'PERIOD', .false., .false., .true. ) ]
 

Variable Documentation

◆ olf_sto_aggregate_definitions

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

Definition at line 116 of file olf-stoidm.f90.

116  type(InputParamDefinitionType), parameter :: &
117  olf_sto_aggregate_definitions(*) = &
118  [ &
119  inputparamdefinitiontype &
120  ( &
121  '', & ! component
122  '', & ! subcomponent
123  '', & ! block
124  '', & ! tag name
125  '', & ! fortran variable
126  '', & ! type
127  '', & ! shape
128  '', & ! longname
129  .false., & ! required
130  .false., & ! developmode
131  .false., & ! multi-record
132  .false., & ! preserve case
133  .false., & ! layered
134  .false. & ! timeseries
135  ) &
136  ]

◆ olf_sto_block_definitions

type(inputblockdefinitiontype), dimension(*), parameter, public olfstoinputmodule::olf_sto_block_definitions = [ InputBlockDefinitionType( 'OPTIONS', .false., .false., .false. ), InputBlockDefinitionType( 'PERIOD', .false., .false., .true. ) ]

Definition at line 138 of file olf-stoidm.f90.

138  type(InputBlockDefinitionType), parameter :: &
139  olf_sto_block_definitions(*) = &
140  [ &
141  inputblockdefinitiontype( &
142  'OPTIONS', & ! blockname
143  .false., & ! required
144  .false., & ! aggregate
145  .false. & ! block_variable
146  ), &
147  inputblockdefinitiontype( &
148  'PERIOD', & ! blockname
149  .false., & ! required
150  .false., & ! aggregate
151  .true. & ! block_variable
152  ) &
153  ]

◆ olf_sto_is_advanced

logical, public olfstoinputmodule::olf_sto_is_advanced = .false.

Definition at line 23 of file olf-stoidm.f90.

23  logical :: olf_sto_is_advanced = .false.

◆ olf_sto_multi_package

logical, public olfstoinputmodule::olf_sto_multi_package = .false.

Definition at line 22 of file olf-stoidm.f90.

22  logical :: olf_sto_multi_package = .false.

◆ olf_sto_param_definitions

type(inputparamdefinitiontype), dimension(*), parameter, public olfstoinputmodule::olf_sto_param_definitions = [ olfsto_ipakcb, olfsto_export_ascii, olfsto_steady_state, olfsto_transient ]

Definition at line 107 of file olf-stoidm.f90.

107  type(InputParamDefinitionType), parameter :: &
108  olf_sto_param_definitions(*) = &
109  [ &
110  olfsto_ipakcb, &
111  olfsto_export_ascii, &
112  olfsto_steady_state, &
113  olfsto_transient &
114  ]

◆ olf_sto_subpackages

character(len=16), dimension(*), parameter, public olfstoinputmodule::olf_sto_subpackages = [ ' ' ]

Definition at line 25 of file olf-stoidm.f90.

25  character(len=16), parameter :: &
26  olf_sto_subpackages(*) = &
27  [ &
28  ' ' &
29  ]

◆ olfsto_export_ascii

type(inputparamdefinitiontype), parameter olfstoinputmodule::olfsto_export_ascii = InputParamDefinitionType ( 'OLF', 'STO', 'OPTIONS', 'EXPORT_ARRAY_ASCII', 'EXPORT_ASCII', 'KEYWORD', '', 'export array variables to layered ascii files.', .false., .false., .false., .false., .false., .false. )
private

Definition at line 50 of file olf-stoidm.f90.

50  type(InputParamDefinitionType), parameter :: &
51  olfsto_export_ascii = inputparamdefinitiontype &
52  ( &
53  'OLF', & ! component
54  'STO', & ! subcomponent
55  'OPTIONS', & ! block
56  'EXPORT_ARRAY_ASCII', & ! tag name
57  'EXPORT_ASCII', & ! fortran variable
58  'KEYWORD', & ! type
59  '', & ! shape
60  'export array variables to layered ascii files.', & ! longname
61  .false., & ! required
62  .false., & ! developmode
63  .false., & ! multi-record
64  .false., & ! preserve case
65  .false., & ! layered
66  .false. & ! timeseries
67  )

◆ olfsto_ipakcb

type(inputparamdefinitiontype), parameter olfstoinputmodule::olfsto_ipakcb = InputParamDefinitionType ( 'OLF', 'STO', 'OPTIONS', 'SAVE_FLOWS', 'IPAKCB', 'KEYWORD', '', 'keyword to save NPF flows', .false., .false., .false., .false., .false., .false. )
private

Definition at line 31 of file olf-stoidm.f90.

31  type(InputParamDefinitionType), parameter :: &
32  olfsto_ipakcb = inputparamdefinitiontype &
33  ( &
34  'OLF', & ! component
35  'STO', & ! subcomponent
36  'OPTIONS', & ! block
37  'SAVE_FLOWS', & ! tag name
38  'IPAKCB', & ! fortran variable
39  'KEYWORD', & ! type
40  '', & ! shape
41  'keyword to save NPF flows', & ! longname
42  .false., & ! required
43  .false., & ! developmode
44  .false., & ! multi-record
45  .false., & ! preserve case
46  .false., & ! layered
47  .false. & ! timeseries
48  )

◆ olfsto_steady_state

type(inputparamdefinitiontype), parameter olfstoinputmodule::olfsto_steady_state = InputParamDefinitionType ( 'OLF', 'STO', 'PERIOD', 'STEADY-STATE', 'STEADY_STATE', 'KEYWORD', '', 'steady state indicator', .false., .false., .false., .false., .false., .false. )
private

Definition at line 69 of file olf-stoidm.f90.

69  type(InputParamDefinitionType), parameter :: &
70  olfsto_steady_state = inputparamdefinitiontype &
71  ( &
72  'OLF', & ! component
73  'STO', & ! subcomponent
74  'PERIOD', & ! block
75  'STEADY-STATE', & ! tag name
76  'STEADY_STATE', & ! fortran variable
77  'KEYWORD', & ! type
78  '', & ! shape
79  'steady state indicator', & ! longname
80  .false., & ! required
81  .false., & ! developmode
82  .false., & ! multi-record
83  .false., & ! preserve case
84  .false., & ! layered
85  .false. & ! timeseries
86  )

◆ olfsto_transient

type(inputparamdefinitiontype), parameter olfstoinputmodule::olfsto_transient = InputParamDefinitionType ( 'OLF', 'STO', 'PERIOD', 'TRANSIENT', 'TRANSIENT', 'KEYWORD', '', 'transient indicator', .false., .false., .false., .false., .false., .false. )
private

Definition at line 88 of file olf-stoidm.f90.

88  type(InputParamDefinitionType), parameter :: &
89  olfsto_transient = inputparamdefinitiontype &
90  ( &
91  'OLF', & ! component
92  'STO', & ! subcomponent
93  'PERIOD', & ! block
94  'TRANSIENT', & ! tag name
95  'TRANSIENT', & ! fortran variable
96  'KEYWORD', & ! type
97  '', & ! shape
98  'transient indicator', & ! longname
99  .false., & ! required
100  .false., & ! developmode
101  .false., & ! multi-record
102  .false., & ! preserve case
103  .false., & ! layered
104  .false. & ! timeseries
105  )