Understanding the flow rate of a pump is crucial for designing efficient fluid transport systems, whether for industrial applications, irrigation, or HVAC systems. The flow rate determines how much volume of fluid the pump can move over a specific period.
While flow rate can sometimes be measured physically, it is often calculated during the design phase using the pump's available power, its efficiency curve, the total head (pressure) it needs to overcome, and the density of the fluid being pumped.
The Pump Flow Rate Calculator
Use the calculator below to determine the estimated volumetric flow rate based on pump shaft power, system head, pump efficiency, and fluid density.
Pump Flow Rate Calculator
Please enter valid positive numbers for all fields. Head must be greater than zero.
Flow Rate (m³/h):
Flow Rate (Liters/min):
Flow Rate (Liters/sec):
function calculatePumpFlow() {
// 1. Get Input Values
var powerKWStr = document.getElementById("shaftPower").value;
var efficiencyStr = document.getElementById("pumpEfficiency").value;
var headMetersStr = document.getElementById("totalHead").value;
var densityStr = document.getElementById("fluidDensity").value;
// 2. Parse values to numbers
var powerKW = parseFloat(powerKWStr);
var efficiencyPct = parseFloat(efficiencyStr);
var headMeters = parseFloat(headMetersStr);
var density = parseFloat(densityStr);
var errorDiv = document.getElementById("errorMessage");
var resultsDiv = document.getElementById("calc-results");
// 3. Validate Inputs (Edge cases: NaN, negatives, zero head)
if (isNaN(powerKW) || powerKW < 0 ||
isNaN(efficiencyPct) || efficiencyPct 100 ||
isNaN(headMeters) || headMeters <= 0 ||
isNaN(density) || density <= 0) {
errorDiv.style.display = "block";
resultsDiv.style.display = "none";
return;
}
// Reset error message if inputs are valid
errorDiv.style.display = "none";
// 4. Constants
var gravity = 9.81; // m/s²
// 5. Calculation Logic
// The fundamental formula relates Hydraulic Power (Ph) to flow (Q), Head (H), density (rho), and gravity (g).
// Ph (Watts) = rho * g * Q (m³/s) * H (m)
// We have Shaft Power (Ps in kW) and Efficiency (eta).
// Ph (Watts) = Ps (kW) * 1000 * (Efficiency / 100)
// Combining and solving for Q (m³/s):
// Q (m³/s) = (Ps_kW * 1000 * (EfficiencyPct / 100)) / (density * gravity * Head_m)
var hydraulicPowerWatts = powerKW * 1000 * (efficiencyPct / 100);
var denominator = density * gravity * headMeters;
var flowM3PerSecond = hydraulicPowerWatts / denominator;
// 6. Unit Conversions
var flowM3PerHour = flowM3PerSecond * 3600;
var flowLitersPerSecond = flowM3PerSecond * 1000;
var flowLitersPerMinute = flowLitersPerSecond * 60;
// 7. Display Results (formatting to 2 decimal places)
document.getElementById("resultM3H").innerHTML = flowM3PerHour.toFixed(2);
document.getElementById("resultLPM").innerHTML = flowLitersPerMinute.toFixed(2);
document.getElementById("resultLPS").innerHTML = flowLitersPerSecond.toFixed(2);
resultsDiv.style.display = "block";
}
Understanding the Pump Flow Rate Formula
The calculator above uses the relationship between the power supplied to the pump, the efficiency with which the pump converts that power into fluid movement, and the resistance (head) the fluid must overcome.
The core formula derived from fluid mechanics principles is:
$g$: Acceleration due to gravity (approx 9.81 m/s²)
$Q$: Flow rate (m³/s)
$H$: Total Dynamic Head (m)
To find the flow rate ($Q$), we rearrange the formula and account for the fact that we usually know the motor's shaft power and its efficiency, rather than the pure hydraulic power.
Key Variables Explained
Shaft Power (kW): This is the mechanical power delivered by the motor to the pump shaft. Not all of this power goes into moving the fluid; some is lost to friction and inefficiencies.
Pump Efficiency (%): This is the ratio of useful hydraulic power delivered to the fluid versus the shaft power input. A typical centrifugal pump might operate between 60% and 85% efficiency at its best efficiency point (BEP).
Total Dynamic Head (meters): This represents the total equivalent height that the fluid is being lifted, plus all the friction losses in the pipes, valves, and fittings.
Fluid Density (kg/m³): The "heaviness" of the fluid affects how much power is needed to move it. Standard water is approximately 1000 kg/m³. Heavier fluids (like slurry) require more power to achieve the same flow rate against the same head.
Practical Example Calculation
Let's say you have the following setup for pumping standard water:
* Motor Power: 7.5 kW
* Estimated Efficiency: 75%
* Required Head: 25 meters
* Density: 1000 kg/m³ (Water)
Using the calculator above, you would input these values. The calculation determines that to lift water 25 meters using a 7.5kW motor running at 75% efficiency, the resulting flow rate would be approximately 82.57 m³/h (or roughly 1376 Liters/minute).
Note: This calculation assumes the pump is operating exactly at the specified input points. In reality, pumps operate along a "pump curve" established by the manufacturer. This calculator provides a theoretical estimation based on the physics at a specific operating point.