Lesson 12 of 15

Nuclear Fusion Energy

Nuclear Fusion Energy

Fusion combines light nuclei to form a heavier nucleus, releasing far more energy per unit mass than fission. It powers the Sun and is the goal of tokamak research reactors.

Deuterium–Tritium (D-T) Fusion

The most promising reaction for terrestrial reactors:

2H+3H4He+n^2\text{H} + ^3\text{H} \rightarrow ^4\text{He} + n

ParticleMass (u)
2^2H (deuterium)2.014102
3^3H (tritium)3.016049
4^4He (alpha)4.002602
nn (neutron)1.008665

Q=(2.014102+3.0160494.0026021.008665)×931.49417.59 MeVQ = (2.014102 + 3.016049 - 4.002602 - 1.008665) \times 931.494 \approx 17.59 \text{ MeV}

Energy per Kilogram

The energy per kg of D-T reactant mixture is:

E/kg=QJmpair=Q×1.602×1013(mD+mT)×1.66054×1027E/\text{kg} = \frac{Q_{\text{J}}}{m_{\text{pair}}} = \frac{Q \times 1.602 \times 10^{-13}}{(m_D + m_T) \times 1.66054 \times 10^{-27}}

This gives roughly 3.4×10143.4 \times 10^{14} J/kg — about 7 million times more than gasoline (4.6×1074.6 \times 10^7 J/kg).

Lawson Criterion

For a D-T plasma to sustain fusion, the product of ion density nn and energy confinement time τE\tau_E must exceed:

nτE>1020TkeV[m3s]n \tau_E > \frac{10^{20}}{T_{\text{keV}}} \quad [\text{m}^{-3}\text{s}]

At T=10T = 10 keV, the threshold is nτE>1019n\tau_E > 10^{19} m3^{-3}s.

Your Task

All constants must be defined inside each function.

  • dt_fusion_q() — D-T Q-value in MeV (no parameters)
  • fusion_energy_per_kg(Q_MeV, m_reactants_u_per_reaction) — energy in J/kg (11 u =1.66054×1027= 1.66054 \times 10^{-27} kg)
  • lawson_criterion_DT(T_keV) — minimum nτEn\tau_E threshold in m3^{-3}s
Python runtime loading...
Loading...
Click "Run" to execute your code.