Electronics Design AU
Components

How Do You Protect a Circuit from Reverse Polarity?

Last updated 6 July 2026 · 7 min read

Direct Answer

Reverse polarity protection stops a backwards-connected supply or battery from destroying a circuit, and the standard options form a ladder of voltage drop versus cost. A series diode is the simplest but drops around 0.6–0.7 V continuously; a Schottky diode reduces that to roughly 0.3–0.45 V; a P-channel MOSFET in the high side (source toward the load, gate to ground) drops only millivolts — its body diode conducts at power-up, then the gate is pulled on for correct polarity and stays off when reversed — making it the default for battery-powered products; and an ideal diode controller IC driving an N-channel MOSFET gives the lowest dissipation at high current, adds fast reverse-current turn-off, and is standard in automotive and redundant-supply designs. Below all of these sits the brute-force option: a fuse with a reverse shunt diode that deliberately blows the fuse on reversal. Choose by continuous current (dissipation), supply voltage (gate-source clamping needs), and how the reversal can actually happen.

Detailed Explanation

Somebody will eventually connect your circuit's supply backwards. A user inserts batteries the wrong way, a field technician swaps two wires on a screw terminal, a bench supply's leads get crossed, a vehicle battery is jump-started in reverse. Without protection, the first reversal forward-biases every substrate junction and electrolytic capacitor in the design simultaneously — a fault that routinely destroys the board. Reverse polarity protection is the small block of circuitry at the power input that makes that event survivable, and choosing between its standard implementations is a classic dissipation-versus-cost trade.

Option 1: Series Diode

A rectifier diode in series with the positive input conducts normal current and blocks reversal completely. It's one component and essentially foolproof — the cost is the forward drop, roughly 0.6–0.7 V for a silicon diode, paid continuously in both dissipation (V_F × I) and lost supply headroom. See how diodes work for the underlying behaviour. Right choice for: low-current loads, generous voltage headroom, minimum-cost designs.

Option 2: Schottky Diode

The same topology with a Schottky diode roughly halves the drop (typically 0.3–0.45 V at rated current). Two Schottky-specific caveats: reverse leakage current is far higher than a standard diode and rises steeply with temperature — relevant for battery products where leakage is battery drain — and low-V_F parts tend to have lower reverse voltage ratings, which need checking against the worst-case reversed input.

Option 3: P-Channel MOSFET (the Battery-Product Default)

A P-FET in the high side — source toward the load, body diode oriented to conduct toward the load, gate pulled toward ground — behaves as a near-ideal diode. At power-up the body diode conducts; the output rail rises; V_GS goes strongly negative and the channel turns on, shorting out the body diode. The continuous drop becomes I × R_DS(on): with a modern low-R_DS(on) P-FET this is millivolts, and dissipation at a few amps drops from watts (diode) to milliwatts. Reversed, both the channel and body diode block.

The design details that separate a working circuit from a field failure:

  • Gate-source voltage clamp. MOSFET V_GS absolute maximum ratings are commonly ±20 V (check the specific part — see MOSFET selection basics). Any supply above that — 24 V industrial inputs, multi-cell battery stacks, automotive — needs a zener from gate to source and a series gate resistor.
  • R_DS(on) at the actual gate drive. A single lithium cell at end-of-discharge may only generate ~3 V of V_GS — verify the MOSFET is specified (not just "logic level") at that drive.
  • It does not stop reverse current out of the circuit. Once the channel is on, current can flow either way — fine for simple reverse-battery protection, insufficient for supply ORing or holding up an output while the input collapses. That's the ideal diode controller's job.

Option 4: Ideal Diode Controller + N-Channel MOSFET

An ideal diode controller (Analog Devices LTC4359, TI LM74610-class parts, and many others) drives an N-channel MOSFET in the high side using an internal charge pump, actively regulating the FET's forward drop and slamming it off within microseconds when current tries to reverse. Compared to a bare P-FET this buys: N-FET economics (lower R_DS(on) per dollar, better selection at high current), controlled reverse-current turn-off (essential for diode-ORing two supplies and for automotive input transients), and datasheet-supported behaviour across faults. This is the standard answer for high-current inputs, redundant supplies, and vehicle electronics — and it's the same ideal-diode building block that appears inside power path management and alongside hot-swap controllers in shared-bus systems.

Option 5: Shunt Diode + Fuse (Crowbar)

