← Part I: Nuclear Structure
Chapter 3

Nuclear Models

The Liquid Drop Model

The liquid drop model, developed by Gamow and refined by Bohr and Wheeler, treats the nucleus as a drop of incompressible nuclear fluid. This model is motivated by the saturation of nuclear forces and the nearly constant nuclear density:

  • - Constant density: $\rho_0 \approx 0.17$ nucleons/fm$^3$
  • - Sharp surface: Nuclear radius $R = r_0 A^{1/3}$ with surface diffuseness ~0.5 fm
  • - Surface tension: Surface nucleons contribute less binding, analogous to surface tension in liquids
  • - Incompressibility: Nuclear matter resists compression (bulk modulus ~230 MeV)

The SEMF studied in the previous chapter is the quantitative expression of the liquid drop model. Its greatest triumph is the explanation of nuclear fission, where the competition between surface energy and Coulomb repulsion determines the fission barrier.

Fission Barrier (Bohr-Wheeler)

Consider a nucleus deforming from a sphere to an ellipsoid with eccentricity parameter$\epsilon$. The surface and Coulomb energies change as:

$$E_S(\epsilon) = E_S^{(0)}\left(1 + \frac{2}{5}\epsilon^2 + \cdots\right)$$
$$E_C(\epsilon) = E_C^{(0)}\left(1 - \frac{1}{5}\epsilon^2 + \cdots\right)$$

The fissility parameter determines whether the nucleus is unstable to deformation:

$$x = \frac{E_C^{(0)}}{2E_S^{(0)}} = \frac{a_C Z^2 / A^{1/3}}{2 a_S A^{2/3}} = \frac{a_C}{2a_S}\frac{Z^2}{A}$$

For $x > 1$ (i.e., $Z^2/A > 2a_S/a_C \approx 49$), the nucleus has no fission barrier and undergoes spontaneous fission. For $^{238}$U,$Z^2/A \approx 35.6$, so a barrier exists but can be overcome by neutron capture.

The Nuclear Shell Model

While the liquid drop model explains bulk nuclear properties, it fails to account for the enhanced stability of nuclei with certain "magic" numbers of protons or neutrons:

$$\text{Magic numbers: } 2, 8, 20, 28, 50, 82, 126$$

These magic numbers are analogous to the closed electron shells in atoms. Doubly-magic nuclei (both Z and N magic) are exceptionally stable: $^4$He, $^{16}$O,$^{40}$Ca, $^{48}$Ca, $^{208}$Pb.

Spin-Orbit Coupling

The key breakthrough came from Mayer, Haxel, Suess, and Jensen (1949), who showed that a strong spin-orbit interaction is needed. The single-particle Hamiltonian is:

$$H = \frac{p^2}{2m} + V_{\text{WS}}(r) + V_{\text{so}}(r)\,\mathbf{L}\cdot\mathbf{S}$$

The $\mathbf{L}\cdot\mathbf{S}$ term splits each $\ell$ level into two sublevels with $j = \ell \pm 1/2$:

$$\langle \mathbf{L}\cdot\mathbf{S} \rangle = \frac{1}{2}[j(j+1) - \ell(\ell+1) - s(s+1)]$$
$$= \begin{cases} +\ell/2 & \text{for } j = \ell + \tfrac{1}{2} \\ -(\ell+1)/2 & \text{for } j = \ell - \tfrac{1}{2} \end{cases}$$

The splitting is $\Delta E = C(2\ell + 1)/2$, which increases with $\ell$. The $j = \ell + 1/2$ level is pushed down (in nuclear physics, the spin-orbit force is attractive for aligned $\mathbf{L}$ and $\mathbf{S}$, opposite to the atomic case). For large $\ell$, the $j = \ell + 1/2$ sublevel can intrude into the shell below, creating the gaps at 28, 50, 82, and 126.

The Nilsson Model

For deformed nuclei (away from magic numbers), the spherical shell model must be generalized. The Nilsson model (1955) considers an axially-deformed harmonic oscillator:

$$V(\rho, z) = \frac{1}{2}m\left[\omega_\perp^2 \rho^2 + \omega_z^2 z^2\right] + C\,\mathbf{L}\cdot\mathbf{S} + D\,L^2$$

where the frequencies are parameterized by the deformation $\delta$:

$$\omega_z = \omega_0(1 - \tfrac{2}{3}\delta), \quad \omega_\perp = \omega_0(1 + \tfrac{1}{3}\delta)$$

The Nilsson diagram plots single-particle energies as a function of deformation, showing how spherical shell gaps evolve and new deformed shell gaps emerge. This explains the ground-state deformations of rare-earth and actinide nuclei.

Python Simulation: Shell Model Levels

Visualization of nuclear shell model energy levels with spin-orbit splitting, showing how the magic numbers emerge from the level ordering.

Nuclear Shell Model Energy Levels

Python

Harmonic oscillator + spin-orbit splitting showing magic number shell closures

script.py105 lines

Click Run to execute the Python code

Code will be executed with Python 3 on the server

Fortran Implementation

Computes the liquid drop model fission barrier as a function of deformation for several nuclei, showing how the barrier decreases with increasing $Z^2/A$.

Liquid Drop Fission Barrier

Fortran

Calculates fission barriers for various nuclei using the liquid drop model

fission_barrier.f9054 lines

Click Run to execute the Fortran code

Code will be compiled with gfortran and executed on the server