Mars Decimal Time
24 hours. 60 minutes. 7 days. All design decisions — Babylon, Mesopotamia, Rome. The word “minute” comes from pars minuta prima, “second” from pars minuta secunda. Latin words for fractions of an hour that is itself Babylonian. Design decisions so old they feel like laws of nature.
On Earth, these conventions are load-bearing. The three great cycles — rotation, orbit, lunar phase — share no integer relationship, and four thousand years of cultural embedding make switching costs absurd. But on Mars there is no Babylonian tradition, no base-60 heritage. A greenfield for system design.
The obvious approach — stretching Earth units by 2.75% — produces Mars-hours of 61m 39s and Mars-seconds of 1.0275 Earth-seconds. Close enough to confuse, different enough to produce errors. In 1999 the Mars Climate Orbiter burned up in the Martian atmosphere because one team calculated in pound-seconds while another expected newton-seconds. 125 million dollars, lost because the values were in the same order of magnitude and nobody noticed. The most dangerous confusions are the ones that look plausible.
A well-designed system prevents errors through its form, not through documentation. @417 is obviously a different system than 10:03 AM — the break isn’t a drawback, it’s the feature.
This is part of a broader discussion about system design. Read the full essay on zeitraum.blog.
1 sol = 1000 beats.
A Mars solar day (sol) lasts 24h 39m 35.244s (88,775.244 Earth seconds) — divided into 1000 beats of 88.775 Earth seconds each. @000 is midnight, @250 dawn, @500 solar noon, @750 dusk. The @ prefix distinguishes beats from any other numeric value.
NASA’s Mars24 stretches Earth time units by the sol/day ratio (1.0274912517), producing Mars-hours of 61m 39s and Mars-seconds of 1.0275 Earth-seconds. During the Spirit and Opportunity missions, JPL engineers wore wristwatches with physically modified quartz crystals ticking at the Martian rate — their schedules drifted ~40 minutes against Earth time every sol. Most teams gave up after three weeks of “permanent jetlag.”
The 1000-beat system eliminates this confusion entirely. A beat doesn’t look like a minute, doesn’t sound like a minute, and won’t be confused with a minute. Every Earth–Mars communication requires conversion anyway — but 1 sol = 1000 beats is a clean decimal conversion instead of 24h 39m 35s.
The idea isn’t new. In 1998, Swatch proposed 1000 “.beats” per Earth day. It failed because it ignored biology and solar noon. The Chinese had divided the day into 100 kè (刻) during the Han dynasty around 200 BCE — 14 minutes and 24 seconds per unit, a decimal system that lasted over a thousand years. 10 beats correspond almost exactly to one kè.
Mars Sol Date (MSD) is a continuous sol count since 1873-12-29 12:00 UT, analogous to the Julian Date for Earth. The current beat is the fractional part of MSD, multiplied by 1000.
Chronobiologically, humans sit almost exactly between Earth and Mars. Our internal clock runs at approximately 24h 11m — 11 minutes slow on Earth (why mornings feel hard), but 26 minutes fast on Mars (evenings would be the difficult time). Studies show humans can entrain to a sol rhythm when the light environment supports it. On Mars itself, ambient light would reinforce the sol rather than fight it.
668.6 sols, 16 phases. One Mars tropical year spans 668.5921 sols (~687 Earth days). The year begins at Ls 270° (northern winter solstice).
On Earth, months follow no astronomical correlate — January is an artifact of the Julian calendar reform. On Mars, the year is divided into 16 phases of 22.5° areocentric solar longitude (Ls) each: astronomically exact boundaries that never drift.
Because Mars’ orbit is significantly eccentric (e = 0.0934), equal Ls intervals do not map to equal sol counts. Phases near perihelion (~Ls 250°) last ~35 sols; those near aphelion (~Ls 70°) stretch to ~50. This asymmetry drives the dramatic difference between hemispheres: northern summer lasts 178 sols, northern winter only 154. Southern summer is shorter but far more intense — a system that follows nature instead of pretending all months are the same length.
Ls (areocentric solar longitude) describes Mars’ orbital position as seen from the Sun, measured in degrees. It governs seasonal progression: Ls 0° = northern vernal equinox, 90° = summer solstice, 180° = autumnal equinox, 270° = winter solstice.
Format: y0-s042@417.23+0 — reads big-to-small, like ISO 8601.
y0 — year 0 (pre-epoch). Year 1 begins on the sol of the first human landing on Mars. Until that event, all timestamps carry y0. The epoch is intentionally deferred.
s042 — sol 42 of the current Mars year (1–669), zero-padded to three digits.
@417.23 — beat 417 plus 0.23 millibeats. Sub-beat precision for when it matters.
+0 — meridian offset from Airy-0 (the Mars prime meridian). Future settlements would define local offsets analogous to time zones, but expressed in beat-fractions of a sol.
Opposition every ~780 Earth days. Earth–Mars opposition occurs when both planets align on the same side of the Sun. During opposition, one-way signal delay drops to roughly 3 minutes instead of up to 22 — the closest the two worlds get.
The synodic period (~1.14 Mars years) means not every Mars year contains an opposition. When one does, the clock marks its orbital position on the Ls ring. An obvious Martian holiday: the day when a conversation with home is least painful and you’re closest again to the origin of humanity.
Opposition dates are computed from JPL Keplerian elements for Earth and Mars (J2000, 1800–2050) and refined via Newton iteration on the heliocentric longitude difference, converging in 2–4 steps.
Allison & McEwen (2000). “A post-Pathfinder evaluation of areocentric solar coordinates with improved timing recipes for Mars seasonal/diurnal climate studies.” Planet. Space Sci., 48, 215–235. doi:10.1016/S0032-0633(99)00092-6.
The algorithm computes Mars Sol Date from Julian Date TT, derives areocentric solar longitude via mean anomaly, equation of center, and seven planetary perturbation terms (Earth, Jupiter, Venus), then maps Ls to sol-of-year and phase number. Time is referenced to the Airy-0 prime meridian with a correction of −0.0009626 sols.
Implementation follows NASA GISS Mars24 (rev. 2025-01-07). TT–UTC offset: 69.184s (TAI–UTC = 37s since 2017-01-01, IERS Bulletin C 69, plus TT–TAI = 32.184s, IAU 1991). Full source and technical reference in CONCEPTS.md. Read the essay on zeitraum.blog.