A reverse-oriented diode across the input, behind a fuse: normal operation is unaffected (zero series drop), and a reversal forward-biases the diode, which blows the fuse. Brutally simple and dissipation-free — but it sacrifices a fuse per event, requires the diode to survive until the fuse clears (check the fuse's actual clearing behaviour at the available fault current, not just its rating), and turns a momentary miswire into a service action. Sensible where series drop is absolutely unaffordable and reversal is a rare, catastrophic-only event.

Choosing Between Them

ApproachTypical dropContinuous dissipation at 2 ABlocks reverse outflowRelative costTypical use
Silicon diode~0.6–0.7 V~1.2–1.4 WYesLowestLow current, cost-critical
Schottky diode~0.3–0.45 V~0.6–0.9 WMostly (leakage)LowModerate current, some headroom
P-channel MOSFETI × R_DS(on) (mV)MilliwattsNo (channel is bidirectional once on)ModerateBattery products, most embedded designs
Ideal diode controller + N-FETRegulated ~20–30 mV classVery lowYes, activelyHigherHigh current, ORing, automotive
Fuse + shunt diode~0 VNonen/a (sacrificial)LowestReversal rare and acceptable to be destructive

Design Considerations

  • Start from how the reversal actually happens. User-replaceable AA cells reverse one cell at a time (partial reversal, lower voltage); a miswired 24 V field terminal is a full sustained reversal; an automotive jump-start reversal comes with the ISO 7637 transient environment attached. The realistic fault defines the required withstand voltage and duration.
  • Do the dissipation arithmetic before picking the topology. V_F × I for diodes, I² × R_DS(on) for FETs, at maximum continuous current and maximum ambient — then check the result against the package using the standard junction-temperature calculation. The moment a diode solution needs a heatsink, the P-FET usually wins on total cost.
  • Protect the protection. The gate zener needs its series resistor sized; the MOSFET needs its V_GS rating respected across the whole input range including transients; and input TVS/ESD protection should sit on the supply side so the protection FET isn't the sacrificial element.
  • Mind the interaction with inrush. A P-FET that snaps on quickly delivers the full input step into discharged bulk capacitance. Designs that also need inrush control either slow the protection FET's gate deliberately or combine both functions in a hot-swap/load-switch stage.
  • Don't let protection defeat charging. In products where current legitimately flows back into the input (a charger port, regenerative loads), simple series protection blocks the return path — this is where dedicated power-path and ideal-diode topologies replace a bare series element.

Power-input robustness — reverse polarity, transients, ESD, and inrush together — is a small design block with outsized field-failure consequences; Zeus Design's electronics engineers design and validate power inputs for products that survive real-world handling.

Common Mistakes

  • Orienting the MOSFET so the body diode defeats the protection. Installed backwards, the body diode simply conducts the reversed supply into the circuit. The body diode must point in the normal current direction (conducting at power-up, shorted by the channel afterwards) — this single orientation error is the most common failure in review.
  • Omitting the gate-source zener above ±20 V inputs. The circuit works perfectly on the 12 V bench supply, then the 24 V variant (or a 2S–6S battery stack, or an automotive input) quietly exceeds the V_GS absolute maximum and the FET fails — sometimes shorted, removing all protection.
  • Choosing a Schottky for a battery product without checking leakage at temperature. Reverse leakage that's negligible at 25 °C can rise by orders of magnitude at elevated temperature, becoming a real standby drain.
  • Assuming the fuse-plus-diode crowbar clears cleanly. If the source can't deliver enough fault current to blow the fuse quickly, the shunt diode cooks instead. Verify clearing time at the actual available fault current, including wiring resistance.
  • Testing only the polite reversal. A quick lead-swap on a current-limited bench supply proves little. Test sustained reversal at full source capability, reversal with the output capacitance charged, and (for automotive) the relevant transient pulses — the failures live in those corners.

Frequently Asked Questions

Why not just use a series diode?
A series diode is perfectly valid where its drop is affordable — low-current circuits, generous supply headroom, cost-critical BOMs. The problem is the arithmetic at higher currents: a standard silicon diode dropping around 0.7 V at 2 A dissipates roughly 1.4 W continuously, which needs board area to dissipate and steals 0.7 V of headroom the regulator may not have. In a battery product the drop is worse than heat — it's capacity: 0.7 V off a 3.7 V lithium cell's usable voltage window discards a meaningful fraction of the battery's energy. That arithmetic, not any flaw in the diode itself, is what pushes designs to Schottky, then P-FET, then ideal diode solutions as current rises.
How does the P-channel MOSFET circuit actually block reverse current?
The P-FET sits in the positive rail with its body diode oriented to conduct toward the load, and its gate tied toward ground (through a resistor, with a zener clamping the gate-source voltage where the supply exceeds the MOSFET's VGS rating). With the supply connected correctly, current initially flows through the body diode, the load side rises, the gate-source voltage becomes strongly negative, and the channel turns fully on — reducing the drop from a diode's ~0.7 V to I × RDS(on), typically millivolts. With the supply reversed, the gate-source voltage polarity holds the channel off and the body diode is also reverse-biased, so the path is blocked. The subtlety to check is the body diode's brief conduction and the MOSFET's VGS absolute maximum — commonly ±20 V — which a 24 V supply or a 2S-and-above battery stack will exceed without a gate zener.
When do I need an ideal diode controller IC instead of a bare P-FET?
Three situations. High current: at tens of amps, P-FETs with low RDS(on) get expensive and inefficient relative to N-FETs, and an ideal diode controller provides the charge pump needed to drive an N-FET in the high side. Fast reverse-current response: a bare P-FET turns off relatively slowly when the input collapses or reverses while the output is held up (by capacitance or a second supply), allowing a reverse current pulse — controllers like the LTC4359 actively monitor the forward drop and turn the FET off in microseconds, which matters for ORing two supplies and for automotive transients. And compliance contexts: automotive reverse-battery and supply-transient requirements (ISO 7637 family) are much easier to meet with a controller specified for that environment than with a hand-designed discrete circuit.
Isn't a keyed connector enough protection on its own?
A keyed, polarised connector is genuinely the first line of defence and removes the most common reversal path — but it protects only against the misconnection it was designed to prevent. Field repairs with the wrong mating connector, bench testing with clip leads, user-replaceable batteries inserted backwards, and miswired field terminals (screw terminals have no keying at all) all bypass connector keying. The practical standard for anything leaving the lab is keying plus electrical protection sized for the realistic fault: a product with a captive, keyed cable can justify minimal protection, while anything with screw terminals or user-accessible batteries should survive a sustained reversal.

References

Related Questions

Related Forum Discussions