What is Predicting Open Channel Fluid Discharge?
Mathematical Foundation
Laws & Principles
- The Friction Denominator: Because Roughness (n) fundamentally occupies the denominator of the velocity equation, attempting to input zero friction (n=0) triggers catastrophic division errors resulting in infinite speed calculations. The algorithm mathematically caps n defensively above 0.001.
- Positive Root Bounding: Evaluating a physically negative slope (uphill) would trigger the S^(1/2) square root into throwing complex imaginary numbers causing total execution failure. The calculation forcefully zero-bounds negative terrain grids.
Step-by-Step Example Walkthrough
" A municipal engineer inspects a 10m wide concrete aqueduct (n = 0.013) flowing exactly 2.5m deep. The structure physically slants downhill at a 0.5% grade (S = 0.005). The cross-sectional Area (A) is 25 m², yielding a Hydraulic Radius (R) of roughly 1.67 m. "
- 1. Execute fractional radius exponent: (1.67)^(2/3) ≈ 1.407.
- 2. Execute slope square root: (0.005)^(1/2) ≈ 0.0707.
- 3. Synthesize Velocity Matrix: (1 / 0.013) * 1.407 * 0.0707 = 7.653 m/s.
- 4. Calculate Total Output Volume: 7.653 m/s * 25 m² (Area) = 191.3 m³/s.