If you are building a 48V DC solar battery bank with modern LiFePO4 server-rack cells, a standard thermal-magnetic AC breaker won't protect your wiring from high-current DC faults. DC arcs don't self-extinguish at zero-crossings, and mechanical breakers often trip too slowly to save a BMS or prevent a wire fire. The solution is a solid-state electronic DC breaker. Understanding the circuit breaker diagram for an electronic topology gives you the ability to build custom overcurrent protection with adjustable trip points and microsecond response times.
An electronic circuit breaker uses a low-resistance shunt to measure current, a comparator to evaluate that current against a reference threshold, and a power MOSFET to physically disconnect the load. Below, we break down the exact topology, component values, and failure modes so you can design and prototype your own protection circuit.
The Core Topology: Node Map and Component Specifications
The fundamental topology of a low-side electronic DC breaker consists of four stages: current sensing, reference generation, threshold comparison, and gate driving. To read or draw this circuit breaker diagram, you need to track five critical nodes.
- Node A (V_BATT): The main positive battery bus (42V–58V range).
- Node B (V_SENSE): The differential voltage across the current shunt (0mV–250mV).
- Node C (V_REF): The user-adjustable trip threshold voltage (set to 250mV for a 50A trip).
- Node D (V_GATE): The comparator output driving the MOSFET gate (0V or 12V).
- Node E (LOAD_GND): The switched ground return path to the load.
Here is the exact spec sheet for a 50A, 48V nominal system. These are real, bench-tested values.
| Component | Part / Value | Node Connection | Engineering Purpose |
|---|---|---|---|
| Current Shunt | 5mΩ, 50W Chassis Mount | LOAD_GND to BAT_GND | Drops 250mV at 50A (P = I²R = 12.5W dissipation). |
| Sense Amplifier | INA180A1 (Gain = 20) | Across Shunt to V_SENSE | Amplifies 250mV shunt drop to 5.0V for easier processing. |
| Voltage Reference | LM4040 5.0V + 10kΩ Pot | VCC to V_REF | Provides a stable 5.0V trip threshold (adjustable via pot). |
| Comparator | LM393 (Dual Differential) | V_SENSE vs V_REF to V_GATE | Pulls V_GATE low when V_SENSE exceeds V_REF. |
| Power Switch | IRF3205 N-Channel MOSFET | V_GATE to Gate, Drain to Load | Handles 110A continuous; Rds(on) is 8mΩ (20W at 50A). |
| Gate Pull-up | 10kΩ Resistor to 12V | V_GATE to 12V Logic Rail | Keeps MOSFET ON by default; LM393 sinks it to turn OFF. |
Electronic vs. Thermal-Magnetic: Why Choose Solid-State?
Why use this complex solid-state topology over a simple $15 thermal-magnetic breaker? The answer lies in the physics of DC arcing and the precise discharge limits of lithium chemistry. According to NFPA 70 (NEC) Article 690, solar and storage systems require overcurrent devices rated specifically for the DC voltage and current. Standard AC breakers used off-label on DC banks often fail to clear faults, leading to melted busbars.
| Criteria | Electronic (Solid-State) | Thermal-Magnetic (Mechanical) |
|---|---|---|
| Trip Speed | Microseconds (µs) | Milliseconds to Seconds (ms-s) |
| Adjustability | Fully adjustable via V_REF potentiometer | Fixed by factory bimetal/magnet calibration |
| Arc Extinction | No physical arc (semiconductor junction) | Relies on mechanical gap and arc chutes |
| Cost & Complexity | High ($30-$60 in parts, requires logic power) | Low ($10-$20, passive installation) |
Choose the electronic topology when you need to protect sensitive BMS communication lines, prevent voltage sag from tripping inverters, or integrate automated reset logic via a microcontroller. Choose thermal-magnetic for simple, code-compliant branch feeder protection where a 2-second trip delay is acceptable.
Failure Mode Analysis: What Breaks at the Extremes?
A circuit breaker diagram is only as good as its failure margins. In solid-state design, component failure doesn't just mean the breaker stops working; it can mean the breaker fails closed, leaving your battery unprotected. Here is the behavior matrix when individual elements fail.
| Element Changed | Failure Mode | System Result |
|---|---|---|
| Current Shunt | Shorted (solder bridge across terminals) | V_SENSE drops to 0V. Breaker fails closed. Catastrophic risk. |
| Gate Pull-up Resistor | Open circuit | V_GATE floats. MOSFET enters linear region, overheats, and melts. |
| LM393 Comparator | Output transistor shorted to GND | V_GATE held at 0V. Breaker fails open. Load loses power permanently. |
| Power MOSFET | Drain-Source Short (thermal runaway) | Breaker fails closed. Backup physical fuse MUST clear the fault. |
Notice the critical flaw in N-channel low-side switching: if the MOSFET shorts internally, the load remains grounded. This is why high-reliability systems use parallel redundant MOSFETs or a high-side P-channel topology, despite the increased complexity and voltage drop. For a DIY maker bench, the low-side N-channel is acceptable only when backed by a Class T fuse.
Design Walkthrough: Breadboarding the Trip Logic
Before bolting 50A shunts to your battery bus, you must validate the logic. We will breadboard the sense and trip circuit using a 12V bench supply to simulate the logic rail and a secondary variable supply to simulate the shunt voltage. For deeper theory on current sense amplifiers, refer to this guide on current sense amplifier design.
- Establish the Logic Rail: Connect a 12V DC bench supply to your breadboard's positive and ground rails. This powers the LM393 and acts as the gate pull-up voltage.
- Set the Trip Threshold (V_REF): Wire the 10kΩ potentiometer across the 12V rail and GND. Connect the wiper to the inverting input (Pin 2) of the LM393. Use your multimeter to adjust the wiper until it reads exactly 5.00V. This represents our 50A trip point.
- Wire the Sense Amplifier: Place the INA180A1 on the board. Connect its VCC to 12V and GND to ground. The output (Pin 6) goes to the non-inverting input (Pin 3) of the LM393. This is your V_SENSE node.
- Simulate the Shunt Voltage: Connect a secondary variable power supply (set to 0V initially) to the INA180 inputs (IN+ and IN-). This simulates the voltage drop across the physical 5mΩ shunt.
- Wire the Gate Driver: Connect the LM393 output (Pin 1) to your gate indicator LED (with a 330Ω current-limiting resistor) or directly to the gate of a small signal MOSFET (like a 2N7000) driving a 12V test bulb. Remember the LM393 is open-collector; wire a 10kΩ pull-up resistor from Pin 1 to the 12V rail.
- Execute the Trip Test: Slowly increase the secondary variable supply. Because the INA180A1 has a gain of 20, you need to inject 250mV to simulate 50A. As you cross 248mV, the LM393 output will snap low, pulling the gate to GND and turning off the test bulb instantly.
- Verify Hysteresis (Optional): If the breaker chatters (rapidly turns on and off) at the exact threshold, add a 1MΩ feedback resistor from the LM393 output back to the non-inverting input to introduce 50mV of hysteresis, requiring a manual reset or a drop in current to re-arm.
Once the breadboard logic trips reliably at 250mV input, you can transition the design to a soldered perfboard, connect the INA180 inputs to your chassis-mounted 5mΩ shunt via twisted-pair shielded wire, and wire the LM393 output to the gate of your bolted-down IRF3205 MOSFET. This gives you a custom, microsecond-response electronic breaker perfectly tuned to your specific battery bank's limits.






