MODFLOW 6
version 6.6.0.dev0
USGS Modular Hydrologic Model
|
This module contains the time-varying storage package methods. More...
Data Types | |
type | tvstype |
Functions/Subroutines | |
subroutine, public | tvs_cr (tvs, name_model, inunit, iout) |
Create a new TvsType object. More... | |
subroutine | tvs_ar_set_pointers (this) |
Announce package and set pointers to variables. More... | |
logical function | tvs_read_option (this, keyword) |
Read a TVS-specific option from the OPTIONS block. More... | |
real(dp) function, pointer | tvs_get_pointer_to_value (this, n, varName) |
Get an array value pointer given a variable name and node index. More... | |
subroutine | tvs_set_changed_at (this, kper, kstp) |
Mark property changes as having occurred at (kper, kstp) More... | |
subroutine | tvs_reset_change_flags (this) |
Clear all per-node change flags. More... | |
subroutine | tvs_validate_change (this, n, varName) |
Check that a given property value is valid. More... | |
subroutine | tvs_da (this) |
Deallocate package memory. More... | |
This module contains the methods used to allow storage parameters in the STO package (specific storage and specific yield) to be varied throughout a simulation.
|
private |
Announce package version, set array and variable pointers from the STO package for access by TVS, and enable storage change integration.
Definition at line 64 of file gwf-tvs.f90.
subroutine, public tvsmodule::tvs_cr | ( | type(tvstype), intent(out), pointer | tvs, |
character(len=*), intent(in) | name_model, | ||
integer(i4b), intent(in) | inunit, | ||
integer(i4b), intent(in) | iout | ||
) |
Create a new time-varying storage (TVS) object.
Definition at line 48 of file gwf-tvs.f90.
|
private |
Deallocate TVS package scalars and arrays.
Definition at line 215 of file gwf-tvs.f90.
|
private |
Return a pointer to the given node's value in the appropriate STO array based on the given variable name string.
Definition at line 120 of file gwf-tvs.f90.
|
private |
Process a single TVS-specific option. Used when reading the OPTIONS block of the TVS package input file.
Definition at line 94 of file gwf-tvs.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 159 of file gwf-tvs.f90.
|
private |
Deferred procedure implementation called by the TvBaseType code when a property value change occurs at (kper, kstp).
Definition at line 143 of file gwf-tvs.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.
Definition at line 173 of file gwf-tvs.f90.