DC Circuit Simulator Back
Electronics

DC Circuit Simulator

Set supply voltage and resistor values to analyze series/parallel circuits

Circuit Parameters

Results
Total resistance $R_T$
Source current $I_{total}$
Total power $P_{total}$
Highest-power resistor
Circuit diagram
Per-resistor bar chart

Current per resistor (A)

Series vs. parallel — get the intuition right

🙋
I keep mixing up series and parallel. If I hook two resistors to a battery, what really changes between the two layouts?
🎓
Roughly: in series the current has a single path, in parallel it has multiple paths. Try the simulator with R1=R2=R3=10 Ω. Series gives 30 Ω total; parallel gives about 3.3 Ω. Adding parallel paths lowers the total resistance because charge has more routes to take.
🙋
When I switch to parallel the total resistance drops sharply, but the supply voltage is the same. Does that mean the battery drains faster?
🎓
Exactly. Lower total resistance means more current flows from the source for the same voltage. House outlets are wired in parallel, so plugging in more appliances pulls more total current from the supply. That's why circuit breakers trip — the combined current exceeds the rated limit.
🙋
If I look at the bar chart in voltage mode, the series circuit splits the voltage across each resistor, but parallel keeps it equal. Why does the series case split?
🎓
Kirchhoff's voltage law: around any closed loop, the sum of voltage drops equals the source voltage. In series the same current flows everywhere, so V = IR means a larger resistor takes a larger drop. That's the basis of voltage dividers — pick a resistor ratio to tap a desired voltage.
🙋
In power mode, series puts more dissipation on the bigger resistor, but parallel does the opposite. Is that because $P = V^2/R$?
🎓
Right. In series the current is shared, so $P = I^2 R$ favors the larger R. In parallel the voltage is shared, so $P = V^2/R$ favors the smaller R. Practical example: stack heaters in series and the highest-resistance one runs hottest; wire them in parallel and the lowest-resistance one runs hottest.

Core circuit laws

Ohm's law:

$$V = IR \quad \Longleftrightarrow \quad I = \frac{V}{R} \quad \Longleftrightarrow \quad R = \frac{V}{I}$$

Series total: $R_T = R_1 + R_2 + R_3 + \cdots$ (current is identical through every resistor).

Parallel total: $\dfrac{1}{R_T} = \dfrac{1}{R_1} + \dfrac{1}{R_2} + \dfrac{1}{R_3} + \cdots$ (voltage is identical across every resistor).

Kirchhoff's laws (KCL / KVL):

$$\text{KCL: } \sum_{k} I_k = 0 \quad (\text{net current into a node} = 0)$$ $$\text{KVL: } \sum_{k} V_k = 0 \quad (\text{sum of drops around a closed loop} = 0)$$

Power dissipation: $P = VI = I^2 R = V^2/R$.

Practical applications

Household wiring: wall outlets are wired in parallel so the line voltage stays constant as more devices are plugged in. The breaker rating (e.g. 20 A) limits the total current pulled by the parallel combination.

Voltage dividers (sensor interfacing): microcontrollers and signal-conditioning circuits use a series resistor pair to scale an analog voltage. A thermistor (resistance varies with temperature) in series with a fixed resistor lets the divider voltage encode temperature.

LED current limiting: LED brightness depends on current, so a series ballast resistor protects the LED from over-current. For 5 V supply, a 2 V forward drop and 20 mA target, $R = (5-2)/0.02 = 150\,\Omega$.

Common misconceptions

"In series the current is the same everywhere" is correct, but it leads people to wrongly assume the larger resistor in a parallel branch carries the most current. In parallel, every branch sees the same voltage, so the smaller resistance draws the larger current and the overall total resistance is lower than any individual branch. Likewise, "constant supply voltage means constant total power" is wrong — changing any resistor changes the total resistance and therefore $P = V^2/R_T$. In mixed networks, identify which sub-blocks are series and which are parallel before reducing — careless grouping is the most common source of arithmetic errors.

Real-world use cases

Industry: automotive harness designers analyze parallel LED-lamp branches to balance current, optimize ballast resistors and minimize power loss. Appliance makers use series ballast resistors in motor-drive circuits to limit inrush current and improve efficiency.

Education & research: entry-level electrical-engineering labs use Ohm's and Kirchhoff's laws to teach circuit analysis. Students vary resistor values, watch the totals update, and compare the simulator output against hand calculations.

CAE workflow: this simulator is a sketch-level tool that comes before SPICE-class transient or thermal analysis. Use it to validate the basic current/voltage balance, then move to a detailed solver once the topology is settled.

Theory & key formulas

Series: $R_{total} = R_1+R_2+R_3$.

Parallel: $\dfrac{1}{R_{total}} = \dfrac{1}{R_1}+\dfrac{1}{R_2}+\dfrac{1}{R_3}$.

Power: $P = V I = V^2/R$.

FAQ

In series, the same current flows through every component and the source voltage divides between them. In parallel, every component sees the same voltage and the source current divides between the branches.
Each parallel branch is an additional path for current. Adding paths increases the overall conductance (lowers the resistance), so the total resistance is always less than the smallest branch resistance.
Use any of the equivalent forms $P = VI = I^2 R = V^2/R$. For the whole circuit, use the supply voltage and the total resistance: $P_{total} = V^2/R_T$.
Both. Lighting and household outlets are wired in parallel so individual loads are independent. Voltage dividers, current-limiting ballast resistors and many sensor circuits rely on series connections.