When analyzing DC circuits, the fundamental rule is that current (I) is the single property in series combination which remains constant across all nodes. While voltage divides proportionally among components and total resistance accumulates, the exact same number of electrons per second flows through every element in the chain. Understanding this invariant is the difference between a reliable constant-current LED driver and a burnt-out breadboard.
This guide breaks down the physics of series topology, contrasts it with parallel failure modes, walks through a real-world component sizing calculation, and provides a concrete decision framework for your next PCB or wiring harness.
The Core Rule: Topology, Nodes, and Constant Current
To understand why current remains constant, we must look at the physical topology of a series circuit. Consider a simple chain powered by a 12V DC source:
- Node 0 (V+): 12V Source positive terminal.
- Component 1 (R1): Current-limiting resistor.
- Node A: Junction between R1 and LED1.
- Component 2 (LED1): First light-emitting diode.
- Node B: Junction between LED1 and LED2.
- Component 3 (LED2): Second light-emitting diode.
- Node C (GND): Return path to the 12V source negative terminal.
Because there are no alternative branches for the charge carriers to take, Kirchhoff’s Current Law (KCL) dictates that the current entering Node A must equal the current leaving Node A. Therefore, $I_{total} = I_{R1} = I_{LED1} = I_{LED2}$. The water pipe analogy applies perfectly here: if you pump 2 gallons per minute through a single pipe with three narrow constrictions (resistors), the flow rate remains exactly 2 GPM at every point in the pipe, even though the water pressure (voltage) drops after each constriction.
According to Georgia State University's HyperPhysics, this conservation of charge means that while the voltage at Node A might be 10.5V and the voltage at Node B might be 8.4V, the current measured at Node A and Node B will be identical.
Behavior Table and Extreme Failure Modes
Designing for series circuits requires anticipating what happens when a component degrades or fails. Unlike parallel circuits where a single branch failure leaves the rest operational, a series chain is highly interdependent.
| Component Change | Effect on Total Resistance | Effect on Constant Current | Effect on Downstream Voltage Nodes |
|---|---|---|---|
| R1 increases (thermal drift) | Increases | Decreases uniformly | All downstream node voltages drop |
| LED1 Vf drops (binning variance) | Decreases slightly | Increases slightly | Node B voltage rises slightly |
| Source voltage sags to 11V | No change | Decreases uniformly | All node voltages scale down |
What Breaks at the Extremes?
Series and parallel topologies fail in completely opposite ways. In a series string, the failure mode dictates the survival of the remaining components.
- The Open Circuit (Catastrophic for the chain, safe for components): If LED1 burns out and fails open, the circuit is broken. The constant current drops instantly to 0.00A. The entire 12V source potential now appears across the open gap of LED1. The remaining components are safe, but the entire string goes dark.
- The Short Circuit (Catastrophic for remaining components): If LED1 fails short (internal bond wire melts and bridges the die), its resistance drops to ~0Ω. The total circuit resistance plummets. Because the source voltage is unchanged, the "constant" current spikes dramatically. If R1 was sized to drop 5V at 20mA, it must now drop 7.1V. The current spikes to ~28mA, rapidly overheating LED2 and R1, leading to a cascading thermal failure.
Design Walkthrough: Sizing a 12V Constant-Current LED String
Let’s move from theory to the workbench. We need to design a series string for an indicator panel using real, purchasable components.
The Requirements:
- Source: 12V DC bench supply (nominal 12.0V, measured 12.2V).
- Load: 3x Cree C503B-RAS Red LEDs.
- LED Specs: Typical Forward Voltage ($V_f$) = 2.1V, Target Forward Current ($I_f$) = 20mA (0.020A).
Step 1: Calculate the Required Voltage Drop for the Resistor
The three LEDs in series will consume: $3 \times 2.1V = 6.3V$.
The remaining voltage must be absorbed by the current-limiting resistor (R1):
$V_{R1} = V_{source} - V_{LEDs} = 12.2V - 6.3V = 5.9V$.
Step 2: Calculate the Ideal Resistance
Using Ohm’s Law ($R = V / I$):
$R = 5.9V / 0.020A = 295\Omega$.
Step 3: Pick a Real Component
295Ω is not a standard value. Looking at the E12 resistor series, we round up to 300Ω to ensure we do not over-drive the LEDs. A specific, readily available part is the Yageo CFR-25JB-52-300R (a 1/4W carbon film resistor).
Step 4: Verify Actual Current and Power Dissipation
Recalculating with the real 300Ω part:
$I_{actual} = 5.9V / 300\Omega = 19.6mA$. (Perfectly safe, indistinguishable brightness difference from 20mA).
Power dissipated by R1: $P = I^2 \times R = (0.0196)^2 \times 300 = 0.115W$.
Since 0.115W is well below the 0.25W rating of the CFR-25 resistor (operating at 46% load), thermal derating is not a concern, and the resistor will run cool to the touch.
Breadboard Testing: Step-by-Step Verification
Do not trust your math until you verify it with a multimeter. Measuring current requires breaking the circuit, which introduces opportunities for blown DMM fuses if done incorrectly. Follow this exact sequence:
- De-energize and Build: Ensure the 12V supply is off. Insert the 300Ω resistor and three Cree LEDs into the breadboard in series. Note LED polarity (the longer leg is the anode, short leg is cathode).
- Continuity Check: Set your DMM to continuity mode (the diode/beep symbol). Probe from the V+ rail to the GND rail. You should see an open circuit (OL) or a very high resistance, confirming you haven't accidentally created a short with stray jumper wires.
- Voltage Verification (Non-Invasive): Power on the 12V supply. Set the DMM to DC Voltage. Place the black probe on the GND rail and the red probe on Node A (between R1 and LED1). You should read ~10.1V (12.2V minus the ~2.1V drop of the resistor). Move to Node B; you should read ~8.0V.
- Current Verification (Invasive): Power off the supply. Move your DMM's red probe to the mA/µA jack (never use the 10A jack for a 20mA circuit, as the resolution will be useless). Set the dial to DC mA. Pull the jumper wire connecting the last LED to the GND rail. Place the red probe on the LED's cathode and the black probe on the GND rail. Power on. The display should read between 19.0mA and 20.0mA.
When measuring current, your multimeter acts as a small series resistor (the shunt). This introduces a "burden voltage" drop, usually 1-2 mV per mA. If your DMM has a 1Ω shunt on the mA range, it drops 19.6mV. This is negligible in a 12V circuit, but in a 3.3V microcontroller circuit, measuring current in series can drop enough voltage to cause a brownout reset. Always factor in burden voltage for low-voltage logic.
Decision Path: When to Force Series vs. Parallel Topologies
Choosing between series and parallel isn't about which is "better"—it's about matching the topology to your power supply's capabilities and your failure-tolerance requirements. Use this decision matrix to terminate your design phase with a concrete choice.
| Design Constraint | Choose Series Topology When... | Choose Parallel Topology When... |
|---|---|---|
| Power Supply Type | You have a high-voltage, constant-current driver (e.g., 48V LED driver). | You have a low-voltage, high-current constant-voltage supply (e.g., 5V USB). |
| Component Variance | Components are tightly binned (matched $V_f$). | Components have wide manufacturing tolerances. |
| Failure Tolerance | Total string failure is acceptable (e.g., a single indicator light). | Graceful degradation is required (e.g., architectural lighting). |
| Wiring Complexity | You want to minimize return wires and I²R copper losses over long runs. | You need independent switching or PWM dimming per component. |
The Concrete Default Recommendation
If you are designing high-power LED lighting (e.g., 1W or 3W emitters like the Cree XP-G3), do not use a simple series resistor. The forward voltage of high-power LEDs drops as they heat up (negative thermal coefficient). In a series resistor circuit, this causes the current to spike, leading to thermal runaway.
The Pick: Wire your high-power LEDs in a series string and drive them with a dedicated constant-current buck converter like the Mean Well LDD-300L. This module accepts a wide input voltage (9-52VDC) and actively modulates its internal duty cycle to ensure the current in series combination which remains constant is locked exactly at 300mA, regardless of LED temperature shifts or input voltage sag. For parallel requirements, use multiple LDD modules rather than wiring LEDs in parallel, which avoids current hogging and guarantees uniform lumen output across the array.
By anchoring your design to the invariant of series current, and selecting components that respect the thermal and failure realities of the topology, you eliminate the most common points of failure in DC electronics.






