Article
Aerospace Engineering · Propulsion · ⏱ ~12 min read · Last updated: 9 July 2026

Solar Sailing — Climbing Away From the Sun Using Only Its Own Light

A solar sail carries no propellant and burns no fuel, yet by tilting a huge, gossamer-thin reflective membrane at just the right angle to incoming sunlight, it can spiral its orbit steadily outward — or inward — using nothing but the momentum of photons bouncing off its surface. It is one of the only propulsion methods in aerospace engineering that, in principle, never runs out of "fuel" as long as the Sun keeps shining.

TL;DR: Solar sails use no propellant — they reflect sunlight, and tilting the sail redirects that tiny but continuous photon force to add or remove orbital energy, spiraling the spacecraft outward or inward over months to years. A sail's "lightness number" (thrust versus the Sun's gravity) determines how fast it can spiral; flown missions like IKAROS and LightSail 2 have already demonstrated measurable orbit-raising this way.

1. Photon Pressure: Where the Force Comes From

Light carries momentum p = E/c. When a photon reflects off a mirror-like sail instead of being absorbed, it reverses direction, transferring roughly twice its momentum to the sail — the same principle behind an optical tweezer or a laser-cooling experiment, scaled up to a spacecraft.

Solar radiation pressure at 1 AU (perfect reflector, normal incidence): P = 2·S / c where S = solar constant ≈ 1361 W/m², c = 3×10⁸ m/s P ≈ 9.08 μN/m² (micronewtons per square meter — tiny!) Force on sail: F = P · A_sail · cos²(θ) (θ = tilt angle from Sun-line) Example: 1000 m² sail at 1 AU, normal incidence: F = 9.08e-6 × 1000 ≈ 9.1 mN (about the weight of a paperclip) Tiny force, but applied continuously for months — impulse adds up

2. The Lightness Number

The key figure of merit for any solar sail design is the lightness number β — the ratio of radiation pressure acceleration to solar gravitational acceleration on the same spacecraft, which conveniently cancels out distance from the Sun (both scale as 1/r²).

Lightness number: β = a_radiation / a_gravity = (2S₀A / c) / (GM_sun·m/r²) × r² / S₀ ... simplifies to: β = (2 / c) · (L_sun / (4πGM_sun)) · (A / m) β ∝ Area / mass (the "areal density" or sail loading, kg/m²) Real sail loading examples: LightSail 2: ~32 g/m² → β ≈ 0.001-0.005 (very low, slow spiral) Advanced graphene/diffractive concepts target: <1 g/m² → β approaching 1 β = 1 means radiation pressure exactly cancels solar gravity β > 1 means the sail can escape the Sun's gravity entirely, unpowered

3. Sail-Tilt Steering

Because the sail can only push, never pull, it cannot fire "against" orbital motion directly. Instead, orbit raising and lowering are achieved entirely by choosing how much of the radiation force projects along the direction of motion versus perpendicular to it.

Tilt for outward spiral

Angle the sail so the reflected photon force has a component in the direction of orbital motion — this adds orbital energy every pass, slowly raising the orbit.

Tilt for inward spiral

Angle the sail so the reflected force opposes the direction of motion — this removes orbital energy every pass, slowly lowering the orbit (useful for approaching the Sun, as with Parker Solar Probe concepts).

Zero tilt

Sail face-on to the Sun produces pure radial (outward) force — this changes eccentricity and orientation but not orbital energy the same way tangential thrust does.

Cosine-squared law

Because reflected force scales with cos²(θ), there's an optimal tilt angle (~35.26° from normal) that maximizes the tangential thrust component for fastest energy gain per unit time.

4. Cranking Orbits and Spiral Trajectories

"Orbit cranking" describes a specific solar-sail maneuver where the sail alternates its tilt angle on a schedule tied to true anomaly, systematically pumping orbital energy in over many orbits — the solar-sail equivalent of a low-thrust electric-propulsion spiral, but with literally zero propellant consumption.

Per-orbit energy change (simplified, near-circular starting orbit): Δε_per_orbit ≈ ∮ (F_tangential / m) · v dt around one full orbit Because F ∝ β·(solar constant)/r², and v ∝ 1/√r, the outward spiral naturally SLOWS as the sail moves to larger r (both force and speed decrease with distance) → Solar sail transfers to outer planets take YEARS, not days, but require zero propellant mass — a pure trade of time for mass

5. JavaScript Solar Sail Thrust Model

// Solar sail radial + tangential thrust as a function of tilt angle
function sailForce(r_AU, area_m2, tiltRad) {
  const S0 = 1361;      // W/m^2 solar constant at 1 AU
  const c  = 3e8;       // m/s
  const S  = S0 / (r_AU * r_AU); // inverse-square falloff
  const Pn = 2 * S / c;   // normal-incidence pressure
  const Fmag = Pn * area_m2 * Math.cos(tiltRad) ** 2;
  return {
    radial:     Fmag * Math.cos(tiltRad),
    tangential: Fmag * Math.sin(tiltRad),
  };
}

