Mechanics

Bernoulli's Principle

Faster fluid = lower pressure — the equation that lifts airplanes and curves baseballs

Bernoulli's principle says that for an inviscid, steady, incompressible fluid flow, faster-moving regions have lower pressure. Mathematically — P + ½ρv² + ρgh = constant along a streamline. Explains airplane lift, curveballs (Magnus effect), Venturi meters, and water flowing through pipes. A direct consequence of energy conservation applied to fluid flow.

  • EquationP + ½·ρ·v² + ρ·g·h = constant
  • Pressure formΔP = ½·ρ·(v₂² − v₁²) (constant height)
  • SourceDaniel Bernoulli, 1738 (Hydrodynamica)
  • From energy conservationPressure-volume work + KE + gravitational PE conserved per unit volume
  • Inviscid (no viscosity)Approximation — ignores friction in fluid
  • IncompressibleDensity constant — good for liquids; bad for fast gases

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

Bernoulli's equation

For an inviscid, incompressible, steady-flow fluid along a streamline:

P + ½·ρ·v² + ρ·g·h = constant

where:

  • P — pressure (Pa).
  • ρ — fluid density (kg/m³).
  • v — fluid velocity (m/s).
  • g — gravitational acceleration (9.81 m/s²).
  • h — height (m).

This is energy conservation per unit volume — pressure work + kinetic energy + gravitational PE.

Key insights

Change in flowBernoulli's predictionExample
v increasesP decreasesAir over airplane wing
v decreasesP increasesPitot tube tip (air comes to rest)
h increasesP decreases (in static fluid, h up = lower P)Pressure decreases with altitude
Pipe narrows (continuity: v_2 = v_1·A_1/A_2)v↑, P↓Venturi meter

Continuity equation

For incompressible fluid in a pipe of varying cross-section:

A·v = constant (along the pipe)

Or for compressible: ρ·A·v = constant (mass flow rate).

This says fluid speeds up where pipes narrow. Combine with Bernoulli — narrower pipes have higher velocity AND lower pressure.

Real-world Bernoulli applications

SystemBernoulli at work
Airplane wingCurved upper surface → faster air → lower pressure → lift
Pitot tube (airspeed)Stagnation point at tube tip; pressure difference indicates speed
Venturi meterPipe constriction; pressure drop measures flow rate
Magnus effectSpinning ball; airflow asymmetry causes pressure difference, sideways force
Carburetor (older cars)Air rushing through narrow throat creates low pressure, sucking in fuel
Spray bottlesFast air drawn across tube creates low pressure, pulls liquid up
Hurricane eyeInward-rushing air → fast → low pressure at center
ChimneysWind across top creates low pressure, draws smoke out

Lift on an airplane wing

Wing shape (airfoil) curves more on top than bottom. Air over top travels a longer path in the same time → faster v. By Bernoulli, top side has LOWER P than bottom.

Pressure difference × wing area = lift force.

For a typical commercial airplane:

  • Cruise speed ~250 m/s.
  • Air over top ~280 m/s, bottom ~250 m/s.
  • Pressure difference ~ ½·ρ·(280² - 250²) = ½ × 0.4 × 15,900 ≈ 3,200 Pa.
  • Wing area ~500 m² for big jet.
  • Lift ~ 3,200 × 500 = 1.6 MN — supports 160 tonnes.

Note: Modern aerodynamics also emphasizes Newton's 3rd law (wing deflects air downward, gets pushed up). Both views coexist.

JavaScript — Bernoulli calculations

// Bernoulli equation: solve for any unknown
function bernoulliPressure(P1, v1, h1, v2, h2, rho) {
  // P1 + ½ρv1² + ρgh1 = P2 + ½ρv2² + ρgh2
  // Solve for P2
  return P1 + 0.5 * rho * v1 * v1 + rho * 9.81 * h1
       - 0.5 * rho * v2 * v2 - rho * 9.81 * h2;
}

// Pressure drop in a pipe constriction (h1 = h2)
function venturi(P1, v1, A1, A2, rho = 1000) {
  // Continuity: v2 = v1 * A1/A2
  const v2 = v1 * A1 / A2;
  // Bernoulli: ΔP = ½ρ(v1² - v2²)
  return P1 + 0.5 * rho * (v1*v1 - v2*v2);
}

// Pipe narrows from 10 cm² to 5 cm² (factor of 2)
console.log(`Venturi: P drops to ${venturi(101325, 1, 0.001, 0.0005).toFixed(0)} Pa from 101325`);
// v2 = 2 m/s, ΔP = ½ × 1000 × (1 - 4) = -1500 Pa, so P2 = 99,825 Pa

// Airplane lift estimate
function wingLift(rho, v_top, v_bottom, area) {
  // Pressure difference
  const dP = 0.5 * rho * (v_top*v_top - v_bottom*v_bottom);
  return dP * area;  // Force is downward pressure × area on bottom, but top has lower; net lift = dP·A
}

console.log(`Boeing 747 cruise lift: ${(wingLift(0.4, 280, 250, 500) / 1000).toFixed(0)} kN`);
// ~3,180 kN supports ~325 tonnes

// Pitot tube — measure airspeed
function airspeedFromPitot(deltaP, rho = 1.225) {
  // Stagnation: ½ρv² = deltaP. So v = √(2·ΔP/ρ)
  return Math.sqrt(2 * deltaP / rho);
}

