Planetary Science
Jupiter's Storms
The Great Red Spot — a hurricane wider than Earth that has raged for centuries
Jupiter is a giant gas planet with the most active atmosphere in the solar system. The Great Red Spot — a storm bigger than Earth — has been observed continuously for over 350 years. Bands of hurricane-force winds (>500 km/h) circle the planet at different latitudes. Storms thrive due to Jupiter's rapid rotation (10-hour day), internal heat, and lack of solid surface to dissipate them.
- Great Red Spot diameter~16,000 km (1.3× Earth)
- GRS observedFirst seen 1665 (Cassini); continuously since 1830
- Wind speeds100-680 km/h in jet streams
- Day length (Jupiter)9.93 hours (fastest rotator of all planets)
- Internal heatRadiates ~2× solar input — own energy source
- GRS shrinking40,000 km in 1880; 16,000 km today; ~2× Earth diameter
Interactive visualization
Press play, or step through manually. The visualization is yours to drive — try it before reading on.
Watch the 60-second explainer
A condensed visual walkthrough — narrated, captioned, under a minute.
The Great Red Spot
| Property | Value |
|---|---|
| Diameter | ~16,000 km (1.3× Earth) |
| Latitude | 22° South |
| Rotation | Counterclockwise (anticyclonic) |
| Rotation period | ~6 Earth days |
| Edge wind speeds | ~430 km/h |
| Vertical extent | Reaches ~300 km depth (Juno findings) |
| Age | Continuous since 1830; possibly to 1665 |
| Color cause | Chromophores (sulfur, phosphorus compounds) |
Bands and zones
| Region | Type | Direction |
|---|---|---|
| Equatorial Zone | White | Eastward (prograde) |
| North/South Equatorial Belt | Dark | Westward (retrograde) |
| Tropical Zones | Light | Eastward |
| Temperate Belts | Dark | Westward |
| Polar regions | Cluster of storms | Various |
JavaScript — Jupiter storm calculations
const R_JUPITER = 69911e3; // m
// Jovian rotation
const T_JUPITER = 9.93 * 3600; // 9.93 hours
const omega_JUPITER = 2 * Math.PI / T_JUPITER;
console.log(`Jupiter ω: ${omega_JUPITER.toExponential(2)} rad/s`);
// 1.76e-4 rad/s — fastest rotator of all planets
// Equatorial speed
const v_eq = R_JUPITER * omega_JUPITER;
console.log(`Equatorial surface speed: ${(v_eq / 1000).toFixed(1)} km/s`);
// ~12.2 km/s — vs Earth's ~0.46 km/s
// Coriolis parameter at GRS latitude
function coriolisJupiter(lat_deg) {
return 2 * omega_JUPITER * Math.sin(lat_deg * Math.PI / 180);
}
console.log(`GRS Coriolis: ${coriolisJupiter(22).toExponential(2)} /s`);
// GRS wind comparison
function windComparison(jupiter_kmh, earth_hurricane_kmh = 250) {
return jupiter_kmh / earth_hurricane_kmh;
}
console.log(`GRS edge winds vs hurricane: ${windComparison(430).toFixed(2)}× stronger`);
// Internal heat balance
function jupiter_heat_balance() {
const solar_at_jupiter = 1361 / (5.2 * 5.2); // W/m² ~50
const albedo = 0.5;
const absorbed = (1 - albedo) * solar_at_jupiter / 4; // averaged
// Internal heat ~ same magnitude as absorbed
return { absorbed_W_per_m2: absorbed, internal_heat_ratio: 2.0 };
}
console.log(jupiter_heat_balance());
// GRS shrinking
const widths_km = {
'1880': 40000,
'1979 (Voyager)': 23000,
'2000': 20000,
'2017 (Juno)': 16000,
};
console.log(widths_km);
// Storm rotation period
function rotationPeriod(circumference_km, wind_speed_kmh) {
return circumference_km / wind_speed_kmh / 24; // days
}
console.log(`GRS rotation: ${rotationPeriod(50000, 350).toFixed(1)} days`);
Why Jupiter's storms matter
- Atmospheric science. Largest, longest-lasting storms — extreme test of meteorological theories.
- Comparative planetology. How storms differ on different gas giants.
- Energy transport. Internal heat drives circulation; lessons for fusion.
- Education. Iconic feature visible in any telescope — accessible astronomy.
- Mission targets. Juno (2016+), Europa Clipper (2024+) study Jupiter atmosphere.
- Exoplanet inferences. Hot Jupiters likely have similar atmospheric features.
- Climate dynamics. Stable storms vs Earth — storms decay quickly. Why?
Common misconceptions
- Jupiter has a solid surface. NO — gas all the way down to liquid hydrogen, then metallic hydrogen near core. No "ground" to land on.
- Storms last forever. Even GRS is shrinking; eventually may dissipate.
- Color comes from sunlight. Color from chemicals (chromophores) — sulfur, phosphorus compounds. Not just solar reflection.
- Bands are static. Active circulation; bands change appearance over decades.
- Jupiter is just a giant Earth. Different physics — gas giant, no surface, no plate tectonics, hydrogen-helium dominant.
- GRS is south-spinning hurricane. Anticyclonic — opposite rotation to Earth hurricanes.
Frequently asked questions
What is the Great Red Spot?
An anticyclonic storm (high-pressure rotation) in Jupiter's southern hemisphere. Rotates counterclockwise (vs Earth's hurricanes — cyclonic = low-pressure). 16,000 km wide; rotation period ~6 days. Wind speeds ~430 km/h at edges. Color comes from chromophores — chemicals (possibly sulfur, phosphorus compounds) lifted by storm.
How long has it existed?
Long! First seen by Cassini in 1665 (some claim Hooke 1664 saw similar). Continuously observed since 1830. So at least 195 years; possibly 350+. May have been bigger and reddier in the past — historical records suggest 40,000 km diameter in 1880s. Currently shrinking.
Why is GRS shrinking?
Unknown. Multiple measurements show diameter has decreased ~2-3% per year recently. Some theories — vortex consuming smaller storms, weaker latitudinal winds, internal dynamics evolving. May completely disappear in coming decades; or may stabilize. Active research.
How are Jupiter's bands formed?
Atmospheric circulation creates alternating bands. Light "zones" are upwelling (clouds form, reflects more light). Dark "belts" are downwelling (clearer, deeper levels visible). Strong differential rotation between bands creates jet streams. Pattern stable for centuries; details change yearly.
Where does Jupiter's heat come from?
Multiple sources. (1) Heat left over from formation 4.5 Gyr ago — gas planet still slowly contracting under gravity, releasing potential energy. (2) Helium settling toward core releases gravitational energy. (3) Some radioactive decay. Total internal heat ≈ external solar heating; Jupiter radiates ~2× what it absorbs from Sun.
What about other Jupiter storms?
Many. Smaller "ovals" are common — some coalesce into bigger ones. White ovals (cyclones), red spots (anticyclones), brown barges (long-lived smaller features). Lightning detected (Voyager, Juno). Polar vortices — Juno revealed cluster of 5-9 storms at each pole. Active research with Juno data.
What about Jupiter's weather forecasts?
Long-term — bands stay similar; GRS persists. Short-term — storm interactions, color changes are unpredictable. Model with ground-based + spacecraft observations. Juno (2016+) provides detailed view; revealed asymmetries, water content, deep dynamics.