Water Pressure Drop Calculator Formula
Understand the math behind the water pressure drop calculator. Each variable explained with a worked example.
Formulas Used
Flow Velocity
velocity_fps = velHead Loss
head_loss_ft = diameter_ft > 0 ? friction_factor * (pipe_length / diameter_ft) * pow(vel, 2) / (2 * 32.174) : 0Pressure Drop
pressure_drop_psi = diameter_ft > 0 ? friction_factor * (pipe_length / diameter_ft) * pow(vel, 2) / (2 * 32.174) * 0.4333 : 0Variables
| Variable | Description | Default |
|---|---|---|
pipe_length | Pipe Length(ft) | 100 |
diameter | Inside Diameter(in) | 1 |
flow_gpm | Flow Rate(GPM) | 10 |
friction_factor | Friction Factor (f) | 0.02 |
diameter_ft | Derived value= diameter / 12 | calculated |
flow_cfs | Derived value= flow_gpm / 448.831 | calculated |
area | Derived value= pi * pow(diameter_ft / 2, 2) | calculated |
vel | Derived value= area > 0 ? flow_cfs / area : 0 | calculated |
How It Works
Darcy-Weisbach Pressure Drop
h_f = f x (L / D) x (V squared / 2g)
Where f is the Darcy friction factor, L is pipe length, D is diameter, V is velocity, and g is gravitational acceleration (32.174 ft/s squared). Multiply head loss in feet by 0.4333 to convert to psi.
Worked Example
100 ft of 1-inch pipe carrying 10 GPM, friction factor 0.02.
pipe_length = 100diameter = 1flow_gpm = 10friction_factor = 0.02
- 01D = 1/12 = 0.0833 ft
- 02Area = pi x 0.04167 squared = 0.005454 sq ft
- 03V = (10/448.831) / 0.005454 = 4.09 ft/s
- 04h_f = 0.02 x (100/0.0833) x (4.09 squared / 64.348) = 6.24 ft
- 05Pressure drop = 6.24 x 0.4333 = 2.70 psi
Ready to run the numbers?
Open Water Pressure Drop Calculator