|
| 1 | +! ** Do Not Modify! MODFLOW 6 system generated file. ** |
| 2 | +module GweFmiInputModule |
| 3 | + use ConstantsModule, only: LENVARNAME |
| 4 | + use InputDefinitionModule, only: InputParamDefinitionType, & |
| 5 | + InputBlockDefinitionType |
| 6 | + private |
| 7 | + public gwe_fmi_param_definitions |
| 8 | + public gwe_fmi_aggregate_definitions |
| 9 | + public gwe_fmi_block_definitions |
| 10 | + public GweFmiParamFoundType |
| 11 | + public gwe_fmi_multi_package |
| 12 | + public gwe_fmi_subpackages |
| 13 | + |
| 14 | + type GweFmiParamFoundType |
| 15 | + logical :: save_flows = .false. |
| 16 | + logical :: imbalancecorrect = .false. |
| 17 | + logical :: flowtype = .false. |
| 18 | + logical :: filein = .false. |
| 19 | + logical :: fname = .false. |
| 20 | + end type GweFmiParamFoundType |
| 21 | + |
| 22 | + logical :: gwe_fmi_multi_package = .false. |
| 23 | + |
| 24 | + character(len=16), parameter :: & |
| 25 | + gwe_fmi_subpackages(*) = & |
| 26 | + [ & |
| 27 | + ' ' & |
| 28 | + ] |
| 29 | + |
| 30 | + type(InputParamDefinitionType), parameter :: & |
| 31 | + gwefmi_save_flows = InputParamDefinitionType & |
| 32 | + ( & |
| 33 | + 'GWE', & ! component |
| 34 | + 'FMI', & ! subcomponent |
| 35 | + 'OPTIONS', & ! block |
| 36 | + 'SAVE_FLOWS', & ! tag name |
| 37 | + 'SAVE_FLOWS', & ! fortran variable |
| 38 | + 'KEYWORD', & ! type |
| 39 | + '', & ! shape |
| 40 | + 'save calculated flow imbalance correction to budget file', & ! longname |
| 41 | + .false., & ! required |
| 42 | + .false., & ! multi-record |
| 43 | + .false., & ! preserve case |
| 44 | + .false., & ! layered |
| 45 | + .false. & ! timeseries |
| 46 | + ) |
| 47 | + |
| 48 | + type(InputParamDefinitionType), parameter :: & |
| 49 | + gwefmi_imbalancecorrect = InputParamDefinitionType & |
| 50 | + ( & |
| 51 | + 'GWE', & ! component |
| 52 | + 'FMI', & ! subcomponent |
| 53 | + 'OPTIONS', & ! block |
| 54 | + 'FLOW_IMBALANCE_CORRECTION', & ! tag name |
| 55 | + 'IMBALANCECORRECT', & ! fortran variable |
| 56 | + 'KEYWORD', & ! type |
| 57 | + '', & ! shape |
| 58 | + 'correct for flow imbalance', & ! longname |
| 59 | + .false., & ! required |
| 60 | + .false., & ! multi-record |
| 61 | + .false., & ! preserve case |
| 62 | + .false., & ! layered |
| 63 | + .false. & ! timeseries |
| 64 | + ) |
| 65 | + |
| 66 | + type(InputParamDefinitionType), parameter :: & |
| 67 | + gwefmi_flowtype = InputParamDefinitionType & |
| 68 | + ( & |
| 69 | + 'GWE', & ! component |
| 70 | + 'FMI', & ! subcomponent |
| 71 | + 'PACKAGEDATA', & ! block |
| 72 | + 'FLOWTYPE', & ! tag name |
| 73 | + 'FLOWTYPE', & ! fortran variable |
| 74 | + 'STRING', & ! type |
| 75 | + '', & ! shape |
| 76 | + 'flow type', & ! longname |
| 77 | + .true., & ! required |
| 78 | + .true., & ! multi-record |
| 79 | + .false., & ! preserve case |
| 80 | + .false., & ! layered |
| 81 | + .false. & ! timeseries |
| 82 | + ) |
| 83 | + |
| 84 | + type(InputParamDefinitionType), parameter :: & |
| 85 | + gwefmi_filein = InputParamDefinitionType & |
| 86 | + ( & |
| 87 | + 'GWE', & ! component |
| 88 | + 'FMI', & ! subcomponent |
| 89 | + 'PACKAGEDATA', & ! block |
| 90 | + 'FILEIN', & ! tag name |
| 91 | + 'FILEIN', & ! fortran variable |
| 92 | + 'KEYWORD', & ! type |
| 93 | + '', & ! shape |
| 94 | + 'file keyword', & ! longname |
| 95 | + .true., & ! required |
| 96 | + .true., & ! multi-record |
| 97 | + .false., & ! preserve case |
| 98 | + .false., & ! layered |
| 99 | + .false. & ! timeseries |
| 100 | + ) |
| 101 | + |
| 102 | + type(InputParamDefinitionType), parameter :: & |
| 103 | + gwefmi_fname = InputParamDefinitionType & |
| 104 | + ( & |
| 105 | + 'GWE', & ! component |
| 106 | + 'FMI', & ! subcomponent |
| 107 | + 'PACKAGEDATA', & ! block |
| 108 | + 'FNAME', & ! tag name |
| 109 | + 'FNAME', & ! fortran variable |
| 110 | + 'STRING', & ! type |
| 111 | + '', & ! shape |
| 112 | + 'file name', & ! longname |
| 113 | + .true., & ! required |
| 114 | + .true., & ! multi-record |
| 115 | + .true., & ! preserve case |
| 116 | + .false., & ! layered |
| 117 | + .false. & ! timeseries |
| 118 | + ) |
| 119 | + |
| 120 | + type(InputParamDefinitionType), parameter :: & |
| 121 | + gwe_fmi_param_definitions(*) = & |
| 122 | + [ & |
| 123 | + gwefmi_save_flows, & |
| 124 | + gwefmi_imbalancecorrect, & |
| 125 | + gwefmi_flowtype, & |
| 126 | + gwefmi_filein, & |
| 127 | + gwefmi_fname & |
| 128 | + ] |
| 129 | + |
| 130 | + type(InputParamDefinitionType), parameter :: & |
| 131 | + gwefmi_packagedata = InputParamDefinitionType & |
| 132 | + ( & |
| 133 | + 'GWE', & ! component |
| 134 | + 'FMI', & ! subcomponent |
| 135 | + 'PACKAGEDATA', & ! block |
| 136 | + 'PACKAGEDATA', & ! tag name |
| 137 | + 'PACKAGEDATA', & ! fortran variable |
| 138 | + 'RECARRAY FLOWTYPE FILEIN FNAME', & ! type |
| 139 | + '', & ! shape |
| 140 | + 'flowtype list', & ! longname |
| 141 | + .false., & ! required |
| 142 | + .false., & ! multi-record |
| 143 | + .false., & ! preserve case |
| 144 | + .false., & ! layered |
| 145 | + .false. & ! timeseries |
| 146 | + ) |
| 147 | + |
| 148 | + type(InputParamDefinitionType), parameter :: & |
| 149 | + gwe_fmi_aggregate_definitions(*) = & |
| 150 | + [ & |
| 151 | + gwefmi_packagedata & |
| 152 | + ] |
| 153 | + |
| 154 | + type(InputBlockDefinitionType), parameter :: & |
| 155 | + gwe_fmi_block_definitions(*) = & |
| 156 | + [ & |
| 157 | + InputBlockDefinitionType( & |
| 158 | + 'OPTIONS', & ! blockname |
| 159 | + .false., & ! required |
| 160 | + .false., & ! aggregate |
| 161 | + .false. & ! block_variable |
| 162 | + ), & |
| 163 | + InputBlockDefinitionType( & |
| 164 | + 'PACKAGEDATA', & ! blockname |
| 165 | + .false., & ! required |
| 166 | + .true., & ! aggregate |
| 167 | + .false. & ! block_variable |
| 168 | + ) & |
| 169 | + ] |
| 170 | + |
| 171 | +end module GweFmiInputModule |
0 commit comments