How to Calculate Flow Rate of Water Using Pressure

Water Flow Rate Calculator .water-flow-calculator-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #f9fbfd; border: 1px solid #e1e4e8; border-radius: 8px; } .calc-header { text-align: center; margin-bottom: 30px; } .calc-header h2 { color: #0056b3; margin-bottom: 10px; } .calc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; } .calc-col { flex: 1; min-width: 250px; } .calc-col label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .calc-col input, .calc-col select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .calc-col small { display: block; margin-top: 5px; color: #666; font-size: 12px; } .calculate-btn { width: 100%; padding: 15px; background-color: #0056b3; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .calculate-btn:hover { background-color: #004494; } .results-box { margin-top: 30px; background: #ffffff; border: 1px solid #ddd; border-radius: 4px; padding: 20px; display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; } .result-label { font-weight: 500; color: #555; } .result-value { font-weight: 700; color: #0056b3; font-size: 1.2em; } .content-section { margin-top: 40px; line-height: 1.6; color: #333; } .content-section h3 { color: #2c3e50; margin-top: 25px; } .formula-box { background: #eee; padding: 15px; border-left: 4px solid #0056b3; font-family: monospace; margin: 15px 0; }

Water Flow Rate Calculator

Calculate water discharge (GPM) based on pressure and opening diameter.

The gauge pressure at the opening/nozzle.
Internal diameter of the pipe or nozzle.
0.98 – Smooth Nozzle 0.90 – Standard Fire Nozzle 0.80 – Short Tube 0.61 – Sharp-Edged Orifice 0.60 – Rough Opening Efficiency of the opening (friction loss factor).

Calculation Results

Flow Rate (US Gallons): 0 GPM
Flow Rate (Liters): 0 LPM
Water Velocity: 0 ft/sec

How to Calculate Flow Rate of Water Using Pressure

Understanding the relationship between water pressure and flow rate is essential for plumbing, irrigation, fire fighting, and industrial engineering. While pressure (measured in PSI) represents the potential energy of the water, the flow rate (measured in GPM) represents the actual volume of water moving through an opening over time.

The Orifice Flow Formula

To calculate the flow rate through an opening (like a nozzle, a pipe leak, or an orifice) based on pressure, we use a derivation of Torricelli's Law and Bernoulli's Principle. The practical formula used in US customary units is:

Q = 29.83 × Cd × D² × √P

Where:

  • Q = Flow Rate in Gallons Per Minute (GPM)
  • Cd = Discharge Coefficient (efficiency of the opening)
  • D = Diameter of the opening in inches
  • P = Pressure in PSI (Pounds per Square Inch)
  • 29.83 = A mathematical constant converting units

Understanding the Variables

Pressure (PSI): This is the gauge pressure reading right before the water exits the opening. Higher pressure forces water out faster.

Diameter (D): Small changes in diameter have a massive impact on flow. Because the formula squares the diameter ($D^2$), doubling the diameter roughly quadruples the flow rate.

Discharge Coefficient ($C_d$): Real-world openings create friction and turbulence. The $C_d$ accounts for this. A perfectly smooth nozzle might have a $C_d$ of 0.98, while a jagged hole in a pipe might only have a $C_d$ of 0.60.

Example Calculation

Imagine you have a fire hose with a 1-inch smooth nozzle ($C_d$ = 0.90) operating at 50 PSI.

  1. Square the diameter: 1² = 1
  2. Find the square root of pressure: √50 ≈ 7.07
  3. Apply the formula: 29.83 × 0.90 × 1 × 7.07
  4. Result: Approximately 189.8 GPM
function calculateWaterFlow() { // 1. Get input values var pressure = document.getElementById('pressurePsi').value; var diameter = document.getElementById('diameterInch').value; var cd = document.getElementById('dischargeCoeff').value; var resultsDiv = document.getElementById('resultsArea'); // 2. Validate inputs if (pressure === "" || diameter === "" || pressure < 0 || diameter <= 0) { alert("Please enter valid positive numbers for Pressure and Diameter."); return; } // Convert strings to floats var p = parseFloat(pressure); var d = parseFloat(diameter); var c = parseFloat(cd); // 3. Perform Calculations // Formula: Q (GPM) = 29.83 * Cd * d^2 * sqrt(p) var gpm = 29.83 * c * Math.pow(d, 2) * Math.sqrt(p); // Convert GPM to Liters Per Minute (LPM) // 1 US Gallon = 3.78541 Liters var lpm = gpm * 3.78541; // Calculate Velocity (Feet per Second) // Formula: V = (0.408 * Q) / d^2 var velocity = (0.408 * gpm) / Math.pow(d, 2); // 4. Update the DOM with results document.getElementById('resGPM').innerHTML = gpm.toFixed(2) + " GPM"; document.getElementById('resLPM').innerHTML = lpm.toFixed(2) + " LPM"; document.getElementById('resVelocity').innerHTML = velocity.toFixed(2) + " ft/sec"; // Show the results box resultsDiv.style.display = "block"; }

Leave a Comment