Chem 3240 · Lecture 1.2


\lambda \nu = c \qquad c = 3 \cdot 10^8 \, \text{m/s}


\rho_{\nu}(T)\, d\nu = \underbrace{\langle E \rangle}_{\text{energy per mode}} \times \underbrace{dN_{\nu}}_{\text{number of modes}}



Planck vs Rayleigh-Jeans (classical), plotted per unit frequency; shaded band is visible light, dotted line is the peak
{
const h = 6.626e-34, c = 2.998e8, kB = 1.381e-23;
const nus = d3.range(0.02, 30, 0.05); // in units of 1e14 Hz
const planck = nus.map(n => { const nu = n * 1e14; return {x: n, y: 8 * Math.PI * h * Math.pow(nu, 3) / Math.pow(c, 3) / Math.expm1(h * nu / (kB * Tbb))}; });
const rj = nus.map(n => { const nu = n * 1e14; return {x: n, y: 8 * Math.PI * Math.pow(nu, 2) * kB * Tbb / Math.pow(c, 3)}; });
const ymax = 1.6 * d3.max(planck, d => d.y);
const nuPeak = 5.879e10 * Tbb / 1e14; // Wien's law in frequency form
return Plot.plot({
width: 1000, height: 360,
x: {label: "frequency (10^14 Hz)", domain: [0, 30]},
y: {label: "energy density per unit frequency", domain: [0, ymax], ticks: 0},
marks: [
Plot.rect([{x1: 4.0, x2: 7.9, y1: 0, y2: ymax}], {x1: "x1", x2: "x2", y1: "y1", y2: "y2", fill: "gold", fillOpacity: 0.15}),
Plot.ruleX([nuPeak], {stroke: "#999", strokeDasharray: "2,3"}),
Plot.line(rj, {x: "x", y: "y", stroke: "#7fb3d5", strokeWidth: 2, strokeDasharray: "6,4", clip: true}),
Plot.line(planck, {x: "x", y: "y", stroke: "#C8102E", strokeWidth: 2.5})
]
});
}In 1900 Planck postulated that an oscillator can hold only discrete amounts of energy:
\boxed{E = n\,h\nu}, \qquad n = 0, 1, 2, \ldots
Quantized oscillators give a frequency-dependent average energy (Boltzmann-weighted sum over n): \langle E \rangle = \frac{h\nu}{e^{\frac{h\nu}{ kT}} - 1} \qquad \Big(\to k_BT \text{ for } h\nu \ll k_BT\Big)
Energy per mode \times modes, with the mode count untouched:
\rho_{\nu}(T) = \frac{8\pi \nu^2}{c^3} \cdot \frac{h\nu}{e^{\frac{h\nu}{kT}} - 1}

\lambda_{max} = \frac{b}{T}
A spectrum is modes times energy per mode. Classical equipartition gives every mode k_BT and the ultraviolet catastrophe; Planck’s E = nh\nu starves the high-frequency modes, cures the catastrophe, and starts quantum mechanics.
Chem 3240 · Quantum Mechanics