When you look at the schematic diagram of a circuit breaker, you are usually looking at one of two things: the internal mechanical topology of a thermal-magnetic breaker (the standard 15A/20A breakers in your home panel), or a solid-state electronic circuit breaker (ECB) used in low-voltage DC and embedded systems. While you cannot safely breadboard a 120V AC mechanical breaker, understanding its topology allows us to design a functionally equivalent solid-state breaker that you can build, test, and trip on your workbench.

This guide breaks down the classic thermal-magnetic topology, translates it into a buildable 12V/5A electronic equivalent, and provides the exact component values and node behaviors you need to prototype it.

The Classic Thermal-Magnetic Topology vs. Solid-State Equivalent

A standard residential breaker (like a NEC-compliant Square D QO or Eaton BR) relies on a series topology: Line Terminal → Bimetallic Strip (thermal overload) → Solenoid Coil (magnetic short-circuit) → Moving Contact → Fixed Contact → Load Terminal. It is robust, handles 10,000A interrupt currents (AIC), and requires no external power. However, it is slow, mechanically prone to contact welding, and impossible to integrate with microcontroller logic.

For DIY electronics, solar DC systems, and automotive projects, the solid-state electronic circuit breaker is the superior alternative. It replaces the bimetallic strip with a shunt resistor and comparator, and replaces the mechanical contacts with a power MOSFET. It offers microsecond trip times, precise current thresholds, and logic-level reset capabilities.

Why choose the solid-state topology for bench designs? Mechanical breakers suffer from arc flash and contact degradation over time. A solid-state topology eliminates the arc entirely by switching in the microsecond range, making it ideal for sensitive DC loads like LiFePO4 battery banks or motor controllers where arcing destroys contacts.

Below is the spec-sheet for a 12V, 5A Electronic Circuit Breaker (ECB) that we will use for our design walkthrough.

Table 1: Component Specifications for 12V/5A Solid-State Breaker
Component Role in Topology Exact Value / Part Number Critical Parameter
Shunt Resistor (R_sense) Current-to-Voltage Conversion 0.05Ω, 3W Manganese-Copper Must be Kelvin-connected or 4-wire to avoid trace resistance errors
Comparator (U1) Trip Decision Logic LM393 (Dual Differential) Open-collector output, 1.3µs propagation delay
Voltage Reference (U2) Sets Trip Threshold TL431ACZ (Adjustable Shunt Reg) 2.5V internal ref, 1% tolerance
Main Switch (Q1) Load Disconnect IRF9540N (P-Channel MOSFET) Rds(on) = 0.117Ω, Vgs(th) = -2V to -4V
Driver Transistor (Q2) Gate Logic Inversion 2N3904 (NPN BJT) hFE > 100 at 10mA collector current

Node Labels and Behavior Matrix (What Breaks When)

To understand the solid-state breaker schematic, we must map the nodes. Current flows from the power supply into Node A (V_IN), through the shunt to Node B (V_SENSE+), through the P-MOSFET (Q1) to Node C (V_OUT), and finally to the load and Node D (GND). The control loop monitors Node B against a reference voltage at Node E (V_REF), driving the MOSFET gate at Node F (V_GATE).

In circuit design, knowing how a topology fails is just as important as knowing how it works. Here is the failure-mode contrast for this specific schematic.

Table 2: Topology Behavior and Failure Modes
Element Changed / Failed Condition Resulting Circuit Behavior Hazard Level
Shunt Resistor (R_sense) Opens (trace breaks) Load loses power immediately. Comparator sees 0V. Breaker cannot be reset until shunt is replaced. Low (Fails safe/off)
Shunt Resistor (R_sense) Shorts (solder bridge) Comparator sees 0V regardless of load current. Breaker will never trip. Load is unprotected. Critical (Fire/Melt risk)
MOSFET Gate (Node F) Floats (pull-up R breaks) Gate voltage drifts. MOSFET enters linear region, dissipating massive heat and destroying the silicon. High (Component destruction)
Comparator Output Shorts to GND Q2 base is starved of current. Q2 turns off. Q1 gate pulled high. Breaker permanently latched OFF. Low (Fails safe/off)
Load (Node C to D) Dead Short Current spikes to supply limit. V_sense exceeds V_ref in microseconds. LM393 pulls low, Q1 shuts off. Moderate (Tests MOSFET SOA)

Design Walkthrough: Picking Real Component Values

Let’s calculate the exact values needed to make this schematic trip at precisely 5.0 Amps. We are not guessing values; we are deriving them from the physical limits of the components.

1. Sizing the Shunt and Setting the Trip Voltage

We want a 5A trip point. Using a standard 0.05Ω shunt resistor, the voltage drop at 5A is calculated via Ohm’s Law:

V_sense = I × R = 5.0A × 0.05Ω = 0.250V (250mV)

