Sewer Overflow formula (Water Overlay)

From Tygron Support wiki
Revision as of 12:03, 15 April 2019 by Frank@tygron.nl (talk | contribs)
Jump to navigation Jump to search

Overflow from the sewer is calculated for the entirety of the sewer, and the single attached sewer overflow.

The amount that can overflow relies on both the sewer overflow itself as well as the sewer overflow threshold:

Cthreshold = max( 0 , hs - SS * SOT )
Cheight = max( 0, Tsewer + SO + WHsewer - Toverflow )
C = min ( Cthreshold, Cheight )

Actual overflow is then calculated:

Δw = min( 0 , C * Σsewer , Δt * SOS )

where:

  • hs = The height of the water column in the sewer.
  • Δw = The amount of sewer overflow which takes place.
  • Δt = Computational timestep.
  • C = The amount of water that can overflow out of the sewer
  • Cthreshold = The amount of water that could overflow, based on the sewer overflow threshold.
  • Cheight = The amount of water that could overflow, based on the properties of the sewer overflow.
  • Σsewer = The surface area of the sewer.

See also

Template:WaterOverlay nav