PRT-DIS
Structure of Blocks
FOR EACH SIMULATION
BEGIN OPTIONS
[LENGTH_UNITS <length_units>]
[NOGRB]
[GRB6 FILEOUT <grb6_filename>]
[XORIGIN <xorigin>]
[YORIGIN <yorigin>]
[ANGROT <angrot>]
[EXPORT_ARRAY_ASCII]
[EXPORT_ARRAY_NETCDF]
[CRS <crs>]
[NCF6 FILEIN <ncf6_filename>]
END OPTIONS
BEGIN DIMENSIONS
NLAY <nlay>
NROW <nrow>
NCOL <ncol>
END DIMENSIONS
BEGIN GRIDDATA
DELR
<delr(ncol)> -- READARRAY
DELC
<delc(nrow)> -- READARRAY
TOP
<top(ncol, nrow)> -- READARRAY
BOTM [LAYERED]
<botm(ncol, nrow, nlay)> -- READARRAY
[IDOMAIN [LAYERED]
<idomain(ncol, nrow, nlay)> -- READARRAY]
END GRIDDATA
Explanation of Variables
Block: OPTIONS
length_unitsis the length units used for this model. Values can be “FEET”, “METERS”, or “CENTIMETERS”. If not specified, the default is “UNKNOWN”.NOGRBkeyword to deactivate writing of the binary grid file.GRB6keyword to specify that record corresponds to a binary grid file.FILEOUTkeyword to specify that an output filename is expected next.grb6_filenamedefines a binary grid output file. If this option is not provided, the output file will have the same name as the discretization input file, plus extension “.grb”.xoriginx-position of the lower-left corner of the model grid. A default value of zero is assigned if not specified. The value for XORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space.yoriginy-position of the lower-left corner of the model grid. If not specified, then a default value equal to zero is used. The value for YORIGIN does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space.angrotcounter-clockwise rotation angle (in degrees) of the lower-left corner of the model grid. If not specified, then a default value of 0.0 is assigned. The value for ANGROT does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space.EXPORT_ARRAY_ASCIIkeyword that specifies input griddata arrays should be written to layered ascii output files.EXPORT_ARRAY_NETCDFkeyword that specifies input gridded arrays should be written to the model output NetCDF file with attributes that support using the generated file as a MODFLOW 6 simulation input. This option only has an effect when an output model NetCDF file is configured and the simulation is run in VALIDATE mode, otherwise it is ignored.crsis a real-world coordinate reference system (CRS) for the model, for example, an EPSG integer code (e.g. 26915), authority string (i.e. epsg:26915), or Open Geospatial Consortium Well-Known Text (WKT) specification. Limited to 5000 characters. The entry for CRS does not affect the model simulation, but it is written to the binary grid file so that postprocessors can locate the grid in space.NCF6keyword to specify that record corresponds to a NetCDF configuration (NCF) file.FILEINkeyword to specify that an input filename is expected next.ncf6_filenamedefines a NetCDF configuration (NCF) input file.
Block: DIMENSIONS
nlayis the number of layers in the model grid.nrowis the number of rows in the model grid.ncolis the number of columns in the model grid.
Block: GRIDDATA
delris the column spacing in the row direction.delcis the row spacing in the column direction.topis the top elevation for each cell in the top model layer.botmis the bottom elevation for each cell.idomainis an optional array that characterizes the existence status of a cell. If the IDOMAIN array is not specified, then all model cells exist within the solution. If the IDOMAIN value for a cell is 0, the cell does not exist in the simulation. Input and output values will be read and written for the cell, but internal to the program, the cell is excluded from the solution. If the IDOMAIN value for a cell is 1, the cell exists in the simulation. If the IDOMAIN value for a cell is -1, the cell does not exist in the simulation. Furthermore, the first existing cell above will be connected to the first existing cell below. This type of cell is referred to as a “vertical pass through” cell.