Bridge Hydraulic Contraction & Soffit Decision Calculator
Design Input Parameters Summary:
| Formula Method | Formulation / Governing Equation | Calculated Q (m³/s) | Diff vs Manning (%) | Status / Guidance |
|---|
Bridge Hydraulic & Cross-Sectional Contraction Analysis
Technical Explanatory Note & Solved Design Example | Civil & Hydraulic Engineering Standards
1. Design Problem Statement
A proposed major bridge is scheduled across a natural stream basin. As a Senior Hydraulic Engineer, you are required to perform cross-sectional hydraulic discretization, calculate discharge capacity, determine total obstruction losses caused by substructure/superstructure elements, and check the soffit level adequacy against IRC standards.
A. Input Boundary Conditions
| Parameter | Design Value | Engineering Significance |
|---|---|---|
| Catchment Area ($A$) | 150.0 km² | Hydraulic basin runoff area driving hydrological models. |
| High Flood Level (HFL) | 581.50 m | Governing water surface elevation for peak return period. |
| Energy Grade / Bed Slope ($S$) | 1 in 1000 ($0.001$) | Longitudinal hydraulic slope driving energy head losses. |
| Roughness Coefficient ($n$) | 0.035 | Manning's resistance factor for natural channels with stony beds. |
| Bridge Structural Configuration | 3 Spans @ 20.0 m = 60.0 m Total Length | Chainage 110.0 m to 170.0 m. Intercepts stream flow. |
| Piers & Abutment Properties | 2 Intermediate Piers ($1.5\text{ m}$ width each) 2 Vertical Abutments ($1.2\text{ m}$ width) |
Primary solid obstructions within the active flow profile. |
| Superstructure Deck Profile | Soffit RL = 582.00 m | Deck Depth = 1.20 m | Determines vertical clearance (Freeboard) relative to HFL. |
2. Cross-Section Discretization & Geometry Analysis
In accordance with standard open-channel hydraulic practices, natural river profiles are irregular. The JavaScript code executes piecewise linear interpolation between survey station chainages ($ch$) and reduced ground levels ($rl$) to establish discrete trapezoidal/triangular flow compartments.
$RL(ch) = RL_i + \frac{ch - ch_i}{ch_{i+1} - ch_i} \cdot (RL_{i+1} - RL_i)$
Depth of Water ($d$) = $\max(0, \text{HFL} - RL(ch))$
Sample Ground Profile Sub-Section (Intermediate Channel Section):
| Station i | Chainage $ch$ (m) | Ground Level $RL$ (m) | Water Depth $d = 581.50 - RL$ (m) |
|---|---|---|---|
| Station 1 (HFL Left Boundary) | 100.00 | 581.50 | 0.00 |
| Station 2 | 120.00 | 577.70 | 3.80 |
| Station 3 | 150.00 | 577.34 | 4.16 |
| Station 4 (HFL Right Boundary) | 180.00 | 581.50 | 0.00 |
3. Hydraulics via Multi-Compartment Manning Method
To prevent underestimating discharge due to non-uniform velocity distribution across varying depths, flow is subdivided into vertical slice compartments. Each compartment velocity $v_i$ and discharge $Q_i$ are computed independently:
$P_i = \sqrt{(\Delta x_i)^2 + |d_{2,i} - d_{1,i}|^2}$
$R_i = \frac{A_i}{P_i}$
$v_i = \frac{1}{n_i} \cdot R_i^{2/3} \cdot S^{1/2}$
$Q_{\text{gross}} = \sum Q_i = \sum (A_i \cdot v_i)$
Calculation for Single Compartment (ch 120.0m to 150.0m):
- 1Width ($\Delta x$): $150.0 - 120.0 = 30.0\text{ m}$
- 2Average Area ($A$): $\left(\frac{3.80 + 4.16}{2}\right) \times 30.0 = 119.40\text{ m}^2$
- 3Wetted Perimeter ($P$): $\sqrt{30.0^2 + |4.16 - 3.80|^2} = 30.002\text{ m}$
- 4Hydraulic Radius ($R$): $119.40 / 30.002 = 3.98\text{ m}$
- 5Flow Velocity ($v$): $\frac{1}{0.035} \times (3.98)^{0.667} \times (0.001)^{0.5} = 2.27\text{ m/s}$
- 6Segment Discharge ($Q_{\text{comp}}$): $119.40 \times 2.27 = \mathbf{271.04\text{ m}^3\text{/s}}$
4. Bridge Substructure & Approach Obstruction Analysis
The code accurately tracks flow area reduction due to bridge elements within the cross-section to derive net flow capacity.
A. Intermediate Pier Obstruction
Two intermediate piers ($b_p = 1.5\text{ m}$ each) placed at $ch = 130.0\text{ m}$ and $ch = 150.0\text{ m}$ where average water depth $d_{p} = 4.0\text{ m}$ and regional flow velocity $v = 2.25\text{ m/s}$:
$Q_{\text{obs, piers}} = A_{\text{piers}} \cdot v = 12.0 \cdot 2.25 = \mathbf{27.0\text{ m}^3\text{/s}}$
B. Approach Embankment & Abutment Obstruction
Where approaches block flow over floodplains outside bridge opening limits (e.g., $ch < 110.0\text{ m}$ or $ch > 170.0\text{ m}$):
$Q_{\text{obs, fill}} = A_{\text{fill}} \cdot v_{\text{local}} = \mathbf{18.6\text{ m}^3\text{/s}}$
C. Cumulative Net Capacity Summary
| Component Class | Blocked Area ($m^2$) | Obstructed Flow ($m^3/s$) | % Total Discharge Reduction |
|---|---|---|---|
| Intermediate Piers (2 Nos) | 12.00 | 27.00 | 5.56% |
| Abutments & Wingwalls | 4.50 | 9.00 | 1.85% |
| Approach Earth Fill Encroachment | 15.50 | 18.60 | 3.83% |
| Total Cumulative Obstruction | 32.00 | 54.60 | 11.24% |
5. Hydrological Method Comparison
To validate the cross-sectional hydraulic capacity, empirical formulas codified in IRC:5 / Indian practice are evaluated for Catchment Area $A = 150\text{ km}^2$:
| Methodology / Empirical Formula | Governing Equation | Computed $Q$ ($m^3/s$) | Variance vs Hydraulic Base |
|---|---|---|---|
| Manning Cross-Section (Net) | $Q = \sum (1/n \cdot A_i \cdot R_i^{2/3} \cdot S^{1/2}) - Q_{\text{obs}}$ | 431.00 | Base (0.0%) |
| Inglis Formula (Peninsular/Western Ghats) | $Q = \frac{124 \cdot A}{\sqrt{A + 10.4}}$ | $1,468.61$ | +240.7% (Extreme Design Peak) |
| Dickens Formula ($C_d = 14.0$) | $Q = C_d \cdot A^{0.75}$ | $599.53$ | +39.1% |
| Ryves Formula ($C_r = 6.8$) | $Q = C_r \cdot A^{2/3}$ | $192.01$ | -55.4% |
| Rational Method ($C = 0.45, I = 35\text{ mm/hr}$) | $Q = 0.278 \cdot C \cdot I \cdot A$ | $656.69$ | +52.4% |
6. Freeboard & Deck Soffit Level Decision (IRC:5 Norms)
In terms of structural safety, IRC:5 prescribes standard minimum freeboard requirement (vertical gap between HFL and bridge girder soffit level) based on design peak flood discharge:
| Peak Discharge Threshold ($Q_{\text{max}}$) | Minimum Required Freeboard (IRC:5) |
|---|---|
| $Q \le 300\text{ m}^3\text{/s}$ | 0.60 m |
| $300 < Q \le 1000\text{ m}^3\text{/s}$ | 0.90 m (Applies to this case) |
| $1000 < Q \le 3000\text{ m}^3\text{/s}$ | 1.20 m |
| $Q > 3000\text{ m}^3\text{/s}$ | 1.50 m |
Compliance Evaluation:
- Max Governing Design Discharge ($Q_{\text{max}}$): $656.69\text{ m}^3\text{/s}$ (Rational Method Peak)
- Required Minimum Freeboard: $0.90\text{ m}$
- Required Minimum Soffit RL: $\text{HFL} + \text{Freeboard} = 581.50 + 0.90 = \mathbf{582.40\text{ m}}$
- Provided Soffit RL: $582.00\text{ m}$
- Available Freeboard Provided: $582.00 - 581.50 = \mathbf{0.50\text{ m}}$
Structural Decision Status:
⚠️ SOFFIT LEVEL DEFICIENT
The provided deck soffit level ($582.00\text{ m}$) provides only $0.50\text{ m}$ clearance above HFL, which fails to satisfy the mandatory IRC requirement of $0.90\text{ m}$ freeboard for discharges up to $1000\text{ m}^3\text{/s}$.
Engineering Action: Raise the bridge deck profile by at least $0.40\text{ m}$ to achieve a minimum soffit level of $582.40\text{ m}$ to ensure clear passage of floating debris during design flood events.
0 Comments
If you have any doubts, suggestions , corrections etc. let me know