Pump Cavitation

Category: Fluid Analysis (CFD) | Integrated 2026-04-06
CAE visualization for cavitation pump theory - technical simulation diagram
Pump Cavitation โ€” NPSH Theory and Bubble Dynamics

Pump Cavitation: Theoretical Foundations

Overview

๐Ÿง‘โ€๐ŸŽ“

Pump cavitation is the phenomenon where bubbles form and pop, causing damage, right?


๐ŸŽ“

That's roughly correct. When the static pressure of the liquid falls below the saturated vapor pressure, vapor bubbles form and then collapse in the downstream high-pressure region. This collapse generates a localized shock pressure of several GPa, eroding the impeller surface.


๐Ÿง‘โ€๐ŸŽ“

Several GPa!? That would definitely cause damage...


๐ŸŽ“

It's also serious for performance. It causes head drop, increased vibration, and increased noise. That's why avoiding cavitation is one of the top priorities in pump design.


Definition of NPSH

๐Ÿง‘โ€๐ŸŽ“

I often hear about NPSH, but what is its precise definition?


๐ŸŽ“

NPSH (Net Positive Suction Head) represents how much margin the liquid has above the vapor pressure on the suction side.


$$ NPSH_a = \frac{p_{atm} - p_v}{\rho g} + z_s - h_f $$

$p_{atm}$: Atmospheric pressure, $p_v$: Saturated vapor pressure, $z_s$: Height from liquid surface to pump center, $h_f$: Friction head loss in the suction pipe. This is the system-side NPSH (Available).


๐Ÿง‘โ€๐ŸŽ“

There's also an NPSH on the pump side, right?


๐ŸŽ“

NPSH_r (Required) is the minimum NPSH required by the pump itself, defined as the point where the head drops by 3%. For safety, this condition must be met:


$$ NPSH_a > NPSH_r \times 1.1 \sim 1.3 $$

It can also be expressed by the cavitation coefficient (Thoma number).


$$ \sigma = \frac{NPSH}{H} $$

Rayleigh-Plesset Equation

๐Ÿง‘โ€๐ŸŽ“

Is there an equation that describes bubble growth and collapse?


๐ŸŽ“

The Rayleigh-Plesset equation is fundamental.


$$ R \ddot{R} + \frac{3}{2} \dot{R}^2 = \frac{p_B - p_\infty(t)}{\rho_l} - \frac{4 \nu_l \dot{R}}{R} - \frac{2 S}{\rho_l R} $$

$R$: Bubble radius, $p_B$: Pressure inside the bubble, $p_\infty$: Surrounding pressure, $S$: Surface Tension. CFD cavitation models simplify this into a mass transport equation.

Coffee Break Trivia

The History of Cavitation Troubles for Submarines

The bubble dynamics of pump cavitation (Rayleigh-Plesset equation) began to be treated as a serious practical problem starting with submarine propellers during World War I. Bubbles violently formed and collapsed near the propeller blade tips, causing the dual problems of reduced propulsion efficiency and metal erosion. Post-war research systematized the concept of NPSH (Net Positive Suction Head), which has been carried over into modern pump design.

Computational Methods for Pump Cavitation

Homogeneous Mixture Model

๐Ÿง‘โ€๐ŸŽ“

How do you calculate cavitation in CFD?


๐ŸŽ“

The most widely used is the Homogeneous Mixture model. It treats the liquid and vapor phases as a single fluid and solves a transport equation for the vapor volume fraction $\alpha_v$.


$$ \frac{\partial (\rho_m \alpha_v)}{\partial t} + \nabla \cdot (\rho_m \alpha_v \mathbf{v}) = \dot{m}^+ - \dot{m}^- $$

$\dot{m}^+$ is the evaporation (bubble formation) source term, and $\dot{m}^-$ is the condensation (bubble collapse) source term.


๐Ÿง‘โ€๐ŸŽ“

What kind of models are there for the source terms?


๐ŸŽ“

Let's compare three representative ones.


ModelFeaturesUsed in Solvers
Zwart-Gerber-BelamriBased on nucleation site density, easy parameter adjustmentCFX (default), STAR-CCM+
Schnerr-SauerBased on Rayleigh-Plesset, requires bubble number density specificationOpenFOAM (interPhaseChangeFoam), Fluent
Singhal (Full Cavitation)Considers non-condensable gases, practicalFluent
๐Ÿง‘โ€๐ŸŽ“

So the Zwart model is standard in CFX, huh.


๐ŸŽ“

Yes. Default values are evaporation coefficient $F_{vap}=50$, condensation coefficient $F_{cond}=0.01$. Typical values are nucleation site volume fraction $\alpha_{nuc}=5 \times 10^{-4}$, initial bubble radius $R_B=10^{-6}$ m.


Key Points for Numerical Settings

๐Ÿง‘โ€๐ŸŽ“

Are there any tips for getting cavitation calculations to converge?


๐ŸŽ“

It's a difficult calculation, so there are several key points.


  • Time Step: Unsteady is mandatory. Aim for 1/20 to 1/50 of the time for one blade passage.
  • Convergence Criteria: Target RMS residuals of $10^{-5}$ or better (sometimes they only drop to $10^{-4}$ due to cavitation oscillations).
  • Initial Conditions: First, get a steady-state solution without cavitation, then turn the cavitation model ON from there.
  • Compressibility: Due to the large vapor-liquid density ratio, settings that numerically consider compressibility are necessary.
Coffee Break Trivia

Zwart, Merkle, Singhalโ€”The Battle of Three Models

A common question heard on the CFD cavitation analysis front lines: "Which model should I use?" The Zwart model explicitly handles nucleation site density, the Merkle model is an empirical form that reacts directly to pressure difference, and the Singhal (Full Cavitation) model is the most complex configuration that even considers dissolved gases. Benchmark studies sometimes show the ranking changing depending on the case, so it's hard to definitively say "this one is the best." Since results are heavily influenced by initial values, mesh, and empirical constant settings, validation with in-house experiments is essential.

Pump Cavitation in Practice

Procedure for Obtaining NPSH Characteristic Curve

๐Ÿง‘โ€๐ŸŽ“

How do I plot an NPSH curve using CFD?


๐ŸŽ“

The general method is to gradually lower the inlet total pressure.


1. Baseline Calculation: Obtain a steady-state solution at a sufficiently high NPSHa (no cavitation)

2. Lower Inlet Pressure: Decrease inlet total pressure in steps of 0.1~0.2 atm

3. Unsteady Calculation at Each Point: Perform unsteady calculation for several rotations with the cavitation model ON

4. Record Time-Averaged Head: The point where the head drops by 3% from the baseline is NPSH_r


๐Ÿง‘โ€๐ŸŽ“

Isn't a 0.1 atm step size rather coarse?


๐ŸŽ“

Since the head drops sharply near NPSH_r, it's efficient to first get a rough overall picture with coarse steps, then refine near the 3% drop point with 0.02~0.05 atm steps.


Visualization and Evaluation

๐Ÿง‘โ€๐ŸŽ“

How should I look at cavitation results?


๐ŸŽ“
Related Simulators

Experience the theory firsthand with the interactive simulator for this field

All Simulators
Rate this article
Thank you for your feedback!
Helpful
More details
Report error
Helpful
0
More details
0
Report error
0
Written by NovaSolver Contributors
Anonymous Engineers & AI โ€” Sitemap