Lesson 13 of 15
Electronic Heat Capacity
Electronic Heat Capacity
At low temperatures the electronic contribution to heat capacity dominates over the lattice (Debye) contribution. This is a direct consequence of the Pauli exclusion principle — only electrons near the Fermi level can be thermally excited.
Sommerfeld Theory
The electronic heat capacity per unit volume is:
where γ is the Sommerfeld coefficient:
For a free-electron gas, the density of states at the Fermi level is:
Substituting gives:
Fermi Energy (Free Electron Model)
Molar Sommerfeld Coefficient
Experimentally, γ is often quoted in mJ/(mol·K²):
where V_mol = N_A / n is the molar volume.
Physical Insight
At room temperature C_el ≈ γ × 300 K is much smaller than the Dulong–Petit lattice value of 3R ≈ 25 J/(mol·K), explaining why electrons do not contribute 3/2 k_B per electron as classical theory predicted.
Implement
def sommerfeld_gamma_J_m3_K2(n_m3):
# Returns γ in J/(m³·K²)
...
def electronic_heat_capacity_J_m3K(n_m3, T_K):
# Returns C_el = γ T in J/(m³·K)
...
def sommerfeld_coefficient_mJ_mol_K2(n_m3):
# Returns γ in mJ/(mol·K²)
...Python runtime loading...
Loading...
Click "Run" to execute your code.