GWT-DIS

Structure of Blocks

FOR EACH SIMULATION

    BEGIN OPTIONS
      [LENGTH_UNITS <length_units>]
      [NOGRB]
      [XORIGIN <xorigin>]
      [YORIGIN <yorigin>]
      [ANGROT <angrot>]
      [EXPORT_ARRAY_ASCII]
    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_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.

  • 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.

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.