Rads to RPM Converter

Rads to RPM Converter

Convert radians per second to RPM or RPM to rad/s instantly — complete with degrees per second, hertz, rotation period, and the nearest real-world machine benchmark.

Last updated:

Enter a number to convert, or pick a real-world example below.

How it works

  1. Choose your direction

    Pick rad/s → RPM (the default) or switch to RPM → rad/s for the reverse conversion.

  2. Enter a value or pick a preset

    Type any angular velocity, or choose a real-world example to load its rad/s equivalent automatically.

  3. Read every result

    See RPM, degrees per second, hertz, revolutions per hour, rotation period, and the closest real-world benchmark — all at once.

How to Convert Radians per Second to RPM

Physics, control systems, and simulation tools express angular velocity in radians per second because rad/s is the SI unit that calculus and rotational dynamics are built on. Motors, engines, tachometers, and mechanical datasheets almost always quote RPM, so switching between the two is a daily task in robotics, motor control, automotive engineering, and dynamics. The conversion is exact, not an approximation: one revolution is 2π radians and RPM counts revolutions per minute, so multiplying rad/s by 60 ÷ 2π — which simplifies to 30/π (≈ 9.5492965…) — gives RPM. That factor is irrational because π is irrational, so using 30/Math.PI in code keeps full floating-point precision. Going the other way, RPM × π/30 returns rad/s, while Hz = rad/s ÷ 2π, degrees per second = rad/s × 180/π, and the rotation period in seconds = 2π ÷ rad/s = 60 ÷ RPM.

RPM   = rad/s × 60 ÷ 2π
      = rad/s × 30/π

rad/s = RPM × 2π ÷ 60
      = RPM × π/30

Related:
  Hz       = rad/s ÷ 2π
  °/s      = rad/s × 180/π
  Period   = 2π ÷ rad/s  (seconds)
Example

Convert 100 rad/s to RPM: RPM = 100 × 30/π = 3000/π ≈ 954.93 RPM. Alongside it, Hz = 100 ÷ 2π ≈ 15.92 Hz, °/s = 100 × 180/π ≈ 5,729.6 °/s, and the period = 2π ÷ 100 ≈ 0.0628 s per revolution.

Worked examples

Sample scenarios and their calculated results
ScenarioCalculationResult
Motor A — electric motor at 100 rad/s100 × 30/π954.93 RPM · 15.92 Hz · 5,729.6 °/s · 0.0628 s/rev
Servo B — servo drive at 200 rad/s200 × 30/π1,909.86 RPM · 31.83 Hz · 11,459.2 °/s · 0.0314 s/rev
Machine C — 52.36 rad/s (≈ 500 RPM)52.36 × 30/π500.00 RPM · 8.33 Hz · 3,000 °/s · 0.12 s/rev
Engine D — car engine at 3,000 RPM3000 × π/30314.16 rad/s · 50 Hz · 18,000 °/s · 0.02 s/rev
Drive E — hard drive at 7,200 RPM7200 × π/30753.98 rad/s · 120 Hz · 43,200 °/s · 0.00833 s/rev

Conversion reference

Calculated using RPM = rad/s × 30/π. Exact values rounded to 4 decimal places.
rad/sRPMHz°/sPeriod (s)
19.54930.159257.29586.2832
547.74650.7958286.47891.2566
1095.49301.5915572.95780.6283
20190.98593.18311,145.91560.3142
50477.46487.95772,864.78900.1257
100954.929715.91555,729.57800.0628
2001,909.859331.831011,459.15590.0314
314.1592,999.997550.000017,999.98480.0200
5004,774.648379.577528,647.88980.0126
10009,549.2966159.154957,295.77950.0063

Quick facts

  • 1 rad/s = 30/π RPM = 9.5492965… RPM — an irrational number, because π is irrational.
  • 1 RPM = π/30 rad/s = 0.10471975… rad/s — the exact reciprocal of the rad/s → RPM factor.
  • A 1,500 RPM motor (a 4-pole machine on 50 Hz AC) spins at exactly 50π ≈ 157.08 rad/s.
  • Hertz ties the units together: Hz = RPM ÷ 60 = rad/s ÷ 2π, so 3,000 RPM = 50 Hz = 100π rad/s.
  • Multiplying by 30/π and by π/30 are exact inverses — convert and convert back and you land on the same number.

Frequently asked questions