The Core Mechanism: Line vs. Load Regulation
To properly specify a power supply, engineers break voltage regulation down into two distinct metrics. Both describe voltage variance, but they isolate different variables in the system.
Bench Tip: Always measure regulation at the load terminals, not the power supply output pins. The resistance of your wire adds to the effective internal impedance of the supply, worsening the regulation the load actually experiences.
Load Regulation
Load regulation measures how much the output voltage changes when the current draw changes, assuming the input voltage remains constant. If your microcontroller wakes up and suddenly pulls 500mA instead of 50mA, load regulation dictates how far the voltage rail will dip.Line Regulation
Line regulation measures how much the output voltage changes when the input voltage changes, assuming the load remains constant. For an AC-DC wall adapter, this tells you how much the DC output will fluctuate if your wall outlet drops from 120V nominal down to 108V during a summer brownout.| Metric | Variable Changed | Variable Held Constant | Typical Good Value (Switching Supply) |
|---|---|---|---|
| Load Regulation | Output Current (0% to 100%) | Input Voltage | < 1.0% |
| Line Regulation | Input Voltage (e.g., 90VAC to 264VAC) | Output Current | < 0.5% |
Worked Example: Calculating DC Power Supply Regulation
Let us calculate the load regulation for a common bench power supply: the Mean Well LRS-60-12, a 12V, 5A (60W) enclosed switching power supply. You set up a test on your workbench using an electronic load and a calibrated Fluke 87V multimeter. You measure the output voltage at the supply terminals under two conditions:- No-Load Voltage ($V_{NL}$): With the electronic load turned off (0A draw), the multimeter reads 12.12V.
- Full-Load Voltage ($V_{FL}$): You dial the electronic load to draw the maximum rated current of 5A. The multimeter reading drops to 11.78V.
Load Regulation (%) = [ ($V_{NL}$ - $V_{FL}$) / $V_{FL}$ ] × 100Plugging in our bench measurements:
- Numerator: 12.12V - 11.78V = 0.34V
- Division: 0.34V / 11.78V = 0.02886
- Percentage: 0.02886 × 100 = 2.88%
Where You Meet Voltage Regulation in Practice
In a real circuit or installation, poor voltage regulation changes the available noise margin, shifts oscillator frequencies, and alters the torque curves of motors. Here is where it bites you on the bench and in the field:ESP32 and Arduino Brownouts
The ESP32 is notorious for current spikes up to 500mA during WiFi transmission bursts. If you are powering it via a cheap linear regulator (like an AMS1117-3.3) with poor transient load regulation, the 3.3V rail can momentarily sag below the 2.3V brownout detection threshold. The chip resets, drops the WiFi connection, and enters a boot loop.Stepper Motor Torque Drop
Stepper motor torque is directly proportional to the current through the windings, which is limited by the supply voltage and the driver's chopper circuit. If your 24V DC supply sags to 20V under load due to poor regulation, your driver hits its current limits slower, resulting in a measurable loss of high-speed torque and missed steps in your CNC router.AC Transformer Sizing
In traditional linear power supplies or HVAC control circuits, transformers exhibit significant voltage regulation variance. A 24VAC control transformer might output 28VAC with no load, but drop to 22VAC when the contactor coil engages. If your control board requires a strict 24VDC after rectification, that 22VAC sag will result in a DC bus voltage too low to hold the relay closed. For a deeper dive into AC transformer behavior, review the principles of transformer regulation and impedance.Common Confusions: Regulation vs. Ripple vs. Stabilization
People commonly confuse voltage regulation with voltage ripple and voltage stabilization. While related to power quality, they describe entirely different physical phenomena.
Do Not Conflate Ripple and Regulation: A power supply can have perfect 0.1% load regulation but terrible 100mV peak-to-peak ripple. Regulation is a DC-to-DC shift based on load; ripple is high-frequency AC noise superimposed on the DC output from the switching process.
- Voltage Regulation: A static or slow-moving DC shift caused by load or input changes (measured in % or mV).
- Voltage Ripple: High-frequency AC noise riding on the DC rail, caused by switching transients or AC rectification (measured in mV peak-to-peak).
- Voltage Stabilization: A broader, system-level term that encompasses regulation, ripple rejection, and transient response—the overall act of keeping the rail clean and steady.






