SEAMLESS-WAVE

Logo

SEAMLESS-WAVE is a developing “SoftwarE infrAstructure for Multi-purpose fLood modElling at variouS scaleS” based on "WAVElets" and their versatile properties. The vision behind SEAMLESS-WAVE is to produce an intelligent and holistic modelling framework, which can drastically reduce iterations in building and testing for an optimal model setting, and in controlling the propagation of model-error due to scaling effects and of uncertainty due statistical inputs.

View the Project on GitHub ci1xgk/Fellowship_Webpage

Preparing the initial conditions files for ACC/FV1 on QGIS

The Merewether test case has a pond at its end near the downstream boundary. The pond is associated with a constant free-surface elevation of h + z = 17.8 m, which needs to be considered as an initial condition. LISFLOOD-FP expects to read such an initial condition as an Esri ASCII raster file, which is made of either free-surface elevation (h + z) or water depth (h) data, with the extension of .start (recall “Input files and their format”).

To generate the raster file for the initial free-surface elevation, the following steps must be applied in QGIS:

image

After applying these steps, the free-surface elevation raster file, merewether-0p175m.start can be read by LISFLOOD-FP (recall “Input files and their format”).


Generating the initial water depth (h) raster file follows the same steps above, whereby the following expression should be entered in the Raster Calculator window:

(merewether-0p175m@1 > 17.8) * 0 + (merewether-0p175m@1 <= 17.8) * (17.8 - merewether-0p175m@1)

This puts zero values for the water depth (h) in areas where the topography is higher than 17.8 (dry areas) and retains the depth value as it is, otherwise.

back