Nuclear Physics
Nuclear Fusion
Light nuclei combine to form heavier ones — the energy source of stars and hydrogen bombs
Nuclear fusion combines light nuclei (hydrogen isotopes) into heavier ones (helium), releasing energy from mass deficit. Powers stars (Sun fuses 4 protons into He every second). Holy grail of energy production — clean (no long-lived radioactive waste), abundant fuel (deuterium from seawater). Despite decades of effort, controlled fusion power plants haven't been achieved at commercial scale yet (ITER, NIF, private startups).
- Most studied reactionD + T → He-4 + n + 17.6 MeV
- Lawson criterionn·τ·T > 10²¹ keV·s/m³ (for ignition)
- Sun's reaction4 H → He + 2e⁺ + 2ν + 26.7 MeV (proton-proton chain)
- Energy per kg fusion~3 × 10¹⁴ J ≈ 80 kt TNT
- FuelDeuterium (from water), tritium (bred from lithium)
- ITERLargest tokamak, first plasma 2025-2026
Interactive visualization
Press play, or step through manually. The visualization is yours to drive — try it before reading on.
Watch the 60-second explainer
A condensed visual walkthrough — narrated, captioned, under a minute.
Why fusion?
| Property | Fission | Fusion |
|---|---|---|
| Fuel | U-235 (rare, mined) | D from water (effectively unlimited) |
| Energy/kg | ~8 × 10¹³ J | ~3 × 10¹⁴ J (4× more) |
| Long-lived waste | Yes (10⁵+ years) | No (decades) |
| Meltdown risk | Yes | No (loss of confinement just stops reaction) |
| Proliferation | U-235, Pu-239 weapons | None (no enrichment cascade) |
| Control | Long-established | Net energy just achieved (NIF 2022) |
Common fusion reactions
| Reaction | Energy released | Notes |
|---|---|---|
| D + T → He-4 + n | 17.6 MeV | Easiest; main target |
| D + D → He-3 + n | 3.27 MeV | Or D + D → T + p (4.03 MeV) |
| D + He-3 → He-4 + p | 18.3 MeV | No neutrons, but He-3 is rare |
| p + p → D + e⁺ + ν | 0.42 MeV | Sun's first step; very slow |
| p + B-11 → 3·He-4 | 8.7 MeV | Aneutronic, very high T needed |
Lawson criterion
For ignition (self-sustained fusion):
n · τ · T > 10²¹ keV·s/m³ (for D-T)
where n is plasma density, τ is energy confinement time, T is ion temperature.
| Approach | n (m⁻³) | τ (s) | T (keV) |
|---|---|---|---|
| Sun's core | ~10³² | ~10⁹ | 1.3 |
| Tokamak (ITER target) | ~10²⁰ | ~5 | 15 |
| Inertial confinement (NIF) | ~10³¹ | ~10⁻¹¹ | ~10 |
All three regimes can achieve the same n·τ·T target.
JavaScript — fusion calculations
// D-T fusion: energy per reaction
const Q_DT = 17.6e6 * 1.602e-19; // J
// Energy per kg fully fused (D + T)
function fusionEnergy_DT_perKg() {
// 1 kg of D + T mixture; ~5/2 = 2.5 g/mol effective
// Actually: 2.014 + 3.016 = 5.03 u per pair; 1 kg → ~1.99e26 reactions
const reactions = 1000 / 5.03 * 6.022e23;
return reactions * Q_DT;
}
console.log(`1 kg D-T mix: ${(fusionEnergy_DT_perKg() / 1e14).toFixed(2)} × 10¹⁴ J`);
console.log(`= ${(fusionEnergy_DT_perKg() / 4.184e12).toFixed(0)} Mt TNT`); // ~80 Mt for 1 kg!
// Sun's energy output: how much H consumed?
function solarMassLoss(luminosity_W) {
return luminosity_W / 9e16; // kg/s
}
console.log(`Sun: ${solarMassLoss(3.828e26).toExponential(2)} kg/s lost (= 600 Mt H/s)`);
// Lawson criterion check
function lawsonProduct(n, tau, T_keV) {
return n * tau * T_keV; // m⁻³ · s · keV
}
// ITER target
console.log(`ITER target: nτT = ${lawsonProduct(1e20, 5, 15).toExponential(2)} keV·s/m³`);
// 7.5 × 10²¹ — should achieve ignition
// Coulomb barrier — temperature needed
function coulombTemp_keV(Z1, Z2, r_fm = 5) {
// E_Coulomb = k·Z1·Z2·e²/r at closest approach
// E in keV with r in fm: E_keV = 1.44 × Z1·Z2 / r_fm
return 1.44 * Z1 * Z2 / r_fm;
}
console.log(`p-p Coulomb peak: ${coulombTemp_keV(1, 1).toFixed(2)} keV`); // 0.288 keV
// But tunneling means lower T sufficient — Sun's 1.3 keV core is enough
// Fusion power density
function fusionPowerDensity(n_D, n_T, sigma_v_m3_per_s) {
// P = n_D · n_T · <σv> · Q
return n_D * n_T * sigma_v_m3_per_s * Q_DT;
}
// At T = 15 keV, <σv> ≈ 1.5e-22 m³/s for D-T
const sigmav_15 = 1.5e-22;
console.log(`At n_D = n_T = 5e19, T = 15 keV: power = ${fusionPowerDensity(5e19, 5e19, sigmav_15).toFixed(0)} W/m³`);
// Million W/m³ — but small reactor volumes ↔ MW power total
// Q-factor (gain)
function fusionGain(P_fusion, P_input) {
return P_fusion / P_input;
}
// NIF 2022: 2.05 MJ in, 3.15 MJ out → Q ~ 1.54 (ignition)
console.log(`NIF Q = ${fusionGain(3.15e6, 2.05e6).toFixed(2)}`);
// ITER goal: Q = 10
Where fusion matters
- Stellar physics. Powers all main-sequence stars; nucleosynthesis creates elements heavier than H.
- Future power. ITER, SPARC (private), and others aim for commercial fusion power.
- Nuclear weapons. H-bombs use fusion stage; fusion provides bulk yield.
- Space propulsion. Theoretical fusion rockets (much higher Isp than chemical).
- Cosmology. Big Bang nucleosynthesis produced light elements; stellar fusion creates heavier.
- Materials testing. Fusion neutron sources for materials irradiation studies.
- Medical isotopes. Some isotopes produced via fusion-related reactions.
Common mistakes
- Confusing with fission. Different physics — fusion combines light, fission splits heavy. Both follow E = mc² but in different directions of binding-energy curve.
- Believing fusion is "30 years away" forever. Joke for decades; recent NIF Q > 1 (2022) is genuine breakthrough. ITER first plasma 2025-2026. Commercial harder.
- Treating all fusion approaches the same. Magnetic (tokamak), inertial (lasers), magnetic+inertial (Z-pinch), aneutronic (p-B11) — different physics, different challenges.
- Believing fusion is "cold" possible. Cold fusion (Pons-Fleischmann 1989) has not been reproducibly demonstrated. Current commercial efforts all require ~150 million K plasmas.
- Thinking fusion has no waste. Reactor components become activated by neutrons. Decommissioning still requires careful handling. But MUCH less long-lived than fission.
- Forgetting tritium scarcity. Tritium has 12-yr half-life — minimal natural quantity. Fusion reactors must "breed" tritium from lithium blankets. Engineering challenge.
Frequently asked questions
How does fusion produce energy?
Light nuclei (e.g., 2 deuterium) combine to form heavier (helium). Resulting nucleus has slightly less mass than original components — by 0.7% for fusion, vs 0.1% for fission. Mass deficit converts to energy via E = mc². For D-T fusion, ~17.6 MeV per reaction (compared to ~200 MeV per fission, but per-kilogram fusion is ~4× more energy).
Why is fusion so hard to do on Earth?
Need to overcome Coulomb repulsion between positive nuclei. Requires temperatures of ~150 million K (10× Sun's core). At these T, matter is plasma. Plus need confinement — magnetic (tokamak) or inertial (lasers). Lawson criterion — need n·τ·T (density × time × temperature) above ~10²¹ keV·s/m³ for net energy. Decades of research; getting close.
How does the Sun fuse hydrogen?
Proton-proton chain (mainly). Net: 4 H → ⁴He + 2 e⁺ + 2 ν + 2γ + 26.7 MeV. Slow — first step (p + p → D) happens via weak force (rare!). Each second, Sun fuses 600 million tons of H, losing ~4 million tons of mass to energy. Will continue ~5 billion more years before H runs out.
What's a tokamak?
Doughnut-shaped magnetic confinement device. Strong toroidal + poloidal magnetic fields confine hot plasma. ITER (France, 2025-2026 first plasma) is largest — 35 nations cooperating, $20 billion+ project. Goal — produce 10× input power as fusion energy. Uses superconducting magnets, deuterium-tritium fuel.
What's inertial confinement?
Different approach — fire intense lasers at small fuel pellet (D-T mixture). Pellet implodes; central density and T rise enough to ignite fusion. NIF (National Ignition Facility, US) first achieved net energy gain (Q > 1) in 2022. Less continuous than tokamak — pulsed, like a tiny H-bomb each shot.
Why is fusion considered cleaner than fission?
No long-lived radioactive waste. Reactor structure becomes activated by neutrons (some radioactivity — but decays in decades, not millennia). No risk of meltdown — fusion is hard to maintain; loss of confinement just stops the reaction. No potential for weapons (different physics from H-bomb design).
What about hydrogen bombs?
H-bombs use fusion, but TRIGGERED by fission. Fission bomb compresses and heats H isotope (lithium deuteride) to fusion conditions. Fusion contributes the bulk of yield — multi-megaton possible. Civilian fusion is the same physics but trying to achieve sustained, controlled reaction without explosion.