Skip to main content

Posts

Showing posts with the label Hydrodynamics

Computational Hydraulics: 1D vs. 2D Hydrodynamic Flood Modeling (Preissmann Scheme)

 Simulating flood wave propagation in open channels requires solving the non-linear Saint-Venant equations numerically. The Preissmann Implicit Finite-Difference Scheme is widely used for 1D channel routing due to its unconditional numerical stability. ​In the Preissmann scheme, dependent variables (f) and their spatial/temporal derivatives are discretized on a four-point computational grid cell (i, i+1) between time steps (n, n+1): $f(x,t) \approx \theta \cdot \frac{f_{i}^{n+1} + f_{i+1}^{n+1}}{2} + (1-\theta) \cdot \frac{f_{i}^n + f_{i+1}^n}{2}$ $\frac{\partial f}{\partial x} \approx \theta \cdot \frac{f_{i+1}^{n+1} - f_{i}^{n+1}}{\Delta x} + (1-\theta) \cdot \frac{f_{i+1}^n - f_{i}^n}{\Delta x}$ $\frac{\partial f}{\partial t} \approx \frac{f_{i}^{n+1} + f_{i+1}^{n+1} - f_{i}^n - f_{i+1}^n}{2 \cdot \Delta t}$ ​Where $\theta$ is a weighting factor $(0.5 \le \theta \le 1.0).$ Setting $\theta \ge 0.55$ ensures numerical damping of high-frequency oscillations. ​Urban flooding in majo...

Flood Engineering: Dam Breach Analysis and Hydrograph Mechanics

 Evaluating downstream inundation risks following hypothetical dam failure requires modeling breach geometry development over time. Froehlich’s Empirical Equations estimate final average breach width $(\bar{B},$ in meters) and breach formation time $(t_f,$ in hours) based on reservoir parameters: $\bar{B} = 0.27 \cdot k_0 \cdot V_w^{0.32} \cdot h_b^{0.28} \quad \text{and} \quad t_f = 0.011 \cdot V_w^{0.47} \cdot h_b^{-0.90}$ ​Where $V_w$ is reservoir storage volume at breach $(\text{m}^3)$, $h_b is breach height $(\text{m})$, and $k_0$ is a mode-of-failure factor (1.0 for piping, 1.3 for overtopping). The peak outflow discharge $(Q_p)$ issuing through the breach is governed by broad-crested weir hydraulics: $Q_p = 1.48 \cdot \bar{B} \cdot h_b^{1.5}$ ​Under the national Dam Rehabilitation and Improvement Project (DRIP), dam safety authorities across India mandate emergency action plans (EAPs) backed by numerical dam breach simulations. ​Engineers couple parametric breach formulation...