If you search for a textbook MOSFET definition, you will get a paragraph about metal-oxide-semiconductor field-effect transistors, majority carriers, and inversion layers. But on the workbench, a MOSFET is simply a voltage-controlled switch. Unlike a Bipolar Junction Transistor (BJT) that requires continuous base current to stay on, a MOSFET requires almost zero steady-state gate current. You apply a voltage to the gate, the channel opens, and current flows from drain to source. You remove the voltage, it stops.

This guide skips the semiconductor physics and focuses entirely on what you need to know to select, bias, wire, and troubleshoot MOSFETs in real-world DIY circuits.

The Practical MOSFET Definition and Pinout

Every standard power MOSFET has three terminals: Gate (G), Drain (D), and Source (S). In an N-channel MOSFET (the most common type for low-side switching), the Source is tied to ground, the Drain connects to your load, and the Gate receives your control signal.

When looking at the schematic symbol for an N-channel enhancement MOSFET, you will notice an arrow pointing inward on the Source leg, and a distinct line connecting the Drain and Source on the opposite side of the Gate. That line represents the body diode. This is a parasitic diode inherent to the silicon manufacturing process. It allows current to flow backwards from Source to Drain even when the MOSFET is turned off. This is a critical detail for motor and relay circuits, as the body diode can sometimes act as a freewheeling path, though you should never rely on it for high-current inductive kickback protection.

Operation Regions and the 'Saturation' Naming Trap

The biggest hurdle for hobbyists moving from BJTs to MOSFETs is the terminology. In a BJT, 'saturation' means the switch is fully ON. In a MOSFET, 'saturation' means the device is acting as a constant-current amplifier. When you want a MOSFET to act as a fully ON switch, you want it in the Triode (or Linear/Ohmic) region.

Spec-Sheet Table: N-Channel MOSFET Operation Regions
RegionGate-Source Voltage ($V_{GS}$)Drain-Source Voltage ($V_{DS}$)Practical State
Cutoff< $V_{GS(th)}$AnyOFF (Open Switch)
Triode / Ohmic> $V_{GS(th)}$< ($V_{GS}$ - $V_{GS(th)}$)ON (Closed Switch, low $R_{DS(on)}$)
Saturation / Active> $V_{GS(th)}$> ($V_{GS}$ - $V_{GS(th)}$)Amplifier / Constant Current Source

The Threshold Voltage Trap: Datasheets list a Gate-Source Threshold Voltage ($V_{GS(th)}$), often around 1V to 2V for logic-level FETs. Beginners assume this is the voltage required to turn the FET on. It is not. $V_{GS(th)}$ is merely the voltage where the FET begins to conduct a tiny leakage current (usually 250µA). To achieve the rated low $R_{DS(on)}$ (ON-resistance), you must look at the datasheet's test conditions, which typically require a $V_{GS}$ of 4.5V or 10V.

The Decision Tree: Picking Your Default MOSFET

Stop guessing in the parts bin. Use this decision matrix to select the exact part number for your next build. We are assuming an N-channel, low-side switching topology, which covers 90% of DIY applications.

⚠️ Callout: The IRF520 Arduino Module Trap
Many cheap starter kits include a red 'MOSFET Driver Module' featuring the IRF520. Do not use this for 5V or 3.3V logic. The IRF520 is a standard-level FET requiring 10V on the gate to fully enhance. At 5V, it operates in the linear region, drops massive voltage, and will overheat and fail at loads over 1A. Always swap it for an IRLZ44N.
Your ApplicationVoltage & Current LimitsSafe Default Part NumberApprox. Cost (2026)
Low power logic shifting, small relays (<200mA)$V_{DS}$ 50V, $I_D$ 200mA, 3.3V/5V GateBSS138 (SOT-23 SMD)$0.10
Medium loads: LED strips, small pumps, fans (2A - 15A)$V_{DS}$ 55V, $I_D$ 47A, 5V Logic GateIRLZ44N (TO-220)$1.20
High power: E-bikes, large motors, heating elements (>15A)$V_{DS}$ 60V, $I_D$ 190A, 4.5V GateIRLB3034 (TO-220)$2.50
High-side switching (Load tied to GND, switch to VCC)Requires P-Channel topologyIRF9540N (P-Ch TO-220)$1.50

