The direct answer to what a transistor gate does: it is the high-impedance, voltage-controlled terminal on a MOSFET or IGBT that dictates current flow between the drain and source. Unlike a BJT base, which requires continuous current to stay on, a MOSFET gate only requires current to charge and discharge its internal capacitance. If you are driving a 5V logic microcontroller and need a safe default N-channel MOSFET for low-side switching, buy the IRLZ44N. If you are switching from a 12V supply, use the IRFZ44N.

When designing circuits with power transistors, gates are the most critical and fragile node. Misunderstanding gate charge (Qg), threshold voltage (Vgs(th)), and the Miller plateau will result in slow switching, excessive heat, or a violently exploding silicon package. This guide provides the exact biasing rules, a complete application circuit, and a decision framework to select the right gate driver.

Symbol, Pinout, and the Gate Capacitor Model

Look at an N-channel MOSFET schematic symbol. The Gate (G) is on the left, isolated from the channel by a thin layer of silicon dioxide. The Drain (D) is on top, and the Source (S) is on the bottom. An arrow on the source points inward for N-channel (and outward for P-channel). Crucially, the symbol includes an intrinsic body diode pointing from source to drain, which will conduct if you reverse-bias the drain-source junction.

Bench Tip: Never treat the gate as a simple open circuit. Physically, the gate acts like a capacitor (Ciss, or input capacitance). To turn the MOSFET on, you must push a specific amount of charge (Qg, measured in nanoCoulombs) into this capacitor. The faster you want to switch, the higher the peak current your gate driver must supply (I = Qg / t).

For a standard TO-220 package MOSFET held with the tab facing away from you and pins pointing down, the pinout from left to right is Gate, Drain, Source. The metal tab on the back is almost always internally connected to the Drain, which means you must use an insulating pad if mounting multiple MOSFETs to a shared heatsink.

MOSFET Operation Regions and Biasing Voltages

A massive source of confusion for hobbyists transitioning from BJTs is the terminology for MOSFET operation regions. In a BJT, 'saturation' means fully ON. In a MOSFET, 'saturation' means the constant-current amplification region. For power switching, you want the MOSFET in the Linear (or Ohmic) region.

RegionVgs ConditionVds ConditionBehaviorTypical Use
CutoffVgs < Vgs(th)Vds = VddChannel is closed. Id ≈ 0. Only leakage current flows.Switch OFF state.
Linear (Ohmic)Vgs > Vgs(th)Vds < (Vgs - Vgs(th))Channel is fully open. Acts as a low-value resistor (Rds(on)). Id is limited by the load.Switch ON state (Power switching).
Saturation (Active)Vgs > Vgs(th)Vds > (Vgs - Vgs(th))Channel is pinched off near the drain. Id is constant and controlled only by Vgs.Signal amplification, constant current sinks.

The Biasing Rule: To ensure your MOSFET is fully in the Linear (ON) region, your gate drive voltage (Vgs) must be significantly higher than the threshold voltage (Vgs(th)). A datasheet might list Vgs(th) as 2.0V to 4.0V, but that is merely the voltage where it barely starts to conduct (usually at 250µA). To achieve the rated Rds(on) and handle high current without overheating, you must drive the gate to 10V–15V for standard MOSFETs, or 4.5V–5V for logic-level MOSFETs.

The Complete Low-Side Switch Application Circuit

Here is a bulletproof, real-world circuit for switching a 12V, 5A inductive load (like a solenoid or DC motor) using a 5V Arduino GPIO pin. We will use an IRLZ44N (logic-level N-channel MOSFET).

  1. The Pull-Down Resistor (10kΩ): Connect a 10kΩ resistor between the Gate and Source (Ground). When your microcontroller boots up, its GPIO pins are high-impedance (floating). Without this resistor, ambient noise can partially turn on the MOSFET, causing it to overheat and fail before your code even starts running.
  2. The Gate Stopper Resistor (100Ω): Place a 100Ω resistor in series between the Arduino GPIO pin and the MOSFET Gate. This limits the inrush current into the gate capacitor, protecting the microcontroller's internal GPIO trace from burning out. It also dampens high-frequency parasitic ringing on the gate trace.
  3. The Flyback Diode (1N5819): Inductive loads generate massive voltage spikes when turned off (V = L * di/dt). Place a Schottky diode (like the 1N5819) in reverse parallel across the load (cathode to 12V, anode to the MOSFET Drain). Schottky is preferred over standard 1N4007 because of its faster reverse recovery time.
  4. Wiring the Load: Connect the load between the 12V supply and the MOSFET Drain. Connect the MOSFET Source directly to the system Ground. Ensure the 12V Ground and Arduino Ground are tied together.
Safety Warning: If you are switching mains voltage (120V/230V AC) using a solid-state relay or high-voltage MOSFET, you must use an isolated gate driver (like the HCPL-3120) to prevent lethal fault currents from traveling back through the gate into your low-voltage microcontroller.

Decision Tree: Selecting the Right Gate Drive and MOSFET

Stop guessing which driver to use. Follow this decision path to terminate on a concrete part selection for your specific application.

