A MOSFET common source amplifier provides high voltage gain and exceptionally high input impedance, making it the solid-state equivalent of a BJT common-emitter stage. The direct answer to 'how it works' is simple: the input signal enters the Gate, the amplified output exits the Drain, and the Source is tied to a common reference (usually ground or a bypassed resistor). Because the Gate draws virtually zero DC current, this topology is the default choice for buffering high-impedance sources like piezo pickups, electret microphones, and sensor bridges.
The MOSFET Common Source Amplifier: Pinout, Symbol, and Core Concept
Before wiring anything, you need to read the datasheet symbol correctly. For an N-channel enhancement-mode MOSFET (the most common type for small-signal amplification), the symbol features three main terminals: Gate (G), Drain (D), and Source (S). A fourth terminal, the Body or Bulk (B), is usually tied internally to the Source in discrete TO-92 or TO-220 packages.
The core operating principle relies on the electric field. Applying a positive voltage to the Gate relative to the Source ($V_{GS}$) creates an inversion layer—a conductive channel—between the Drain and Source. The Drain current ($I_D$) is controlled by this $V_{GS}$ voltage, not by a base current like in a BJT. When an AC signal rides on top of a DC bias voltage at the Gate, it causes proportional fluctuations in $I_D$. This fluctuating current passes through a Drain resistor ($R_D$), converting the current changes back into a magnified voltage swing at the output.
Operating Regions and Biasing for Linear Amplification
To use a MOSFET as a linear amplifier, you must DC-bias it squarely in the saturation region. If it drifts into the triode region, your gain collapses and distortion spikes. If it drops below the threshold voltage, it cuts off entirely.
| Operating Region | Mathematical Condition | $I_D$ Behavior | Typical Circuit Use |
|---|---|---|---|
| Cutoff | $V_{GS} < V_{GS(th)}$ | $I_D = 0$ (Leakage only) | Switching (OFF state) |
| Triode (Linear) | $V_{GS} > V_{GS(th)}$ and $V_{DS} < V_{GS} - V_{GS(th)}$ | Acts like a voltage-controlled resistor | Switching (ON state), analog multipliers |
| Saturation (Active) | $V_{GS} > V_{GS(th)}$ and $V_{DS} \ge V_{GS} - V_{GS(th)}$ | Constant current source controlled by $V_{GS}$ | Linear Amplification, current mirrors |
Proper biasing requires setting a DC Gate voltage ($V_G$) using a high-impedance voltage divider, and adding a Source resistor ($R_S$) for DC thermal stability. As the MOSFET heats up, its threshold voltage drops, which would normally cause $I_D$ to increase (thermal runaway). The $R_S$ resistor creates negative feedback: if $I_D$ rises, the voltage across $R_S$ rises, which effectively reduces $V_{GS}$ and chokes the current back down.
A Complete Audio Preamp Circuit: Component Values and Build Steps
Let's build a 1kHz audio preamp stage using a BS170 N-channel MOSFET. We will use a 12V DC supply ($V_{DD}$) and target a quiescent Drain current ($I_D$) of 2mA, aiming for a mid-rail Drain voltage ($V_D$) of roughly 6V to allow maximum symmetrical voltage swing.
Calculated Component Values:
- $R_D$ (Drain Resistor): $(12V - 6V) / 2mA = 3k\Omega$. We will use the standard 3.3kΩ value. (Actual $V_D$ will be ~5.4V).
- $R_S$ (Source Resistor): We want 2V across $R_S$ for good DC stability. $2V / 2mA = $ 1kΩ.
- $C_S$ (Source Bypass Capacitor): 10µF electrolytic. This shorts $R_S$ at audio frequencies, restoring our AC voltage gain while keeping DC stability.
- $V_G$ (Gate Voltage): The BS170 typical $V_{GS}$ at 2mA is ~2.5V. Therefore, $V_G = V_{GS} + V_S = 2.5V + 2V = 4.5V$.
- $R_1, R_2$ (Gate Divider): To get 4.5V from 12V with high input impedance, use $R_1 = 1.5M\Omega$ and $R_2 = 1M\Omega$. (Actual $V_G = 4.8V$).
- $C_{in}, C_{out}$ (Coupling Caps): 1µF film or ceramic to block DC from the source and load.
- Connect $R_1$ from the 12V rail to the Gate pin. Connect $R_2$ from the Gate pin to Ground.
- Wire $R_D$ (3.3kΩ) between the 12V rail and the Drain pin.
- Wire $R_S$ (1kΩ) between the Source pin and Ground.
- Place $C_S$ (10µF) in parallel with $R_S$. Ensure the positive lead faces the Source pin.
- Connect $C_{in}$ (1µF) in series with your audio input source, feeding the Gate.
- Connect $C_{out}$ (1µF) in series with the Drain, feeding your output load or next stage.
- Power up and verify DC bias points with a multimeter before applying an AC signal.
Bench War Story: When the Bias Point Drifts and Clipping Hits
Theory is clean; the workbench is messy. I recently built the exact circuit above to buffer a high-impedance piezo contact mic. According to the math, the Drain voltage ($V_D$) should have been sitting at 5.4V, leaving plenty of headroom for a 2V peak-to-peak audio swing.
The Setup: 12V bench supply, breadboard, BS170 from my parts bin, 3.3kΩ $R_D$, 1kΩ $R_S$. I hooked up my function generator to inject a 1kHz sine wave at 100mV peak-to-peak and probed the Drain with my oscilloscope.
The Numbers & Outcome: Before applying AC, I checked the DC bias. My multimeter read $V_D = 1.8V$. When I injected the sine wave, the negative half of the waveform was completely flattened—severe negative clipping. The output was heavily distorted and the gain was barely 5x instead of the expected 15x.
What Went Wrong: The BS170 datasheet lists the Gate-Source Threshold Voltage ($V_{GS(th)}$) with a massive spread: minimum 0.8V, typical 2.0V, maximum 3.0V. The specific transistor I grabbed had a low threshold of about 1.0V. Because my fixed gate divider was rigidly holding $V_G$ at 4.8V, the actual $V_{GS}$ was high enough to drive the MOSFET into conducting nearly 4mA. That extra current dropped almost all the supply voltage across $R_D$, pushing $V_D$ down to 1.8V and shoving the MOSFET right to the edge of the triode region.
The Fix: I replaced the fixed 1kΩ $R_S$ with a 2kΩ ceramic trimpot. I powered the circuit, connected the multimeter to the Drain, and dialed the trimpot until $V_D$ read exactly 6.0V. The clipping vanished, and the sine wave was perfectly symmetrical. Lesson learned: Discrete MOSFET amplifiers almost always require an adjustable source resistor or a feedback network to compensate for $V_{GS(th)}$ manufacturing spread. For deeper design theory on managing these parameter spreads, refer to the Electronics Tutorials guide on MOSFET amplifiers.
Failure Modes, Multimeter Testing, and Safe Default Part Numbers
MOSFETs are rugged in some ways and incredibly fragile in others. Understanding how they fail and how to test them saves hours of debugging.
How MOSFETs Fail
- Gate Oxide Puncture (ESD): The Gate is insulated by a microscopic layer of silicon dioxide. A static shock of just 30V can punch a hole through it, permanently shorting the Gate to the Source or Drain. Always use ESD-safe practices when handling small-signal MOSFETs.
- Secondary Breakdown / SOA Violation: Unlike BJTs, MOSFETs don't suffer as badly from thermal runaway in switching, but in linear mode (like our amplifier), they have a terrible Safe Operating Area (SOA) at high voltages. Running a power MOSFET in linear mode with high $V_{DS}$ and high $I_D$ will cause localized thermal hotspots and instant destruction.
Testing with a Digital Multimeter (DMM)
You can verify a discrete N-channel MOSFET's health using the Diode Test mode on your DMM. Follow this exact sequence:
- Discharge the Gate: Touch all three pins simultaneously with your finger or a piece of bare wire to bleed off any trapped gate charge.
- Gate Isolation Test: Place the red probe on the Gate and black on Source, then swap. Both readings must show 'OL' (Over Limit / Infinite). Repeat for Gate to Drain. If you read a short or a diode drop here, the gate oxide is blown. Throw it away.
- Body Diode Test: Place the black probe on the Drain and red on the Source. You should read the forward voltage drop of the intrinsic body diode (typically 0.4V to 0.6V). Swap probes (red on Drain, black on Source); it must read 'OL'.
- Channel Turn-On Test: Keep the black probe on the Source. Momentarily touch the red probe to the Gate to charge it with the DMM's internal 3V battery. Move the red probe back to the Drain. The reading should now drop to near 0.0V (the channel is turned ON). Touch a finger across Gate and Source to discharge it; the reading should snap back to 'OL'.
Safe Default Part Numbers
Stop guessing which transistor to pull from the bin. Stock these specific part numbers for your bench:
| Part Number | Type | $V_{DS(max)}$ | $I_{D(max)}$ | Package | Best Application |
|---|---|---|---|---|---|
| BS170 | N-Channel | 60V | 500mA | TO-92 | Small-signal audio, sensor buffering, low-side switching. |
| 2N7000 | N-Channel | 60V | 200mA | TO-92 | Logic-level shifting, very low current preamps. (Lower $I_D$ than BS170). |
| IRF510 | N-Channel | 100V | 5.6A | TO-220 | Linear RF amplifiers, medium-power audio output stages, PWM motor control. |
| CD4007 | CMOS Array | 15V | 10mA | DIP-14 | Contains matched pairs of N and P-channel MOSFETs. Ideal for building discrete differential pairs and current mirrors. |
When designing your next common source stage, start with the BS170 for breadboarding, calculate your bias network assuming the worst-case $V_{GS(th)}$ spread, and always include a trimpot in the source leg for your first prototype. For comprehensive datasheet specifications and thermal derating curves, always consult the ON Semiconductor 2N7000/BS170 family datasheets before finalizing your PCB layout.