// Optimal tilt angle for max tangential thrust: ~35.26 degrees (arccos(1/sqrt(3)))
const optimalTilt = Math.acos(1 / Math.sqrt(3));
const f = sailForce(1.0, 1200, optimalTilt); // 1200 m^2 sail at 1 AU
console.log(`Tangential thrust: ${(f.tangential * 1000).toFixed(3)} mN`);

// Lightness number for a given sail areal density (kg/m^2)
function lightnessNumber(arealDensity) {
  const k = 1.53; // kg/m^2, constant such that beta=1 at this areal density (perfect reflector, 1 AU)
  return k / arealDensity;
}
console.log(lightnessNumber(0.032).toFixed(4)); // LightSail 2-like sail ≈ 0.048

6. Real Solar Sail Missions

IKAROS (2010, JAXA)

First spacecraft to demonstrate solar-sail propulsion in interplanetary space, using a 200 m² sail with embedded liquid-crystal panels for active tilt/attitude steering.

LightSail 2 (2019, Planetary Society)

A CubeSat with a 32 m² Mylar sail that demonstrated measurable orbit-raising through active sail-tilt scheduling tied to orbital position, confirmed via tracked altitude gain.

NEA Scout (planned)

Designed to use an 86 m² solar sail to reach and study a near-Earth asteroid entirely without a chemical propulsion stage.

Breakthrough Starshot concept

Proposes ultra-thin, laser-driven (not solar-driven) sails to reach a meaningful fraction of light speed for interstellar probes — an extreme extrapolation of the same photon-pressure physics.

Frequently Asked Questions

How does a solar sail generate thrust without propellant?

Photons carry momentum, and when they reflect off a sail's surface they transfer roughly twice that momentum to the sail (compared to absorption, which transfers only the momentum the photon originally carried). Although the force per square meter is tiny — about 9 micronewtons per square meter at Earth's distance from the Sun for a perfect reflector — a large, lightweight sail accumulates this continuously, with no propellant mass ever expended.

How does tilting a solar sail raise or lower an orbit?

Tilting the sail relative to the Sun-sail line splits the radiation force into a component along the direction of motion and a component perpendicular to it. A tilt that adds thrust in the direction of orbital motion increases orbital energy over time, spiraling the spacecraft outward; a tilt that removes energy from the direction of motion causes a slow inward spiral, even though the sail can never point directly away from the Sun to "push backward."

What is the lightness number of a solar sail?

The lightness number (beta) is the ratio of radiation pressure force to the Sun's gravitational force on the same spacecraft. A beta of 1 means radiation pressure exactly cancels gravity; real sails like LightSail 2 have beta around 0.001-0.01, while highly advanced sail concepts for interstellar probes target beta values near or above 1 using extremely thin, large sails.

Why can't a solar sail ever thrust directly away from the Sun and outward?
The sail can only reflect photons that arrive from the Sun's direction, so the resulting force always has a component pushing away from the Sun — it can never pull the spacecraft toward the Sun. To lower an orbit, sail designers instead tilt the sail so the tangential (along-track) component of the outward force opposes the spacecraft's orbital velocity, gradually removing orbital energy even though the radial force still points outward the whole time.
Is solar sailing faster or slower than chemical or ion propulsion?
For a given mission, solar sailing is almost always slower to reach a destination than chemical propulsion, and often comparable to or slower than ion thrusters in the near term, because photon-pressure force is extremely small per unit sail area. Its advantage is that it requires zero propellant mass for the entire mission duration, which becomes decisive for extremely long-duration missions or where any propellant mass would be prohibitively expensive to launch.
What materials are solar sails made from?
Most flown sails use extremely thin aluminized Mylar or Kapton film, just a few micrometers thick, chosen for high reflectivity and low areal density. Research concepts explore even thinner metamaterial or diffractive sails that could reflect light more efficiently per unit mass, pushing the achievable lightness number closer to 1.
Does solar sail performance change with distance from the Sun?
Yes — both radiation pressure and solar gravity fall off as 1/r², so the lightness number β itself stays constant with distance, but the absolute thrust available drops sharply as a mission travels outward. This is why solar sails are most effective for missions that operate relatively close to the Sun (inner Solar System, or approaching the Sun as with proposed sail-based solar-polar orbiters), and why far-outer-Solar-System or interstellar missions favor laser-driven sails instead, which keep the light source's intensity independent of the spacecraft's distance from the Sun.
☀️ Open Solar Sail Simulation →