About:
Calculate the area of a prismatic open-channel .©WETpython, 2015 |
This equation is a applied to trapezoidal, triangular a rectangular sections:
Module:
Geometry
Function:
GEO_geometry_aprism(y, b, ml, mr)
Parameters:
- y, flow height, m;
- b, channel bottom , m;
- ml, slope of left embankment (1/ml);
- mr, slope of right embankment (1/ml)
Sample code:
from Geometry import *
y = 0.75 #(m)
b = 1.5 #(m)
ml = 1.5
mr = 3
area = GEO_geometry_aprism(y, b, ml, mr)
print ("Area:", area,"m2")
Result:
Area: 2.390625 m2