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.
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.
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.
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.
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.