Degenerate Fermi Gas
A degenerate Fermi gas is a many-fermion system whose low-temperature behavior is dominated by the Pauli principle rather than by thermal energy. At , all one-particle states are filled up to the Fermi energy. At small nonzero temperature, only particles within about of the Fermi surface can be thermally rearranged.
Schwabl uses this model for electrons in metals and for compact astrophysical matter. The same mathematics explains why the electronic heat capacity of a metal is much smaller than the classical equipartition estimate and why degeneracy pressure can support white dwarfs against gravity.
Definitions
For spin- fermions in a three-dimensional box, the occupation at is
The Fermi momentum is defined by filling all momentum states inside a sphere:
where for spin- particles without additional degeneracy. Thus
The nonrelativistic Fermi energy and Fermi temperature are
The density of one-particle states per energy is
Key results
At zero temperature,
The pressure is
This is degeneracy pressure. It exists at and is not caused by thermal motion in the classical sense; it is caused by the kinetic energy forced by antisymmetry.
For low but nonzero temperature, the Sommerfeld expansion states that for smooth ,
For fixed , the chemical potential is
The electronic heat capacity is linear in :
for a three-dimensional nonrelativistic ideal Fermi gas. This replaces the classical value and is small when .
The physical picture behind the Sommerfeld expansion is phase-space blocking. Deep below , states are already occupied and cannot accept another fermion. Far above , states are empty but thermally inaccessible. Only a shell of width about around the Fermi surface changes its occupation. The fraction of active particles is therefore of order , which explains the small heat capacity before any calculation is done.
The same shell structure controls magnetic response. In Pauli paramagnetism, a weak magnetic field shifts spin-up and spin-down Fermi surfaces relative to each other. Only electrons near the Fermi surface can change spin occupation, so the susceptibility is temperature independent to leading order and proportional to the density of states at , not to as in Curie paramagnetism.
White-dwarf applications require a further step: at high density, electrons become relativistic. The nonrelativistic degeneracy pressure scales as , while the ultrarelativistic pressure scales as . This change in exponent is central to the existence of the Chandrasekhar limiting mass. The detailed stellar calculation includes gravity and charge neutrality, but the statistical-mechanical origin is already present in the ideal Fermi gas: filling momentum states costs kinetic energy even at zero temperature.
One must also distinguish the chemical potential from the Fermi energy at nonzero temperature. At , . At low temperature, decreases slightly in three dimensions for a fixed density. In many metal problems this correction is tiny because is small, but it matters in precise Sommerfeld expansions.
The density of states determines many low-temperature coefficients. In three dimensions, , so the number of available states near the Fermi surface grows slowly with energy. In two dimensions, is constant for a parabolic band, which changes some thermodynamic prefactors while preserving the idea that only a thermal shell is active. In one dimension, singular density-of-states features make fluctuations and interactions more important.
The ideal Fermi gas should not be confused with a free-electron model of every metal property. Lattices replace by band dispersions, and interactions renormalize quasiparticle parameters. Nevertheless, Landau's Fermi-liquid picture keeps the Fermi surface and the low-temperature shell argument, which is why the ideal gas remains the conceptual starting point.
Pressure formulas should be derived with the constraint fixed. At , the energy depends on volume through , so differentiating at fixed gives the degeneracy pressure. Differentiating at fixed density would miss the mechanical response. This is a common error because is often written as if it were an independent constant.
Relativistic corrections are not small in compact stars, where the Fermi momentum can approach or exceed . In that regime one must replace by the relativistic dispersion. The occupation principle is unchanged; the energy-momentum relation changes the equation of state.
The Fermi surface is therefore more fundamental than the Fermi sphere. In anisotropic crystals the surface need not be spherical, but low-temperature response is still controlled by states close to it. The ideal gas gives the spherical benchmark against which band-structure and interaction effects are measured.
This surface viewpoint also explains why scattering near the Fermi level controls transport. Filled final states are blocked, so only excitations with available states near contribute efficiently to electrical and thermal currents. Degeneracy changes not only equilibrium thermodynamics but also kinetic behavior.
Visual
T = 0 occupation
f
1 |###############|
|###############|
0 +---------------+----------------> epsilon
epsilon_F
T > 0 occupation
f
1 |############...
|#########....
0 +----------~~~~~---------------> epsilon
width ~ k_B T
| Quantity | Formula | Scaling with density |
|---|---|---|
| Fermi momentum | ||
| Fermi energy | ||
| Ground energy | ||
| Degeneracy pressure | ||
| Low- heat capacity | per particle |
Worked example 1: Fermi energy of conduction electrons
Problem: Estimate the Fermi energy for an electron gas with .
Method:
- Use
- Compute the density factor:
- Raise to the power:
- Insert and :
- Convert to electronvolts:
Checked answer: this is a typical metallic Fermi energy, corresponding to of order .
Worked example 2: Low-temperature electronic heat capacity
Problem: For the electron gas above, estimate at if .
Method:
- Use the Sommerfeld result:
- Insert numbers:
- Multiply by :
Checked answer: only a few percent of per electron contributes at room temperature, far below the classical equipartition estimate.
Code
import numpy as np
hbar = 1.054_571_817e-34
me = 9.109_383_7015e-31
kB = 1.380_649e-23
eV = 1.602_176_634e-19
def fermi_energy(n, m=me):
return hbar**2 * (3 * np.pi**2 * n)**(2 / 3) / (2 * m)
n = 8.5e28
EF = fermi_energy(n)
TF = EF / kB
print("EF eV", EF / eV)
print("TF K", TF)
for T in [10, 100, 300]:
print(T, "Cv/NkB", 0.5 * np.pi**2 * T / TF)
Common pitfalls
- Interpreting the Fermi energy as a thermal energy. It remains nonzero at .
- Forgetting spin degeneracy when deriving from the momentum-space volume.
- Applying the Sommerfeld expansion when is not small compared with .
- Assuming all electrons in a metal are thermally active. Only those near the Fermi surface respond strongly.
- Confusing degeneracy pressure with interaction pressure. The ideal Fermi gas has degeneracy pressure even without interactions.