Bose Gases, Photons, and Phonons
Bosons can pile into the same quantum state. That simple fact produces three major ideal-gas phenomena in Schwabl's treatment: Bose-Einstein condensation of massive particles, blackbody radiation for photons, and low-temperature heat capacity of solids through phonons. All three use Bose occupation numbers, but their constraints differ. Massive atoms conserve particle number; photons and phonons usually do not.
This distinction is essential. A conserved Bose gas has a chemical potential set by . A photon gas in thermal equilibrium has because photons can be created and absorbed by the walls. Phonons also have in ordinary equilibrium because lattice vibrations are quasiparticles, not conserved atoms.
Definitions
The Bose-Einstein occupation is
For a massive ideal Bose gas in a box, must not exceed the ground-state energy. Taking the ground energy as zero, . The thermal wavelength is
The excited-state density at is
Bose-Einstein condensation occurs when , with critical temperature
For photons, and . The spectral energy density is Planck's law:
For acoustic phonons in the Debye model, up to a Debye cutoff chosen to give the correct number of modes.
Key results
Below , the condensate fraction for a uniform ideal Bose gas is
This result is idealized; interactions, traps, and finite-size effects modify it, but it captures the statistical origin of macroscopic ground-state occupation.
For photons, integrating Planck's law gives the Stefan-Boltzmann energy density
The pressure of radiation is
The photon number is not fixed; it scales as rather than being set by a chemical potential.
For phonons, the Debye low-temperature heat capacity is
where is the Debye temperature. At high temperature, the heat capacity approaches the Dulong-Petit value .
The recurring mathematical pattern is the Bose integral
The power of in thermodynamic quantities comes from the density of states and the dispersion relation.
For Bose-Einstein condensation, the important point is saturation of excited states. In three dimensions, the excited-particle integral at is finite:
If the total is larger than this value, the extra particles cannot be accommodated by making positive, because that would make the ground-state occupation formula singular with the wrong sign. Instead, they accumulate in the ground state. This is a statistical transition, not a consequence of attraction between particles.
Dimensionality matters. For a uniform ideal Bose gas in one or two dimensions, the corresponding excited-state integral does not produce the same finite saturation at nonzero temperature in the thermodynamic limit. Traps, interactions, and finite size can change experimental behavior, but the simple uniform ideal-gas result is dimension sensitive.
For photons, Planck's law combines Bose statistics with a density of modes proportional to and an energy per mode . The low-frequency Rayleigh-Jeans limit follows from , while the high-frequency Wien tail follows from . The ultraviolet catastrophe is avoided precisely because the quantum occupation decays exponentially when .
For phonons, the Debye model replaces the true lattice dispersion by linear acoustic branches up to a cutoff. The cutoff is not arbitrary; it is chosen so the total number of vibrational modes is . This preserves the correct high-temperature heat capacity while capturing the low-temperature dominance of long-wavelength acoustic modes.
The comparison between photons and phonons is useful because both are bosonic fields with approximately linear low-energy dispersion, but their speeds and mode structures differ. Photons have two transverse polarizations in vacuum and speed . Acoustic phonons in a solid have one longitudinal and two transverse branches with sound speeds set by elastic constants. Optical phonons, present in multi-atom unit cells, have nonzero frequencies at long wavelength and are often frozen out at sufficiently low temperature.
For blackbody radiation, the absence of particle-number conservation is not a minor detail. If photons had a fixed number, one would need a chemical potential and could discuss photon condensation under special conditions. Ordinary cavity radiation instead equilibrates by exchanging photons with matter, setting and making temperature the only intensive parameter controlling photon number.
Interactions change the physical interpretation of Bose condensation. In an ideal gas, condensation is macroscopic ground-state occupation. In liquid helium, interactions are strong, the condensate fraction is not close to one, and superfluidity involves collective excitations and phase coherence. Schwabl's discussion of phonons, rotons, and the two-fluid picture points beyond the ideal Bose gas while keeping Bose statistics as the starting point.
The Debye model has a similar status. It is not a detailed band-structure calculation of a particular crystal, but it captures the universal low-temperature fact that only long-wavelength acoustic modes are thermally occupied. Microscopic details enter through sound velocities and the Debye temperature.
The common mathematical reason for BEC, blackbody radiation, and Debye heat capacity is the competition between Bose occupation and density of states. Changing the dispersion relation or spatial dimension changes the power of energy in the density of states, and therefore changes whether integrals converge and which power of temperature appears.
Finite systems smooth the condensation singularity. A trapped atomic gas can have a very sharp crossover and a macroscopically occupied lowest state, but the true nonanalyticity belongs to the thermodynamic limit. This mirrors the general phase-transition lesson developed later in the section.
Visual
| System | Quasiparticle energy | Chemical potential | Signature result |
|---|---|---|---|
| Massive Bose gas | set by , | Bose-Einstein condensation | |
| Photon gas | Planck law, | ||
| Acoustic phonons | Debye |
Worked example 1: Condensate fraction below the critical temperature
Problem: An ideal Bose gas is at . Find the fraction of particles in the condensate.
Method:
- Use the ideal uniform-gas result:
- Insert :
- Since ,
- Therefore
Checked answer: about of the particles occupy the ground state in this idealized model.
Worked example 2: Low-temperature Debye heat capacity
Problem: A crystal has Debye temperature . Estimate at using the low-temperature Debye law.
Method:
- Use
- Compute the temperature ratio:
- Cube it:
- Compute the coefficient:
- Multiply:
Checked answer: this is much smaller than the high-temperature value , consistent with frozen-out short-wavelength phonons.
Code
import numpy as np
def condensate_fraction(T_over_Tc):
x = np.asarray(T_over_Tc)
return np.where(x < 1.0, 1.0 - x**1.5, 0.0)
def debye_low_cv(T, theta_D, N=1.0, kB=1.0):
return 12 * np.pi**4 / 5 * N * kB * (T / theta_D)**3
for x in [0.2, 0.4, 0.8, 1.2]:
print(x, condensate_fraction(x))
for T in [10, 30, 100]:
print(T, debye_low_cv(T, theta_D=300))
Common pitfalls
- Assigning a nonzero conserved-particle chemical potential to equilibrium photons or phonons.
- Forgetting to separate the Bose ground state when deriving condensation; the continuum integral counts only excited states well.
- Treating ideal Bose condensation and superfluidity as identical. Interactions matter for real superfluid helium.
- Applying the Debye law near or above where the low-temperature approximation fails.
- Missing polarization factors for photons and phonon branches when counting modes.