Angle Unit Converter
Convert angles between degrees, radians, gradians, arcminutes, arcseconds, and turns for motor, antenna, and RF applications.
Formula
How It Works
This calculator converts between degrees, radians, gradians, arcminutes, arcseconds, and turns for engineers, surveyors, and scientists working with angular measurements. Per SI Brochure (BIPM) and NIST SP 811, the radian is the SI unit for plane angle: 1 rad = 180/pi degrees = 57.29578 degrees exactly. One full revolution = 360 degrees = 2*pi radians = 400 gradians = 21,600 arcminutes = 1,296,000 arcseconds = 1 turn. Precision matters: GPS positioning uses arcseconds where 1 arcsecond of latitude = 30.87 meters on Earth's surface (WGS84 ellipsoid). Antenna beamwidth is specified in degrees (typical 3 dB beamwidth: 5-60 degrees), while stepper motors use steps per revolution (200 steps = 1.8 degrees/step per NEMA standard).
Worked Example
A phased array antenna requires beam steering of 45 degrees with 0.1 degree resolution. Calculate in all angular units and determine required phase shifter bits.
- Convert 45 degrees: 45 × pi/180 = 0.7854 rad = 50 grad = 2700 arcmin = 162,000 arcsec = 0.125 turns
- Resolution 0.1 degrees: 0.1 × pi/180 = 1.745 mrad = 6 arcmin = 360 arcsec
- Steps needed: 45/0.1 = 450 discrete positions
- Bits required: ceiling(log2(450)) = 9 bits for 512 positions
- Phase resolution per IEEE 802.11ad: lambda/2 spacing, 45 degrees = pi/4 rad phase difference
- 9-bit phase shifter provides 360/512 = 0.703 degree resolution (better than 0.1 degree requirement)
Practical Tips
- ✓Per IEEE/ISO standards: store angles in radians internally, convert to degrees only for display. This eliminates conversion overhead in trigonometric calculations and matches library expectations (sin, cos, atan2)
- ✓Antenna specifications per IEEE 145-2013: 3 dB beamwidth in degrees, pointing accuracy in arcminutes or arcseconds. A 1 degree pointing error at 36,000 km (GEO satellite) = 628 km position error
- ✓Stepper motor resolution per NEMA: 200 full steps/rev = 1.8 deg/step, with 256x microstepping = 0.007 deg/microstep. Convert to radians for trajectory planning: 1.8 deg = 31.42 mrad
Common Mistakes
- ✗Using degrees in trigonometric functions expecting radians - Math.sin(90) in most languages gives 0.894 (90 radians), not 1.0 (90 degrees). Convert first: Math.sin(90 × pi/180) = 1.0
- ✗Confusing gradians (400 per circle) with degrees (360 per circle) - causes 11.1% error. 100 grad = 90 degrees, not 100 degrees. Gradians appear in some European surveying equipment
- ✗Accumulating rounding errors in repeated angle calculations - after 360 additions of 1 degree, floating-point error can reach 10^-14 radians. Wrap angles modulo 2*pi periodically
Frequently Asked Questions
Related Calculators
Motor
Encoder Resolution
Calculate encoder counts per revolution, angular resolution, and maximum frequency for quadrature and single-channel encoders.
Motor
Gear Ratio
Calculate gear ratio, output speed, torque multiplication, and power transmission efficiency for gear trains.
Antenna
Beamwidth
Calculate antenna 3 dB beamwidth, gain from aperture, and effective area. Determine HPBW for dish, horn, and aperture antennas. Free, instant results.
Convert
Frequency ↔ Wavelength
Convert frequency to wavelength instantly: 150 MHz = 2.0 m, 2.4 GHz = 12.5 cm, 5.8 GHz = 5.2 cm. Calculates full, half, and quarter wavelengths for any medium — antenna design, coax, and RF planning.