Surface model (Water Overlay)

From Tygron Support wiki
Jump to navigation Jump to search
Fig. 1. For each grid cell:
B = bottom elevation
h = water depth
w = water surface elevation
Fig. 2. A 2-D grid-based representation of average water depths, discharges and bathymetry in a case where the middle cell is fully flooded in the y-dimension, but only partially flooded in the x-dimension. Blue solid and red dashed lines denote the waterlines and bathymetry slopes in both dimensions, respectively. For a bilinear reconstruction, the cell averages coincide with the values at the cell centers, while bathymetry is approximated by its values at the cell vertices.[1]
Fig. 3. Continuous bathymetry function (green line) and its piecewise linear approximation (brown dots). The approximated function values equal to the continuous ones at the cell vertices (green dots). The cell average value (blue dot) equals both the average value of the vertex values (green dots) and the average value of the values at the cell interface midpoints (brown dots).[1]

The Water Module's primary function is simulating two-dimensional flow of water across the surface. In order to do this, the project area is first discretized into x by y cells depending on the configured grid cell size. Secondly, water is initialized in the model. Finally, a set of rules is required that describes the behavior of the flow.

Water level initialization

In theory, each grid cell can have a unique bottom elevation and accompanying water depth, yielding a certain water surface elevation (or water level). However, in practice, water levels are often initialized for large groups of cells rather than individual cells, assuming that each (water level) area in a project has been assigned a water level. During the initialization phase a distinction is made between two types:

For all water terrains in a water area, the volume of water per grid cell is such that the resulting water level at those locations conforms the value of the WATER_LEVEL attribute as provided by the corresponding water area.

In contrast to water areas, which generate water on water terrains, inundation areas generate water over all grid cells, regardless of its terrain type. Similarly, the volume of water per grid cell is determined by the INUNDATION_LEVEL attribute as provided by the corresponding inundation area.

If a grid cell is neither part of any water area nor inundation area, or the assigned water level is lower than its bottom elevation, the water depth is assumed to be zero and the water level becomes equal to the bottom elevation. In turn, this bottom (or surface) elevation is equal to the elevation model, though it may be altered by the presence of a construction or the BREACH_HEIGHT attribute of a breach.

Notes

Surface flow scheme

In the model, imbalances in the water surface elevation across the grid drive the flow of water until a state of equilibrium is reached in terms of h and flux. Behavior of the flow is described by a second-order semi-discrete central-upwind scheme produced by Kurganov and Petrova (2007)[2], which is based on the 2-D Saint-Venant equations (a.k.a. shallow water equations):

where

u is the velocity in the x-direction
v is the velocity in the y-direction
h is the water depth
B is the bottom elevation
g is the acceleration due to gravity
n is the Gauckler–Manning coefficient

This scheme deviates from the original Saint-Venant equations in that it approaches the system in terms of water surface elevation (w = h + B) and flux (hu and hv), instead of just the water depth (h). The conceptual image in Fig. 1 aims to clarify on the various terms in the model equations. This method relies on a continuous piecewise linear approximation of the surface, which is further explained on this page.

Shoreline reconstruction

This scheme is further extended with the shoreline reconstruction method by Bollerman et al (2014), which ensures better numerical stability at the wetting and drying fronts of a flood wave[3]. An elaborate explanation is provided by Horváth et al. (2014)[1].

General sequence of computational steps:

  1. Each cell's elevation value (B in Fig. 3) is set equal to the value at its center and the interface midpoints.
  2. Slopes of conserved variables are reconstructed (continuity and momentum in x- and y-direction).
  3. Values of conserved variables at the cell interface midpoints are compared with the left-sided and right-sided values with respect to the cell's center.
  4. Slopes of partially dry cells are modified to prevent negative depth values and numerical instability.
  5. Fluxes are computed at each cell interface to determine the values of the conserved variable at the cell centers for the next time step.
  6. The largest allowed time step is calculated.
  7. Time is incremented with the calculated time step and changes in water level and fluxes are subsequently applied.

References

  1. 1.0 1.1 1.2 Zsolt Horváth, Jürgen Waser, Rui A. P. Perdigão, Artem Konev and Günter Blöschl (2014) ∙ A two-dimensional numerical scheme of dry/wet fronts for the Saint-Venant system of shallow water equations ∙ found at: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.700.7977&rep=rep1&type=pdf and http://visdom.at/media/pdf/publications/Poster.pdf (last visited 2018-06-29)
  2. Kurganov A, Petrova G (2007) ∙ A Second-Order Well-Balanced Positivity Preserving Central-Upwind Scheme for the Saint-Venant System ∙ found at: http://www.math.tamu.edu/~gpetrova/KPSV.pdf (last visited 2019-04-11)
  3. Bollermann, Andreas & Chen, Guoxian & Kurganov, Alexander & Noelle, Sebastian. (2014). A Well-balanced Reconstruction for Wetting, Drying Fronts. IGPM Report. 313. ∙ found at: https://www.researchgate.net/publication/269417532_A_Well-balanced_Reconstruction_for_Wetting_Drying_Fronts (last visited: 2019-07-24)