MODFLOW 6  version 6.8.0.dev0
USGS Modular Hydrologic Model
Mf6FileLayerArray.f90
Go to the documentation of this file.
1 !> @brief This module contains the LayerArrayLoadModule
2 !!
3 !! This module contains the routines for reading period block
4 !! array based input that is associated with a layer and an
5 !! layer index array, such as with the EVTA and RCHA packages.
6 !!
7 !<
9 
10  use kindmodule, only: i4b, dp, lgp
13  use simvariablesmodule, only: errmsg
24 
25  implicit none
26  private
27  public :: layerarrayloadtype
28 
29  !> @brief Ascii array layer dynamic loader type
30  !<
32  integer(I4B) :: tas_active !< Are TAS6 inputs defined
33  type(characterstringtype), dimension(:), contiguous, &
34  pointer :: aux_tasnames !< array of AUXVAR TAS names
35  type(characterstringtype), dimension(:), contiguous, &
36  pointer :: param_tasnames !< array of dynamic param TAS names
37  type(readstatevartype), dimension(:), allocatable :: param_reads !< read states for current load
38  type(timearrayseriesmanagertype), pointer :: tasmanager !< TAS manager
39  type(loadcontexttype) :: ctx
40  contains
41  procedure :: ainit
42  procedure :: df
43  procedure :: ts_advance
44  procedure :: rp
45  procedure :: destroy
46  procedure :: reset
47  procedure :: init_charstr1d
48  procedure :: params_alloc
49  procedure :: param_load
50  procedure :: tas_arrays_alloc
51  procedure :: tas_links_create
52  end type layerarrayloadtype
53 
54 contains
55 
56  subroutine ainit(this, mf6_input, component_name, &
57  component_input_name, input_name, &
58  iperblock, parser, iout)
62  class(layerarrayloadtype), intent(inout) :: this
63  type(modflowinputtype), intent(in) :: mf6_input
64  character(len=*), intent(in) :: component_name
65  character(len=*), intent(in) :: component_input_name
66  character(len=*), intent(in) :: input_name
67  integer(I4B), intent(in) :: iperblock
68  type(blockparsertype), pointer, intent(inout) :: parser
69  integer(I4B), intent(in) :: iout
70  type(loadmf6filetype) :: loader
71  type(characterstringtype), dimension(:), pointer, &
72  contiguous :: tas_fnames
73  character(len=LINELENGTH) :: fname
74  integer(I4B) :: tas6_size, n
75 
76  ! initialize base type
77  call this%DynamicPkgLoadType%init(mf6_input, component_name, &
78  component_input_name, &
79  input_name, iperblock, iout)
80  ! initialize
81  nullify (this%aux_tasnames)
82  nullify (this%param_tasnames)
83  this%tas_active = 0
84  this%iout = iout
85 
86  ! load static input
87  call loader%load(parser, mf6_input, this%nc_vars, this%input_name, iout)
88 
89  ! create tasmanager
90  allocate (this%tasmanager)
91  call tasmanager_cr(this%tasmanager, modelname=this%mf6_input%component_name, &
92  iout=this%iout)
93 
94  ! determine if TAS6 files were provided in OPTIONS block
95  call get_isize('TAS6_FILENAME', this%mf6_input%mempath, tas6_size)
96  if (tas6_size > 0) then
97  this%tas_active = 1
98  call mem_setptr(tas_fnames, 'TAS6_FILENAME', this%mf6_input%mempath)
99  ! add files to tasmanager
100  do n = 1, size(tas_fnames)
101  fname = tas_fnames(n)
102  call this%tasmanager%add_tasfile(fname)
103  end do
104  end if
105 
106  ! initialize input context memory
107  call this%ctx%init(mf6_input)
108 
109  ! allocate dfn params
110  call this%params_alloc()
111 
112  ! allocate memory for storing TAS strings
113  call this%tas_arrays_alloc()
114  end subroutine ainit
115 
116  subroutine df(this)
117  class(layerarrayloadtype), intent(inout) :: this
118  call this%tasmanager%tasmanager_df()
119  end subroutine df
120 
121  subroutine ts_advance(this)
122  class(layerarrayloadtype), intent(inout) :: this
123  call this%tasmanager%ad()
124  end subroutine ts_advance
125 
126  subroutine rp(this, parser)
131  use arrayhandlersmodule, only: ifind
134  class(layerarrayloadtype), intent(inout) :: this
135  type(blockparsertype), pointer, intent(inout) :: parser
136  logical(LGP) :: endOfBlock, netcdf
137  character(len=LINELENGTH) :: keyword, param_tag
138  type(inputparamdefinitiontype), pointer :: idt
139  integer(I4B) :: iaux, iparam
140  character(len=LENTIMESERIESNAME) :: tas_name
141  integer(I4B), dimension(:), pointer, contiguous :: int1d
142 
143  ! reset for this period
144  call this%reset()
145 
146  ! log lst file header
147  call idm_log_header(this%mf6_input%component_name, &
148  this%mf6_input%subcomponent_name, this%iout)
149 
150  ! read array block
151  do
152  ! initialize
153  iaux = 0
154  netcdf = .false.
155 
156  ! read next line
157  call parser%GetNextLine(endofblock)
158  if (endofblock) exit
159  ! read param_tag
160  call parser%GetStringCaps(param_tag)
161 
162  ! is param tag an auxvar?
163  iaux = ifind_charstr(this%ctx%auxname_cst, param_tag)
164  ! any auvxar corresponds to the definition tag 'AUX'
165  if (iaux > 0) param_tag = 'AUX'
166 
167  ! set input definition
168  idt => get_param_definition_type(this%mf6_input%param_dfns, &
169  this%mf6_input%component_type, &
170  this%mf6_input%subcomponent_type, &
171  'PERIOD', param_tag, this%input_name)
172  ! look for TAS and NetCDF keywords
173  call parser%GetStringCaps(keyword)
174  if (keyword == 'TIMEARRAYSERIES') then
175  if (this%tas_active /= 0) then
176  call parser%GetStringCaps(tas_name)
177  if (param_tag == 'AUX') then
178  this%aux_tasnames(iaux) = tas_name
179  else
180  iparam = ifind(this%param_names, param_tag)
181  this%param_tasnames(iparam) = tas_name
182  this%param_reads(iparam)%invar = 2
183  end if
184  ! log variable
185  call idm_log_var(param_tag, this%mf6_input%mempath, this%iout, .true., &
186  trim(tas_name))
187  ! cycle to next input param
188  cycle
189  else
190  ! TODO: throw error
191  end if
192  else if (keyword == 'NETCDF') then
193  netcdf = .true.
194  end if
195 
196  ! read and load the parameter
197  call this%param_load(parser, idt, this%mf6_input%mempath, netcdf, iaux)
198  end do
199 
200  ! check if layer index variable was read; default to 1 if not provided.
201  ! the layer index variable follows the I<TYPE3> naming convention (e.g.
202  ! IEVT, IRCH), consistent with the in_scope check in LoadContext.
203  if (this%param_reads(1)%invar == 0) then
204  if (this%param_names(1) == &
205  'I'//trim(this%mf6_input%subcomponent_type(1:3))) then
206  idt => get_param_definition_type(this%mf6_input%param_dfns, &
207  this%mf6_input%component_type, &
208  this%mf6_input%subcomponent_type, &
209  'PERIOD', this%param_names(1), &
210  this%input_name)
211  ! set to default of 1 without updating invar
212  call mem_setptr(int1d, idt%mf6varname, this%mf6_input%mempath)
213  int1d = 1
214  end if
215  end if
216 
217  if (this%tas_active /= 0) then
218  call this%tas_links_create(parser%iuactive)
219  end if
220 
221  ! log lst file header
222  call idm_log_close(this%mf6_input%component_name, &
223  this%mf6_input%subcomponent_name, this%iout)
224  end subroutine rp
225 
226  subroutine destroy(this)
227  class(layerarrayloadtype), intent(inout) :: this
228  !
229  ! nullify ctx pointers (including mshape) before deallocate
230  call this%ctx%destroy()
231  !
232  ! deallocate tasmanager
233  call this%tasmanager%da()
234  deallocate (this%tasmanager)
235  nullify (this%tasmanager)
236  end subroutine destroy
237 
238  subroutine reset(this)
239  class(layerarrayloadtype), intent(inout) :: this
240  integer(I4B) :: n
241 
242  if (this%tas_active /= 0) then
243  ! reset tasmanager
244  call this%tasmanager%reset(this%mf6_input%subcomponent_name)
245  ! reinitialize tas name arrays
246  call this%init_charstr1d('AUXTASNAME', this%input_name)
247  call this%init_charstr1d('PARAMTASNAME', this%input_name)
248  end if
249 
250  do n = 1, this%nparam
251  ! reset read state
252  this%param_reads(n)%invar = 0
253  end do
254 
255  end subroutine reset
256 
257  subroutine init_charstr1d(this, varname, input_name)
259  class(layerarrayloadtype) :: this
260  character(len=*), intent(in) :: varname
261  character(len=*), intent(in) :: input_name
262  type(characterstringtype), dimension(:), pointer, &
263  contiguous :: charstr1d
264  integer(I4B) :: n
265  call mem_setptr(charstr1d, varname, this%mf6_input%mempath)
266  do n = 1, size(charstr1d)
267  charstr1d(n) = ''
268  end do
269  end subroutine init_charstr1d
270 
271  subroutine params_alloc(this)
272  class(layerarrayloadtype), intent(inout) :: this
273  character(len=LENVARNAME) :: rs_varname
274  integer(I4B), pointer :: intvar
275  integer(I4B) :: iparam
276 
277  ! set in scope param names
278  call this%ctx%tags(this%param_names, this%nparam, this%input_name, &
279  create=.true.)
280  call this%ctx%allocate_arrays()
281 
282  ! allocate and set param_reads pointer array
283  allocate (this%param_reads(this%nparam))
284 
285  ! store read state variable pointers
286  do iparam = 1, this%nparam
287  ! allocate and store name of read state variable
288  rs_varname = this%ctx%rsv_alloc(this%param_names(iparam))
289  call mem_setptr(intvar, rs_varname, this%mf6_input%mempath)
290  this%param_reads(iparam)%invar => intvar
291  this%param_reads(iparam)%invar = 0
292  end do
293  end subroutine params_alloc
294 
295  subroutine param_load(this, parser, idt, mempath, netcdf, iaux)
296  use tdismodule, only: kper
298  use arrayhandlersmodule, only: ifind
305  use idmloggermodule, only: idm_log_var
306  class(layerarrayloadtype), intent(inout) :: this
307  type(blockparsertype), intent(in) :: parser
308  type(inputparamdefinitiontype), intent(in) :: idt
309  character(len=*), intent(in) :: mempath
310  logical(LGP), intent(in) :: netcdf
311  integer(I4B), intent(in) :: iaux
312  integer(I4B), dimension(:), pointer, contiguous :: int1d
313  real(DP), dimension(:), pointer, contiguous :: dbl1d
314  real(DP), dimension(:, :), pointer, contiguous :: dbl2d
315  integer(I4B) :: iparam, n
316 
317  select case (idt%datatype)
318  case ('INTEGER1D')
319  call mem_setptr(int1d, idt%mf6varname, mempath)
320  if (netcdf) then
321  call netcdf_read_array(int1d, this%ctx%mshape, idt, &
322  this%mf6_input, this%nc_vars, this%input_name, &
323  this%iout, kper)
324  else
325  call read_int1d(parser, int1d, idt%mf6varname)
326  end if
327  call idm_log_var(int1d, idt%tagname, mempath, this%iout)
328  case ('DOUBLE1D')
329  call mem_setptr(dbl1d, idt%mf6varname, mempath)
330  if (netcdf) then
331  call netcdf_read_array(dbl1d, this%ctx%mshape, idt, &
332  this%mf6_input, this%nc_vars, this%input_name, &
333  this%iout, kper)
334  else
335  call read_dbl1d(parser, dbl1d, idt%mf6varname)
336  end if
337  call idm_log_var(dbl1d, idt%tagname, mempath, this%iout)
338  case ('DOUBLE2D')
339  call mem_setptr(dbl2d, idt%mf6varname, mempath)
340  allocate (dbl1d(this%ctx%ncpl))
341  if (netcdf) then
342  call netcdf_read_array(dbl1d, this%ctx%mshape, idt, &
343  this%mf6_input, this%nc_vars, this%input_name, &
344  this%iout, kper, iaux)
345  else
346  call read_dbl1d(parser, dbl1d, idt%mf6varname)
347  end if
348  do n = 1, this%ctx%ncpl
349  dbl2d(iaux, n) = dbl1d(n)
350  end do
351  call idm_log_var(dbl1d, idt%tagname, mempath, this%iout)
352  deallocate (dbl1d)
353  case default
354  errmsg = 'IDM unimplemented. LayerArrayLoad::param_load &
355  &datatype='//trim(idt%datatype)
356  call store_error(errmsg)
357  call store_error_filename(this%input_name)
358  end select
359 
360  ! if param is tracked set read state
361  iparam = ifind(this%param_names, idt%tagname)
362  if (iparam > 0) then
363  this%param_reads(iparam)%invar = 1
364  end if
365  end subroutine param_load
366 
367  subroutine tas_arrays_alloc(this)
369  class(layerarrayloadtype), intent(inout) :: this
370 
371  ! count params other than AUX
372  if (this%tas_active /= 0) then
373  call mem_allocate(this%aux_tasnames, lentimeseriesname, &
374  this%ctx%naux, 'AUXTASNAME', &
375  this%mf6_input%mempath)
376  call mem_allocate(this%param_tasnames, lentimeseriesname, this%nparam, &
377  'PARAMTASNAME', this%mf6_input%mempath)
378  call this%init_charstr1d('AUXTASNAME', this%input_name)
379  call this%init_charstr1d('PARAMTASNAME', this%input_name)
380  else
381  call mem_allocate(this%aux_tasnames, lentimeseriesname, 0, &
382  'AUXTASNAME', this%mf6_input%mempath)
383  call mem_allocate(this%param_tasnames, lentimeseriesname, 0, &
384  'PARAMTASNAME', this%mf6_input%mempath)
385  end if
386  end subroutine tas_arrays_alloc
387 
388  ! FLUX and SFAC are handled in model context
389  subroutine tas_links_create(this, inunit)
392  class(layerarrayloadtype), intent(inout) :: this
393  integer(I4B), intent(in) :: inunit
394  type(inputparamdefinitiontype), pointer :: idt
395  ! non-contiguous because a slice of bound is passed
396  real(DP), dimension(:), pointer :: auxArrayPtr, bndArrayPtr
397  real(DP), dimension(:), pointer, contiguous :: bound
398  integer(I4B), dimension(:), pointer, contiguous :: nodelist
399  character(len=LENTIMESERIESNAME) :: tas_name
400  character(len=LENAUXNAME) :: aux_name
401  logical :: convertFlux
402  integer(I4B) :: n
403 
404  ! initialize
405  nullify (auxarrayptr)
406  nullify (bndarrayptr)
407  nullify (nodelist)
408  convertflux = .false.
409 
410  ! Create AUX Time Array Series links
411  do n = 1, this%ctx%naux
412  tas_name = this%aux_tasnames(n)
413  if (tas_name /= '') then
414  ! set auxvar pointer
415  auxarrayptr => this%ctx%auxvar(n, :)
416  aux_name = this%ctx%auxname_cst(n)
417  call this%tasmanager%MakeTasLink(this%mf6_input%subcomponent_name, &
418  auxarrayptr, this%ctx%iprpak, &
419  tas_name, aux_name, convertflux, &
420  nodelist, inunit)
421  end if
422  end do
423 
424  ! Create BND Time Array Series links
425  do n = 1, this%nparam
426  ! assign param definition pointer
427  idt => get_param_definition_type(this%mf6_input%param_dfns, &
428  this%mf6_input%component_type, &
429  this%mf6_input%subcomponent_type, &
430  'PERIOD', this%param_names(n), &
431  this%input_name)
432  if (idt%timeseries) then
433  if (this%param_reads(n)%invar == 2) then
434  tas_name = this%param_tasnames(n)
435  call mem_setptr(bound, idt%mf6varname, this%mf6_input%mempath)
436  ! set bound pointer
437  bndarrayptr => bound(:)
438  call this%tasmanager%MakeTasLink(this%mf6_input%subcomponent_name, &
439  bndarrayptr, &
440  this%ctx%iprpak, &
441  tas_name, idt%mf6varname, &
442  convertflux, nodelist, inunit)
443  end if
444  end if
445  end do
446  end subroutine tas_links_create
447 
448 end module layerarrayloadmodule
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
integer(i4b), parameter lentimeseriesname
maximum length of a time series name
Definition: Constants.f90:42
integer(i4b), parameter lenvarname
maximum length of a variable name
Definition: Constants.f90:17
integer(i4b), parameter lenauxname
maximum length of a aux variable
Definition: Constants.f90:35
integer(i4b), parameter izero
integer constant zero
Definition: Constants.f90:51
real(dp), parameter dzero
real constant zero
Definition: Constants.f90:65
This module contains the DefinitionSelectModule.
type(inputparamdefinitiontype) function, pointer, public get_param_definition_type(input_definition_types, component_type, subcomponent_type, blockname, tagname, filename, found)
Return parameter definition.
subroutine, public read_dbl1d(parser, dbl1d, aname)
subroutine, public read_dbl2d(parser, dbl2d, aname)
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
Input definition module.
subroutine, public read_int1d(parser, int1d, aname)
This module defines variable data types.
Definition: kind.f90:8
This module contains the LayerArrayLoadModule.
subroutine destroy(this)
subroutine param_load(this, parser, idt, mempath, netcdf, iaux)
subroutine ts_advance(this)
subroutine tas_arrays_alloc(this)
subroutine tas_links_create(this, inunit)
subroutine ainit(this, mf6_input, component_name, component_input_name, input_name, iperblock, parser, iout)
subroutine rp(this, parser)
subroutine init_charstr1d(this, varname, input_name)
subroutine params_alloc(this)
This module contains the LoadContextModule.
Definition: LoadContext.f90:10
This module contains the LoadMf6FileModule.
Definition: LoadMf6File.f90:8
This module contains the LoadNCInputModule.
Definition: LoadNCInput.F90:7
subroutine, public get_isize(name, mem_path, isize)
@ brief Get the number of elements for this variable
This module contains the ModflowInputModule.
Definition: ModflowInput.f90:9
This module contains simulation methods.
Definition: Sim.f90:10
subroutine, public store_error(msg, terminate)
Store an error message.
Definition: Sim.f90:92
subroutine, public store_error_filename(filename, terminate)
Store the erroring file name.
Definition: Sim.f90:203
This module contains simulation variables.
Definition: SimVariables.f90:9
character(len=maxcharlen) errmsg
error message string
This module contains the SourceCommonModule.
Definition: SourceCommon.f90:7
integer(i4b) function, public ifind_charstr(array, str)
integer(i4b), pointer, public kper
current stress period number
Definition: tdis.f90:26
subroutine, public tasmanager_cr(this, dis, modelname, iout)
Create the time-array series manager.
base abstract type for ascii source dynamic load
This class is used to store a single deferred-length character string. It was designed to work in an ...
Definition: CharString.f90:23
Input parameter definition. Describes an input parameter.
Ascii array layer dynamic loader type.
derived type for boundary package input context
Definition: LoadContext.f90:65
Pointer type for read state variable.
Definition: LoadContext.f90:50
Static parser based input loader.
Definition: LoadMf6File.f90:54
derived type for storing input definition for a file