Tutorial 11. Interactive tutorial -- Ultraviolet Catastrophe
Learning objectives
- Try the interactive python code to plot the blackbody radiation curve with classical and Planck’s formula.
- Learn the history of “ultraviolet catastrophe” and the birth of quantum mechanics
Background
“The beauty and clearness of the dynamical theory, which asserts heat and light to be modes of motion, is at present obscured by two clouds” – Lord Kelvin
Kelvin explained in his speech in 1900 that the “clouds” were two unexplained phenomena: the inability to detect the luminous ether, and the blackbody radiation.
How should the blackbody radiation intensity look like as a function of the temperature of the blackbody?
- According to classical physics, an idealized blackbody at temperature $T$ emits radiation with a given energy density $\rho(\nu,T)$, where $\nu$ is the frequency of the light emitted.
- In 1900, Max Planck assumed that light could be describe as a set of harmonic oscillators, and that each oscillator carried only a discrete amount of energy
where $n = 0, 1, 2$ is a non-negative integer and $h$ is Planck’s constant. Then the blackbody radiation has the following formula
\[\rho(\nu;T)_{\textrm{Planck}}=\frac{8\pi h}{c^3}\frac{\nu^3 d\nu}{e^{h\nu/k_B T}-1}\]Try and learn
Run the following code to compare and contrast the energy density of blackbody radiation as a function of the frequency of the light emitted. Temperature (T) can be tuned interactively with the control bar.
Instruction:
- First click “Activate” to activate the code block
- Once you see the buttons to “run” at the bottom left corner of the code block, click “run” to run the code. Please be patient. Starting the kernel can be slow sometimes.
- You will see a plot with the radiation curves.
- Play with the control bar to change the temperature.
- You can modify the code and plot $\rho$ as a function of the wavelength of the light.
Note: The code block uses Numpy
, matplotlib
, and Ipywidgets
packages. I didn’t include Scipy because it slowed down the initialization of the executable code blocks based on my tests. Therefore, the physical constants are manually defined, instead of directly using scipy.constants
.
Further Reading
Ultraviolet Catastrophe on Wikipedia