When makers and engineers search for a MOSFET diode, they are usually colliding with two distinct concepts. The first is the intrinsic body diode, a parasitic PN junction built into the physical structure of every power MOSFET. The second is the "ideal diode" circuit, a configuration where a MOSFET is actively biased to emulate a diode, but with a near-zero voltage drop instead of the standard 0.7V loss of a silicon rectifier.

Understanding the difference is the dividing line between a robust power design and a melted PCB trace. Below, we break down the physical symbol, safe default part numbers, a complete ideal-rectifier application circuit, and a real-world bench failure that proves why you cannot blindly trust the body diode.

The Intrinsic Body Diode: Symbol, Pinout, and Operation Regions

Look at any standard N-channel MOSFET schematic symbol. You will see three main terminals: the Gate (G), Drain (D), and Source (S). However, bridging the Drain and Source is a fourth element: an arrow pointing from the Source to the Drain. This is the body diode.

In an N-channel device, the body diode conducts when the Source is at a higher potential than the Drain (forward-biased). In a P-channel device, the arrow flips, and it conducts when the Drain is higher than the Source. This diode is not an optional add-on; it is an unavoidable byproduct of the vertical silicon trench structure used to manufacture power MOSFETs. For a deeper dive into the semiconductor physics of this structure, refer to the Texas Instruments guide on Understanding MOSFET Data Sheets.

MOSFET Operation Regions and Body Diode States (N-Channel Example)
Region Vgs Condition Vds Condition Typical Vds / Id Example Body Diode State
Cutoff Vgs < Vgs(th) Vds > 0V Vds = 12V, Id = 0A Reverse Biased (Blocking)
Ohmic (Linear) Vgs > Vgs(th) Vds < (Vgs - Vgs(th)) Vds = 0.1V, Id = 20A Bypassed by Channel
Saturation Vgs > Vgs(th) Vds > (Vgs - Vgs(th)) Vds = 5V, Id = 30A Bypassed by Channel
Body Conduction Vgs < Vgs(th) Vds < -0.7V Vds = -0.8V, Id = -15A Forward Biased (Conducting)

Selecting and Biasing: Safe Default Part Numbers

How you bias and select a MOSFET depends entirely on whether you are trying to use the body diode or bypass it to build an ideal diode.

If you are building an ideal diode (to prevent reverse polarity or OR-ing power supplies without losing 0.7V to heat), you want a P-channel MOSFET on the high side. You bias it by pulling the Gate to Ground to turn it on when forward voltage is applied, and pulling the Gate to the Source to turn it off when reverse voltage appears. You must select a part with a low Rds(on) to minimize I²R heating, and a Gate-Source threshold voltage (Vgs(th)) that fully enhances at your logic or supply voltage.

Safe Default Part Numbers for the Bench:
  • IRFZ44N (N-Channel): 55V Vds, 49A Id, 17mΩ Rds(on). The undisputed king of low-side switching and motor control. Through-hole TO-220.
  • IRF9540N (P-Channel): -55V Vds, -23A Id, 117mΩ Rds(on). Excellent for high-side ideal diode and reverse polarity protection up to 15A.
  • Si2301 (P-Channel SMD): -20V Vds, -2.3A Id, 65mΩ Rds(on). Perfect for 3.3V/5V microcontroller battery OR-ing on tight PCBs (SOT-23 package).

Application Circuit: 12V High-Side Ideal Diode (Reverse Polarity & OR-ing)

Standard silicon diodes drop about 0.7V. At 10A, that is 7 Watts of heat requiring a bulky heatsink. By using a P-channel MOSFET as an ideal diode, the voltage drop is determined by Ohm's law across the Rds(on). Using the IRF9540N at 10A, the drop is just 1.17V (11.7W), but if we use a modern low-Rds part like the IPB320P20NM (3.2mΩ), the drop is a mere 0.032V (0.32W)—no heatsink required.

Here is a complete, copy-pasteable schematic netlist for a 12V automotive/lead-acid reverse polarity and OR-ing protection circuit using a discrete P-MOSFET.

Component List and Values

  • Q1: IRF9540N (P-Channel MOSFET, TO-220)
  • R1: 10kΩ pull-up resistor (0.25W)
  • D1: 12V Zener Diode (e.g., 1N4742A, 1W)
  • C1: 100nF ceramic capacitor (Gate-to-Source snubber)

