### PRT-DIS #### Structure of Blocks _FOR EACH SIMULATION_ ``` BEGIN OPTIONS [LENGTH_UNITS ] [NOGRB] [GRB6 FILEOUT ] [XORIGIN ] [YORIGIN ] [ANGROT ] [EXPORT_ARRAY_ASCII] [EXPORT_ARRAY_NETCDF] [NCF6 FILEIN ] END OPTIONS ``` ``` BEGIN DIMENSIONS NLAY NROW NCOL END DIMENSIONS ``` ``` BEGIN GRIDDATA DELR -- READARRAY DELC -- READARRAY TOP -- READARRAY BOTM [LAYERED] -- READARRAY [IDOMAIN [LAYERED] -- READARRAY] END GRIDDATA ``` #### Explanation of Variables ##### Block: OPTIONS * `length_units` is the length units used for this model. Values can be "FEET", "METERS", or "CENTIMETERS". If not specified, the default is "UNKNOWN". * `NOGRB` keyword to deactivate writing of the binary grid file. * `GRB6` keyword to specify that record corresponds to a binary grid file. * `FILEOUT` keyword to specify that an output filename is expected next. * `grb6_filename` defines 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". * `xorigin` x-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. * `yorigin` y-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. * `angrot` counter-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_ASCII` keyword that specifies input griddata arrays should be written to layered ascii output files. * `EXPORT_ARRAY_NETCDF` keyword that specifies input griddata arrays should be written to the model output netcdf file. * `NCF6` keyword to specify that record corresponds to a netcdf configuration (NCF) file. * `FILEIN` keyword to specify that an input filename is expected next. * `ncf6_filename` defines a netcdf configuration (NCF) input file. ##### Block: DIMENSIONS * `nlay` is the number of layers in the model grid. * `nrow` is the number of rows in the model grid. * `ncol` is the number of columns in the model grid. ##### Block: GRIDDATA * `delr` is the column spacing in the row direction. * `delc` is the row spacing in the column direction. * `top` is the top elevation for each cell in the top model layer. * `botm` is the bottom elevation for each cell. * `idomain` is 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.