At 5A, the shunt dissipates P = I² × R = 25 × 0.05 = 1.25W. Therefore, a 2W or 3W rated resistor is mandatory to prevent thermal drift. Do not use a standard carbon-film resistor; use a manganese-copper or nichrome wire-wound shunt to maintain a stable resistance across temperature changes.

2. Setting the Reference Voltage (V_REF)

The LM393 needs a stable 250mV reference on its inverting input (-). We use a TL431 shunt regulator to create a rock-solid 2.5V rail, then divide it down.

Using a voltage divider with R1 = 22kΩ and R2 = 2.2kΩ:

V_ref = 2.5V × (2200 / (22000 + 2200)) = 2.5V × 0.0909 = 0.227V

To hit exactly 250mV, swap R2 for a 2.4kΩ resistor, or use a 5kΩ multi-turn trimpot for R2 to dial in exactly 250mV on your bench multimeter before sealing the circuit.

3. The Logic Inversion and Gate Drive

The P-Channel MOSFET (IRF9540N) requires its gate to be pulled near V_IN (12V) to turn OFF, and pulled toward GND to turn ON. Because the LM393 has an open-collector output (it can only sink current to GND, not source current), we use an NPN transistor (2N3904) as an inverter.

  • Normal Operation (I < 5A): V_sense (e.g., 100mV) is less than V_ref (250mV). The LM393 output is High-Z. A 10kΩ pull-up resistor feeds base current to the 2N3904. The NPN turns ON, pulling the MOSFET gate to GND. The MOSFET turns ON. Power flows.
  • Fault Condition (I > 5A): V_sense exceeds 250mV. The LM393 output transistor saturates, sinking the NPN base current to GND. The NPN turns OFF. The 10kΩ gate pull-up resistor pulls the MOSFET gate to 12V. The MOSFET turns OFF. Power stops.
Hysteresis is Mandatory: Without hysteresis, the breaker will rapidly chatter (oscillate) at exactly 5.0A, destroying the MOSFET via switching losses. Add a 1MΩ feedback resistor from the LM393 output back to the non-inverting (+) input. This introduces a ~10mV deadband, ensuring a clean, single trip event.

Step-by-Step Breadboard Testing Procedure

You cannot test a 120V AC mechanical breaker on a breadboard, but this 12V solid-state topology is perfectly safe for bench prototyping. Follow this exact sequence to verify your schematic.

  1. De-energize and Wire the Power Path: Ensure your bench power supply is OFF and set to 12.0V with a current limit of 6.0A. Wire V_IN to the shunt, the shunt to the MOSFET source, and the MOSFET drain to your load terminal.
  2. Wire the Control Loop: Connect the TL431 reference divider and the LM393. Do not connect the LM393 output to the NPN base yet.
  3. Verify the Reference: Turn on the bench supply. Use your multimeter to probe Node E (V_REF). Adjust the trimpot until you read exactly 0.250V DC. Turn the supply OFF.
  4. Complete the Gate Drive: Connect the LM393 output to the NPN base via a 1kΩ resistor. Connect the 10kΩ gate pull-up to V_IN.
  5. Test Normal State: Connect a 12V, 20W halogen bulb (draws ~1.6A) as the load. Turn on the supply. The bulb should illuminate instantly. Measure the voltage across the shunt; it should read approximately 80mV.
  6. Test the Trip Point: Swap the halogen bulb for a 12V, 100W halogen bulb or a power resistor that will attempt to draw >5A. Turn on the supply. The load should energize for roughly 2 microseconds before the LM393 trips the gate. To the human eye, the bulb will flash briefly and turn off, or a digital load will show a brief current spike dropping to 0A.
  7. Verify Reset: Remove the heavy load and reconnect the 20W bulb. The breaker should automatically reset and power the load, as the LM393 is configured for auto-recovery. (Add a push-button latch if manual reset is desired).

Extremes and Edge Cases: What Breaks at the Limits

A schematic diagram of a circuit breaker is only as good as its performance at the extremes. Here is where this specific topology faces physical limits.

The Dead Short (Safe Operating Area)

If Node C (V_OUT) is shorted directly to GND, the current attempts to rise to infinity. The LM393 has a propagation delay of roughly 1.3µs, and the MOSFET takes another 50ns to turn off. During that ~1.4µs window, the MOSFET must absorb the entire short-circuit energy. The IRF9540N has a pulsed drain current rating of -69A. As long as your bench supply current-limits below 60A, the MOSFET will survive the short. If you are connecting this to a massive LiFePO4 battery bank capable of 500A fault currents, you must add a fast-acting mechanical fuse in series with the shunt to protect the silicon.

Capacitive Inrush Nuisance Tripping

If your load is a large motor controller with 10,000µF of input capacitance, plugging it in will look exactly like a dead short to the shunt resistor. The breaker will trip instantly before the capacitors charge. To fix this, add a 100µF capacitor in parallel with the 2.2kΩ resistor in the V_REF voltage divider. This creates a soft-start ramp on the reference voltage, allowing the breaker to tolerate a 20A inrush spike for 50 milliseconds before clamping down to the 5A continuous limit.