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