Description Usage Arguments Value Examples
Reads information from a MODFLOW-2000 DIS package file. The DIS package contains information about the finite difference grid, including layer elevations, and stress period set up. It also tells the layer types.
1 |
file |
character string; file name |
a list of class "DIS.MFpackage" with elements:
$extent: a vector whose named elements are NLAY,
NROW, NCOL, NPER, t_unit, l_unit
$LAYCBD: integer vector indicating the equation type used for each layer
(confined or unconfined, see MODFLOW-2000 documentation)
$DELR: column spacing (along rows), may be a single constant value
$DELC: row spacing (along columns), may be a single constant value
$elev: a vector of layer divide elevations or a 3D array of distributed
layer divide elevations by cell
$sps: a data.frame with stress period descriptions:
..$PERLEN (num): stress period length
..$NSTP (int): number of time steps in the stress period
..$TSMULT (num): time step multiplier
..$TR (log): does the stress period use transient equations?
1 2 3 4 5 | fnm <- system.file("rflow_mf_demo.dis", package = "Rflow")
dis <- read.DIS(fnm)
class(dis)
str(dis)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.