About:
Calculate the wet perimeter of a full section of a circle\begin{equation} W_P = \pi \times D \end{equation}
Module:
Geometry
Function:
GEO_geometry_wpcircle(d)
Parameters:
d
, internal pipe diameter - m;
Sample code:
from Geometry import *
d = 0.75
wp = GEO_geometry_wpcircle(d)
print ("WP:", wp,"m")
Result:
WP: 2.356194490192345 m