RMS-to-DC Converters: Measuring True Power of Complex Waveforms

2026-05-20

A cheap multimeter on AC mode lies to you. It measures the average of the rectified signal and scales by 1.11 (the form factor for a pure sine wave). Feed it a square wave, a triangle wave, or — worst of all — a distorted current waveform from a switching power supply, and the reading can be off by 40% or more. True RMS-to-DC converters solve this by computing the actual root-mean-square value, which corresponds to real heating power in a resistive load.

The mathematical definition is VRMS = √(average of v²(t)). Building this directly with analog circuits requires three operations: square, average, and square root. The classic implicit-computation approach (used in the AD536, AD636, AD737) cleverly avoids the explicit square root by using log/antilog feedback: it computes |Vin|²/Vout, low-pass filters it, and forces it to equal Vout. Algebraically, that means Vout = √(avg(Vin²)) — exactly RMS — with only one squaring operation and one feedback loop instead of cascading squarer + divider + square-rooter.

Real-world example: Measuring the current draw of a variable-frequency drive (VFD) motor controller. The current waveform is a chopped, harmonic-rich mess at the switching frequency. Use an AD8436 (rail-to-rail true RMS converter) fed from a Hall-effect current sensor. The chip outputs a clean DC voltage proportional to the true heating current — feed that into your ADC and you get a reading that actually predicts how hot the motor windings will get. A non-RMS meter on the same signal might read 4.2 A when the real heating-equivalent current is 6.8 A.

The crest factor trap: Every RMS converter has a specified crest factor (peak-to-RMS ratio) it can handle accurately, typically 5:1 to 10:1. For SCR-chopped loads or pulsed signals, crest factor can hit 7 or higher. Exceed the spec and the squaring stage saturates, dragging your reading low.

Rule of thumb — averaging capacitor: The output ripple and settling time are dominated by CAV. For 1% settling error at the lowest input frequency fmin, size it as:

Modern alternative: just sample the signal fast (≥10× the highest harmonic), square in firmware, and average. A 24-bit sigma-delta ADC plus a Cortex-M0 beats most analog RMS chips below 10 kHz — but above that, the analog approach still wins on power and latency.

See it in action: Check out What Is True-RMS And Why Is It So Important? by Fluke Corporation to see this theory applied.
Key Takeaway: True RMS converters compute heating-equivalent voltage from any waveform shape by squaring, averaging, and square-rooting in analog — essential whenever your signal isn't a pure sine wave.

All newsletters