Introduction to estimating paper airplane range
A paper airplane spends its whole flight trading one thing for another: the energy in your throw becomes height, and that height becomes forward distance. This estimator makes the trade explicit. Give it a throw speed, a launch angle, and a glide ratio, and it returns a single number — an approximate range in meters for a clean flight in still air. It is deliberately a back-of-the-envelope model rather than a wind-tunnel simulation, which is exactly what you want when you are comparing two folds, settling a hallway argument, or coaching a kid on release technique instead of publishing aerodynamics.
How to use this estimator
Type a value into each of the three fields below and press Estimate Range. The result appears directly under the button and is announced to screen readers; every calculation runs locally in your browser, so nothing is uploaded. Throw speed is how fast the plane leaves your hand in meters per second, launch angle is how far above level you aim (0° is dead flat, 90° is straight up), and glide ratio is how many meters the trimmed plane drifts forward for each meter it sinks. If you have never measured your own numbers, the defaults — 12 m/s, 35°, and a glide ratio of 8 — describe a firm throw of a well-behaved glider, and the sections below show how to replace them with real measurements.
How the two-phase flight model works
The estimator splits every flight into two connected phases: an initial ballistic climb, where the plane behaves like any thrown object, followed by a glide, where it behaves like a tiny sailplane. Separating them is useful because your arm controls the first phase — the speed and direction of the launch — while the fold controls the second — how efficiently the plane converts the height it gained into forward travel.
During the climb the plane leaves your hand at some speed and angle and rises until its vertical velocity reaches zero. The model uses plain projectile motion to find the time to that high point and the horizontal distance covered on the way up. It stays intentionally spare here: it adds no lift during the climb and subtracts no energy for drag.
At the apex the plane is assumed to settle into a steady glide from its peak height. The glide ratio tells you how many meters it moves forward for every meter it descends, so multiplying peak height by glide ratio gives the glide distance. Add the climb distance and the glide distance and you have the estimated range.
Formulas and assumptions
Let v be throw speed (m/s), θ the launch angle, G the glide ratio, and g = 9.81 m/s² the acceleration of gravity. The script converts the angle to radians, splits the launch velocity into horizontal and vertical parts, then follows the climb-plus-glide chain to a total range R:
Broken into the individual steps the code takes, the pieces are:
- Horizontal launch speed
- Vertical launch speed
- Time to the apex
- Peak height
- Total range
Five simplifications keep the model honest about what it does and does not cover. Each one nudges the estimate a little optimistic, which is worth remembering when a real flight comes up short:
- No air drag during the climb. Real drag bleeds off both height and forward speed, most severely for light paper and steep launches.
- Instant transition to glide at the apex. The plane is assumed to round over the top and glide down smoothly, never stalling at the peak.
- Constant glide ratio. In reality glide ratio shifts with speed, trim, and turbulence; here it is a single fixed number.
- Level ground. Launch height equals landing height, so a throw from a balcony will beat the estimate.
- A straight flight path. The plane is assumed not to spiral, loop, or tumble — stability problems that can swamp everything else.
Worked example you can verify by hand
Take the default inputs — a 12 m/s throw at 35° with a glide ratio of 8 — and walk the chain yourself. The vertical part of the launch is vy = 12 · sin 35° ≈ 6.88 m/s, so the plane needs t = 6.88 / 9.81 ≈ 0.70 s to reach its high point. The horizontal part, vx = 12 · cos 35° ≈ 9.83 m/s, carries it about 9.83 · 0.70 ≈ 6.9 m forward during that climb. Peak height works out to 6.88² / (2 · 9.81) ≈ 2.41 m, and a glide ratio of 8 stretches that into 8 · 2.41 ≈ 19.3 m of glide. Add the two and you get roughly 6.9 + 19.3 ≈ 26.2 m — exactly what the calculator reports, and a believable distance for a calm gym or a long hallway.
Tip: if an estimate looks too good to be true, lower the glide ratio first. Dart-style planes often behave like G = 3–4, while broad-winged gliders reach 7–10 only when they are trimmed well. Remember too that the climb ignores drag, which quietly inflates the number for steep, hard throws.
Measuring throw speed and glide ratio
You do not need a lab to feed this calculator realistic numbers. Throw speed is the harder of the two to pin down, because a paper plane sheds speed to drag within a meter or two of release — measure the instant right after your hand lets go, not mid-flight, or you will undercount. Three practical methods, from quickest to most accurate:
- A phone ball-speed or radar app. Some estimate speed from video or the sound of the throw. Accuracy varies, but it is fine for ranking one throw against another.
- Video over a known distance. Mark 5 or 10 meters on the floor, film from the side, and count frames as the plane crosses between the marks; speed ≈ distance ÷ time.
- High-frame-rate slow motion. A 120–240 fps phone camera cuts timing error sharply, which matters most for short indoor flights.
Glide ratio is the most design-dependent input and the most rewarding to measure, because it is what really separates one fold from another. The direct method is a gentle, level release from a known height — a stair landing or a stage works well — aimed for a smooth glide. Measure the horizontal distance from launch to landing and the vertical drop to the floor, then divide: G ≈ horizontal distance ÷ vertical drop. Repeat a handful of times and average, since single flights scatter. If all you have is flat ground, film a side view instead, pick two frames where the plane is clearly visible, and take the ratio of horizontal travel to vertical drop between them.
Reading and using the estimate
Treat the number as a calm-air baseline rather than a prediction of your next throw. It earns its keep on comparative questions:
- Does throwing harder help this design more than tuning its glide ratio would?
- Is my launch angle steep enough to risk a stall?
- How much does range really move between, say, 30° and 40°?
- Are two folds meaningfully different, or is the gap just measurement noise?
The most reliable workflow is to hold two inputs fixed and sweep the third. Keep speed and glide ratio constant, for instance, and step the angle from 15° up to 55°, then repeat the sweep in real life with throws as consistent as you can manage. If the real-world sweet spot sits well below what the calculator likes, that mismatch is usually the plane stalling when you throw it steeply — a behavior the idealized model never sees.
Example glide ratios by design
When you do not yet have a measurement, the table below gives sensible starting values. These are ranges, not constants: paper weight, fold precision, and trim all shift the glide ratio a plane actually achieves.
| Design Style | Description | Typical Glide Ratio (G) |
|---|---|---|
| Classic Dart | Narrow wings, pointed nose for speed; tends to descend faster and is less forgiving of trim errors. | 3–4 |
| Basic Glider | Moderate wingspan with slight dihedral; usually stable and easy to tune for smooth flight. | 5–6 |
| Canard Glider | Forward stabilizer helps prevent nose-dive and can improve glide smoothness when balanced well. | 7–8 |
| Competition Glider | Large wingspan and careful center-of-gravity placement; optimized folds and trim for efficiency. | 9–12 |
Limitations, troubleshooting, and tuning
The model's ceiling is its own assumptions: it trusts a clean climb and a steady glide, so when a real plane underperforms the estimate, the gap is almost always flight behavior rather than arithmetic. The catalog below maps the most common misbehaviors to fixes that pull real flights back toward the ideal the math assumes. A tiny piece of tape on the nose, a few degrees off the launch, or a sharper crease is usually all it takes.
- Immediate nose-dive: the center of gravity is probably too far back. Add a little nose weight (a small piece of tape) or ease off the elevator-up bends at the tail.
- Stall — climbs, then drops abruptly: the launch is too steep or the elevators are bent up too much. Throw 5–10° shallower and flatten the trailing-edge bends.
- Spiral or banking turn: the wings are asymmetric. Re-crease them to match, set the same dihedral on both tips, and make sure the fuselage is straight.
- Wobble or flutter: the paper is too light or the folds too loose. Sharpen creases, step up to slightly heavier paper, or add a reinforcing fold along the leading edge.
- Good glide but short overall: the throw is slower than you assumed. Re-measure v with video timing and check how consistent your release really is.
Technique quietly changes the effective inputs even when the design is fixed. A clean, straight release with minimal wrist roll lets the plane slide into its glide instead of burning energy in a wobble, so when you are comparing folds, keep the throw as repeatable as possible and change only one variable at a time. Setting matters too: indoors is usually more repeatable, while outdoors a headwind trims range, a tailwind extends it, and a lucky updraft can boost the effective glide ratio mid-flight. Because the calculator assumes dead-calm air, treat wind as a separate factor layered on top of the estimate.
Common questions about paper airplane flight
Is this a real physics simulation?
No — it is a simplified estimator. It uses projectile motion for the climb and a single constant glide ratio for the descent, and it ignores drag, lift curves, and the changing angle of attack a real plane experiences. What you give up in fidelity you gain in speed and clarity, which is what makes it useful for side-by-side comparisons.
Why does glide ratio matter so much?
Glide ratio multiplies the height you gain, so every extra meter of altitude turns into several meters of forward travel. That leverage is why cleaning up balance and folds to raise the glide ratio usually adds more distance than simply throwing harder.
What if I launch from a balcony or stage?
This calculator assumes launch and landing heights are equal, so it will underestimate a flight that starts high up — the plane has extra altitude to trade for distance. You can approximate the effect by mentally adding the launch height to the peak height, but the tool does not yet expose a separate launch-height input.
What values should I start with?
If you are unsure, try v = 10–12 m/s, angle = 30–40°, and G = 5 for a basic glider or G = 3–4 for a dart, then adjust from what you see: shallow the angle if it stalls, add a touch of nose weight or relax the elevator bends if it dives. Log each design's numbers as you go and you will slowly learn which folds glide best, which angles stay clear of a stall, and how steady your own throw really is.
Mini-game: Hallway Glide
Trim a paper glider through hoops, surf drafts, and feel how launch angle, speed, and glide ratio change the whole rhythm of flight.
Flight complete
Finish a run to see your score and banked meters.
Your best flight will be saved on this device.
A higher glide ratio floats longer; a steeper launch spends more energy climbing.
Controls: hold to gently pitch up, release to glide. Drag or tap also works. Keyboard fallback: Space or ↑.
Estimate a range above to load your current throw speed, launch angle, and glide ratio into the hallway.
