Kirchhoff loop law (Kirchhoff's Voltage Law or KVL) states that the sum of all voltage drops and rises around any closed loop in a circuit must equal exactly zero. It is the fundamental accounting rule of electrical potential: energy supplied by the source is perfectly consumed by the loads and wiring before returning to the source.

The Core Rule: What Kirchhoff Loop Law Actually Changes

Understanding Kirchhoff loop law changes how you view voltage in a real installation. It forces you to stop treating voltage as an absolute property sitting at a single node, and instead treat it as a distributed difference that must be accounted for across every inch of the return path. When you close a switch, the source pushes a specific potential, and every component, trace, and wire in that loop claims a slice of it until nothing is left.

The KVL Equation:
ΣV = 0 or Vsource = V1 + V2 + ... + Vn
The algebraic sum of all potential differences around a closed loop is zero.

Think of it like a delivery truck leaving a depot with exactly 12 packages (12V). It drops some packages at a warehouse (a motor), some at a retail store (an LED), and a few fall out due to potholes (wire resistance). By the time the truck returns to the depot, it must have exactly zero packages left. If your math says the truck returned with 2 packages, your circuit model is wrong.

This principle is thoroughly documented in foundational circuit theory, such as the All About Circuits KVL chapter, which emphasizes that polarity matters just as much as magnitude when summing the loop.

Worked Numeric Example: Sizing a Current-Limiting Resistor

Let’s apply KVL to a common bench task: powering a standard 5mm red LED from a 12V DC bench supply without burning it out. We need to find the exact series resistor value.

  1. Identify the knowns: The power supply provides 12.0V. The red LED has a forward voltage drop (Vf) of 2.0V. Our target current (I) is 20mA (0.02A).
  2. Define the loop: The loop consists of the power supply, the resistor, and the LED. According to KVL, the supply voltage must equal the sum of the voltage drops across the resistor and the LED.
  3. Calculate the resistor’s voltage drop: Vsupply - Vresistor - VLED = 0. Therefore, 12V - VR - 2.0V = 0. The resistor must drop exactly 10.0V.
  4. Calculate resistance: Using Ohm’s law on just the resistor segment, R = VR / I. So, R = 10V / 0.02A = 500Ω.
  5. Select a real-world part: 500Ω is not a standard E24 value. We round up to the nearest standard value: 510Ω.

The overlooked step (Power Rating): KVL tells us the voltage drop, but we must also check thermal limits. The power dissipated by the resistor is P = I² × R, which equals (0.02)² × 510 = 0.204W. A standard 1/4W (0.25W) resistor will run dangerously hot and drift in value. You must step up to a 1/2W (0.5W) resistor for reliable bench operation.

Where You Meet This in Practice

You use Kirchhoff loop law every time you calculate voltage drop for long wire runs, design a series battery pack, or troubleshoot a ground loop. For instance, when building a 4S LiFePO4 battery pack, KVL dictates that the total nominal pack voltage is the sum of the individual cells (4 × 3.2V = 12.8V). If your BMS reads 13.2V but your multimeter at the end of a 20-foot AWG 10 cable reads 12.9V under load, KVL explains the missing 0.3V as the drop across the wire’s inherent resistance.

What People Commonly Confuse It With

The most frequent mix-up is confusing KVL with Kirchhoff’s Current Law (KCL). KCL (nodal analysis) states that the sum of currents entering and leaving a single node is zero. KVL is strictly about voltage around a closed loop. KCL tracks the flow; KVL tracks the pressure.

Another common misconception is the idea that voltage is ‘consumed’ or destroyed by a load. Voltage is a potential difference. KVL doesn’t mean the energy vanishes into nothingness; it means the electrical potential energy has been fully converted into other forms (heat, light, mechanical work) by the time the electrons complete the circuit back to the source’s negative terminal.

Real-World Scenario Walkthrough: The 12V LED Strip Brownout

Theory is clean; the workbench is messy. Here is a scenario where ignoring KVL leads to a frustrating failure.

The Setup: A maker is installing a 5-meter roll of WS2815 12V addressable LED strip under a workbench. The strip draws roughly 1A per meter at full white brightness, totaling a 5A load. They power it with a high-quality 12V 10A bench supply. To connect the supply to the strip, they use a 10-foot spool of 24 AWG silicone hookup wire (10 feet for the positive, 10 feet for the negative return).

The Numbers: According to standard copper wire tables, 24 AWG wire has a resistance of about 25.67 mΩ per foot. The total wire length in the loop is 20 feet.
Total wire resistance = 20 ft × 0.02567Ω/ft = 0.513Ω.
Applying KVL to the loop under full load: Vsupply - Vwire - Vstrip = 0.
The voltage drop across the wire is V = I × R, so 5A × 0.513Ω = 2.56V.

The Outcome: The voltage actually arriving at the LED strip is 12.0V - 2.56V = 9.44V. The WS2815 strip requires a minimum of 12V for stable internal data signal regeneration. At 9.44V, the strip flickers violently, the colors shift to a muddy brown/yellow, and the ESP32 controller throws continuous data timeout errors in the serial monitor.

What Went Wrong: The maker assumed the wire had 0Ω resistance, effectively writing the wire out of their KVL equation. By treating the wire as an ideal conductor, they failed to account for the 2.56V drop.
The Fix: Upgrade the feed wire to 14 AWG (2.52 mΩ/ft). The new wire resistance for 20 feet is 0.05Ω. The voltage drop at 5A becomes just 0.25V, delivering a stable 11.75V to the strip, which is well within the WS2815’s operating tolerance.

FAQ: Common Kirchhoff Loop Law Mistakes

Q: Does Kirchhoff loop law apply to AC circuits?
A: Yes, but you cannot simply add the scalar RMS voltages together. In AC circuits with inductors and capacitors, you must use phasor math (complex numbers) to account for the phase angles. The vector sum of the complex voltages around the loop will equal zero, as detailed in Georgia State University’s HyperPhysics AC circuit references.

Q: I measured the voltages around my loop with a multimeter, but they don’t sum to zero. Is KVL broken?
A: KVL is never broken; your measurement is likely flawed. If your sum is off, you are likely experiencing one of three things: 1) You have a floating ground or a high-impedance ghost voltage inducing a false reading on an open trace. 2) Your multimeter’s internal burden voltage is altering the circuit (common with cheap meters measuring low-current, high-impedance loops). 3) You are measuring across non-linear components under dynamic load, and the circuit state changed between your first and last probe placement.

Q: How do I handle parallel branches when using KVL?
A: KVL applies to any closed loop you can trace. In a parallel circuit, you simply draw a loop that goes from the source, through one specific parallel branch, and back to the source. The voltage drop across that single branch will equal the source voltage. You then draw a new loop for the next branch.