The Electromagnetic Spectrum Explorer is an interactive web application for exploring the electromagnetic spectrum from radio waves to gamma rays. An educational tool providing real-time visualization and comprehensive information.
Spectrum Explorer
Frequency: 545 THz
Energy: 2.25 eV
The visible spectrum is the portion of electromagnetic radiation visible to the human eye.
Key Features
- Full Spectrum Coverage: From radio waves to gamma rays
- Real-Time Visualization: Interactive spectrum display with logarithmic scaling
- Unit Conversion: Convert between wavelength, frequency, and energy
- Educational Content: Comprehensive information for each band
- Scientific Accuracy: NIST-certified physical constants
Technical Implementation
The application implements robust physics calculations:
export const PHYSICS_CONSTANTS = {
SPEED_OF_LIGHT: 299792458, // m/s (exact)
PLANCK_CONSTANT: 6.62607015e-34, // J*s (exact)
PLANCK_CONSTANT_EV: 4.135667696e-15, // eV*s
};
export function wavelengthToFrequency(wavelength) {
return SPEED_OF_LIGHT / wavelength;
}
The logarithmic visualization enables smooth interaction across scales spanning from femtometers to kilometers.