MODFLOW 6  version 6.8.0.dev0
USGS Modular Hydrologic Model
gwf-drn.f90
Go to the documentation of this file.
1 module drnmodule
2  use kindmodule, only: dp, i4b
3  use constantsmodule, only: dzero, done, dtwo, &
5  use simvariablesmodule, only: errmsg
10  use bndmodule, only: bndtype
11  use bndextmodule, only: bndexttype
14  !
15  implicit none
16  !
17  private
18  public :: drn_create
19  public :: drntype
20  !
21  character(len=LENFTYPE) :: ftype = 'DRN'
22  character(len=LENPACKAGENAME) :: text = ' DRN'
23  !
24  type, extends(bndexttype) :: drntype
25 
26  real(dp), dimension(:), pointer, contiguous :: elev => null() !< DRN elevation
27  real(dp), dimension(:), pointer, contiguous :: cond => null() !< DRN conductance at aquifer interface
28  integer(I4B), pointer :: iauxddrncol => null()
29  integer(I4B), pointer :: icubic_scaling => null()
30 
31  contains
32 
33  procedure :: allocate_scalars => drn_allocate_scalars
34  procedure :: allocate_arrays => drn_allocate_arrays
35  procedure :: source_options => drn_options
36  procedure :: log_drn_options
37  procedure :: bnd_rp => drn_rp
38  procedure :: bnd_ck => drn_ck
39  procedure :: bnd_cf => drn_cf
40  procedure :: bnd_fc => drn_fc
41  procedure :: bnd_fn => drn_fn
42  procedure :: bnd_da => drn_da
43  procedure :: define_listlabel
44  procedure :: get_drain_elevations
45  procedure :: get_drain_factor
46  procedure :: bound_value => drn_bound_value
47  procedure :: cond_mult
48  ! -- methods for observations
49  procedure, public :: bnd_obs_supported => drn_obs_supported
50  procedure, public :: bnd_df_obs => drn_df_obs
51  procedure, public :: drn_store_user_cond
52  end type drntype
53 
54 contains
55 
56  !> @brief Create a New Drn Package and point packobj to the new package
57  !<
58  subroutine drn_create(packobj, id, ibcnum, inunit, iout, namemodel, pakname, &
59  mempath)
60  ! -- dummy
61  class(bndtype), pointer :: packobj
62  integer(I4B), intent(in) :: id
63  integer(I4B), intent(in) :: ibcnum
64  integer(I4B), intent(in) :: inunit
65  integer(I4B), intent(in) :: iout
66  character(len=*), intent(in) :: namemodel
67  character(len=*), intent(in) :: pakname
68  character(len=*), intent(in) :: mempath
69  ! -- local
70  type(drntype), pointer :: drnobj
71  !
72  ! -- allocate the object and assign values to object variables
73  allocate (drnobj)
74  packobj => drnobj
75  !
76  ! -- create name and memory path
77  call packobj%set_names(ibcnum, namemodel, pakname, ftype, mempath)
78  packobj%text = text
79  !
80  ! -- allocate scalars
81  call drnobj%allocate_scalars()
82  !s
83  ! -- initialize package
84  call packobj%pack_initialize()
85  !
86  ! -- initialize
87  packobj%inunit = inunit
88  packobj%iout = iout
89  packobj%id = id
90  packobj%ibcnum = ibcnum
91  packobj%ncolbnd = 2
92  packobj%ictMemPath = create_mem_path(namemodel, 'NPF')
93  end subroutine drn_create
94 
95  !> @brief Deallocate memory
96  !<
97  subroutine drn_da(this)
98  ! -- modules
100  ! -- dummy
101  class(drntype) :: this
102  !
103  ! -- Deallocate parent package
104  call this%BndExtType%bnd_da()
105  !
106  ! -- scalars
107  call mem_deallocate(this%iauxddrncol)
108  call mem_deallocate(this%icubic_scaling)
109  !
110  ! -- arrays
111  call mem_deallocate(this%elev, 'ELEV', this%memoryPath)
112  call mem_deallocate(this%cond, 'COND', this%memoryPath)
113  end subroutine drn_da
114 
115  !> @brief Allocate package scalar members
116  !<
117  subroutine drn_allocate_scalars(this)
118  ! -- modules
120  ! -- dummy
121  class(drntype) :: this
122  !
123  ! -- call base type allocate scalars
124  call this%BndExtType%allocate_scalars()
125  !
126  ! -- allocate the object and assign values to object variables
127  call mem_allocate(this%iauxddrncol, 'IAUXDDRNCOL', this%memoryPath)
128  call mem_allocate(this%icubic_scaling, 'ICUBIC_SCALING', this%memoryPath)
129  !
130  ! -- Set values
131  this%iauxddrncol = 0
132  if (this%inewton /= 0) then
133  this%icubic_scaling = 1
134  else
135  this%icubic_scaling = 0
136  end if
137  end subroutine drn_allocate_scalars
138 
139  !> @brief Allocate package arrays
140  !<
141  subroutine drn_allocate_arrays(this, nodelist, auxvar)
142  ! -- modules
144  ! -- dummy
145  class(drntype) :: this
146  integer(I4B), dimension(:), pointer, contiguous, optional :: nodelist
147  real(DP), dimension(:, :), pointer, contiguous, optional :: auxvar
148  !
149  ! -- call base type allocate arrays
150  call this%BndExtType%allocate_arrays(nodelist, auxvar)
151  !
152  ! -- set drn input context pointers
153  call mem_setptr(this%elev, 'ELEV', this%input_mempath)
154  call mem_setptr(this%cond, 'COND', this%input_mempath)
155  !
156  ! --checkin drn input context pointers
157  call mem_checkin(this%elev, 'ELEV', this%memoryPath, &
158  'ELEV', this%input_mempath)
159  call mem_checkin(this%cond, 'COND', this%memoryPath, &
160  'COND', this%input_mempath)
161  end subroutine drn_allocate_arrays
162 
163  !> @brief Read and prepare
164  !<
165  subroutine drn_rp(this)
166  use tdismodule, only: kper
167  ! -- dummy
168  class(drntype), intent(inout) :: this
169  !
170  if (this%iper /= kper) return
171  !
172  ! -- Call the parent class read and prepare
173  call this%BndExtType%bnd_rp()
174  !
175  ! -- store user cond
176  if (this%ivsc == 1) then
177  call this%drn_store_user_cond()
178  end if
179  end subroutine drn_rp
180 
181  !> @brief Source options specific to DrnType
182  !<
183  subroutine drn_options(this)
184  ! -- modules
185  use inputoutputmodule, only: urword
189  ! -- dummy
190  class(drntype), intent(inout) :: this
191  ! -- local
192  type(gwfdrnparamfoundtype) :: found
193  character(len=LENAUXNAME) :: ddrnauxname
194  integer(I4B) :: n
195  !
196  ! -- source base class options
197  call this%BndExtType%source_options()
198  !
199  ! -- source drain options
200  call mem_set_value(this%imover, 'MOVER', this%input_mempath, found%mover)
201  call mem_set_value(ddrnauxname, 'AUXDEPTHNAME', this%input_mempath, &
202  found%auxdepthname)
203  call mem_set_value(this%icubic_scaling, 'ICUBICSFAC', this%input_mempath, &
204  found%icubicsfac)
205  !
206  if (found%auxdepthname) then
207  this%iauxddrncol = -1
208  !
209  ! -- Error if no aux variable specified
210  if (this%naux == 0) then
211  write (errmsg, '(a,2(1x,a))') &
212  'AUXDEPTHNAME was specified as', trim(adjustl(ddrnauxname)), &
213  'but no AUX variables specified.'
214  call store_error(errmsg)
215  end if
216  !
217  ! -- Assign ddrn column
218  this%iauxddrncol = 0
219  do n = 1, this%naux
220  if (ddrnauxname == this%auxname(n)) then
221  this%iauxddrncol = n
222  exit
223  end if
224  end do
225  !
226  ! -- Error if aux variable cannot be found
227  if (this%iauxddrncol == 0) then
228  write (errmsg, '(a,2(1x,a))') &
229  'AUXDEPTHNAME was specified as', trim(adjustl(ddrnauxname)), &
230  'but no AUX variable found with this name.'
231  call store_error(errmsg)
232  end if
233  end if
234  !
235  ! -- log DRN specific options
236  call this%log_drn_options(found)
237  end subroutine drn_options
238 
239  !> @ brief Log DRN specific package options
240  !<
241  subroutine log_drn_options(this, found)
242  ! -- modules
244  ! -- dummy variables
245  class(drntype), intent(inout) :: this
246  type(gwfdrnparamfoundtype), intent(in) :: found
247  ! -- local variables
248  ! -- format
249  !
250  ! -- log found options
251  write (this%iout, '(/1x,a)') 'PROCESSING '//trim(adjustl(this%text)) &
252  //' OPTIONS'
253  !
254  if (found%mover) then
255  write (this%iout, '(4x,A)') 'MOVER OPTION ENABLED'
256  end if
257  !
258  if (found%icubicsfac) then
259  write (this%iout, '(4x,a,1x,a)') &
260  'CUBIC SCALING will be used for drains with non-zero DDRN values', &
261  'even if the NEWTON-RAPHSON method is not being used.'
262  end if
263  !
264  ! -- close logging block
265  write (this%iout, '(1x,a)') &
266  'END OF '//trim(adjustl(this%text))//' OPTIONS'
267  end subroutine log_drn_options
268 
269  !> @brief Check drain boundary condition data
270  !<
271  subroutine drn_ck(this)
272  ! -- dummy
273  class(drntype), intent(inout) :: this
274  ! -- local
275  integer(I4B) :: i
276  integer(I4B) :: node
277  real(DP) :: bt
278  real(DP) :: drndepth
279  real(DP) :: drntop
280  real(DP) :: drnbot
281  ! -- formats
282  character(len=*), parameter :: fmtddrnerr = &
283  "('SCALED-CONDUCTANCE DRN BOUNDARY (',i0,') BOTTOM ELEVATION &
284  &(',f10.3,') IS LESS THAN CELL BOTTOM (',f10.3,')')"
285  character(len=*), parameter :: fmtdrnerr = &
286  "('DRN BOUNDARY (',i0,') ELEVATION (',f10.3,') IS LESS THAN CELL &
287  &BOTTOM (',f10.3,')')"
288  character(len=*), parameter :: fmtcondmulterr = &
289  "('DRN BOUNDARY (',i0,') CONDUCTANCE MULTIPLIER (',g10.3,') IS &
290  &LESS THAN ZERO')"
291  character(len=*), parameter :: fmtconderr = &
292  "('DRN BOUNDARY (',i0,') CONDUCTANCE (',g10.3,') IS LESS THAN &
293  &ZERO')"
294  !
295  ! -- check stress period data
296  do i = 1, this%nbound
297  node = this%nodelist(i)
298  bt = this%dis%bot(node)
299  !
300  ! -- calculate the drainage depth and the top and bottom of
301  ! the conductance scaling elevations
302  call this%get_drain_elevations(i, drndepth, drntop, drnbot)
303  !
304  ! -- accumulate errors
305  if (drnbot < bt .and. this%icelltype(node) /= 0) then
306  if (drndepth /= dzero) then
307  write (errmsg, fmt=fmtddrnerr) i, drnbot, bt
308  else
309  write (errmsg, fmt=fmtdrnerr) i, drnbot, bt
310  end if
311  call store_error(errmsg)
312  end if
313  if (this%iauxmultcol > 0) then
314  if (this%auxvar(this%iauxmultcol, i) < dzero) then
315  write (errmsg, fmt=fmtcondmulterr) &
316  i, this%auxvar(this%iauxmultcol, i)
317  call store_error(errmsg)
318  end if
319  end if
320  if (this%cond(i) < dzero) then
321  write (errmsg, fmt=fmtconderr) i, this%cond(i)
322  call store_error(errmsg)
323  end if
324  end do
325  !
326  ! -- write summary of drain package error messages
327  if (count_errors() > 0) then
328  call store_error_filename(this%input_fname)
329  end if
330  end subroutine drn_ck
331 
332  !> @brief Formulate the HCOF and RHS terms
333  !!
334  !! Skip if no drains
335  !<
336  subroutine drn_cf(this)
337  ! -- dummy
338  class(drntype) :: this
339  ! -- local
340  integer(I4B) :: i
341  integer(I4B) :: node
342  real(DP) :: cdrn
343  real(DP) :: drnbot
344  real(DP) :: fact
345  !
346  ! -- Return if no drains
347  if (this%nbound == 0) return
348  !
349  ! -- Calculate hcof and rhs for each drn entry
350  do i = 1, this%nbound
351  node = this%nodelist(i)
352  if (this%ibound(node) <= 0) then
353  this%hcof(i) = dzero
354  this%rhs(i) = dzero
355  cycle
356  end if
357  !
358  ! -- set local variables for this drain
359  cdrn = this%cond_mult(i)
360 
361  !
362  ! -- calculate the drainage scaling factor
363  call this%get_drain_factor(i, fact, drnbot)
364  !
365  ! -- calculate rhs and hcof
366  this%rhs(i) = -fact * cdrn * drnbot
367  this%hcof(i) = -fact * cdrn
368  end do
369  end subroutine drn_cf
370 
371  !> @brief Copy rhs and hcof into solution rhs and amat
372  !<
373  subroutine drn_fc(this, rhs, ia, idxglo, matrix_sln)
374  ! -- dummy
375  class(drntype) :: this
376  real(DP), dimension(:), intent(inout) :: rhs
377  integer(I4B), dimension(:), intent(in) :: ia
378  integer(I4B), dimension(:), intent(in) :: idxglo
379  class(matrixbasetype), pointer :: matrix_sln
380  ! -- local
381  integer(I4B) :: i
382  integer(I4B) :: n
383  integer(I4B) :: ipos
384  real(DP) :: fact
385  real(DP) :: drnbot
386  real(DP) :: drncond
387  real(DP) :: qdrn
388  !
389  ! -- packmvrobj fc
390  if (this%imover == 1) then
391  call this%pakmvrobj%fc()
392  end if
393  !
394  ! -- Copy package rhs and hcof into solution rhs and amat
395  do i = 1, this%nbound
396  n = this%nodelist(i)
397  rhs(n) = rhs(n) + this%rhs(i)
398  ipos = ia(n)
399  call matrix_sln%add_value_pos(idxglo(ipos), this%hcof(i))
400  !
401  ! -- calculate the drainage scaling factor
402  call this%get_drain_factor(i, fact, drnbot)
403  !
404  ! -- If mover is active and this drain is discharging,
405  ! store available water (as positive value).
406  if (this%imover == 1 .and. fact > dzero) then
407  drncond = this%cond_mult(i)
408  qdrn = fact * drncond * (this%xnew(n) - drnbot)
409  call this%pakmvrobj%accumulate_qformvr(i, qdrn)
410  end if
411  end do
412  end subroutine drn_fc
413 
414  !> @brief Fill newton terms
415  !<
416  subroutine drn_fn(this, rhs, ia, idxglo, matrix_sln)
417  implicit none
418  ! -- dummy
419  class(drntype) :: this
420  real(DP), dimension(:), intent(inout) :: rhs
421  integer(I4B), dimension(:), intent(in) :: ia
422  integer(I4B), dimension(:), intent(in) :: idxglo
423  class(matrixbasetype), pointer :: matrix_sln
424  ! -- local
425  integer(I4B) :: i
426  integer(I4B) :: node
427  integer(I4B) :: ipos
428  real(DP) :: cdrn
429  real(DP) :: xnew
430  real(DP) :: drndepth
431  real(DP) :: drntop
432  real(DP) :: drnbot
433  real(DP) :: drterm
434  !
435  ! -- Copy package rhs and hcof into solution rhs and amat
436  if (this%iauxddrncol /= 0) then
437  do i = 1, this%nbound
438  node = this%nodelist(i)
439  !
440  ! -- test if node is constant or inactive
441  if (this%ibound(node) <= 0) then
442  cycle
443  end if
444  !
445  ! -- set local variables for this drain
446  cdrn = this%cond_mult(i)
447  xnew = this%xnew(node)
448  !
449  ! -- calculate the drainage depth and the top and bottom of
450  ! the conductance scaling elevations
451  call this%get_drain_elevations(i, drndepth, drntop, drnbot)
452  !
453  ! -- calculate scaling factor
454  if (drndepth /= dzero) then
455  drterm = sqsaturationderivative(drntop, drnbot, xnew, &
456  c1=-done, c2=dtwo)
457  drterm = drterm * cdrn * (drnbot - xnew)
458  !
459  ! -- fill amat and rhs with newton-raphson terms
460  ipos = ia(node)
461  call matrix_sln%add_value_pos(idxglo(ipos), drterm)
462  rhs(node) = rhs(node) + drterm * xnew
463  end if
464  end do
465  end if
466  end subroutine drn_fn
467 
468  !> @brief Define the list heading that is written to iout when PRINT_INPUT
469  !! option is used
470  !<
471  subroutine define_listlabel(this)
472  ! -- dummy
473  class(drntype), intent(inout) :: this
474  !
475  ! -- create the header list label
476  this%listlabel = trim(this%filtyp)//' NO.'
477  if (this%dis%ndim == 3) then
478  write (this%listlabel, '(a, a7)') trim(this%listlabel), 'LAYER'
479  write (this%listlabel, '(a, a7)') trim(this%listlabel), 'ROW'
480  write (this%listlabel, '(a, a7)') trim(this%listlabel), 'COL'
481  elseif (this%dis%ndim == 2) then
482  write (this%listlabel, '(a, a7)') trim(this%listlabel), 'LAYER'
483  write (this%listlabel, '(a, a7)') trim(this%listlabel), 'CELL2D'
484  else
485  write (this%listlabel, '(a, a7)') trim(this%listlabel), 'NODE'
486  end if
487  write (this%listlabel, '(a, a16)') trim(this%listlabel), 'DRAIN EL.'
488  write (this%listlabel, '(a, a16)') trim(this%listlabel), 'CONDUCTANCE'
489  if (this%inamedbound == 1) then
490  write (this%listlabel, '(a, a16)') trim(this%listlabel), 'BOUNDARY NAME'
491  end if
492  end subroutine define_listlabel
493 
494  !> @brief Define drain depth and the top and bottom elevations used to scale
495  !! the drain conductance
496  !<
497  subroutine get_drain_elevations(this, i, drndepth, drntop, drnbot)
498  ! -- dummy
499  class(drntype), intent(inout) :: this
500  integer(I4B), intent(in) :: i
501  real(DP), intent(inout) :: drndepth
502  real(DP), intent(inout) :: drntop
503  real(DP), intent(inout) :: drnbot
504  ! -- local
505  real(DP) :: drnelev
506  real(DP) :: elev
507  !
508  ! -- initialize dummy and local variables
509  drndepth = dzero
510  drnelev = this%elev(i)
511  !
512  ! -- set the drain depth
513  if (this%iauxddrncol > 0) then
514  drndepth = this%auxvar(this%iauxddrncol, i)
515  end if
516  !
517  ! -- calculate the top and bottom drain elevations
518  if (drndepth /= dzero) then
519  elev = drnelev + drndepth
520  drntop = max(elev, drnelev)
521  drnbot = min(elev, drnelev)
522  else
523  drntop = drnelev
524  drnbot = drnelev
525  end if
526  end subroutine get_drain_elevations
527 
528  !> @brief Get the drain conductance scale factor
529  !<
530  subroutine get_drain_factor(this, i, factor, opt_drnbot)
531  ! -- dummy
532  class(drntype), intent(inout) :: this
533  integer(I4B), intent(in) :: i
534  real(DP), intent(inout) :: factor
535  real(DP), intent(inout), optional :: opt_drnbot
536  ! -- local
537  integer(I4B) :: node
538  real(DP) :: xnew
539  real(DP) :: drndepth
540  real(DP) :: drntop
541  real(DP) :: drnbot
542  !
543  ! -- set local variables for this drain
544  node = this%nodelist(i)
545  xnew = this%xnew(node)
546  !
547  ! -- calculate the drainage depth and the top and bottom of
548  ! the conductance scaling elevations
549  call this%get_drain_elevations(i, drndepth, drntop, drnbot)
550  !
551  ! -- set opt_drnbot to drnbot if passed as dummy variable
552  if (present(opt_drnbot)) then
553  opt_drnbot = drnbot
554  end if
555  !
556  ! -- calculate scaling factor
557  if (drndepth /= dzero) then
558  if (this%icubic_scaling /= 0) then
559  factor = sqsaturation(drntop, drnbot, xnew, c1=-done, c2=dtwo)
560  else
561  factor = squadraticsaturation(drntop, drnbot, xnew, eps=dzero)
562  end if
563  else
564  if (xnew <= drnbot) then
565  factor = dzero
566  else
567  factor = done
568  end if
569  end if
570  end subroutine get_drain_factor
571 
572  ! -- Procedures related to observations
573 
574  !> @brief Return true because DRN package supports observations
575  !!
576  !! Overrides BndType%bnd_obs_supported()
577  !<
578  logical function drn_obs_supported(this)
579  implicit none
580  ! -- dummy
581  class(drntype) :: this
582  !
583  drn_obs_supported = .true.
584  end function drn_obs_supported
585 
586  !> @brief Store observation type supported by DRN package
587  !!
588  !! Overrides BndType%bnd_df_obs
589  !<
590  subroutine drn_df_obs(this)
591  implicit none
592  ! -- dummy
593  class(drntype) :: this
594  ! -- local
595  integer(I4B) :: indx
596  !
597  call this%obs%StoreObsType('drn', .true., indx)
598  this%obs%obsData(indx)%ProcessIdPtr => defaultobsidprocessor
599  !
600  ! -- Store obs type and assign procedure pointer
601  ! for to-mvr observation type.
602  call this%obs%StoreObsType('to-mvr', .true., indx)
603  this%obs%obsData(indx)%ProcessIdPtr => defaultobsidprocessor
604  end subroutine drn_df_obs
605 
606  !> @brief Store user-specified drain conductance
607  !<
608  subroutine drn_store_user_cond(this)
609  ! -- dummy
610  class(drntype), intent(inout) :: this
611  ! -- local
612  integer(I4B) :: n
613  !
614  ! -- store backup copy of conductance values
615  do n = 1, this%nbound
616  this%condinput(n) = this%cond_mult(n)
617  end do
618  end subroutine drn_store_user_cond
619 
620  !> @brief Apply multiplier to conductance value depending on user-selected option
621  !<
622  function cond_mult(this, row) result(cond)
623  ! -- modules
624  use constantsmodule, only: dzero
625  ! -- dummy variables
626  class(drntype), intent(inout) :: this
627  integer(I4B), intent(in) :: row
628  ! -- result
629  real(dp) :: cond
630  !
631  if (this%iauxmultcol > 0) then
632  cond = this%cond(row) * this%auxvar(this%iauxmultcol, row)
633  else
634  cond = this%cond(row)
635  end if
636  end function cond_mult
637 
638  !> @brief Return requested boundary value
639  !<
640  function drn_bound_value(this, col, row) result(bndval)
641  ! -- modules
642  use constantsmodule, only: dzero
643  ! -- dummy variables
644  class(drntype), intent(inout) :: this
645  integer(I4B), intent(in) :: col
646  integer(I4B), intent(in) :: row
647  ! -- result
648  real(dp) :: bndval
649  !
650  select case (col)
651  case (1)
652  bndval = this%elev(row)
653  case (2)
654  bndval = this%cond_mult(row)
655  case default
656  errmsg = 'Programming error. DRN bound value requested column '&
657  &'outside range of ncolbnd (2).'
658  call store_error(errmsg)
659  call store_error_filename(this%input_fname)
660  end select
661  end function drn_bound_value
662 
663 end module drnmodule
This module contains the extended boundary package.
This module contains the base boundary package.
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 lenpackagename
maximum length of the package name
Definition: Constants.f90:23
integer(i4b), parameter lenftype
maximum length of a package type (DIS, WEL, OC, etc.)
Definition: Constants.f90:39
integer(i4b), parameter lenauxname
maximum length of a aux variable
Definition: Constants.f90:35
real(dp), parameter dzero
real constant zero
Definition: Constants.f90:65
real(dp), parameter dtwo
real constant 2
Definition: Constants.f90:79
real(dp), parameter done
real constant 1
Definition: Constants.f90:76
character(len=lenftype) ftype
Definition: gwf-drn.f90:21
subroutine drn_da(this)
Deallocate memory.
Definition: gwf-drn.f90:98
subroutine, public drn_create(packobj, id, ibcnum, inunit, iout, namemodel, pakname, mempath)
Create a New Drn Package and point packobj to the new package.
Definition: gwf-drn.f90:60
real(dp) function cond_mult(this, row)
Apply multiplier to conductance value depending on user-selected option.
Definition: gwf-drn.f90:623
subroutine drn_fn(this, rhs, ia, idxglo, matrix_sln)
Fill newton terms.
Definition: gwf-drn.f90:417
subroutine drn_allocate_arrays(this, nodelist, auxvar)
Allocate package arrays.
Definition: gwf-drn.f90:142
real(dp) function drn_bound_value(this, col, row)
Return requested boundary value.
Definition: gwf-drn.f90:641
subroutine define_listlabel(this)
Define the list heading that is written to iout when PRINT_INPUT option is used.
Definition: gwf-drn.f90:472
logical function drn_obs_supported(this)
Return true because DRN package supports observations.
Definition: gwf-drn.f90:579
subroutine get_drain_factor(this, i, factor, opt_drnbot)
Get the drain conductance scale factor.
Definition: gwf-drn.f90:531
subroutine drn_allocate_scalars(this)
Allocate package scalar members.
Definition: gwf-drn.f90:118
subroutine drn_cf(this)
Formulate the HCOF and RHS terms.
Definition: gwf-drn.f90:337
subroutine drn_ck(this)
Check drain boundary condition data.
Definition: gwf-drn.f90:272
subroutine drn_options(this)
Source options specific to DrnType.
Definition: gwf-drn.f90:184
subroutine drn_rp(this)
Read and prepare.
Definition: gwf-drn.f90:166
character(len=lenpackagename) text
Definition: gwf-drn.f90:22
subroutine get_drain_elevations(this, i, drndepth, drntop, drnbot)
Define drain depth and the top and bottom elevations used to scale the drain conductance.
Definition: gwf-drn.f90:498
subroutine log_drn_options(this, found)
@ brief Log DRN specific package options
Definition: gwf-drn.f90:242
subroutine drn_store_user_cond(this)
Store user-specified drain conductance.
Definition: gwf-drn.f90:609
subroutine drn_fc(this, rhs, ia, idxglo, matrix_sln)
Copy rhs and hcof into solution rhs and amat.
Definition: gwf-drn.f90:374
subroutine drn_df_obs(this)
Store observation type supported by DRN package.
Definition: gwf-drn.f90:591
subroutine, public urword(line, icol, istart, istop, ncode, n, r, iout, in)
Extract a word from a string.
This module defines variable data types.
Definition: kind.f90:8
character(len=lenmempath) function create_mem_path(component, subcomponent, context)
returns the path to the memory object
This module contains the derived type ObsType.
Definition: Obs.f90:127
subroutine, public defaultobsidprocessor(obsrv, dis, inunitobs, iout)
@ brief Process IDstring provided for each observation
Definition: Obs.f90:246
This module contains simulation methods.
Definition: Sim.f90:10
subroutine, public store_error(msg, terminate)
Store an error message.
Definition: Sim.f90:92
integer(i4b) function, public count_errors()
Return number of errors.
Definition: Sim.f90:59
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
real(dp) function squadraticsaturation(top, bot, x, eps)
@ brief sQuadraticSaturation
real(dp) function sqsaturationderivative(top, bot, x, c1, c2)
@ brief sQSaturationDerivative
real(dp) function sqsaturation(top, bot, x, c1, c2)
@ brief sQSaturation
integer(i4b), pointer, public kper
current stress period number
Definition: tdis.f90:23
@ brief BndType
This class is used to store a single deferred-length character string. It was designed to work in an ...
Definition: CharString.f90:23