How to Calculate Flow Rate from Psi

.flow-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; line-height: 1.6; } .flow-calc-container h2 { color: #2c3e50; margin-top: 0; text-align: center; } .calc-section { background: #fff; padding: 20px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-bottom: 30px; } .input-group { margin-bottom: 15px; } .input-group label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 14px; } .input-group input, .input-group select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .calc-btn { width: 100%; background-color: #0073aa; color: white; padding: 12px; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; margin-top: 10px; } .calc-btn:hover { background-color: #005177; } .result-box { margin-top: 20px; padding: 15px; background-color: #e7f3ff; border-left: 5px solid #0073aa; display: none; } .result-box h3 { margin-top: 0; color: #005177; } .result-value { font-size: 24px; font-weight: bold; color: #333; } .article-content h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 5px; } .example-box { background: #f0f0f0; padding: 15px; border-radius: 4px; margin: 15px 0; border-left: 4px solid #666; }

Flow Rate From PSI Calculator

Smooth Bore Nozzle (0.99) Sharp Edged Orifice (0.90) Average Valve (0.80) Square Edged Orifice (0.62)

Calculated Flow Rate:

How to Calculate Flow Rate from PSI

In fluid dynamics, the relationship between pressure (PSI) and flow rate (GPM) is determined by the size of the opening (orifice) the fluid is passing through. This calculation is essential for irrigation systems, fire protection engineering, and industrial plumbing.

The Discharge Formula

The standard formula to calculate the flow rate of water discharging into the atmosphere from an orifice is:

GPM = 29.7 × d² × √P × Cd

  • GPM: Gallons Per Minute
  • d: Diameter of the orifice in inches
  • P: Pressure at the orifice in PSI (Pounds per Square Inch)
  • Cd: Discharge Coefficient (accounts for friction and turbulence)

Step-by-Step Calculation Example

Scenario: You have a 1/2-inch (0.5″) nozzle operating at 40 PSI using a smooth bore tip (Cd = 0.99).

  1. Square the diameter: 0.5 × 0.5 = 0.25
  2. Find the square root of the pressure: √40 ≈ 6.32
  3. Multiply by the constant: 29.7 × 0.25 × 6.32 × 0.99
  4. Result: ≈ 46.47 GPM

The Pressure-Flow Relationship

It is important to remember that flow rate is proportional to the square root of the pressure. This means that to double your flow rate through the same nozzle, you must increase the pressure by four times. Conversely, if you double the diameter of the hole, the flow rate increases by four times because diameter is squared in the formula.

Common Discharge Coefficients (Cd)

Orifice Type Typical Cd
Smooth Bore Nozzle 0.99
Circular Orifice (Short tube) 0.82
Square-edged Orifice 0.62
function calculateFlow() { var d = parseFloat(document.getElementById("orifice_dia").value); var p = parseFloat(document.getElementById("pressure_psi").value); var cd = parseFloat(document.getElementById("coeff").value); if (isNaN(d) || isNaN(p) || d <= 0 || p <= 0) { alert("Please enter valid positive numbers for diameter and pressure."); return; } // Formula: GPM = 29.7 * d^2 * sqrt(P) * Cd var dSquared = d * d; var sqrtP = Math.sqrt(p); var gpm = 29.7 * dSquared * sqrtP * cd; // Convert to LPM (1 GPM = 3.78541 Liters) var lpm = gpm * 3.78541; // Display Results document.getElementById("flowResult").style.display = "block"; document.getElementById("gpm_val").innerHTML = gpm.toFixed(2) + " GPM (US Gallons)"; document.getElementById("lpm_val").innerHTML = "Equivalent to " + lpm.toFixed(2) + " LPM (Liters Per Minute)"; }

Leave a Comment