Reading MOSFET symbols in schematics correctly is the difference between a circuit that switches cleanly and one that overheats, drops voltage, or fails to turn on. While the basic three-terminal switch concept is simple, the subtle variations in channel lines, arrow directions, and body diode representations carry critical design intent. Below is the direct reference you need to decode these symbols, followed by the practical bench realities that datasheets and textbooks often gloss over.

The Complete MOSFET Symbol Reference Table

The table below maps the standard schematic symbols to their physical realities. This applies to both discrete power MOSFETs (like the TO-220 IRF3205) and small-signal switching MOSFETs (like the SOT-23 BSS138).

MOSFET Type Symbol Identifiers (IEEE 315 / IEC 60617) Physical State (Vgs = 0V) Common Bench Examples
N-Channel Enhancement Arrow points IN to channel. Channel line is dashed (broken). Normally OFF IRLZ44N, 2N7000, IRLML2502
P-Channel Enhancement Arrow points OUT from channel. Channel line is dashed (broken). Normally OFF IRF9540, BSS84, SI2301
N-Channel Depletion Arrow points IN to channel. Channel line is solid (continuous). Normally ON LND150, BSP149
P-Channel Depletion Arrow points OUT from channel. Channel line is solid (continuous). Normally ON LND710 (Rare in modern designs)
Dual / IC MOSFET Enclosed in a dashed or solid box. Multiple gate/drain/source pins mapped to a common bulk. Varies (Usually Enhancement) FDMA8656 (Dual N/P), TPS2051

Regional Standards and Rows People Get Wrong

When interpreting MOSFET symbols in schematics, you will primarily encounter two standards: IEEE 315-1975 (dominant in North America and older EDA libraries) and IEC 60617-5 (the international standard).

Visually, IEEE 315 draws the gate as a distinct parallel line separated by a clear gap from the channel. IEC 60617 sometimes integrates the terminals into a bounding box, especially for integrated circuits. However, the semantic rules—the arrow direction defining N vs. P, and the dashed vs. solid line defining enhancement vs. depletion—are universal across modern CAD tools like KiCad, Altium, and Eagle.

The Two 'Rows' Designers Get Wrong

Even experienced hobbyists and junior engineers misinterpret two specific aspects of these symbols, leading to hardware failures on the bench:

1. The Omitted Body Diode
Most power MOSFET symbols in schematics omit the intrinsic anti-parallel body diode to keep the drawing clean. The body diode is a physical byproduct of the MOSFET's silicon structure (the P-N junction between the body and the drain).

Bench Warning: If you are switching an inductive load (relay, solenoid, motor) on the low-side and the schematic omits the body diode, you might forget to add an external flyback diode. While the MOSFET's internal diode can clamp the inductive spike, relying on it for repetitive high-energy clamping will lead to thermal runaway and avalanche failure. Always add a physical Schottky or fast-recovery diode across the load.

2. The High-Side N-Channel Trap
A dashed-line N-channel symbol means it requires a positive Gate-to-Source voltage (Vgs) to turn on. If a schematic places an N-channel MOSFET on the high side (between VCC and the load) and drives the gate directly from a microcontroller GPIO, the circuit will fail. As the MOSFET turns on, the source voltage rises toward VCC, choking off the Vgs differential. The MOSFET enters the linear region, acts as a source follower, and dissipates massive heat. High-side switching requires a P-channel symbol, or an N-channel paired with a bootstrap gate driver (like an IR2110).

Safe Interpretation When Schematics Are Ambiguous

Downloaded schematics from open-source hardware repositories or reverse-engineered boards often feature poorly drawn, faded, or non-standard MOSFET symbols. If the arrow is missing or the channel line is ambiguous, use this decision framework to safely interpret the designer's intent:

  1. Check the Load Position: If the load is connected between the Drain and VCC (low-side switch), the designer almost certainly intended an N-channel enhancement MOSFET. If the load is between the Drain and GND (high-side switch), it should be a P-channel.
  2. Check the Gate Drive Voltage: If the gate is driven directly by a 3.3V ESP32 or 5V Arduino pin without a gate driver IC, the BOM must specify a logic-level MOSFET with a low Vgs(th) threshold (e.g., Vgs(th) < 2.5V). Standard MOSFETs like the IRF520 require 10V+ to fully enhance and will overheat if driven by 3.3V logic.
  3. Look for the Source Resistor: If there is a low-value shunt resistor (e.g., 0.1Ω) between the Source pin and ground, it is an N-channel configured for current sensing. A P-channel current sense circuit would place the shunt on the high-side drain, requiring a differential op-amp.

For a deeper dive into the physics governing these symbols, the All About Circuits MOSFET primer provides excellent cross-sections of the silicon that explain why the symbols are drawn the way they are. Additionally, Electronics Tutorials offers a solid breakdown of the transfer characteristics that dictate enhancement vs. depletion behavior.

Frequently Asked Questions

How to identify MOSFET symbols in schematics when the arrow is missing?

If the schematic is poorly drawn and the source arrow is missing, look for the body diode symbol (if present). In an N-channel MOSFET, the body diode's cathode (the bar) points toward the Drain, and the anode points to the Source. In a P-channel, the diode is reversed: the anode is at the Drain, and the cathode is at the Source. If the diode is also missing, default to the load-position rule: low-side switches are N-channel, high-side switches are P-channel.

Why do some MOSFET symbols in schematics show four terminals instead of three?

Standard discrete MOSFETs internally tie the 'Bulk' (or Body) terminal to the Source pin, resulting in a three-terminal device. However, in integrated circuit (IC) schematics, RF designs, or precision analog switches, you will see a four-terminal symbol. The fourth terminal is the Bulk/Body connection. Separating the bulk from the source allows the designer to bias the body independently, which eliminates the 'body effect' (the increase in threshold voltage caused by a non-zero source-to-bulk voltage) and prevents latch-up in CMOS arrays.

What does a bubble or circle on the gate mean in digital MOSFET symbols in schematics?

When you see a MOSFET symbol inside a digital logic block or gate driver IC with a small circle (bubble) on the gate pin, it indicates an active-low input. This is standard IEEE/IEC logic notation. It means the internal MOSFET will turn ON when the gate signal is pulled to ground (logic 0), rather than when it is driven high. This is incredibly common in level-shifters, open-drain output stages, and power management IC enable pins.