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

This module contains the Mf6FileStoInputModule. More...

Data Types

type  stoinputtype
 STO package loader. More...
 

Functions/Subroutines

subroutine sto_init (this, mf6_input, component_name, component_input_name, input_name, iperblock, parser, iout)
 
subroutine sto_rp (this, parser)
 
subroutine sto_destroy (this)
 

Detailed Description

This module contains the routines for reading STO period block input

Function/Subroutine Documentation

◆ sto_destroy()

subroutine mf6filestoinputmodule::sto_destroy ( class(stoinputtype), intent(inout)  this)

Definition at line 101 of file Mf6FileStoInput.f90.

103  class(StoInputType), intent(inout) :: this
104  call mem_deallocate(this%storage, 'STORAGE', this%mf6_input%mempath)
105  call this%DynamicPkgLoadType%destroy()

◆ sto_init()

subroutine mf6filestoinputmodule::sto_init ( class(stoinputtype), intent(inout)  this,
type(modflowinputtype), intent(in)  mf6_input,
character(len=*), intent(in)  component_name,
character(len=*), intent(in)  component_input_name,
character(len=*), intent(in)  input_name,
integer(i4b), intent(in)  iperblock,
type(blockparsertype), intent(inout), pointer  parser,
integer(i4b), intent(in)  iout 
)
private

Definition at line 32 of file Mf6FileStoInput.f90.

36  class(StoInputType), intent(inout) :: this
37  type(ModflowInputType), intent(in) :: mf6_input
38  character(len=*), intent(in) :: component_name
39  character(len=*), intent(in) :: component_input_name
40  character(len=*), intent(in) :: input_name
41  integer(I4B), intent(in) :: iperblock
42  type(BlockParserType), pointer, intent(inout) :: parser
43  integer(I4B), intent(in) :: iout
44  type(LoadMf6FileType) :: loader
45 
46  ! init loader
47  call this%DynamicPkgLoadType%init(mf6_input, component_name, &
48  component_input_name, input_name, &
49  iperblock, iout)
50  ! initialize static loader
51  call loader%load(parser, mf6_input, this%nc_vars, this%input_name, iout)
52 
53  ! allocate storage string
54  call mem_allocate(this%storage, linelength, 'STORAGE', this%mf6_input%mempath)
55 
56  ! initialize storage to TRANSIENT (model iss=0)
57  this%storage = 'TRANSIENT'
This module contains block parser methods.
Definition: BlockParser.f90:7
This module contains the LoadMf6FileModule.
Definition: LoadMf6File.f90:8
Static parser based input loader.
Definition: LoadMf6File.f90:47

◆ sto_rp()

subroutine mf6filestoinputmodule::sto_rp ( class(stoinputtype), intent(inout)  this,
type(blockparsertype), intent(inout), pointer  parser 
)

Definition at line 60 of file Mf6FileStoInput.f90.

64  class(StoInputType), intent(inout) :: this
65  type(BlockParserType), pointer, intent(inout) :: parser
66  character(len=LINELENGTH) :: tagname
67  type(InputParamDefinitionType), pointer :: idt
68  logical(LGP) :: endOfBlock
69 
70  ! read next line
71  call parser%GetNextLine(endofblock)
72 
73  ! return if no input
74  if (endofblock) return
75 
76  ! read the tag
77  call parser%GetStringCaps(tagname)
78 
79  ! verify tag is supported
80  idt => get_param_definition_type(this%mf6_input%param_dfns, &
81  this%mf6_input%component_type, &
82  this%mf6_input%subcomponent_type, &
83  'PERIOD', tagname, this%input_name)
84  ! set storage
85  this%storage = idt%tagname
86 
87  ! only one input line is expected, terminate block
88  call parser%terminateblock()
89 
90  ! log lst file header
91  call idm_log_header(this%mf6_input%component_name, &
92  this%mf6_input%subcomponent_name, this%iout)
93 
94  call idm_log_var(this%storage, tagname, this%mf6_input%mempath, this%iout)
95 
96  ! close logging statement
97  call idm_log_close(this%mf6_input%component_name, &
98  this%mf6_input%subcomponent_name, this%iout)
This module contains the DefinitionSelectModule.
type(inputparamdefinitiontype) function, pointer, public get_param_definition_type(input_definition_types, component_type, subcomponent_type, blockname, tagname, filename)
Return parameter definition.
This module contains the Input Data Model Logger Module.
Definition: IdmLogger.f90:7
subroutine, public idm_log_close(component, subcomponent, iout)
@ brief log the closing message
Definition: IdmLogger.f90:56
subroutine, public idm_log_header(component, subcomponent, iout)
@ brief log a header message
Definition: IdmLogger.f90:44
Here is the call graph for this function: