Skip to content

Time

Decimals
Enter a value to see conversion results

Time Conversion Guide

Time is the SI base quantity for measuring duration and sequencing events. The SI base unit is the second (s), defined by the cesium-133 atomic transition (9,192,631,770 oscillations). Submultiples are critical in modern engineering. Key conversions: 1 min = 60 s, 1 h = 3,600 s, 1 day = 86,400 s, 1 ms = 10⁻³ s, 1 μs = 10⁻⁶ s, 1 ns = 10⁻⁹ s. For process engineering: 1 year ≈ 8,760 hours (non-leap) or 8,766 hours (average including leap years). Time conversion is essential in control systems (sampling rates in ms or μs), project scheduling, process engineering (residence time, reaction kinetics), telecommunications (latency in ms), and embedded systems (timer tick intervals in μs or ns). Common pitfalls: confusing ms (millisecond, 10⁻³) with μs (microsecond, 10⁻⁶) — a 1,000x error that causes real-time systems to fail. Unix timestamps may be in seconds, milliseconds, or microseconds depending on the platform. Also, using 365 days/year instead of actual calendar days can accumulate significant scheduling errors over multi-year projects.

! Time — Good to Know

  • ms (millisecond, 10⁻³) and μs (microsecond, 10⁻⁶) differ by 1,000x. Mixing them up in code makes things run 1,000x faster or slower.
  • When the μ (micro) symbol can't be typed, "us" or "usec" notation is sometimes used.

Frequently Asked Questions