Application ConditionRequired ActionConcrete Part Pick
Load < 2A, Switching Freq < 1kHz, V_logic = 5VDirect GPIO drive. Use a logic-level MOSFET. No dedicated driver IC needed.IRLZ44N (MOSFET) + 100Ω gate resistor.
Load < 2A, Switching Freq < 1kHz, V_logic = 3.3VDirect GPIO drive. Must use a very low Vgs(th) logic-level MOSFET.IPB034N06L or STP16NF06L.
Load > 5A OR Switching Freq > 20kHz (PWM)GPIO cannot source enough peak current to charge Qg fast enough. Use a dedicated low-side gate driver IC.TC4420 (Driver IC) + IRFZ44N (MOSFET).
High-Side Switching (Load connected to Ground)N-channel high-side requires a gate voltage higher than the supply. Use a bootstrap high-side driver or swap to P-channel.IR2110 (Bootstrap Driver) or IRF9540N (P-Channel).
Switching > 200V DC (e.g., Tesla Coils, SMPS)Standard MOSFETs will avalanche. Use high-voltage super-junction MOSFETs or IGBTs with isolated gate drive.IRFP460 (500V MOSFET) + UCC21520 (Isolated Driver).

For a deeper look into the math behind gate charge and driver sizing, the Texas Instruments Gate Driver Overview provides excellent application notes on calculating peak drive current requirements based on Qg and target rise times.

How Transistor Gates Fail and How to Test Them

The silicon dioxide layer isolating the gate is incredibly thin. It is easily destroyed by electrostatic discharge (ESD) or voltage spikes. Here is how gates fail in the wild, and how to verify their health on your bench.

Common Failure Modes

  • Gate Oxide Punch-Through: The absolute maximum Vgs for almost all power MOSFETs is ±20V. If a 12V solenoid spikes and couples noise into your gate trace, pushing Vgs past 20V, the oxide layer permanently shorts. The MOSFET will either fail to turn off, or the gate will draw massive DC current from your driver, frying the driver IC.
  • Miller-Induced Turn-On (dV/dt): In half-bridge circuits, when the high-side MOSFET turns on, the drain voltage of the low-side MOSFET spikes rapidly. This dV/dt pushes current through the Miller capacitance (Cgd) into the gate. If your gate pull-down impedance is too high, this current spikes the gate voltage above Vgs(th), turning the low-side MOSFET on momentarily. This creates 'shoot-through' (a direct short from Vdd to Ground), destroying both transistors.
  • Thermal Runaway: If the gate drive voltage is too low (e.g., driving a standard IRFZ44N with 3.3V), the MOSFET operates in the linear region with high Rds(on). It dissipates massive heat, which increases Rds(on) further, leading to a catastrophic thermal failure.

The Multimeter Diode Test (Step-by-Step)

You can test a MOSFET's health using the Diode Test mode on a standard digital multimeter. For an N-channel MOSFET:

  1. Discharge the Gate: Touch the Gate and Source pins together with your finger or a wire to drain any residual gate charge.
  2. Test the Body Diode: Place the Red probe on the Source and the Black probe on the Drain. You should read a forward voltage drop of roughly 0.4V to 0.6V (the body diode). Reverse the probes (Red on Drain, Black on Source); the meter should read 'OL' (Open Loop).
  3. Charge the Gate: While keeping the Black probe on the Source, touch the Red probe to the Gate for a second. This uses the multimeter's internal battery (usually 3V-9V) to charge the gate capacitor.
  4. Verify Channel Conduction: Move the Red probe back to the Drain (Black remains on Source). Because the gate is now charged, the MOSFET channel is ON. The meter should now read near 0.0V (or beep in continuity mode), indicating the drain-source channel is conducting.
  5. Discharge and Re-verify: Short Gate to Source again. Re-test Drain to Source; it should revert to 'OL' in the reverse direction, proving the gate can successfully turn the channel off.

For more on interpreting datasheet parameters like Ciss, Crss, and Qg to prevent these failures, the Electronics Tutorials MOSFET Switching Guide is an excellent reference for visualizing the Miller plateau.

Safe Default Part Numbers for the Workbench

Stop buying random assortments from unknown vendors. Keep these specific, proven part numbers in your inventory. They cover 95% of hobbyist and prototyping power-switching needs.

Part NumberTypeVds (Max)Id (Continuous)Rds(on) @ VgsVgs(th)Best Application
IRLZ44NN-Channel MOSFET55V47A17mΩ @ 5V1.0 - 2.0VDirect 5V/3.3V MCU low-side switching.
IRFZ44NN-Channel MOSFET55V49A17mΩ @ 10V2.0 - 4.0V12V automotive or dedicated gate driver circuits.
FQP30N06LN-Channel MOSFET60V32A35mΩ @ 5V1.0 - 2.5VHigher voltage logic-level switching (up to 48V nominal).
IRF9540NP-Channel MOSFET-100V-23A117mΩ @ -10V-2.0 - -4.0VHigh-side switching for 12V/24V loads.
TC4420Gate Driver ICN/A6A PeakN/AN/ABuffering 3.3V/5V logic to drive 12V standard MOSFET gates.

By standardizing your inventory around these verified components and strictly adhering to the gate biasing rules outlined above, you will eliminate the vast majority of thermal and switching failures in your power electronics projects. Always respect the gate capacitance, use a pull-down resistor, and match your Vgs drive to the datasheet's Rds(on) test conditions.