MODFLOW 6  version 6.6.0.dev0
USGS Modular Hydrologic Model
Mf6FileStoInput.f90
Go to the documentation of this file.
1 !> @brief This module contains the Mf6FileStoInputModule
2 !!
3 !! This module contains the routines for reading STO period block input
4 !!
5 !<
7 
8  use kindmodule, only: i4b, dp, lgp
9  use constantsmodule, only: linelength
14 
15  implicit none
16  private
17  public :: stoinputtype
18 
19  !> @brief STO package loader
20  !!
21  !<
23  character(len=LINELENGTH), pointer :: storage => null()
24  contains
25  procedure :: ainit => sto_init
26  procedure :: rp => sto_rp
27  procedure :: destroy => sto_destroy
28  end type stoinputtype
29 
30 contains
31 
32  subroutine sto_init(this, mf6_input, component_name, component_input_name, &
33  input_name, iperblock, parser, iout)
37  class(stoinputtype), intent(inout) :: this
38  type(modflowinputtype), intent(in) :: mf6_input
39  character(len=*), intent(in) :: component_name
40  character(len=*), intent(in) :: component_input_name
41  character(len=*), intent(in) :: input_name
42  integer(I4B), intent(in) :: iperblock
43  type(blockparsertype), pointer, intent(inout) :: parser
44  integer(I4B), intent(in) :: iout
45  type(loadmf6filetype) :: loader
46 
47  ! init loader
48  call this%DynamicPkgLoadType%init(mf6_input, component_name, &
49  component_input_name, input_name, &
50  iperblock, iout)
51  ! initialize static loader
52  call loader%load(parser, mf6_input, this%nc_vars, this%input_name, iout)
53 
54  ! allocate storage string
55  call mem_allocate(this%storage, linelength, 'STORAGE', this%mf6_input%mempath)
56 
57  ! initialize storage to TRANSIENT (model iss=0)
58  this%storage = 'TRANSIENT'
59  end subroutine sto_init
60 
61  subroutine sto_rp(this, parser)
65  class(stoinputtype), intent(inout) :: this
66  type(blockparsertype), pointer, intent(inout) :: parser
67  character(len=LINELENGTH) :: tagname
68  type(inputparamdefinitiontype), pointer :: idt
69  logical(LGP) :: endOfBlock
70 
71  ! read next line
72  call parser%GetNextLine(endofblock)
73 
74  ! return if no input
75  if (endofblock) return
76 
77  ! read the tag
78  call parser%GetStringCaps(tagname)
79 
80  ! verify tag is supported
81  idt => get_param_definition_type(this%mf6_input%param_dfns, &
82  this%mf6_input%component_type, &
83  this%mf6_input%subcomponent_type, &
84  'PERIOD', tagname, this%input_name)
85  ! set storage
86  this%storage = idt%tagname
87 
88  ! only one input line is expected, terminate block
89  call parser%terminateblock()
90 
91  ! log lst file header
92  call idm_log_header(this%mf6_input%component_name, &
93  this%mf6_input%subcomponent_name, this%iout)
94 
95  call idm_log_var(this%storage, tagname, this%mf6_input%mempath, this%iout)
96 
97  ! close logging statement
98  call idm_log_close(this%mf6_input%component_name, &
99  this%mf6_input%subcomponent_name, this%iout)
100  end subroutine sto_rp
101 
102  subroutine sto_destroy(this)
104  class(stoinputtype), intent(inout) :: this
105  call mem_deallocate(this%storage, 'STORAGE', this%mf6_input%mempath)
106  call this%DynamicPkgLoadType%destroy()
107  end subroutine sto_destroy
108 
109 end module mf6filestoinputmodule
This module contains the AsciiInputLoadTypeModule.
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
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
This module contains the InputDefinitionModule.
This module defines variable data types.
Definition: kind.f90:8
This module contains the LoadMf6FileModule.
Definition: LoadMf6File.f90:8
This module contains the Mf6FileStoInputModule.
subroutine sto_destroy(this)
subroutine sto_rp(this, parser)
subroutine sto_init(this, mf6_input, component_name, component_input_name, input_name, iperblock, parser, iout)
This module contains the ModflowInputModule.
Definition: ModflowInput.f90:9
type(modflowinputtype) function, public getmodflowinput(pkgtype, component_type, subcomponent_type, component_name, subcomponent_name, filename)
function to return ModflowInputType
base abstract type for ascii source dynamic load
Static parser based input loader.
Definition: LoadMf6File.f90:48
derived type for storing input definition for a file