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.
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.
| Region | Vgs Condition | Vds Condition | Behavior | Typical Use |
|---|---|---|---|---|
| Cutoff | Vgs < Vgs(th) | Vds = Vdd | Channel 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).
- 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.
- 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.
- 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.
- 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.
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 Condition | Required Action | Concrete Part Pick |
|---|---|---|
| Load < 2A, Switching Freq < 1kHz, V_logic = 5V | Direct 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.3V | Direct 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:
- Discharge the Gate: Touch the Gate and Source pins together with your finger or a wire to drain any residual gate charge.
- 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).
- 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.
- 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.
- 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 Number | Type | Vds (Max) | Id (Continuous) | Rds(on) @ Vgs | Vgs(th) | Best Application |
|---|---|---|---|---|---|---|
| IRLZ44N | N-Channel MOSFET | 55V | 47A | 17mΩ @ 5V | 1.0 - 2.0V | Direct 5V/3.3V MCU low-side switching. |
| IRFZ44N | N-Channel MOSFET | 55V | 49A | 17mΩ @ 10V | 2.0 - 4.0V | 12V automotive or dedicated gate driver circuits. |
| FQP30N06L | N-Channel MOSFET | 60V | 32A | 35mΩ @ 5V | 1.0 - 2.5V | Higher voltage logic-level switching (up to 48V nominal). |
| IRF9540N | P-Channel MOSFET | -100V | -23A | 117mΩ @ -10V | -2.0 - -4.0V | High-side switching for 12V/24V loads. |
| TC4420 | Gate Driver IC | N/A | 6A Peak | N/A | N/A | Buffering 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.






