본문 바로가기
Microelectronics

[Post #11/38] MOSFET Physical Structure and I-V Characteristics (Large/Small-Signal Models)

by WiseTech_Owl 2026. 5. 20.
반응형
MOSFET Physical Structure and I-V Characteristics (Large/Small-Signal Models) banner

CONTENT_START [HERO: A 3D cross-sectional view of an NMOS transistor showing the Gate-Oxide-Substrate sandwich and the inversion layer.]

📘 Microelectronic Circuits Series — Post #11/38 — 6.1-6.3 (Theory)

The MOSFET (Metal-Oxide-Semiconductor Field-Effect Transistor) is the fundamental building block of modern computing, serving as the digital switch in your CPU and the analog engine in your signal-processing circuits. Understanding the transition from physical device geometry to the I-V equations is the single most important bridge between physics and circuit-level design.

1. Overview & Background — Why this matters

Think of an NMOS transistor like a bridge over a river. The "river" is the current flowing from the Drain (D) to the Source (S). The "bridge" is the conductive channel formed under the Gate (G). Without any voltage on the gate, the river is frozen, and no one can cross. By applying a positive gate voltage (VGS), you begin to thaw the ice, eventually forming a bridge that allows current to flow freely. The height of the bridge is set by the threshold voltage, Vth.

NMOS cross-section (source, drain, gate, oxide, substrate)
Figure 1. NMOS cross-section (source, drain, gate, oxide, substrate)

In analog circuits, we don't just use this as a simple on/off switch; we operate it in the "saturation" region, where the bridge is partially open, allowing us to modulate the current flow precisely with the input signal. This is how we build amplifiers for sensors, communication systems, and high-precision reference circuits.

Historically, the MOSFET was often treated as an ideal device, but as we shrunk features to the nanometer scale, "secondary effects"—like short channels and high electric fields—began to dictate behavior. Mastering these is what separates a student who can solve equations from an engineer who can design a product that actually works in silicon.

[DIAGRAM_1: Cross-section of an NMOS showing the n+ regions, the polysilicon gate, and the oxide layer, plus an IV-curve family highlighting the triode and saturation regions.]

2. How it Works (Physical & Circuit Principles)

The NMOS structure consists of two heavily doped n-type regions (Source and Drain) embedded in a p-type substrate. Between them sits the Gate, separated from the channel region by a very thin layer of silicon dioxide (SiO2), which acts as an insulator. Because of this oxide, no DC current flows into the gate, which gives the MOSFET its defining advantage: nearly infinite input impedance at DC.

When you apply VGS > Vth, you create an electric field that repels holes and attracts electrons to the surface of the p-substrate under the oxide. When enough electrons accumulate, they form an n-type "inversion layer" (the channel). Now, the source and drain are connected by this conductive path. The current flowing through this channel is controlled by the voltage difference between the gate and source.

As you increase VDS while VGS is held constant, the device operates in the triode (linear) region where it behaves like a voltage-controlled resistor. Once VDS reaches the "overdrive" voltage (VGS - Vth), the channel near the drain is "pinched off," and the current saturates. From this point on, the current becomes largely independent of VDS, allowing us to use the transistor as a current source.

3. Key Design Equations

I_D = \mu_n C_{ox} \frac{W}{L} \left[ (V_{GS} - V_{th})V_{DS} - \frac{V_{DS}^2}{2} \right]

where μn is electron mobility, Cox is oxide capacitance per unit area, W/L is the device aspect ratio, and this equation defines the Triode Region.

I_D vs V_DS curves parameterized by V_GS (triode, saturation, breakdown)
Figure 2. I_D vs V_DS curves parameterized by V_GS (triode, saturation, breakdown)
I_D = \frac{1}{2} \mu_n C_{ox} \frac{W}{L} (V_{GS} - V_{th})^2 (1 + \lambda V_{DS})

where λ is the channel-length modulation parameter, accounting for the slight increase in current as VDS increases in saturation.

g_m = \frac{\partial I_D}{\partial V_{GS}} = \sqrt{2 \mu_n C_{ox} \frac{W}{L} I_D} = \frac{2 I_D}{V_{GS} - V_{th}}

where gm (transconductance) represents the gain sensitivity, describing how effectively the gate voltage controls the output current.

r_o = \frac{1}{\lambda I_D} \approx \frac{V_A}{I_D}

where ro is the output resistance of the transistor, and VA is the Early voltage (or inverse of λ) representing how flat the saturation curve is.

4. Worked Numerical Example

Consider an NMOS transistor in a standard 0.18 μm CMOS process with μnCox = 200 μA/V², Vth = 0.5 V, and a width-to-length ratio W/L = 10 μm / 0.5 μm = 20. We apply VGS = 1.0 V and VDS = 1.0 V.

First, check the region of operation: VGS - Vth = 1.0 - 0.5 = 0.5 V. Since VDS (1.0 V) is greater than VGS - Vth (0.5 V), the device is in saturation.

Calculate ID: ID = 0.5 × 200 μA/V² × 20 × (0.5 V)² = 100 × 0.25 mA = 25 μA.

If the device has a λ = 0.1 V-1, the actual current including channel-length modulation is: ID = 25 μA × (1 + 0.1 × 1.0) = 27.5 μA. The 2.5 μA increase is the result of the channel "shortening" as the depletion region at the drain grows.

[DIAGRAM_2: Small-signal model showing the dependent current source g_m·v_gs in parallel with output resistor r_o.]

5. Design Considerations & Trade-offs

  • Overdrive Voltage: Higher VGS - Vth increases gm (good for speed/gain) but consumes more power and reduces the available output swing.
  • Channel Length (L): Increasing L increases the output resistance ro (better gain), but it makes the transistor slower due to increased parasitic gate capacitance.
  • Width (W): Increasing W boosts gm and ID, but it also increases the load on the previous stage, potentially slowing down the entire system.
  • Velocity Saturation: In short-channel devices, carriers reach a speed limit; they no longer obey the square-law (VGS2) but become linear with VGS, significantly reducing the achievable gain.

6. Where it Shows Up in Practice

This model is the basis for the input stage of the TI OPA340 op-amp, where gm determines the open-loop gain. It is also used in high-speed SERDES (Serializer/Deserializer) circuits in Apple’s M-series SoCs, where minimizing ro and managing velocity saturation is critical for 10+ Gbps data rates. Furthermore, threshold voltage trimming in Samsung 5-nm FinFETs relies on this exact physical characterization to ensure consistent ID across millions of transistors on a single die.

7. Common Pitfalls & Debugging Tips

  • ⚠️ Forgetting the Region: Always calculate VDS,sat = VGS - Vth before selecting an equation. Assuming saturation when the device is in triode is the most common cause of error in lab simulations.
  • ⚠️ Ignoring λ: For precision analog circuits, λ is never zero. Neglecting it leads to massive errors in calculating the gain (Av = -gmro).
  • ⚠️ Subthreshold Leakage: Below Vth, the current isn't zero; it’s exponential. If your low-power design fails, check if the "off" transistors are leaking due to an overly low Vth.

8. Exam & Interview Hot Spots

  • 💡 "Draw the small-signal model and explain why ro is in parallel with the current source." (It models the finite output impedance due to channel modulation).
  • 💡 "How does gm change if you double the current while keeping W/L constant?" (It increases by √2).
  • 💡 "Define 'pinch-off' in your own words." (The point where the channel vanishes at the drain end, causing the current to become independent of VDS).

9. Key Takeaways

  • The MOSFET is a voltage-controlled current source in saturation and a voltage-controlled resistor in triode.
  • Vth acts as the gatekeeper; until VGS exceeds it, the channel remains non-conductive.
  • The square-law model is a simplification; always watch for velocity saturation in modern, short-channel (sub-0.18 μm) devices.
  • Transconductance gm is your primary tool for signal amplification, while output resistance ro determines the signal's attenuation.
  • Small-signal models allow us to linearize non-linear device behavior to design amplifiers efficiently.

Educational content only. Always verify with datasheets and SPICE simulation before production design.

반응형