MODFLOW 6
version 6.6.0.dev0
USGS Modular Hydrologic Model
|
This module contains the LoadMf6FileModule. More...
Data Types | |
type | loadmf6filetype |
Static parser based input loader. More... | |
Functions/Subroutines | |
subroutine | load (this, parser, mf6_input, nc_vars, filename, iout) |
load all static input blocks More... | |
subroutine | init (this, parser, mf6_input, filename, iout) |
init More... | |
subroutine | load_block (this, iblk) |
load a single block More... | |
subroutine | finalize (this) |
finalize More... | |
subroutine | block_post_process (this, iblk) |
Post parse block handling. More... | |
recursive subroutine | parse_block (this, iblk, recursive_call) |
parse block More... | |
subroutine | parse_io_tag (this, iblk, pkgtype, which, tag) |
subroutine | parse_keyword_tag (this, iblk, tag, idt) |
recursive subroutine | parse_tag (this, iblk, recursive_call) |
load an individual input record into memory More... | |
type(inputparamdefinitiontype) function | block_index_dfn (this, iblk) |
subroutine | parse_structarray_block (this, iblk) |
parse a structured array record into memory manager More... | |
subroutine | load_keyword_type (parser, idt, memoryPath, iout) |
load type keyword More... | |
subroutine | load_string_type (parser, idt, memoryPath, iout) |
load type string More... | |
subroutine | load_io_tag (parser, idt, memoryPath, which, iout) |
load io tag More... | |
subroutine | load_auxvar_names (parser, idt, memoryPath, iout) |
load aux variable names More... | |
subroutine | load_integer_type (parser, idt, memoryPath, iout) |
load type integer More... | |
subroutine | load_integer1d_type (parser, idt, mf6_input, mshape, export, nc_vars, input_fname, iout) |
load type 1d integer More... | |
subroutine | load_integer2d_type (parser, idt, mf6_input, mshape, export, nc_vars, input_fname, iout) |
load type 2d integer More... | |
subroutine | load_integer3d_type (parser, idt, mf6_input, mshape, export, nc_vars, input_fname, iout) |
load type 3d integer More... | |
subroutine | load_double_type (parser, idt, memoryPath, iout) |
load type double More... | |
subroutine | load_double1d_type (parser, idt, mf6_input, mshape, export, nc_vars, input_fname, iout) |
load type 1d double More... | |
subroutine | load_double2d_type (parser, idt, mf6_input, mshape, export, nc_vars, input_fname, iout) |
load type 2d double More... | |
subroutine | load_double3d_type (parser, idt, mf6_input, mshape, export, nc_vars, input_fname, iout) |
load type 3d double More... | |
integer(i4b) function, public | read_control_record (parser, oc_inunit, iout) |
This module contains the input data model routines for loading static data from a MODFLOW 6 input file using the block parser.
type(inputparamdefinitiontype) function loadmf6filemodule::block_index_dfn | ( | class(loadmf6filetype) | this, |
integer(i4b), intent(in) | iblk | ||
) |
Definition at line 519 of file LoadMf6File.f90.
subroutine loadmf6filemodule::block_post_process | ( | class(loadmf6filetype) | this, |
integer(i4b), intent(in) | iblk | ||
) |
Definition at line 214 of file LoadMf6File.f90.
subroutine loadmf6filemodule::finalize | ( | class(loadmf6filetype) | this | ) |
init / finalize are only used when load_block() will be called
Definition at line 193 of file LoadMf6File.f90.
subroutine loadmf6filemodule::init | ( | class(loadmf6filetype) | this, |
type(blockparsertype), intent(inout), target | parser, | ||
type(modflowinputtype), intent(in) | mf6_input, | ||
character(len=*), intent(in) | filename, | ||
integer(i4b), intent(in) | iout | ||
) |
init / finalize are only used when load_block() will be called
Definition at line 122 of file LoadMf6File.f90.
|
private |
Invoke this routine to load all static input blocks in single call.
Definition at line 84 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_auxvar_names | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
character(len=*), intent(in) | memoryPath, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | memorypath | memorypath to put loaded information |
[in] | iout | unit number for output |
Definition at line 749 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_block | ( | class(loadmf6filetype) | this, |
integer(i4b), intent(in) | iblk | ||
) |
Assumed in order load of single (next) block. If a StructArray object is allocated to load this block it persists until this routine (or finalize) is called again.
Definition at line 163 of file LoadMf6File.f90.
|
private |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | mf6_input | description of input |
[in] | mshape | model shape |
[in] | export | export to ascii layer files |
[in] | input_fname | ascii input file name |
[in] | iout | unit number for output |
Definition at line 994 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_double2d_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
type(modflowinputtype), intent(in) | mf6_input, | ||
integer(i4b), dimension(:), intent(in), pointer, contiguous | mshape, | ||
logical(lgp), intent(in) | export, | ||
type(ncpackagevarstype), intent(in), pointer | nc_vars, | ||
character(len=*), intent(in) | input_fname, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | mf6_input | description of input |
[in] | mshape | model shape |
[in] | export | export to ascii layer files |
[in] | input_fname | ascii input file name |
[in] | iout | unit number for output |
Definition at line 1054 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_double3d_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
type(modflowinputtype), intent(in) | mf6_input, | ||
integer(i4b), dimension(:), intent(in), pointer, contiguous | mshape, | ||
logical(lgp), intent(in) | export, | ||
type(ncpackagevarstype), intent(in), pointer | nc_vars, | ||
character(len=*), intent(in) | input_fname, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | mf6_input | description of input |
[in] | mshape | model shape |
[in] | export | export to ascii layer files |
[in] | input_fname | ascii input file name |
[in] | iout | unit number for output |
Definition at line 1112 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_double_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
character(len=*), intent(in) | memoryPath, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | memorypath | memorypath to put loaded information |
[in] | iout | unit number for output |
Definition at line 980 of file LoadMf6File.f90.
|
private |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | mf6_input | description of input |
[in] | mshape | model shape |
[in] | export | export to ascii layer files |
[in] | input_fname | ascii input file name |
[in] | iout | unit number for output |
Definition at line 798 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_integer2d_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
type(modflowinputtype), intent(in) | mf6_input, | ||
integer(i4b), dimension(:), intent(in), pointer, contiguous | mshape, | ||
logical(lgp), intent(in) | export, | ||
type(ncpackagevarstype), intent(in), pointer | nc_vars, | ||
character(len=*), intent(in) | input_fname, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | mf6_input | description of input |
[in] | mshape | model shape |
[in] | export | export to ascii layer files |
[in] | input_fname | ascii input file name |
[in] | iout | unit number for output |
Definition at line 859 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_integer3d_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
type(modflowinputtype), intent(in) | mf6_input, | ||
integer(i4b), dimension(:), intent(in), pointer, contiguous | mshape, | ||
logical(lgp), intent(in) | export, | ||
type(ncpackagevarstype), intent(in), pointer | nc_vars, | ||
character(len=*), intent(in) | input_fname, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | mf6_input | description of input |
[in] | mshape | model shape |
[in] | export | export to ascii layer files |
[in] | input_fname | ascii input file name |
[in] | iout | unit number for output |
Definition at line 917 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_integer_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
character(len=*), intent(in) | memoryPath, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | memorypath | memorypath to put loaded information |
[in] | iout | unit number for output |
Definition at line 784 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_io_tag | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
character(len=*), intent(in) | memoryPath, | ||
character(len=*), intent(in) | which, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | memorypath | memorypath to put loaded information |
[in] | iout | unit number for output |
Definition at line 714 of file LoadMf6File.f90.
subroutine loadmf6filemodule::load_keyword_type | ( | type(blockparsertype), intent(inout) | parser, |
type(inputparamdefinitiontype), intent(in) | idt, | ||
character(len=*), intent(in) | memoryPath, | ||
integer(i4b), intent(in) | iout | ||
) |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | memorypath | memorypath to put loaded information |
[in] | iout | unit number for output |
Definition at line 674 of file LoadMf6File.f90.
|
private |
[in,out] | parser | block parser |
[in] | idt | input data type object describing this record |
[in] | memorypath | memorypath to put loaded information |
[in] | iout | unit number for output |
Definition at line 688 of file LoadMf6File.f90.
recursive subroutine loadmf6filemodule::parse_block | ( | class(loadmf6filetype) | this, |
integer(i4b), intent(in) | iblk, | ||
logical(lgp), intent(in) | recursive_call | ||
) |
[in] | recursive_call | true if recursive call |
Definition at line 276 of file LoadMf6File.f90.
subroutine loadmf6filemodule::parse_io_tag | ( | class(loadmf6filetype) | this, |
integer(i4b), intent(in) | iblk, | ||
character(len=*), intent(in) | pkgtype, | ||
character(len=*), intent(in) | which, | ||
character(len=*), intent(in) | tag | ||
) |
|
private |
Definition at line 366 of file LoadMf6File.f90.
|
private |
A structarray is similar to a numpy recarray. It it used to load a list of data in which each column in the list may be a different type. Each column in the list is stored as a 1d vector.
Definition at line 557 of file LoadMf6File.f90.
recursive subroutine loadmf6filemodule::parse_tag | ( | class(loadmf6filetype) | this, |
integer(i4b), intent(in) | iblk, | ||
logical(lgp), intent(in) | recursive_call | ||
) |
Load an individual input record into the memory manager. Allow for recursive calls in the case that multiple tags are on a single line.
[in] | recursive_call | true if recursive call |
Definition at line 438 of file LoadMf6File.f90.
integer(i4b) function, public loadmf6filemodule::read_control_record | ( | type(blockparsertype), intent(inout) | parser, |
integer(i4b), intent(inout) | oc_inunit, | ||
integer(i4b), intent(in) | iout | ||
) |
Definition at line 1173 of file LoadMf6File.f90.