readdis: Read MODFLOW .dis File

Description Usage Arguments Examples

Description

This function reads in a dis file and creates a list composed of the following vectors:

NLAY

Atomic Vector of the Number of Layers in the Model Grid

NROW

Atomic Vector of the Number of Rows in the Model Grid

NCOL

Atomic Vector of the Number of Columns in the Model Grid

NPER

Atomic Vector of the Number of Stress Periods in the Model Grid

ITMUNI

Atomic Vector Indicating the Time Unit of Model Data : 0 = Undefined, 1 = Seconds, 2 = Minutes, 3 = Hours, 4 = Days, 5 = Years

LENUNI

Atomic Vector Indicating the Length Unit of Model Data : 0 = Undefined, 1 = Feet, 2 = Meters, 3 = Centimeters

LAYCBD

Flag With One Value for Each Model Layer that Indicates Whether or Not a Layer has a Quasi-3D Confining Bed Below it. 0 Indicates No Confining Bed and Not 0 Indicates Confining Bed

dX

Cell Width Along Columns

dY

Cell Width Along Rows

TOP

Top Elevation of Layer 1

BOT

Bottom Elevation of Each Model Cell or a Quasi-3D Confining Bed

PERLEN

Length of Each Stress Period

NSTP

Number of Time Steps in a Stress Period

TSMULT

Multiplier Length of Successive Time Steps. See the MODFLOW2005 Manual For a Description.

SS

Character Vector Indicating Whether The Stressperiod is Transient ("TR") or Steady State ("SS")

Usage

1
readdis(rootname = NA)

Arguments

rootname

This is the root name of the dis file

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
readdis("F95")
$NLAY
[1] 8

$NCOL
[1] 610

$NROW
[1] 414

$NPER
[1] 16

$ITMUNI
[1] 4

$LENUNI
[1] 1

$LAYCBD
  L1 L2 L3 L4 L5 L6 L7 L8
  0  0  0  0  0  0  0  0
etc.

dpphat/MFtools documentation built on May 15, 2019, 1:47 p.m.