Angular Velocity Converter
Convert angular velocity units such as radians per second, degrees per second, and revolutions per minute.
Formula
- radians per second to revolutions per minute: value * (60 / (2 * Math.PI))
- revolutions per minute to radians per second: value * (2 * Math.PI / 60)
- radians per second to degrees per second: value * (180 / Math.PI)
- degrees per second to radians per second: value * (Math.PI / 180)
- degrees per second to revolutions per minute: value / 6
- revolutions per minute to degrees per second: value * 6
Example Calculations
- 1 rad/s → 9.55 rpm (1 * (60 / (2 * Math.PI)))
- 180 deg/s → 30 rpm (180 / 6)
Use Cases
- Used in mechanical and aerospace engineering.
- Converting angular speed measurements.