UTL-LAKTAB

Structure of Blocks

FOR EACH SIMULATION

    BEGIN DIMENSIONS
      NROW <nrow>
      NCOL <ncol>
    END DIMENSIONS
    BEGIN TABLE
      <stage> <volume> <sarea> [<barea>]
      <stage> <volume> <sarea> [<barea>]
      ...
    END TABLE

Explanation of Variables

Block: DIMENSIONS

  • nrow integer value specifying the number of rows in the lake table. There must be NROW rows of data in the TABLE block.

  • ncol integer value specifying the number of columns in the lake table. There must be NCOL columns of data in the TABLE block. For lakes with HORIZONTAL and/or VERTICAL CTYPE connections, NCOL must be equal to 3. For lakes with EMBEDDEDH or EMBEDDEDV CTYPE connections, NCOL must be equal to 4.

Block: TABLE

  • stage real value that defines the stage corresponding to the remaining data on the line.

  • volume real value that defines the lake volume corresponding to the stage specified on the line.

  • sarea real value that defines the lake surface area corresponding to the stage specified on the line.

  • barea real value that defines the lake-GWF exchange area corresponding to the stage specified on the line. BAREA is only specified if the CLAKTYPE for the lake is EMBEDDEDH or EMBEDDEDV.

Example Input File

    begin dimensions
      nrow 11
      ncol  3
    end dimensions
    
    begin table
    # stage    volume     sarea
          0        0.        0.
          1       0.5        1.
          2       1.0        2.
          3       2.0        2.
          4       3.0        2.
          5       4.0        2.
          6       5.0        2.
          7       6.0        2.
          8       7.0        2.
          9       8.0        2.
         10       9.0        2.
    end table