Sewer Overflow formula (Water Overlay): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<!--Needs the sewer overflow threshold--> | <!--Needs the sewer overflow threshold--> | ||
Overflow from the sewer is calculated for the entirety of the sewer, and the single attached sewer overflow. | Overflow from the sewer is calculated for the entirety of the sewer, and the single attached sewer overflow. | ||
[[File:Sewer_overflow_model.png|right|500px]] | |||
[[File:Sewer_overflow_model2.png|right|500px]] | |||
The amount that can overflow relies on both the sewer overflow itself as well as the sewer overflow threshold: | The amount that can overflow relies on both the sewer overflow itself as well as the sewer overflow threshold: |
Revision as of 12:12, 15 April 2019
Overflow from the sewer is calculated for the entirety of the sewer, and the single attached sewer overflow.
![](/w/images/5/55/Sewer_overflow_model.png)
![](/w/images/3/37/Sewer_overflow_model2.png)
The amount that can overflow relies on both the sewer overflow itself as well as the sewer overflow threshold:
- Cthreshold = max( 0 , hs - Hs * Ts )
- Cheight = max( 0, Tsewer + H>sub>o + hsewer - 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.
- HS = The SEWER_STORAGE attribute of the sewer area, the maximum water height allowed 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.
- Tsewer = The average height of the terrain where the sewer is present, relative to datum.
- Toverflow = The height of the terrain at the centerpoint of the sewer overflow, relative to datum.
- Ho = The surface height of the sewer, determined by SEWER_OVERFLOW attribute of the sewer overflow.
- SOS = The SEWER_OVERFLOW_SPEED attribute of the sewer overflow.
- SOT = The SEWER_OVERFLOW_THRESHOLD.
Notes
- The sewer's height relative to datum is not defined in the Sewer itself. It is relative to the sewer overflow and determined by the SEWER_OVERFLOW attribute of the overflow.