For a deeper dive into gate charge and thermal impedance, refer to Infineon's Power MOSFET portfolio documentation, which details the exact $R_{DS(on)}$ thermal scaling curves.

Application Circuit: 12V DC Motor PWM Driver

Let us build a robust, real-world circuit to drive a 12V DC motor using an ESP32 or Arduino (5V logic) and our safe default, the IRLZ44N. This circuit handles inductive kickback and prevents gate ringing.

Bill of Materials:

  • Q1: IRLZ44N N-Channel MOSFET
  • D1: 1N5819 Schottky Diode (Flyback)
  • R1: 100Ω Resistor (Gate drive)
  • R2: 10kΩ Resistor (Gate pull-down)
  • M1: 12V DC Motor

Wiring Steps:

  1. Source to Ground: Connect the Source pin of the IRLZ44N to your common system ground (GND). Ensure this ground is shared between your 12V power supply and your microcontroller.
  2. Gate Pull-Down: Connect the 10kΩ resistor (R2) between the Gate and Source pins. This ensures the motor stays off if the microcontroller pin is floating during boot-up.
  3. Gate Drive Resistor: Connect the 100Ω resistor (R1) between your microcontroller's PWM output pin and the Gate pin. This limits the instantaneous current ($di/dt$) charging the gate capacitance, protecting your microcontroller's GPIO from overcurrent and dampening high-frequency ringing.
  4. Load Connection: Connect one terminal of the DC motor to the Drain pin. Connect the other motor terminal to the positive 12V supply.
  5. Flyback Diode: Place the 1N5819 diode in parallel with the motor. The cathode (stripe) must face the 12V positive supply, and the anode faces the Drain pin. When the MOSFET turns off, the motor's collapsing magnetic field generates a massive reverse voltage spike; this diode safely recirculates that current.
Pro-Tip on Flyback Diodes: If your PWM frequency is above 5kHz, do not use a standard 1N4007 rectifier diode. Its reverse recovery time is too slow, meaning it will briefly act as a short circuit while turning off, frying your MOSFET. Always use a fast-recovery or Schottky diode like the 1N5819 or SS34 for PWM applications.

For more on calculating power dissipation during PWM switching transitions, All About Circuits provides an excellent breakdown of MOSFET switching losses.

Failure Modes and Multimeter Diode Testing

MOSFETs generally fail in three ways: Gate Oxide Puncture (from ESD or exceeding the ±20V $V_{GS}$ limit, resulting in a dead short between Gate and Source), Avalanche Breakdown (from inductive spikes exceeding $V_{DS}$ without a flyback diode, shorting Drain to Source), and Thermal Runaway (where inadequate heatsinking causes the silicon to melt, usually shorting all three pins).

You can diagnose a blown MOSFET right on the bench using the Diode Test mode on a standard digital multimeter. Here is the exact sequence for an N-channel FET:

  1. Discharge the Gate: Touch your multimeter probes across the Gate and Source pins simultaneously to drain any residual capacitance. The FET is now guaranteed to be in the OFF state.
  2. Test Drain-Source (Forward): Place the Red probe on the Drain and the Black probe on the Source. The meter should read 'OL' (Open Loop). If it reads near 0.00V or beeps continuously, the FET is shorted and dead.
  3. Test the Body Diode (Reverse): Swap the probes: Red on Source, Black on Drain. You should read a voltage drop between 0.4V and 0.7V. This is the internal body diode conducting. If it reads 'OL', the internal diode is blown.
  4. Charge the Gate: Keep the Black probe on the Source. Move the Red probe to the Gate for one second. This applies the multimeter's internal ~3V test voltage to the gate, turning the FET partially ON.
  5. Verify Conduction: Move the Red probe back to the Drain (Black remains on Source). The meter should now read a very low voltage (near 0.00V) or beep, indicating the channel has opened and current is flowing through the Drain-Source path.
  6. Discharge and Re-verify: Short the Gate to Source again with your finger or a probe. Check Drain-to-Source again; it should revert to 'OL'.

If your MOSFET passes all six steps, the silicon is healthy. If it fails step 2 (reads shorted before charging the gate), throw it in the bin—it has suffered an avalanche or thermal failure and is permanently welded closed.

By understanding the practical behavior of these regions, avoiding the IRF520 trap, and properly snubbing inductive loads, you will eliminate 95% of the magic smoke events in your power electronics builds.