70 character(len=*),
intent(in) :: keyword
86 integer(I4B),
intent(in) :: n
87 character(len=*),
intent(in) :: varname
89 real(dp),
pointer :: bndelem
103 integer(I4B),
intent(in) :: kper
104 integer(I4B),
intent(in) :: kstp
133 integer(I4B),
intent(in) :: n
134 character(len=*),
intent(in) :: varName
145 subroutine init(this, name_model, pakname, ftype, inunit, iout)
148 character(len=*),
intent(in) :: name_model
149 character(len=*),
intent(in) :: pakname
150 character(len=*),
intent(in) :: ftype
151 integer(I4B),
intent(in) :: inunit
152 integer(I4B),
intent(in) :: iout
154 call this%set_names(1, name_model, pakname, ftype)
155 call this%tvbase_allocate_scalars()
158 call this%parser%Initialize(this%inunit, this%iout)
170 call this%NumericalPackageType%allocate_scalars()
173 allocate (this%tsmanager)
180 subroutine ar(this, dis)
187 call this%ar_set_pointers()
192 removetslinksoncompletion=.true., &
193 extendtstoendofsimulation=.true.)
196 call this%read_options()
200 call this%tsmanager%tsmanager_df()
204 call this%parser%StoreErrorUnit()
218 character(len=LINELENGTH) :: keyword
219 character(len=MAXCHARLEN) :: fname
221 logical :: endOfBlock
224 character(len=*),
parameter :: fmtts = &
225 &
"(4x, 'TIME-SERIES DATA WILL BE READ FROM FILE: ', a)"
228 call this%parser%GetBlock(
'OPTIONS', isfound, ierr, &
229 blockrequired=.false., supportopenclose=.true.)
233 write (this%iout,
'(1x,a)') &
234 'PROCESSING '//trim(adjustl(this%packName))//
' OPTIONS'
236 call this%parser%GetNextLine(endofblock)
240 call this%parser%GetStringCaps(keyword)
241 select case (keyword)
244 write (this%iout,
'(4x,a)')
'TIME-VARYING INPUT WILL BE PRINTED.'
248 call this%parser%GetStringCaps(keyword)
249 if (trim(adjustl(keyword)) /=
'FILEIN')
then
251 'TS6 keyword must be followed by "FILEIN" then by filename.'
253 call this%parser%StoreErrorUnit()
256 call this%parser%GetString(fname)
257 write (this%iout, fmtts) trim(fname)
258 call this%tsmanager%add_tsfile(fname, this%inunit)
263 if (.not. this%read_option(keyword))
then
264 write (
errmsg,
'(a,3(1x,a),a)') &
265 'Unknown', trim(adjustl(this%packName)),
"option '", &
271 write (this%iout,
'(1x,a)') &
272 'END OF '//trim(adjustl(this%packName))//
' OPTIONS'
284 character(len=LINELENGTH) :: line, cellid, varName, text
285 logical :: isfound, endOfBlock, haveChanges
286 integer(I4B) :: ierr, node
287 real(DP),
pointer :: bndElem => null()
289 character(len=*),
parameter :: fmtblkerr = &
290 &
"('Looking for BEGIN PERIOD iper. Found ', a, ' instead.')"
291 character(len=*),
parameter :: fmtvalchg = &
292 "(a, ' package: Setting ', a, ' value for cell ', a, ' at start of &
293 &stress period ', i0, ' = ', g12.5)"
295 if (this%inunit == 0)
return
298 if (this%ionper <
kper)
then
301 call this%parser%GetBlock(
'PERIOD', isfound, ierr, &
302 supportopenclose=.true., &
303 blockrequired=.false.)
307 call this%read_check_ionper()
313 this%ionper =
nper + 1
316 call this%parser%GetCurrentLine(line)
317 write (
errmsg, fmtblkerr) adjustl(trim(line))
324 if (this%ionper ==
kper)
then
327 call this%reset_change_flags()
329 havechanges = .false.
331 call this%parser%GetNextLine(endofblock)
337 call this%parser%GetCellid(this%dis%ndim, cellid)
338 node = this%dis%noder_from_cellid(cellid, this%parser%iuactive, &
342 if (node < 1 .or. node > this%dis%nodes)
then
343 write (
errmsg,
'(a,2(1x,a))') &
344 'CELLID', cellid,
'is not in the active model domain.'
350 call this%parser%GetStringCaps(varname)
354 bndelem => this%get_pointer_to_value(node, varname)
355 if (.not.
associated(bndelem))
then
356 write (
errmsg,
'(a,3(1x,a),a)') &
357 'Unknown', trim(adjustl(this%packName)),
"variable '", &
364 call this%parser%GetString(text)
366 this%packName,
'BND', &
367 this%tsmanager, this%iprpak, &
371 if (this%iprpak /= 0)
then
372 write (this%iout, fmtvalchg) &
373 trim(adjustl(this%packName)), trim(varname), trim(cellid), &
378 call this%validate_change(node, varname)
384 if (havechanges)
then
385 call this%set_changed_at(
kper, 1)
391 call this%parser%StoreErrorUnit()
404 integer(I4B) :: i, n, numlinks
409 call this%tsmanager%ad()
413 numlinks = this%tsmanager%CountLinks(
'BND')
414 if (numlinks <= 0)
then
420 call this%set_changed_at(
kper,
kstp)
425 call this%reset_change_flags()
430 tslink => this%tsmanager%GetLink(
'BND', i)
432 call this%validate_change(n, tslink%Text)
437 call this%parser%StoreErrorUnit()
451 deallocate (this%tsmanager)
454 call this%NumericalPackageType%da()
Announce package and set pointers to variables.
Get an array value pointer given a variable name and node index.
Announce package and set pointers to variables.
Clear all per-node change flags.
Mark property changes as having occurred at (kper, kstp)
Check that a given property value is valid.
This module contains simulation constants.
integer(i4b), parameter linelength
maximum length of a standard line
real(dp), parameter dzero
real constant zero
integer(i4b), parameter maxcharlen
maximum length of char string
This module defines variable data types.
This module contains the base numerical package type.
This module contains simulation methods.
subroutine, public ustop(stopmess, ioutlocal)
Stop the simulation.
subroutine, public store_error(msg, terminate)
Store an error message.
integer(i4b) function, public count_errors()
Return number of errors.
This module contains simulation variables.
character(len=maxcharlen) errmsg
error message string
integer(i4b), pointer, public kstp
current time step number
integer(i4b), pointer, public kper
current stress period number
integer(i4b), pointer, public nper
number of stress period
subroutine, public read_value_or_time_series_adv(textInput, ii, jj, bndElem, pkgName, auxOrBnd, tsManager, iprpak, varName)
Call this subroutine from advanced packages to define timeseries link for a variable (varName).
subroutine, public tsmanager_cr(this, iout, removeTsLinksOnCompletion, extendTsToEndOfSimulation)
Create the tsmanager.
This module contains common time-varying property functionality.
subroutine read_options(this)
Read OPTIONS block of package input file.
subroutine, public tvbase_da(this)
Deallocate package memory.
subroutine tvbase_allocate_scalars(this)
Allocate scalar variables.
subroutine rp(this)
Read and prepare method for package.
subroutine ad(this)
Advance the package.
subroutine ar(this, dis)
Allocate and read method for package.