MODFLOW 6  version 6.7.0.dev2
USGS Modular Hydrologic Model
modflowinputmodule Module Reference

This module contains the ModflowInputModule. More...

Data Types

type  modflowinputtype
 derived type for storing input definition for a file More...
 

Functions/Subroutines

type(modflowinputtype) function, public getmodflowinput (pkgtype, component_type, subcomponent_type, component_name, subcomponent_name, load_scope, filename)
 function to return ModflowInputType More...
 
character(len=lenpackagetype) function update_sc_type (filetype, filename, component_type, subcomponent_type)
 
character(len=lenpackagetype) function readarray (filetype, filename, component_type, subcomponent_type)
 

Detailed Description

This module contains a helper object and function for accessing the ModflowInput, which is a description of the structure of a modflow input file.

Function/Subroutine Documentation

◆ getmodflowinput()

type(modflowinputtype) function, public modflowinputmodule::getmodflowinput ( character(len=*), intent(in)  pkgtype,
character(len=*), intent(in)  component_type,
character(len=*), intent(in)  subcomponent_type,
character(len=*), intent(in)  component_name,
character(len=*), intent(in)  subcomponent_name,
character(len=*), intent(in)  load_scope,
character(len=*), intent(in), optional  filename 
)
Parameters
[in]pkgtypepackage type to load, such as DIS6, DISV6, NPF6
[in]component_typecomponent type, such as GWF or GWT
[in]subcomponent_typesubcomponent type, such as DIS or NPF
[in]component_namecomponent name, such as MYGWFMODEL
[in]subcomponent_namesubcomponent name, such as MYWELLPACKAGE
[in]load_scopee.g. SIM, MODEL, EXCHANGE
[in]filenameoptional name of package input file

Definition at line 52 of file ModflowInput.f90.

56  character(len=*), intent(in) :: pkgtype !< package type to load, such as DIS6, DISV6, NPF6
57  character(len=*), intent(in) :: component_type !< component type, such as GWF or GWT
58  character(len=*), intent(in) :: subcomponent_type !< subcomponent type, such as DIS or NPF
59  character(len=*), intent(in) :: component_name !< component name, such as MYGWFMODEL
60  character(len=*), intent(in) :: subcomponent_name !< subcomponent name, such as MYWELLPACKAGE
61  character(len=*), intent(in) :: load_scope !< e.g. SIM, MODEL, EXCHANGE
62  character(len=*), optional, intent(in) :: filename !< optional name of package input file
63  type(ModflowInputType) :: mf6_input
64  character(len=LENPACKAGETYPE) :: dfn_subcomponent_type
65 
66  ! set subcomponent type
67  if (present(filename)) then
68  dfn_subcomponent_type = update_sc_type(pkgtype, filename, component_type, &
69  subcomponent_type)
70  else
71  dfn_subcomponent_type = trim(subcomponent_type)
72  end if
73 
74  ! set input attributes
75  mf6_input%pkgtype = trim(pkgtype)
76  mf6_input%component_type = trim(component_type)
77  mf6_input%subcomponent_type = trim(dfn_subcomponent_type)
78  mf6_input%component_name = trim(component_name)
79  mf6_input%subcomponent_name = trim(subcomponent_name)
80  mf6_input%load_scope = trim(load_scope)
81 
82  ! set mempaths
83  mf6_input%mempath = create_mem_path(component_name, subcomponent_name, &
84  idm_context)
85  mf6_input%component_mempath = create_mem_path(component=component_name, &
86  context=idm_context)
87 
88  ! set input definitions
89  mf6_input%block_dfns => block_definitions(mf6_input%component_type, &
90  mf6_input%subcomponent_type)
91  mf6_input%aggregate_dfns => aggregate_definitions(mf6_input%component_type, &
92  mf6_input%subcomponent_type)
93  mf6_input%param_dfns => param_definitions(mf6_input%component_type, &
94  mf6_input%subcomponent_type)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ readarray()

character(len=lenpackagetype) function modflowinputmodule::readarray ( character(len=*), intent(in)  filetype,
character(len=*), intent(in)  filename,
character(len=*), intent(in)  component_type,
character(len=*), intent(in)  subcomponent_type 
)
private

Definition at line 113 of file ModflowInput.f90.

115  use constantsmodule, only: linelength
118  character(len=*), intent(in) :: component_type
119  character(len=*), intent(in) :: subcomponent_type
120  character(len=*), intent(in) :: filetype
121  character(len=*), intent(in) :: filename
122  character(len=LENPACKAGETYPE) :: sc_type
123  type(BlockParserType) :: parser
124  integer(I4B) :: ierr, inunit
125  logical(LGP) :: isfound
126  logical(LGP) :: endOfBlock
127  character(len=LINELENGTH) :: keyword
128 
129  sc_type = subcomponent_type
130  inunit = getunit()
131  call openfile(inunit, 0, trim(adjustl(filename)), filetype, &
132  'FORMATTED', 'SEQUENTIAL', 'OLD')
133  call parser%Initialize(inunit, 0)
134 
135  ! get options block
136  call parser%GetBlock('OPTIONS', isfound, ierr, &
137  supportopenclose=.true., blockrequired=.false.)
138 
139  ! parse options block if detected
140  if (isfound) then
141  do
142  call parser%GetNextLine(endofblock)
143  if (endofblock) exit
144  call parser%GetStringCaps(keyword)
145  select case (keyword)
146  case ('READASARRAYS')
147  write (sc_type, '(a)') trim(subcomponent_type)//'A'
148  case ('READARRAYGRID')
149  write (sc_type, '(a)') trim(subcomponent_type)//'G'
150  case default
151  end select
152  end do
153  end if
154 
155  call parser%clear()
This module contains block parser methods.
Definition: BlockParser.f90:7
This module contains simulation constants.
Definition: Constants.f90:9
integer(i4b), parameter linelength
maximum length of a standard line
Definition: Constants.f90:45
integer(i4b) function, public getunit()
Get a free unit number.
subroutine, public openfile(iu, iout, fname, ftype, fmtarg_opt, accarg_opt, filstat_opt, mode_opt)
Open a file.
Definition: InputOutput.f90:30
Here is the call graph for this function:
Here is the caller graph for this function:

◆ update_sc_type()

character(len=lenpackagetype) function modflowinputmodule::update_sc_type ( character(len=*), intent(in)  filetype,
character(len=*), intent(in)  filename,
character(len=*), intent(in)  component_type,
character(len=*), intent(in)  subcomponent_type 
)
private

Definition at line 97 of file ModflowInput.f90.

99  character(len=*), intent(in) :: component_type
100  character(len=*), intent(in) :: subcomponent_type
101  character(len=*), intent(in) :: filetype
102  character(len=*), intent(in) :: filename
103  character(len=LENPACKAGETYPE) :: sc_type
104  sc_type = subcomponent_type
105  select case (subcomponent_type)
106  case ('CHD', 'DRN', 'EVT', 'GHB', 'RCH', 'RIV', 'SCP', 'WEL')
107  sc_type = readarray(filetype, filename, component_type, &
108  subcomponent_type)
109  case default
110  end select
Here is the call graph for this function:
Here is the caller graph for this function: