The load regulation formula calculates a power supply's ability to maintain a steady DC output voltage as the connected load current changes from zero to its maximum rated value. Expressed as a percentage, the standard equation is: Load Regulation (%) = [(VNL - VFL) / VFL] × 100. A lower percentage indicates a 'stiffer' or better-regulated supply. For example, a high-quality bench supply might have a load regulation of 0.01%, while an unregulated wall adapter could exceed 20%. Below, we break down the variables, realistic magnitudes for common ICs, and step-by-step derivations so you can accurately spec power systems for sensitive logic or precision analog circuits.

The Core Load Regulation Formula and Symbol Definitions

Load regulation is fundamentally a measure of the output impedance of your power supply. When a load draws current, the internal resistance (and the ESR of the output capacitors) causes a voltage drop. The standard formula used by manufacturers like Texas Instruments and Mean Well quantifies this drop relative to the full-load voltage.

The primary equation is:

Load Regulation (%) = [ (VNL - VFL) / VFL ] × 100

Table 1: Symbol Definitions and Units
Symbol Name Standard Unit Definition & Bench Context
VNL No-Load Voltage Volts (V) The DC output voltage measured when the load current is exactly 0A. This is the open-circuit voltage.
VFL Full-Load Voltage Volts (V) The DC output voltage measured when the supply is delivering its maximum rated continuous current.
VNOM Nominal Voltage Volts (V) The advertised target voltage (e.g., 5.0V). Note: Some older textbooks use VNOM in the denominator instead of VFL, but modern datasheets prefer VFL.
ΔV Voltage Deviation Volts (V) or mV The absolute difference between no-load and full-load states (VNL - VFL).

Real-World Magnitudes: What to Expect from Common Power Supplies

Before running the math, you need a baseline for what a 'good' or 'bad' answer looks like. If you calculate a load regulation of 15% for an LM7805 linear regulator, you have made a math error or your IC is counterfeit/overheating. The table below provides realistic, datasheet-backed magnitudes for common power topologies you will encounter on the bench.

Table 2: Realistic Load Regulation Magnitudes by Topology
Power Supply Type Example Part / Model Typical Load Regulation Max Rated Current Best Application
Linear Regulator (LDO) TI LM7805 / LM317 0.1% to 1.0% 1.0A to 1.5A Low-noise analog sensors, audio preamps
Switching Buck Converter LM2596 / MP2307 0.5% to 2.0% 2.0A to 3.0A Microcontrollers, relays, general logic
Enclosed AC-DC SMPS Mean Well LRS-350-12 0.5% to 1.5% 29.0A (at 12V) LED strips, 3D printers, CNC routers
Unregulated Wall Adapter Generic 12VAC/DC Brick 10.0% to 25.0% 0.5A to 1.0A Incandescent bulbs, resistive heaters
Precision Bench Supply Rigol DP832 / Keysight < 0.05% 3.0A to 5.0A Precision ADC/DAC testing, lab calibration

For context, if you are powering a 12-bit ADC with a 5V reference, a 1% load regulation error translates to a 50mV shift, which is roughly 40 LSBs (Least Significant Bits) of error. For digital logic like an ESP32 (which requires 3.3V ±5%), a 2% regulation is perfectly acceptable. For deeper reading on how these specs interact with line regulation, consult the All About Circuits guide on power supply specifications.

Rearranged Forms and Algebraic Manipulation

On the bench, you rarely just calculate the percentage. Usually, you know the regulator's datasheet specification (the percentage) and need to find out what your actual voltage will be under load. Here are the rearranged forms of the load regulation formula solving for each variable.

  • Solving for No-Load Voltage (VNL):
    VNL = VFL × [ 1 + (Load Regulation(%) / 100) ]
    Use case: You know your loaded voltage and the datasheet spec, and want to predict the open-circuit voltage.
  • Solving for Full-Load Voltage (VFL):
    VFL = VNL / [ 1 + (Load Regulation(%) / 100) ]
    Use case: You measure the open-circuit voltage with your multimeter and want to know how much it will sag when you connect your 2A motor load.
  • Solving for Absolute Voltage Drop (ΔV):
    ΔV = VFL × (Load Regulation(%) / 100)
    Use case: You need to know the exact millivolt drop to calculate power dissipation or trace voltage drop margins.

Worked Examples with Strict Unit Tracking

Let's run two practical scenarios. The most common failure mode in these calculations is mixing millivolts and volts, or forgetting to convert the percentage to a decimal. We will track units explicitly at every step.

Problem 1: Calculating Percentage from Bench Measurements

Scenario: You are testing a salvaged 12V switching power supply. With no load connected, your Fluke 87V multimeter reads 12.24 V DC. You connect a dummy load that draws the supply's maximum rated 10A, and the voltage drops to 11.91 V DC. What is the load regulation?

  1. Identify Variables:
    VNL = 12.24 V
    VFL = 11.91 V
  2. Calculate the Numerator (Absolute Drop):
    ΔV = VNL - VFL
    ΔV = 12.24 V - 11.91 V = 0.33 V
  3. Divide by the Denominator (Full-Load Voltage):
    Ratio = ΔV / VFL
    Ratio = 0.33 V / 11.91 V = 0.027707...
  4. Convert to Percentage:
    Load Regulation = 0.027707 × 100 = 2.77%

Verdict: 2.77% is slightly high for a modern enclosed SMPS (which typically target <1.5%), suggesting aging output capacitors with high ESR or a design optimized for cost over precision.

Problem 2: Predicting Voltage Sag Using Datasheet Specs

Scenario: You are designing a PCB using an TI linear regulator that has a datasheet load regulation spec of 0.8%. Under your maximum system load, you require exactly 4.95 V at the microcontroller pins. What will the no-load voltage be when the system goes into sleep mode (0A draw)?

  1. Identify Variables:
    Load Regulation = 0.8%
    VFL = 4.95 V (Target voltage under load)
  2. Select the Rearranged Formula:
    VNL = VFL × [ 1 + (Load Regulation(%) / 100) ]
  3. Convert Percentage to Decimal Multiplier:
    Multiplier = 1 + (0.8 / 100) = 1 + 0.008 = 1.008
  4. Calculate VNL:
    VNL = 4.95 V × 1.008 = 4.9896 V

Verdict: When the MCU sleeps, the rail will rise to ~4.99V. This is well within the 5.5V absolute maximum rating of most 5V-tolerant logic, so the design is safe.

Assumptions, Edge Cases, and Unit Mistakes That Break the Math

The load regulation formula is elegantly simple, but it relies on strict boundary conditions. If you violate these assumptions, your calculated numbers will not match what you see on the oscilloscope.

When the Formula Applies (and When It Doesn't)

  • Steady-State DC Only: This formula assumes thermal equilibrium and steady DC loads. It does not account for transient response. If your load switches from 0A to 5A in 2 microseconds, the voltage will undershoot far beyond what the load regulation percentage predicts before the control loop recovers.
  • Constant Line Voltage: Load regulation assumes the input (AC mains or DC source) remains perfectly stable. If your AC mains sags by 5% while you are measuring the DC output, you are measuring a combination of load regulation and line regulation. Use a bench variac or UPS to stabilize the input during testing.
  • Thermal Drift is Excluded: As linear regulators heat up under load, their internal bandgap references drift. Datasheets usually specify load regulation at a fixed 25°C junction temperature. On a hot bench, your real-world VFL will be lower due to thermal effects.

Unit Mistakes That Ruin the Calculation

⚠️ Common Bench Errors to Avoid:
  • The mV vs V Trap: Datasheets often specify voltage deviation in millivolts (e.g., 'Load Regulation: 50 mV typical'). If you plug '50' directly into the percentage formula without converting to 0.050 V, your result will be off by a factor of 1000.
  • Peak-to-Peak Ripple Confusion: Load regulation applies to the DC average voltage. If you measure VFL with an oscilloscope on AC-coupling and use the peak-to-peak ripple voltage (e.g., 30mV p-p) instead of the DC offset, the formula breaks. Always use a multimeter in DC mode, or measure the DC mean on your scope.
  • Denominator Swaps: While the modern standard uses VFL in the denominator, some legacy military specs and older textbooks use VNOM (Nominal Voltage). If your calculated answer doesn't match the datasheet, check which denominator the manufacturer used. The difference is negligible for <1% regulation, but highly visible for unregulated 20% supplies.

By strictly tracking your units, understanding the topology limits outlined in Table 2, and respecting the steady-state assumption, the load regulation formula becomes a highly reliable tool for predicting power integrity in your embedded and high-current designs.