Series circuits force identical current through all components while dividing the source voltage across them. You should use a series topology when your primary design requirement is strict current matching (such as in LED illumination strings) or precise voltage division. Avoid series configurations for independent loads that require separate switching or have vastly different voltage requirements. If one component fails open in a series string, the entire circuit dies; if one fails short, the remaining components face an overcurrent surge.
The Series Topology: Nodes, Current, and Voltage Division
To analyze a series circuit, we map it by nodes. Consider a 12V DC source connected to a current-limiting resistor (R1) and two LEDs (D1, D2) wired end-to-end, returning to ground.
- Node A: Source positive terminal (12V).
- Node B: Junction between R1 and the anode of D1.
- Node C: Junction between the cathode of D1 and the anode of D2.
- Node D: Cathode of D2 to Source negative (Ground, 0V).
By Kirchhoff’s Current Law (KCL), the current leaving Node A must equal the current flowing through R1, D1, and D2. There are no alternate paths. By Kirchhoff’s Voltage Law (KVL), the sum of the voltage drops across R1, D1, and D2 must exactly equal the 12V source.
Behavior Matrix: What Changes When One Element Shifts?
Understanding how a single component's drift affects the whole string is critical for tolerance stacking and thermal design. Assume a fixed DC voltage source.
| Parameter Changed | Effect on Total Resistance | Effect on Circuit Current | Effect on Voltage Across *Other* Elements |
|---|---|---|---|
| R1 Increases (e.g., thermal drift) | Increases | Decreases | Decreases (V = I × R; since I dropped and R_other is fixed, V drops) |
| D1 Shorts (0 ohms internal) | Decreases | Increases | Increases (current spikes, pushing higher V across remaining R and D2) |
| D1 Opens (infinite resistance) | Infinite | Zero | Zero (100% of source voltage appears across the open fault at D1) |
Series vs. Parallel: The Failure-Mode Contrast
Why choose series over parallel? The deciding factor is current matching. In a parallel circuit, slight manufacturing variations in forward voltage (Vf) cause massive current imbalances. One branch will hog the current, overheat, and fail. Series circuits inherently prevent this because the exact same electrons must flow through every component.
However, the failure modes at the extremes dictate your protective design:
The Open-Circuit Extreme
If a single LED bond wire snaps in a series string, the circuit opens. Current drops to 0A. The entire string goes dark. In a parallel equivalent, only the failed branch goes dark while the others continue operating. If system uptime is critical and you cannot monitor individual nodes, parallel is safer. If you are using a constant-current driver, an open series string simply causes the driver to hit its maximum compliance voltage and shut down safely.
The Short-Circuit Extreme
If an LED fails as a dead short in a resistor-limited series circuit, the total forward voltage drop of the string decreases. The voltage difference is now pushed across the current-limiting resistor, causing circuit current to spike. The remaining LEDs are subjected to this higher current, accelerating their degradation and triggering a cascading thermal runaway. In a parallel circuit, a shorted branch draws massive current, typically blowing the main fuse and killing the whole system instantly.
Design Walkthrough: Sizing a 12V Series LED String
Let’s design a practical series string. We have a 12.0V DC bench supply and want to illuminate three standard 5mm red LEDs. We need to select the current-limiting resistor.
- Identify Load Parameters: Standard 5mm red LEDs typically have a forward voltage (Vf) of 2.0V and a target forward current (If) of 20mA (0.020A).
- Calculate Total Load Vf: 3 LEDs × 2.0V = 6.0V.
- Calculate Resistor Voltage Drop (Vr): Source Voltage - Total Vf = 12.0V - 6.0V = 6.0V.
- Calculate Resistance (Ohm's Law): R = Vr / If = 6.0V / 0.020A = 300 ohms.
- Select Standard E12 Value: 300 ohms is not a standard E12 value. We round up to the nearest standard value to ensure we do not exceed the 20mA maximum. The closest E12 value is 330 ohms.
- Verify Actual Current: I = 6.0V / 330 ohms = 18.1mA. This is safely within the LED's operating range.
- Calculate Power Dissipation: P = I² × R = (0.0181)² × 330 = 0.108 Watts.
- Select Resistor Wattage: Standard engineering practice requires derating resistors by at least 50%. 0.108W × 2 = 0.216W. A standard 1/4W (0.25W) resistor is sufficient.
Concrete Part Pick: Yageo CFR-25JB-52-330R (330 ohm, 1/4W, 5% tolerance carbon film resistor). Total BOM cost for the resistive dropper: ~$0.02.
Breadboard Testing: Step-by-Step Verification
Before soldering, verify your series math on a solderless breadboard. Do not trust the printed values on the power supply or the components; measure them.
- Verify Source Voltage: Set DMM to DC Voltage. Measure across the breadboard power rails. Confirm it reads between 11.8V and 12.2V. If it reads 13.5V, your current calculations will be wrong.
- Build the String: Insert the 330Ω resistor from the positive rail to Row 10. Insert LED1 anode in Row 10, cathode in Row 11. Jumper Row 11 to Row 12. Insert LED2 anode in Row 12, cathode in Row 13. Repeat for LED3, terminating the final cathode to the ground rail.
- Measure Node Voltages (KVL Check): Keep DMM in Voltage mode. Place the black probe on the ground rail. Probe Node B (between resistor and LED1). It should read ~6.0V (12V source minus the 6V dropped across the resistor). Probe Node C (between LED1 and LED2). It should read ~4.0V. Probe Node D (after LED3). It should read ~0.2V (accounting for breadboard contact resistance).
- Measure Circuit Current (KCL Check): Warning: Never measure current in parallel across a voltage source. Turn off the power supply. Pull the jumper wire connecting the final LED cathode to the ground rail. Set DMM to mA Current mode. Place the red probe on the LED cathode leg and the black probe on the ground rail. Power on. The DMM should read ~18.1mA.
- Thermal Check: Let the circuit run for 5 minutes. Touch the 330Ω resistor. It should be barely warm to the touch. If it is hot to the touch, you have miscalculated the wattage or your source voltage is significantly higher than 12V.
Decision Matrix: When to Commit to a Series Topology
Use this decision tree to finalize your circuit architecture. Do not default to parallel simply because it is easier to wire on a breadboard.
| Design Condition | Topology Choice | Concrete Implementation / Part Pick |
|---|---|---|
| Need identical current through 3+ LEDs for uniform brightness | Series | Series string driven by a constant-current buck driver (e.g., Texas Instruments LM3404) |
| Loads require independent switching or dimming | Parallel | Individual branches with dedicated logic-level MOSFETs (e.g., IRLZ44N) per branch |
| Source voltage is lower than the total Load Vf | Series + Boost | Boost converter module (e.g., MT3608) feeding a series string |
| Dropping voltage for a single low-current indicator LED | Series | Single series dropping resistor (e.g., 470Ω 1/4W carbon film) |
| Powering high-current loads (e.g., motors, heaters) from a limited battery | Parallel | Parallel battery cells with a heavy-gauge busbar and main ANL fuse |
Default Recommendation: If you are designing an illumination circuit with more than three diodes or drawing over 50mA, abandon simple resistor-limited series strings. Commit to a series topology driven by a dedicated constant-current IC like the Texas Instruments LM3404. This eliminates the power wasted as heat in a dropping resistor and inherently protects the string against the short-circuit cascading thermal runaway described earlier. For further reading on foundational DC circuit laws, refer to the DC Series Circuit tutorials at Electronics-Tutorials. Never default to parallel LED strings with a single shared resistor; the manufacturing variance in Vf will guarantee uneven brightness and premature failure.