Wiring Procedure

  1. Source to Input: Connect the positive 12V input supply (VIN) to the Source pin of Q1. (Note: In P-channel ideal diodes, the Source faces the incoming power so the body diode naturally blocks reverse voltage).
  2. Drain to Output: Connect the Drain pin of Q1 to your protected load (VOUT).
  3. Gate Pull-Up: Connect R1 (10kΩ) between the Gate and the Drain (VOUT). When VIN is applied, the body diode initially conducts, raising VOUT. This creates a negative Vgs, turning the MOSFET channel fully ON and bypassing the body diode.
  4. Zener Protection: Place D1 (12V Zener) with its cathode to the Gate and anode to the Source. This clamps the Vgs to -12V, protecting the delicate gate oxide from voltage spikes on the 12V rail (max Vgs for IRF9540N is ±20V).
  5. Snubber: Solder C1 (100nF) directly across the Gate and Source pins to filter high-frequency noise that could cause accidental gate oscillation.

Bench War Story: The Melted H-Bridge and the Body Diode Trap

It is tempting to look at the MOSFET symbol and assume the body diode is a free, built-in flyback diode for inductive loads. In low-frequency applications, it is. In high-frequency PWM, it is a trap.

The Setup: A junior engineer designed a 12V H-bridge motor driver using four IRFZ44N N-channel MOSFETs. To save board space and BOM cost, they omitted external Schottky flyback diodes, relying entirely on the intrinsic body diodes to handle the inductive kickback of the 12V DC brushed motor.

The Numbers: The motor had a stall current of 15A. The microcontroller drove the H-bridge at a 20kHz PWM frequency. The IRFZ44N is a rugged part, but its body diode has a typical reverse recovery time (trr) of 250ns and a reverse recovery charge (Qrr) of 110nC.

The Outcome: During the "dead-time" of the PWM switching (the brief microsecond gap where both high and low side MOSFETs are off to prevent shorting the rail), the low-side body diode conducted the motor's flyback current. When the high-side MOSFET was commanded to turn on 200ns later, the low-side body diode had not yet finished recovering (trr = 250ns). For 50ns, the body diode acted as a dead short. This shoot-through caused current spikes of 45A directly from the 12V rail to ground, 20,000 times per second. The TO-220 package overheated, and the drain tab solder literally melted off the PCB pad at 140°C.

What Went Wrong: The body diode is a standard PN junction, not a fast-recovery diode. Relying on it for high-frequency inductive flyback causes massive switching losses and shoot-through. The Fix: Always place external fast-recovery or Schottky diodes (e.g., MBR20100CT) in parallel with the MOSFETs in high-frequency H-bridges, or use modern MOSFETs specifically engineered with fast-recovery body diodes (like the Infineon OptiMOS series). For more on this failure mode, review All About Circuits' semiconductor textbook section on MOSFET characteristics.

Failure Modes and Multimeter Testing Steps

MOSFETs generally fail in two ways: Thermal Runaway (where Rds(on) increases with heat, causing more I²R heating until the silicon melts) and Avalanche Breakdown (where Vds exceeds the maximum rating, punching through the drain-source junction). When a MOSFET fails, it almost always fails "short"—the Drain and Source become a dead short, and the Gate oxide often ruptures, shorting the Gate to the Source.

You can verify the health of a MOSFET and its body diode using a standard digital multimeter (DMM) in Diode Test mode. Here is the exact bench procedure:

  1. Discharge the Gate: Before testing, touch your multimeter probes across the Gate and Source pins simultaneously to discharge any residual gate capacitance. The MOSFET must be fully OFF.
  2. Test Reverse Blocking: Set DMM to Diode mode. Place the Red probe on the Drain and the Black probe on the Source (for an N-channel). The meter should read "OL" (Open Loop), indicating the body diode is reverse-biased and blocking.
  3. Test Forward Conduction: Swap the probes. Red on Source, Black on Drain. The DMM should display a voltage drop between 0.4V and 0.7V. This confirms the intrinsic body diode is intact and forward-biased.
  4. Test Gate Oxide Integrity: Set DMM to Resistance (Ohms) mode. Measure between Gate and Source, then Gate and Drain. Both must read "OL" or in the megaohm range. If you read near 0Ω, the gate oxide is punctured and the part is trash.
  5. Verify Channel Enhancement (Optional): While keeping the Black probe on the Source, briefly touch the Red probe to the Gate to charge it via the DMM's internal 3V battery. Then move the Red probe back to the Drain. The meter should now read a very low voltage drop (near 0.0V), proving the MOSFET channel has turned ON and is bypassing the body diode. Short Gate to Source again to turn it off.

By understanding the physical reality of the MOSFET body diode—and knowing when to replace it with an active ideal-diode circuit or an external Schottky—you eliminate one of the most common points of failure in DIY power electronics.