← Part III: Nuclear Reactions
Chapter 9

Nuclear Fusion

The Coulomb Barrier

Nuclear fusion requires two positively charged nuclei to approach within the range of the nuclear force (~1-2 fm), overcoming the repulsive Coulomb barrier:

$$V_C = \frac{Z_1 Z_2 e^2}{4\pi\epsilon_0 R} = \frac{Z_1 Z_2 \times 1.44 \text{ MeV}\cdot\text{fm}}{R}$$

For D-T fusion, $V_C \approx 0.4$ MeV. At stellar core temperatures (~1.5 keV for the Sun), the thermal energy is far below this barrier. Fusion occurs only because of quantum tunneling, which gives an exponentially small but non-zero probability.

The Gamow Peak

The thermonuclear reaction rate depends on the product of the Maxwell-Boltzmann energy distribution and the tunneling probability (Gamow factor):

$$\langle\sigma v\rangle = \left(\frac{8}{\pi\mu}\right)^{1/2}\frac{1}{(k_BT)^{3/2}} \int_0^\infty S(E)\,\exp\left(-\frac{E}{k_BT} - \sqrt{\frac{E_G}{E}}\right)dE$$

where the Gamow energy is:

$$E_G = 2\mu c^2 (\pi\alpha Z_1 Z_2)^2$$

The integrand peaks at the Gamow peak energy:

$$E_0 = \left(\frac{E_G (k_BT)^2}{4}\right)^{1/3}$$

Most reactions occur near $E_0$, which is typically a few times $k_BT$. The astrophysical S-factor $S(E)$ is defined to remove the strong energy dependence from tunneling, leaving a slowly varying function that can be measured and extrapolated.

Stellar Fusion

Proton-Proton Chain

Dominant in the Sun ($T < 15$ million K):

$$p + p \to d + e^+ + \nu_e$$$$d + p \to ^3\text{He} + \gamma$$$$^3\text{He} + ^3\text{He} \to ^4\text{He} + 2p$$

Net: $4p \to ^4$He + $2e^+ + 2\nu_e + 26.7$ MeV

CNO Cycle

Dominant in massive stars ($T > 15$ million K):

$$^{12}\text{C}(p,\gamma)^{13}\text{N}(e^+\nu)^{13}\text{C}$$$$^{13}\text{C}(p,\gamma)^{14}\text{N}(p,\gamma)^{15}\text{O}$$$$^{15}\text{O}(e^+\nu)^{15}\text{N}(p,\alpha)^{12}\text{C}$$

Carbon acts as a catalyst, same net result.

The Lawson Criterion

For a self-sustaining fusion reactor, the fusion power must exceed the losses. The Lawson criterion (1957) gives the minimum confinement requirement:

$$n\tau_E > \frac{12\,k_B T}{E_\alpha \langle\sigma v\rangle}$$

where $n$ is the plasma density, $\tau_E$ is the energy confinement time, and $E_\alpha = 3.5$ MeV is the alpha particle energy. For D-T at the optimal temperature ($T \approx 15$ keV):

$$n\tau_E > 1.5 \times 10^{20} \text{ m}^{-3}\text{s}$$

The triple product $nT\tau_E > 3 \times 10^{21}$ m$^{-3}$ keV s is the more commonly used figure of merit. ITER aims to achieve $Q = 10$ (500 MW fusion from 50 MW input).

Python Simulation: Fusion Gamow Peak

Construction of the Gamow peak from the Maxwell-Boltzmann distribution and tunneling probability, plus comparison of fusion reaction rates.

Fusion Cross Section and Gamow Peak

Python

Gamow peak construction and thermonuclear reaction rate comparison

script.py113 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran Implementation

Lawson criterion calculator for various fusion fuel cycles.

Lawson Criterion Calculator

Fortran

Computes confinement requirements for self-sustaining D-T fusion

lawson_criterion.f9058 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server