Article
Aerospace Engineering · Orbital Mechanics · ⏱ ~11 min read · Last updated: 9 July 2026

The Oberth Maneuver — Squeezing More Delta-v Out of Every Burn

Hermann Oberth noticed something that still surprises engineering students: the same rocket burn, in the same rocket, produces different amounts of useful orbital energy depending on how fast you are already moving when you fire. Burn deep inside a gravity well — at periapsis, close to a planet — and you get a bonus in kinetic energy for free. This single insight shapes how every interplanetary mission sequences its engine burns.

TL;DR: Because kinetic energy scales with velocity squared, firing a rocket engine while already moving fast — at periapsis, the closest point to a planet — converts the same propellant into far more orbital energy than burning at low speed. This is why missions like New Horizons and Parker Solar Probe time their burns and powered flybys to occur exactly at periapsis.

1. Why Kinetic Energy Is the Key

A rocket engine changes velocity by a fixed amount — the delta-v — regardless of how fast the vehicle is already going. But kinetic energy is proportional to the square of velocity, not velocity itself. That squared relationship is the entire mechanism behind the Oberth effect: adding a small delta-v to a large existing velocity increases energy by far more than adding the same delta-v to a small velocity.

KE = ½mv² Before burn: KE₁ = ½m·v² After burn (Δv added prograde): KE₂ = ½m·(v + Δv)² Expand: KE₂ = ½m·(v² + 2v·Δv + Δv²) Energy gained: ΔKE = KE₂ − KE₁ = m·v·Δv + ½m·Δv² → The dominant term m·v·Δv scales linearly with v At v = 10 km/s vs v = 1 km/s, the same 0.5 km/s burn yields roughly 10× more kinetic energy gain

2. Deriving the Oberth Gain

Compare a "cold" burn far from any planet, where velocity is low, with a "hot" burn at periapsis of a hyperbolic or highly elliptical orbit, where velocity is high. The specific orbital energy after the burn depends on where you apply the same delta-v.

Specific orbital energy: ε = v²/2 − μ/r Burn adds Δv prograde at radius r, speed v: ε_after = (v + Δv)²/2 − μ/r ε_after = v²/2 − μ/r + v·Δv + Δv²/2 ε_after = ε_before + v·Δv + Δv²/2 → Energy gain = v·Δv + Δv²/2 (the "Oberth bonus" term is v·Δv) At high v (periapsis of a deep hyperbolic pass) this bonus dwarfs the fixed Δv²/2 term that is all you get at v ≈ 0

For an escape burn from a highly elliptical parking orbit, this means firing at the lowest, fastest point of the orbit (periapsis) rather than gradually, or at apoapsis, delivers dramatically more hyperbolic excess velocity for the same propellant mass.

3. Why Periapsis Is Optimal

Because the Oberth bonus term is proportional to local speed v, and orbital mechanics guarantees v is maximal at periapsis (closest approach, from vis-viva: v² = μ(2/r − 1/a)), periapsis is always the single best place along any orbit to concentrate a burn — for both raising apoapsis and for full hyperbolic escape.

Single burn at periapsis

Maximum instantaneous speed → maximum Oberth bonus → most efficient single impulse.

Same Δv spread out

Lower average speed during the burn → smaller bonus → wastes propellant compared to one short, intense burn.

Burn at apoapsis

Lowest speed in the orbit → smallest possible Oberth bonus → the least efficient point to burn.

Practical limit

Real engines have finite thrust, so an infinitely short "impulsive" burn is idealised — long burns near periapsis lose some of the bonus (finite-burn losses).

4. Powered Flybys and Gravity Assist

A powered flyby combines a planetary gravity assist with an engine burn timed at closest approach. Because a flyby already puts the spacecraft at very high relative speed near the planet, firing the engine exactly there captures the Oberth bonus on top of the "free" velocity change from the gravity assist itself.

Gravity assist alone: changes velocity direction in the planet's frame, changing speed in the Sun's frame (no propellant used) Powered flyby: add Δv_engine at periapsis of the flyby hyperbola Combined gain = gravity-assist Δv (free) + v_periapsis·Δv_engine (Oberth bonus, paid in propellant) Because v_periapsis during a close flyby (~10+ km/s for inner planets) is far higher than typical deep-space cruise speed, the SAME propellant produces several times more mission Δv than firing the identical engine burn in interplanetary space

5. JavaScript Oberth Gain Calculator

