In fluid dynamics, pressure and flow rate are inextricably linked, but it is important to understand that flow rate itself does not "create" pressure. Rather, pressure is the result of a fluid's resistance to flow. When you force a specific volume of liquid through a restriction (like a pipe, valve, or nozzle), a pressure drop occurs.
The most common method for calculating the pressure drop across a component like a valve or orifice is using the Flow Coefficient (Cv). The Cv value represents the volume of water (in GPM) that will flow through a component with a pressure drop of 1 PSI.
The Flow to Pressure Formula
To find the pressure drop (ΔP) when you know the flow rate (Q) and the flow coefficient (Cv), use the following formula:
ΔP = (Q / Cv)² × SG
Where:
ΔP: Pressure drop in PSI
Q: Flow rate in GPM (Gallons Per Minute)
Cv: Flow coefficient of the device
SG: Specific Gravity of the fluid (1.0 for water at 60°F)
Step-by-Step Calculation Example
Imagine you have a water system where you need to move 40 GPM through a control valve that has a rated Cv of 8. Since the fluid is water, the Specific Gravity is 1.0.
Divide the flow rate by the Cv: 40 / 8 = 5
Square the result: 5² = 25
Multiply by the specific gravity: 25 × 1.0 = 25
Result: The pressure drop across the valve is 25 PSI.
Factors That Affect Pressure and Flow
Several variables can change the relationship between these two metrics in a real-world piping system:
Fluid Viscosity: Thicker fluids (like oil or syrup) require significantly more pressure to maintain the same flow rate as water.
Pipe Diameter: According to Bernoulli's principle, if the pipe diameter decreases while flow rate remains constant, the velocity increases, and the pressure typically drops.
Pipe Length and Friction: The longer the pipe, the more friction loss occurs, requiring higher initial pressure to maintain the flow at the exit point.
Elevation Changes: Pumping fluid "upstairs" requires additional pressure to overcome gravity (approximately 0.433 PSI per foot of water).
Common Specific Gravity Values
Fluid
Specific Gravity (Approx)
Water
1.00
Seawater
1.03
Gasoline
0.72
Crude Oil
0.85
Mercury
13.60
function calculatePressure() {
var flowRate = document.getElementById('flowRate').value;
var flowCoeff = document.getElementById('flowCoeff').value;
var sg = document.getElementById('specificGravity').value;
var resultDiv = document.getElementById('resultContainer');
var resultValue = document.getElementById('pressureResult');
var Q = parseFloat(flowRate);
var Cv = parseFloat(flowCoeff);
var SG = parseFloat(sg);
if (isNaN(Q) || isNaN(Cv) || isNaN(SG) || Cv <= 0) {
alert("Please enter valid positive numbers. Flow Coefficient (Cv) cannot be zero.");
return;
}
// Formula: Delta P = (Q/Cv)^2 * SG
var pressureDrop = Math.pow((Q / Cv), 2) * SG;
resultValue.innerHTML = pressureDrop.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " PSI";
resultDiv.style.display = "block";
}