MODFLOW 6
version 6.6.0.dev0
USGS Modular Hydrologic Model
|
This module contains time-varying conductivity package methods. More...
Data Types | |
type | tvktype |
Functions/Subroutines | |
subroutine, public | tvk_cr (tvk, name_model, inunit, iout) |
Create a new TvkType object. More... | |
subroutine | tvk_ar_set_pointers (this) |
Announce package and set pointers to variables. More... | |
logical function | tvk_read_option (this, keyword) |
Read a TVK-specific option from the OPTIONS block. More... | |
real(dp) function, pointer | tvk_get_pointer_to_value (this, n, varName) |
Get an array value pointer given a variable name and node index. More... | |
subroutine | tvk_set_changed_at (this, kper, kstp) |
Mark property changes as having occurred at (kper, kstp) More... | |
subroutine | tvk_reset_change_flags (this) |
Clear all per-node change flags. More... | |
subroutine | tvk_validate_change (this, n, varName) |
Check that a given property value is valid. More... | |
subroutine | tvk_da (this) |
Deallocate package memory. More... | |
This module contains the methods used to allow hydraulic conductivity parameters in the NPF package (K11, K22, K33) to be varied throughout a simulation.
|
private |
Announce package version and set array and variable pointers from the NPF package for access by TVK.
Definition at line 68 of file gwf-tvk.f90.
subroutine, public tvkmodule::tvk_cr | ( | type(tvktype), intent(out), pointer | tvk, |
character(len=*), intent(in) | name_model, | ||
integer(i4b), intent(in) | inunit, | ||
integer(i4b), intent(in) | iout | ||
) |
Create a new time-varying conductivity (TvkType) object.
Definition at line 52 of file gwf-tvk.f90.
|
private |
Deallocate TVK package scalars and arrays.
Definition at line 225 of file gwf-tvk.f90.
|
private |
Return a pointer to the given node's value in the appropriate NPF array based on the given variable name string.
Definition at line 115 of file gwf-tvk.f90.
|
private |
Process a single TVK-specific option. Used when reading the OPTIONS block of the TVK package input file.
Definition at line 99 of file gwf-tvk.f90.
|
private |
Deferred procedure implementation called by the TvBaseType code when a new time step commences, indicating that any previously set per-node property value change flags should be reset.
Definition at line 156 of file gwf-tvk.f90.
|
private |
Deferred procedure implementation called by the TvBaseType code when a property value change occurs at (kper, kstp).
Definition at line 140 of file gwf-tvk.f90.
|
private |
Deferred procedure implementation called by the TvBaseType code after a property value change occurs. Check if the property value of the given variable at the given node is invalid, and log an error if so. Update K22 and K33 values appropriately when specified as anisotropy.
Definition at line 175 of file gwf-tvk.f90.