Voltage regulation is the measure of how well a power source maintains a steady output voltage as the electrical load current or input line voltage changes, typically expressed as a percentage. When you design a circuit or wire a control panel, you assume your 12V power supply is actually outputting 12.0V. In reality, every power source has internal impedance. As current flows through this internal impedance, a voltage drop occurs, causing the output terminals to sag. Understanding this sag—and how to quantify it—is the foundation of reliable power distribution.

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:
  1. No-Load Voltage ($V_{NL}$): With the electronic load turned off (0A draw), the multimeter reads 12.12V.
  2. 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.
To find the percentage of load regulation, we use the standard formula where full-load voltage is the denominator:
Load Regulation (%) = [ ($V_{NL}$ - $V_{FL}$) / $V_{FL}$ ] × 100
Plugging in our bench measurements:
  • Numerator: 12.12V - 11.78V = 0.34V
  • Division: 0.34V / 11.78V = 0.02886
  • Percentage: 0.02886 × 100 = 2.88%
A result of 2.88% is slightly outside the typical <1% spec for a premium switching supply, which tells us on the bench that either the internal potentiometer needs trimming (the LRS-60-12 has an adjustable trimmer), or our test leads are introducing enough voltage drop to skew the reading. This is exactly why datasheets specify measuring directly at the pins.

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.
For practical advice on selecting components to manage these variables, SparkFun's guide to voltage regulators provides an excellent overview of how linear and switching topologies handle these distinct challenges.

Frequently Asked Questions

What is a good voltage regulation percentage for a bench power supply?

For a high-quality switching DC power supply (like those from Mean Well, TDK-Lambda, or RECOM), you should expect load regulation of 0.5% or better. For linear regulators (like the LM317 or LM7805), load regulation is typically specified in millivolts rather than a percentage, often around 10mV to 50mV across the full load range. Cheap, unregulated wall-warts can have regulation as poor as 20% to 30%.

How does poor voltage regulation cause ESP32 brownouts?

When the ESP32 transmits a WiFi packet, it draws a sudden spike of 300mA to 500mA. If the 3.3V voltage regulator feeding the chip has poor load regulation or slow transient response, the output voltage sags momentarily. If the voltage drops below the ESP32's internal brownout detector threshold (typically around 2.3V to 2.4V), the chip assumes power is failing and triggers a hard reset to protect its memory.

Can I fix poor voltage regulation by adding a larger filter capacitor?

Only partially, and only for transient spikes. A larger bulk capacitor (e.g., upgrading from 100µF to 1000µF) will supply instantaneous current during a sudden load step, masking poor transient regulation for a few milliseconds. However, it will do absolutely nothing to fix steady-state load regulation. If your supply sags from 12.0V to 11.2V under a continuous 5A load, a capacitor cannot fix that sustained DC voltage drop; you need a supply with a tighter feedback loop or thicker wires.

What is the difference between voltage regulation and a voltage regulator?

Voltage regulation is the performance metric—the percentage of variance. A voltage regulator is the physical component (an IC or circuit module, like an LM7805 or a buck converter) designed to achieve that metric. You buy a voltage regulator to improve your system's voltage regulation.