When makers and engineers search for the transistor drain source gate, they are specifically referring to the terminal anatomy of a Field Effect Transistor (FET), most commonly a MOSFET (Metal-Oxide-Semiconductor Field-Effect Transistor). Unlike Bipolar Junction Transistors (BJTs) that use a Base, Collector, and Emitter to control current flow via a small input current, MOSFETs rely on voltage applied to the Gate to modulate the resistance between the Drain and Source. This voltage-controlled behavior makes them the undisputed workhorses of modern power switching, motor control, and DC-DC conversion.
In this guide, we will break down exactly how these three terminals interact, how to select the right part for your workbench, and how to verify a suspect component with a standard digital multimeter.
The Transistor Drain Source Gate: MOSFET Pinout and Symbol Basics
Before wiring any circuit, you must correctly identify the physical pins and understand their schematic symbols. The most common through-hole package for power MOSFETs is the TO-220.
Physical TO-220 Pinout:
Hold the TO-220 package so that the metal tab is facing away from you (or facing up if laid flat) and the text on the black plastic body is readable left-to-right. The three pins from left to right are:
- Gate (G): The control terminal. It is electrically isolated from the other pins by a microscopic layer of silicon dioxide.
- Drain (D): The terminal where current enters the channel (in an N-channel device). The metal tab on the back of the TO-220 package is almost always internally connected to the Drain pin for heatsinking purposes.
- Source (S): The terminal where current exits the channel and returns to ground or the lower potential rail.
Schematic Symbol Distinctions:
On a schematic, the Gate is drawn as a detached line parallel to the channel, representing the capacitive isolation. The Source pin is identified by the arrow on the body diode symbol. For an N-channel MOSFET, the arrow points inward toward the channel. For a P-channel MOSFET, the arrow points outward. According to Texas Instruments MOSFET design guidelines, misinterpreting these symbols or confusing the physical pinout is the leading cause of instant catastrophic failure on the bench.
Operation Regions: How Voltage at the Gate Controls the Channel
The relationship between the Gate-Source voltage ($V_{GS}$) and the Drain-Source voltage ($V_{DS}$) dictates how the transistor behaves. A common trap for beginners transitioning from BJTs is the terminology around 'saturation'. In a MOSFET, 'saturation' means the device is acting as a constant-current amplifier, while the 'linear' or 'ohmic' region means it is fully turned ON as a switch.
| Operation Region | Gate-Source Voltage ($V_{GS}$) | Drain-Source Voltage ($V_{DS}$) | Behavior & Typical Use Case |
|---|---|---|---|
| Cutoff | $V_{GS} < V_{GS(th)}$ | Any | Device is OFF. Only microamp leakage current flows. Used for open switches. |
| Linear (Ohmic) | $V_{GS} > V_{GS(th)}$ | $V_{DS} < (V_{GS} - V_{GS(th)})$ | Device is fully ON. Acts as a low-value resistor ($R_{DS(on)}$). Target region for power switching. |
| Saturation (Active) | $V_{GS} > V_{GS(th)}$ | $V_{DS} \ge (V_{GS} - V_{GS(th)})$ | Current is pinched off and remains constant regardless of $V_{DS}$. Used for amplifiers and constant-current loads. |
Selecting and Biasing a MOSFET for Real-World Switching
When selecting a MOSFET, you must look beyond the maximum Drain-Source voltage ($V_{DSS}$) and continuous Drain current ($I_D$). The critical parameter for switching efficiency is $R_{DS(on)}$ (Drain-Source On-Resistance) at your specific Gate drive voltage.
Safe Default Part Numbers for the Workbench
If you are stocking your lab, these three industry-standard part numbers cover 90% of hobbyist and prototyping needs. Always buy from authorized distributors (Mouser, Digi-Key, Farnell) to avoid counterfeit silicon with degraded $R_{DS(on)}$ ratings.
| Part Number | Type | $V_{DSS}$ Rating | $I_D$ Rating | $R_{DS(on)}$ @ $V_{GS}=10V$ | Gate Drive Requirement |
|---|---|---|---|---|---|
| IRFZ44N | N-Channel | 55V | 49A | 17.5 mΩ | Standard (10V - 12V) |
| IRLZ44N | N-Channel | 55V | 47A | 22 mΩ | Logic Level (Fully ON at 5V) |
| IRF9540N | P-Channel | -100V | -23A | 117 mΩ | Standard (-10V) |
Biasing for Switching:
To bias an N-channel MOSFET properly as a low-side switch, you must include a Gate pull-down resistor (typically 10kΩ) between the Gate and Source (Ground). This ensures the Gate is actively pulled to 0V when your microcontroller pin is floating or booting up, preventing the MOSFET from partially turning on and overheating. Additionally, a small series resistor (10Ω to 100Ω) between the microcontroller pin and the Gate limits the inrush current into the Gate's parasitic capacitance, protecting the microcontroller's GPIO from brownouts.
A Complete 12V DC Motor Switching Circuit
Below is a complete, battle-tested circuit for driving a 12V DC motor using an Arduino (5V logic) and an IRLZ44N logic-level MOSFET. This configuration handles up to 10A continuous without a heatsink.
Bill of Materials:
- Q1: IRLZ44N N-Channel Logic-Level MOSFET
- D1: 1N4007 or 1N5819 Schottky Flyback Diode
- R1: 47Ω 1/4W Resistor (Gate series)
- R2: 10kΩ 1/4W Resistor (Gate pull-down)
- M1: 12V DC Motor
Wiring Steps
- Source to Ground: Connect the Source pin (Pin 3) of the IRLZ44N directly to your common system ground (Arduino GND and 12V supply GND).
- Pull-Down Resistor: Solder the 10kΩ resistor (R2) between the Gate pin (Pin 1) and the Source pin (Ground).
- Gate Drive: Connect the 47Ω resistor (R1) to the Gate pin. Connect the other end of R1 to Arduino Pin 9 (configured for PWM output).
- Motor Connection: Connect one terminal of the 12V DC motor to the Drain pin (Pin 2). Connect the other motor terminal to the positive rail of your 12V power supply.
- Flyback Diode: Place the flyback diode (D1) in parallel with the motor. The cathode (stripe end) must point toward the 12V positive rail, and the anode points toward the Drain pin. This clamps the inductive voltage spike when the MOSFET turns off.
- Verify: Use a multimeter to check for shorts between the 12V rail and Ground before applying power. Upload a simple
analogWrite(9, 128)sketch to run the motor at 50% duty cycle.
Failure Modes and How to Test the Drain, Source, and Gate with a Multimeter
MOSFETs generally fail in two ways: thermal runaway (caused by insufficient Gate drive voltage leading to high $R_{DS(on)}$ and excessive heat) or Gate oxide punch-through (caused by Electrostatic Discharge or exceeding the $V_{GS}$ maximum, typically ±20V). When a MOSFET fails thermally, it usually shorts Drain-to-Source. When it fails from overvoltage, the Gate shorts to the Source.
You can diagnose a suspected TO-220 N-channel MOSFET using a standard digital multimeter set to Diode Test mode.
Step-by-Step Multimeter Testing
- Discharge the Gate: Briefly short all three pins together with a piece of wire or your fingers to discharge any stored Gate capacitance.
- Test the Body Diode: Place the black (negative) probe on the Drain and the red (positive) probe on the Source. The meter should read 'OL' (Open Line). Reverse the probes: red on Drain, black on Source. You should read a diode drop of approximately 0.4V to 0.6V. This confirms the internal body diode is intact and the device is not shorted Drain-to-Source.
- Charge the Gate: Keep the black probe on the Source. Touch the red probe to the Gate pin for one second. This applies the multimeter's internal ~3V battery to the Gate, charging the capacitance and turning the channel ON.
- Verify the Channel: Move the red probe back to the Drain (black probe remains on Source). The meter should now read a very low voltage drop (near 0.00V), indicating the Drain-Source channel is conducting.
- Discharge and Re-verify: Short the Gate to the Source again to turn it off. Repeat step 2; the meter should return to 'OL' in the first direction, confirming the device can successfully turn off.
Frequently Asked Questions About Transistor Drain Source Gate Terminals
What is the difference between a transistor drain source gate and a BJT base collector emitter?
The fundamental difference lies in the control mechanism. A BJT (Base, Collector, Emitter) is a current-controlled device; you must continuously supply base current to keep the collector-emitter path open, which wastes power and requires complex driver circuits for high currents. A MOSFET (Gate, Drain, Source) is a voltage-controlled device. Once the Gate capacitance is charged to the required voltage, virtually zero continuous current flows into the Gate, making it vastly more efficient for microcontroller interfacing and high-power switching.
Why does my MOSFET get hot even when the gate voltage is high?
If your MOSFET is overheating despite a 'high' gate signal, you are likely operating it in the Saturation (active) region rather than the Linear (fully ON) region. This happens when you use a standard-level MOSFET (like the IRFZ44N, which requires 10V to fully turn on) with a 5V or 3.3V microcontroller. At 5V, the IRFZ44N is only partially conducting, resulting a high $R_{DS(on)}$ that dissipates massive amounts of heat ($P = I^2R$). Always pair 5V/3.3V logic with 'Logic Level' MOSFETs (indicated by an 'L' in the part number, like IRLZ44N) that guarantee low $R_{DS(on)}$ at $V_{GS} = 4.5V$.
Can I leave the gate pin floating when the circuit is powered off?
Never leave a MOSFET Gate floating in a live circuit. The Gate acts as a high-impedance capacitor and will easily pick up ambient electromagnetic noise, causing the MOSFET to rapidly oscillate between ON and OFF states. This linear-region oscillation generates extreme heat and will destroy the silicon in milliseconds. Always use a 10kΩ to 100kΩ pull-down resistor between the Gate and Source to provide a defined DC path to ground when the drive signal is removed.
How do I know which pin is the drain, source, or gate on an unmarked TO-220 package?
If the text on the TO-220 package is completely illegible, you can identify the pins using a multimeter. First, identify the Drain: the large metal tab on the back of the package is internally bonded to the Drain pin (Pin 2) in 99% of standard power MOSFETs. Next, use the diode test mode to find the Source: place the red probe on the tab (Drain) and touch the black probe to the outer pins. The pin that yields a ~0.5V diode drop is the Source. The remaining pin, which will read 'OL' in both directions relative to the Drain and Source, is the Gate.






