How to Calculate Centrifugal Pump Flow Rate

Centrifugal Pump Flow Rate Calculator

Calculate GPM based on Horsepower, Head, and Efficiency

Estimated Flow Rate:

Gallons Per Minute (GPM)

How to Calculate Centrifugal Pump Flow Rate

Understanding the flow rate of a centrifugal pump is critical for hydraulic system design, industrial processing, and irrigation management. The flow rate, typically measured in Gallons Per Minute (GPM), describes the volume of liquid a pump moves within a specific timeframe against a certain amount of resistance.

The Centrifugal Pump Formula

When you know the motor power and the pressure (head) the pump is working against, you can determine the flow rate using the following mechanical relationship:

Q = (BHP × 3960 × η) / (H × SG)

Where:

  • Q = Flow Rate (Gallons Per Minute)
  • BHP = Brake Horsepower (Actual power delivered to the pump shaft)
  • 3960 = Conversion constant for US units
  • η (Eta) = Pump Efficiency (expressed as a decimal, e.g., 0.75 for 75%)
  • H = Total Dynamic Head in feet
  • SG = Specific Gravity of the fluid (1.0 for cold water)

Step-by-Step Calculation Example

Suppose you have a centrifugal pump with the following specifications:

  • Brake Horsepower: 15 HP
  • Total Dynamic Head: 100 feet
  • Efficiency: 70% (0.70)
  • Fluid: Water (SG = 1.0)

Step 1: Multiply HP by the constant and efficiency.
15 × 3960 × 0.70 = 41,580

Step 2: Multiply Head by Specific Gravity.
100 × 1.0 = 100

Step 3: Divide Step 1 by Step 2.
41,580 / 100 = 415.8 GPM

Factors Affecting Flow Rate

It is important to remember that centrifugal pumps are dynamic devices. Several factors can alter the actual output compared to theoretical calculations:

  • Impeller Wear: Over time, erosion or corrosion of the impeller reduces efficiency and flow.
  • Fluid Viscosity: Pumping thicker fluids (like oils or syrups) requires more power and significantly reduces flow compared to water.
  • Suction Conditions: Cavitation or restricted suction lines can prevent the pump from reaching its rated flow capacity.
  • System Curve: The actual flow occurs where the Pump Performance Curve intersects with the System Resistance Curve.
function calculatePumpFlow() { var hp = parseFloat(document.getElementById("pumpBHP").value); var head = parseFloat(document.getElementById("pumpHead").value); var efficiency = parseFloat(document.getElementById("pumpEfficiency").value); var sg = parseFloat(document.getElementById("pumpSG").value); var resultArea = document.getElementById("pumpResultArea"); var flowValue = document.getElementById("flowValue"); if (isNaN(hp) || isNaN(head) || isNaN(efficiency) || isNaN(sg) || hp <= 0 || head <= 0 || efficiency <= 0 || sg <= 0) { alert("Please enter valid positive numbers for all fields."); resultArea.style.display = "none"; return; } // Efficiency as a decimal var decimalEff = efficiency / 100; // Q = (BHP * 3960 * Eff) / (Head * SG) var gpm = (hp * 3960 * decimalEff) / (head * sg); flowValue.innerHTML = gpm.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 }); resultArea.style.display = "block"; }

Leave a Comment