DEV Community

Cover image for Reading the Centrifugal Pump Curve: How a Pump Finds Its Operating Point
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Reading the Centrifugal Pump Curve: How a Pump Finds Its Operating Point

A pump sitting on a test bench has no fixed flow rate. Connect the same pump to a short, wide pipe and it will move a torrent of water; connect it to a long, narrow run with a high lift and the flow collapses to a trickle. The pump did not change. The piping did. A centrifugal pump does not "have" a duty point until you tell it what it is pumping against.

That is the idea behind the pump curve and the system curve. One describes what the machine can deliver, the other describes what the installation demands, and the place they intersect is the only flow rate the system can actually settle at. This article walks through how to find that point, work the power numbers, and avoid the traps that lead to oversized, energy-wasting pumps.

Why this calculation matters

Getting the operating point right is the difference between a pump that runs quietly for years and one that vibrates, cavitates, or burns money. Centrifugal pumps are designed to be most efficient at a single flow — the best efficiency point, or BEP. Run them far to the left or right of it and efficiency drops, recirculation starts, bearings and seals see higher loads, and the energy bill climbs.

The problem is that engineers often size pumps from the head and flow on a datasheet, without checking where the chosen pump will actually sit on the chosen piping. A pump rated for 30 m of head does not deliver 30 m into a real system — it delivers whatever head the intersection allows. Skip the curve intersection and you are guessing. Worse, padding the estimate "to be safe" pushes the duty point off-BEP and often makes things worse, not better.

The core method

Two curves do the work.

The pump curve (or H-Q curve) gives the head a pump can produce at each flow rate. For a centrifugal pump it slopes downward — the harder you push for flow, the less head is available. A common approximation is a downward parabola:

H_pump = H0 - a*Q^2
Enter fullscreen mode Exit fullscreen mode

The system curve describes the head the installation requires. It has two parts: a fixed static component (the vertical lift plus any pressure difference), and a friction component that grows with the square of flow because pipe losses scale with velocity squared:

H_sys = H_static + b*Q^2
Enter fullscreen mode Exit fullscreen mode

The pump can only run where it supplies exactly the head the system needs. Set the two equal and solve:

H_pump = H_sys
H0 - a*Q^2 = H_static + b*Q^2
Enter fullscreen mode Exit fullscreen mode

That gives the operating flow Q, and substituting back into either curve gives the operating head H. From there the hydraulic power delivered to the fluid is:

P_hydraulic = rho*g*Q*H
Enter fullscreen mode Exit fullscreen mode

where rho is fluid density, g is 9.81 m/s^2, Q is in m^3/s, and H in metres. The actual shaft power the motor must supply is larger, because no pump is perfect:

P_shaft = P_hydraulic / eta_pump
Enter fullscreen mode Exit fullscreen mode

with eta_pump the pump efficiency, often in the 0.6 to 0.85 range for general-purpose units.

A worked example

Take a pump whose head curve is approximated as:

H_pump = 30 - 4000*Q^2     (H in metres, Q in m^3/s)
Enter fullscreen mode Exit fullscreen mode

It feeds a system with a static lift of 10 m plus friction, so the system curve is:

H_sys = 10 + 3200*Q^2
Enter fullscreen mode Exit fullscreen mode

Step 1 — find the operating flow. Set the curves equal:

30 - 4000*Q^2 = 10 + 3200*Q^2
20 = 7200*Q^2
Q^2 = 0.002778
Q = 0.0527 m^3/s
Enter fullscreen mode Exit fullscreen mode

So the system settles at about 0.0527 m^3/s — roughly 190 m^3/h.

Step 2 — find the operating head. Substitute Q back into the system curve:

H = 10 + 3200*0.002778 = 18.9 m
Enter fullscreen mode Exit fullscreen mode

The pump delivers 18.9 m of head, not the 30 m shut-off value. Anyone who sized the motor on the shut-off head would be far off.

Step 3 — hydraulic power. With water at rho = 998 kg/m^3:

P_hydraulic = rho*g*Q*H
P_hydraulic = 998 * 9.81 * 0.0527 * 18.9 = about 9.76 kW
Enter fullscreen mode Exit fullscreen mode

Step 4 — shaft power. Assuming a pump efficiency of 70 %:

P_shaft = 9.76 / 0.70 = about 13.9 kW
Enter fullscreen mode Exit fullscreen mode

So this duty needs a motor comfortably above 13.9 kW — a 15 kW frame, with margin. The hydraulic work is under 10 kW; the rest is lost inside the pump. That gap between 9.76 kW and 13.9 kW is exactly why efficiency belongs in every pump calculation, not as an afterthought.

Common mistakes

Reading head off the datasheet instead of the intersection. The catalogue head is one point on a whole curve. The real operating head is set by where the pump curve meets your system curve, and it is almost always lower than the headline figure.

Forgetting that friction scales with the square of flow. Doubling the flow roughly quadruples the friction head. A system curve that looks gentle at low flow can rise steeply, dragging the operating point left of where you expected.

Oversizing "for safety." A pump chosen with generous margin runs to the right of BEP at low system resistance, or gets throttled back hard with a valve — wasting the very head you paid to generate. Margin in pump selection often costs efficiency.

Ignoring efficiency in the power estimate. Hydraulic power is not shaft power. Sizing a motor on rho*g*Q*H alone underestimates the load by 20 to 40 %, depending on the pump.

Treating one curve as fixed forever. A throttled valve, a fouled filter, or a clogged strainer all steepen the system curve over time, sliding the operating point to lower flow. The intersection moves; periodic checks are worth the effort.

Try the interactive NovaSolver calculator

Solving one intersection by hand is quick, but the real value comes from watching the operating point move as you change the installation. The Centrifugal Pump Curves Simulator on NovaSolver lets you adjust impeller diameter, rotational speed, static head, and pipe resistance, then plots the H-Q, efficiency, and system curves together. It marks the operating point and the best efficiency point automatically, so you can see immediately whether your duty sits near BEP or drifts away from it.

Related calculators

Browse the full set in the fluid mechanics tools hub.

Closing note

A centrifugal pump has no single output until it is connected to something. The pump curve says what it can do, the system curve says what is asked of it, and the intersection is the answer. Solve for that point, substitute back for head, then carry the efficiency through to shaft power before you size the motor. Do those three steps and you avoid the two most common pump errors at once: undersizing the drive and oversizing the pump.

Top comments (0)