// Oberth effect: compare energy/Δv gain at two different orbital speeds
function oberthGain(v, dv) {
  // returns specific energy gain (J/kg) from adding dv prograde at speed v
  return v * dv + 0.5 * dv * dv;
}

function compareBurns(vLow, vHigh, dv) {
  const gainLow  = oberthGain(vLow, dv);
  const gainHigh = oberthGain(vHigh, dv);
  return { gainLow, gainHigh, ratio: gainHigh / gainLow };
}

// Example: 0.5 km/s burn at deep-space cruise (1 km/s) vs at periapsis (11 km/s)
const result = compareBurns(1000, 11000, 500);
console.log(`Gain ratio: ${result.ratio.toFixed(2)}×`); // ≈ 10.5×

// Vis-viva: find periapsis speed for a given orbit
function periapsisSpeed(mu, rp, a) {
  return Math.sqrt(mu * (2 / rp - 1 / a));
}
const MU_SUN = 1.32712440018e20; // m³/s²
const rp = 6.96e10;  // close solar flyby, ~0.46 AU
const a  = 1.5e11;  // roughly 1 AU semi-major axis
console.log(periapsisSpeed(MU_SUN, rp, a).toFixed(0), "m/s");

6. Real Missions Exploiting the Effect

Parker Solar Probe

Uses repeated Venus gravity assists to lower perihelion, exploiting ever-faster periapsis passes for maximum Oberth-assisted trajectory shaping toward the Sun.

New Horizons

Launched with the fastest Earth departure velocity of any spacecraft, then used a Jupiter powered flyby to add extra speed toward Pluto.

Interplanetary escape burns

Missions departing from a parking orbit around Earth always burn at perigee, never partway around the orbit, to maximise Oberth-enhanced escape energy.

Lunar transfer injection

Trans-lunar injection burns are timed precisely at perigee of the initial parking orbit for the same reason — maximum speed, maximum energy per unit propellant.

Frequently Asked Questions

What is the Oberth effect in simple terms?

The Oberth effect says that a rocket burn produces more useful kinetic energy the faster the rocket is already moving when the burn happens. Because kinetic energy grows with the square of velocity, adding a fixed delta-v at high speed (near a planet's periapsis) adds much more energy than adding the same delta-v at low speed far from the planet.

Why does burning at periapsis save propellant?

At periapsis the spacecraft is moving fastest, so a short burn there raises orbital energy (and therefore apoapsis or escape velocity) more per unit of propellant than the same burn performed anywhere else in the orbit. Mission designers exploit this by timing all major burns to occur exactly at periapsis.

Do real missions actually use the Oberth effect?

Yes. New Horizons, Parker Solar Probe, and Voyager all used low periapsis burns or close flybys of planets to gain far more speed than a straight rocket burn in deep space could provide. Powered flybys deliberately fire the engine during closest approach to a planet to combine gravity assist with Oberth-enhanced propulsion.

Does the Oberth effect violate conservation of energy?
No. The extra kinetic energy gained by the spacecraft comes from the chemical potential energy of the propellant, exactly as in any rocket burn. What changes is how efficiently that chemical energy converts into useful orbital kinetic energy — at high speed, the propellant's exhaust also carries away relatively less kinetic energy in the rocket's reference frame, so more of the released energy ends up in the vehicle.
Can the Oberth effect be used for braking as well as accelerating?
Yes, in reverse. A retrograde burn at periapsis removes proportionally more kinetic energy than the same burn elsewhere, which is why capture burns into orbit around another planet are also performed at periapsis of the incoming hyperbolic trajectory — it is the cheapest place to shed the excess speed needed to be captured.
How large is the Oberth bonus in a typical mission?
It depends entirely on the ratio between periapsis speed and cruise speed. For an Earth-departure burn from a 300 km parking orbit (about 7.7 km/s) versus performing the same delta-v from a very slow heliocentric drift (~1 km/s), the Oberth bonus can multiply the effective delta-v several-fold — this is why direct escape burns from low orbit are always preferred over slow spiral departures with electric propulsion when chemical propulsion is available.
Why don't ion engines benefit much from the Oberth effect?
Ion engines produce very low thrust, so a "burn" near periapsis actually takes many orbits to complete rather than one short impulse — the spacecraft moves far from periapsis before much delta-v has accumulated, losing most of the potential Oberth bonus. This is a key reason electric-propulsion trajectories look like slow outward spirals rather than the sharp periapsis burns of chemical rockets.
🛸 Open Orbital Maneuvers →