console.log(`200 Pa pitot: ${airspeedFromPitot(200).toFixed(1)} m/s`); // ~18 m/s
console.log(`5000 Pa pitot: ${airspeedFromPitot(5000).toFixed(1)} m/s`); // ~90 m/s

// Hurricane: very low pressure at center from fast inflow
function hurricaneCenter(P_outside, v_outside, v_center, rho = 1.225) {
  return P_outside + 0.5 * rho * (v_outside*v_outside - v_center*v_center);
}

// Outside winds 0 m/s, eyewall winds 70 m/s (Cat 4)
console.log(`Hurricane center: ${hurricaneCenter(101325, 0, 70).toFixed(0)} Pa`);
// 101325 - 0.5 × 1.225 × 70² = 101325 - 3,000 = 98,325 (~970 mbar; matches real hurricanes)

Where Bernoulli matters

  • Aerodynamics. Aircraft, helicopters, kites, projectiles. Lift, drag, pressure distribution.
  • Hydraulics. Pipe flow, water hammers, dam spillways, pumps.
  • HVAC. Air conditioning, ventilation, smoke control in buildings.
  • Sports. Magnus effect on spinning balls, swimming/sailing aerodynamics.
  • Medicine. Spirometers, blood flow analysis, atherosclerosis (narrowed arteries → fast flow → low pressure → can collapse).
  • Industry. Venturi meters, ejectors, jet pumps, atomizers.
  • Meteorology. Hurricane low-pressure centers, jet stream dynamics, wind speed estimation.

Common mistakes

  • Applying it across streamlines. Bernoulli is per streamline; comparing two regions only works if they're on the same flow path or in equivalent flow conditions.
  • Forgetting it's for inviscid flow. Real fluids have viscosity. Bernoulli is approximate; gradually fails for high-viscosity fluids or large pipes.
  • Using for compressible flow at high speed. At Mach > 0.3, density changes substantially. Need compressible-flow Bernoulli (more complex).
  • Confusing static and dynamic pressure. Static — pressure on a wall (P). Dynamic — kinetic-energy-equivalent (½ρv²). Total = stagnation pressure (sum). Pitot tubes measure stagnation - static = dynamic, giving velocity.
  • Wrong direction for lift on airplane. Pressure is HIGHER on the BOTTOM, LOWER on top. Net force is UP. Easy to confuse "low" with "no" pressure.
  • Treating airplane lift as 100% Bernoulli. Modern view — angle of attack and Newton's 3rd are major contributors. Bernoulli alone gives ~half the lift; deflection theory gives the other half. Both views are correct; they're equivalent.

Frequently asked questions

Why does faster fluid have lower pressure?

Bernoulli's equation comes from energy conservation along a streamline. Total energy per unit volume = pressure + kinetic + gravitational PE. If fluid speeds up, KE increases. To keep total energy constant, pressure (or gravitational PE) must decrease. Like a moving fluid "spends" some pressure for kinetic energy. The relation is ½ρv² added to KE comes "out of" P.

How does Bernoulli explain airplane lift?

Wing shape (airfoil) is curved on top, flat-ish on bottom. Air takes a longer path over the top, moving faster. By Bernoulli, faster air = lower pressure on top. Higher pressure below pushes the wing UP. Lift = pressure difference × area. This is partial — modern explanation also includes Newton's 3rd law (wing deflects air down, gets pushed up).

When does Bernoulli's principle FAIL?

(1) Viscous flow — friction in real fluids dissipates energy; Bernoulli's exact form is only valid for ideal (inviscid) fluids. (2) Compressible flow — at high speeds (Mach > 0.3), density changes; need compressible Bernoulli. (3) Unsteady flow — Bernoulli's classical form assumes steady (time-independent) flow. (4) Across streamlines — Bernoulli applies along a single streamline, not between separate ones (in general).

How does a Venturi meter work?

A pipe constricts to smaller cross-section, then re-expands. Fluid flowing through must speed up in the narrow section (continuity: ρ·A·v = constant). By Bernoulli, faster v → lower P. Pressure tap measures pressure difference; flow rate calculated. Used to measure airplane airspeed (pitot-static), industrial flow rates, breathing in spirometers.

How is Bernoulli related to Magnus effect?

Same principle. A spinning ball drags air faster on one side (where surface motion aids airflow) and slower on the other. Faster side has lower pressure (Bernoulli). Pressure difference creates net sideways force = Magnus force.

Why don't airplanes that fly upside down work in opposite direction?

They DO; that's why upside-down flight requires angle of attack (nose tilted up relative to flight direction). The wing shape generates "negative lift" upside down, but the angle of attack contributes positive lift. Stunt pilots fly upside down by tilting the wing's effective angle. Bernoulli's principle is one factor; angle of attack via Newton's 3rd is the dominant lift mechanism in modern explanation.

How does Bernoulli explain hurricane low pressure?

Air rushing inward toward a hurricane's center accelerates rapidly. By Bernoulli, faster air = lower pressure. The center has very low pressure (~870 mbar in the strongest typhoons) — that's part of why winds are so strong (huge pressure gradient drives them). Coriolis effect makes them rotate.