- Authors

- Name
- Youngju Kim
- @fjvbn20031
Semiconductor Physics & Devices Complete Guide: From Energy Bands to FinFET
For electronics and electrical engineering students, semiconductor physics is an essential foundation. This guide systematically covers everything from quantum mechanics basics to the latest GAA transistors.
1. Quantum Mechanics Fundamentals
To understand semiconductor behavior, we need the language of quantum mechanics, not classical mechanics.
Wave-Particle Duality
de Broglie proposed that particles also have wave properties. The wavelength of an electron is:
where is Planck's constant and is momentum. At the atomic scale, electrons behave like waves, so classical mechanics cannot describe electron behavior in semiconductors.
The Schrödinger Equation
The time-independent Schrödinger equation describes the energy states of electrons in semiconductors:
The square of the wavefunction , the solution to this equation, represents the probability density of finding an electron at a specific location.
Energy Quantization
The energy of an electron inside an infinite potential well (quantum well) is discrete, not continuous:
This principle is the fundamental reason for energy band formation in semiconductors.
Pauli Exclusion Principle
No two electrons can occupy the same quantum state. As a result, when N atoms bond together, each energy level splits into N separate levels, ultimately forming energy bands.
2. Crystal Structure and Energy Bands
Silicon's Diamond Cubic Structure
Silicon (Si) has a diamond cubic structure. Each Si atom forms covalent bonds with 4 neighboring atoms, based on an FCC (face-centered cubic) lattice.
The lattice constant is Å, and this periodic potential determines the energy band structure.
Energy Band Formation
When N atoms bond together, each discrete energy level splits into N closely spaced levels. When the number of atoms is very large (~), these levels become effectively continuous energy bands.
- Conduction Band: Energy region where electrons can move freely
- Valence Band: Energy region of electrons participating in bonding
- Energy Band Gap : Forbidden region between the two bands
Direct vs. Indirect Bandgap
| Semiconductor | Bandgap (eV) | Type | Key Applications |
|---|---|---|---|
| Si | 1.12 | Indirect | CPU, Memory |
| Ge | 0.67 | Indirect | High-frequency devices |
| GaAs | 1.42 | Direct | LED, Laser |
| GaN | 3.4 | Direct | High-power LED |
| SiC | 2.86 | Indirect | Power devices |
In direct bandgap semiconductors (GaAs, GaN), photons are efficiently emitted during electron-hole recombination. Si, being indirect bandgap, has poor light emission efficiency and is unsuitable for LEDs.
Effective Mass
Electrons in a crystal experience a periodic potential and have an effective mass different from the free electron mass :
In Si, the electron effective mass is and the hole effective mass is .
3. Electrical Properties of Semiconductors
Intrinsic Semiconductor
In a pure semiconductor, electron concentration equals hole concentration :
is the intrinsic carrier concentration, which depends strongly on temperature:
For Si at room temperature (300 K), cm.
Fermi-Dirac Distribution
The probability that an energy state is occupied by an electron:
is the Fermi level. In an intrinsic semiconductor, it is located near the middle of the bandgap.
Mass Action Law
At thermal equilibrium, regardless of doping:
This relationship is a core tool in semiconductor analysis.
Conduction Mechanisms
Drift: Carrier motion driven by electric field :
Diffusion: Carrier motion driven by concentration gradient:
Einstein relation:
4. Doping and Extrinsic Semiconductors
n-type Semiconductor: Donor Doping
Doping Si with Group V elements (phosphorus P, arsenic As, antimony Sb) introduces extra electrons that move into the conduction band.
When donor concentration :
The Fermi level shifts toward the conduction band:
p-type Semiconductor: Acceptor Doping
Doping with Group III elements (boron B, aluminum Al, gallium Ga) makes holes the majority carriers.
When acceptor concentration :
Python: Carrier Concentration Calculation
import numpy as np
import matplotlib.pyplot as plt
# Silicon intrinsic carrier concentration (as function of temperature)
k_B = 8.617e-5 # eV/K
T = np.linspace(200, 600, 400) # K
E_g = 1.12 # eV (Si)
N_c = 2.8e19 # cm^-3 effective density of states
N_v = 1.04e19 # cm^-3
n_i = np.sqrt(N_c * N_v) * np.exp(-E_g / (2 * k_B * T))
# n-type semiconductor (N_D = 1e17 cm^-3)
N_D = 1e17
n_n = N_D * np.ones_like(T)
p_n = n_i**2 / N_D
plt.figure(figsize=(10, 6))
plt.semilogy(T, n_i, 'k-', label='Intrinsic ni', linewidth=2)
plt.semilogy(T, n_n, 'b--', label='n-type: n (N_D=1e17)', linewidth=2)
plt.semilogy(T, p_n, 'r--', label='n-type: p (minority)', linewidth=2)
plt.xlabel('Temperature (K)')
plt.ylabel('Carrier Concentration (cm^-3)')
plt.title('Si Carrier Concentration vs Temperature')
plt.legend()
plt.grid(True, alpha=0.3)
plt.tight_layout()
plt.show()
5. p-n Junction
The heart of semiconductor devices. Every semiconductor device analysis builds upon the p-n junction.
Depletion Region Formation
When p-type and n-type semiconductor are brought into contact:
- Concentration gradient causes electrons to diffuse n→p and holes to diffuse p→n
- Ionized donors (+) and acceptors (-) remain, forming a space charge region
- The resulting internal electric field blocks further diffusion → thermal equilibrium
Built-in Potential
For Si with cm, V.
Depletion Width
- : depletion depth on n-side, : depletion depth on p-side
- Charge neutrality:
Forward and Reverse Bias
Forward bias: External voltage counteracts the built-in potential → current increases exponentially:
Reverse bias: Depletion region widens; only minority carrier current flows → very small current until breakdown.
Breakdown Mechanisms
- Zener breakdown: Band-to-band tunneling under strong electric field. Occurs at high doping concentrations
- Avalanche breakdown: Carrier multiplication via impact ionization. Occurs at lower doping concentrations
6. Bipolar Junction Transistor (BJT)
NPN BJT Structure and Operation
An NPN BJT consists of three semiconductor regions: n-type, p-type, n-type:
- Emitter: Heavily doped, injects carriers
- Base: Very thin (hundreds of nm to a few μm), p-type
- Collector: Wide region, lightly doped
In forward active mode, the emitter-base is forward biased, and the base-collector is reverse biased:
Current gain typically ranges from 50 to 500.
Transit Frequency
High-speed BJTs achieve GHz (HBT, SiGe BiCMOS).
7. MOS Capacitor and MOSFET
MOS Structure
The Metal-Oxide-Semiconductor structure is the foundation of modern VLSI:
- Gate (Metal/Poly-Si) / Gate Oxide (SiO2 or High-k) / Semiconductor (Si)
Three Operating Modes
For NMOS with p-type Si substrate:
- Accumulation: , holes accumulate at the surface
- Depletion: , depletion region forms at the surface
- Inversion: , electron channel forms at the surface
Threshold Voltage
- : Flatband voltage
- : Fermi potential
- : Depletion charge
- : Oxide capacitance per unit area
MOSFET Drain Current Model
Linear region ():
Saturation region ():
is the channel length modulation coefficient, and is the channel width-to-length ratio.
8. CMOS Technology
CMOS Inverter
A CMOS inverter connects PMOS and NMOS in series as a basic logic gate:
- Input LOW: PMOS ON, NMOS OFF → Output HIGH
- Input HIGH: PMOS OFF, NMOS ON → Output LOW
- Ideally zero static power dissipation
CMOS Power Dissipation
Dynamic power:
- : activity factor, : load capacitance, : clock frequency
Static power (leakage): Subthreshold current, BTBT (band-to-band tunneling), etc.
Dennard Scaling
When channel length is scaled by :
- Area decreases by
- Speed improves by factor
- Power density: Theoretically constant
However, below 10 nm, Dennard scaling has broken down and power density has surged, causing the "dark silicon" problem.
FinFET (3D Transistor)
Introduced at the 22 nm node, FinFET forms the channel as a 3D fin structure:
- Gate wraps around 3 sides of the channel → greatly reduced leakage current
- Suppresses short-channel effects (SCE)
- Higher drive current for the same footprint area
GAA (Gate-All-Around) FET
The next-generation structure, introduced/being introduced in Samsung 3 nm and TSMC 2 nm processes:
- Gate completely surrounds the channel 360 degrees (nanosheet/nanowire)
- Better electrostatic control than FinFET
- CFET (Complementary FET): NMOS/PMOS stacked vertically
9. Semiconductor Fabrication
Process Flow Overview
Raw Si → Polysilicon → CZ Growth → Wafer → Epitaxy
→ Lithography → Etch → Ion Implantation → Anneal → Deposition (CVD/PVD)
→ CMP → Metal Interconnect → Packaging → Test
Lithography
Modern lithography advances by shortening the light source wavelength:
- DUV (Deep Ultraviolet): 193 nm ArF laser (current mainstream, with multi-patterning)
- EUV (Extreme Ultraviolet): 13.5 nm source, ASML NXE/EXE systems
- EUV single patterning enables sub-3 nm features
Resolution: (Rayleigh criterion)
Ion Implantation
Dopant atoms are accelerated as an ion beam and implanted into silicon:
- Energy: tens to thousands of keV
- Dose: ~ cm
- Post-implant annealing (thermal processing) repairs crystal damage
Key Deposition Processes
- Thermal Oxidation: Grows SiO2 gate oxide
- CVD (Chemical Vapor Deposition): Polycrystalline Si, nitride films, Low-k dielectrics
- ALD (Atomic Layer Deposition): High-k dielectrics (HfO2), uniform ultra-thin films
- PVD/Sputtering: Metal interconnects (W, Cu, Ru)
CMP (Chemical Mechanical Polishing)
CMP planarizes multi-layer structures using a slurry (abrasive liquid) and polishing pad, achieving flatness at the nanometer level. CMP step count increases with the complexity of 3D structures.
Leading-Edge Process Nodes (2026)
| Company | Current Node | Next Generation |
|---|---|---|
| TSMC | 3 nm (N3E), 2 nm (N2) | 1.4 nm (A14) |
| Samsung | 3 nm GAA, 2 nm | 1.4 nm |
| Intel | Intel 3 (~3 nm) | Intel 18A |
10. Optoelectronic Devices
LED (Light Emitting Diode)
In direct bandgap semiconductors (GaAs, GaN, InGaAs) under forward bias:
- Electrons recombine from the conduction band to the valence band
- A photon is emitted with energy equal to
Emission wavelength: (nm)
High-efficiency blue LEDs are implemented with InGaN/GaN structures (Shuji Nakamura, Nobel Prize 2014).
Solar Cell
Operation of a p-n junction solar cell:
- Photon absorption → electron-hole pair generation
- Built-in potential drives electrons to the n-side and holes to the p-side
- Current is supplied to the external circuit
Single-junction Si solar cell theoretical efficiency limit (Shockley-Queisser): ~29% Multi-junction III-V solar cells: over 47% achieved (concentrator type)
CCD and CMOS Image Sensors
- CCD: Transfers charge in a bucket-brigade fashion. High image quality, high power consumption
- CMOS sensor: Each pixel contains active circuitry. Low power, fast readout, dominant in smartphones
11. Latest Semiconductor Trends
Limits of Moore's Law
Moore's Law (doubling of transistor count every two years) is approaching physical limits:
- Quantum tunneling intensifies at gate lengths of a few nm
- Heat dissipation limits (power density in the hundreds of W/cm²)
- Exponentially increasing process costs
3D Integration
HBM (High Bandwidth Memory): DRAM dies stacked vertically, connected by TSV (Through-Silicon Via) → bandwidth of several TB/s. Chiplet: Separate dies manufactured by function and integrated in a single package (adopted by AMD, Intel, Apple).
GaN Power Devices
Gallium nitride's wide bandgap ( eV) and high electron mobility:
- Optimal for high-voltage, high-frequency power conversion
- GaN-on-SiC, GaN-on-Si substrates
- Spreading to 65 W+ USB-PD chargers and server PSUs
AI-Dedicated Semiconductors
- NPU (Neural Processing Unit): Accelerates matrix operations, low-power inference
- TPU (Tensor Processing Unit): Designed by Google, systolic array architecture
- HBM + Compute Die: Core architecture of AI accelerators (NVIDIA H100, AMD MI300)
12. Key Formula Summary
| Item | Formula |
|---|---|
| Intrinsic carrier concentration | |
| Mass action law | |
| Built-in potential | |
| Diode current | |
| MOSFET saturation current | |
| Dynamic power |
Quiz
Q1. Why is silicon unsuitable for LEDs?
Answer: Because silicon is an indirect bandgap semiconductor.
Explanation: In an indirect bandgap material, electron-hole recombination requires a phonon to conserve momentum, making photon emission very unlikely. Most energy is dissipated as heat instead. By contrast, direct bandgap semiconductors like GaAs and GaN undergo recombination without a change in momentum, efficiently emitting photons. This is why virtually all practical LEDs use III-V compound semiconductors rather than silicon.
Q2. What short-channel effects (SCE) occur when the MOSFET channel length is reduced?
Answer: Several short-channel effects emerge.
Explanation: The most important are Drain-Induced Barrier Lowering (DIBL), threshold voltage roll-off (Vth decreases as channel shortens), subthreshold slope degradation (the SS increases beyond the 60 mV/decade ideal limit), and increased gate oxide tunneling current. These effects degrade transistor performance and increase leakage. They are the primary motivation for transitioning from planar MOSFETs to FinFET and then to GAA structures as technology nodes shrink.
Q3. Explain the mechanism by which the built-in potential forms at a p-n junction.
Answer: It forms from the balance between diffusion driven by carrier concentration gradients and the drift caused by the resulting internal electric field.
Explanation: When p-type and n-type semiconductors are brought into contact, electrons diffuse from n to p and holes diffuse from p to n due to concentration gradients. The ionized donor (+) and acceptor (-) ions left behind form a space charge region. The electric field generated by this space charge opposes further diffusion. At thermal equilibrium, when the diffusion current and drift current exactly balance, the resulting potential difference is the built-in potential.
Q4. Why is static power dissipation ideally near zero in CMOS circuits?
Answer: Because PMOS and NMOS operate complementarily, there is no direct current path from VDD to GND in steady state.
Explanation: In a CMOS inverter, when the input is HIGH, only the NMOS is ON and the PMOS is OFF. When the input is LOW, only the PMOS is ON and the NMOS is OFF. Therefore, in the ideal case, there is no direct current path between the supply (VDD) and ground (GND), and static power dissipation is essentially zero. In real devices, subthreshold leakage current and gate tunneling current exist, but these do not significantly compromise the low-power advantage of CMOS at larger nodes.
Q5. Why does FinFET suppress short-channel effects better than planar MOSFET?
Answer: Because the gate controls the channel from multiple sides, greatly improving electrostatic control.
Explanation: In a planar MOSFET, the gate applies an electric field to only one side (top) of the channel. In a FinFET, the gate wraps around 3 sides of the fin-shaped channel. This superior "electrostatic control" means the drain's electric field is effectively shielded by the gate field, greatly reducing DIBL and Vth roll-off. GAA (Gate-All-Around) takes this further by surrounding the channel 360 degrees, enabling continued scaling below the FinFET limit.
References
- Sze, S.M. & Ng, K.K. — Physics of Semiconductor Devices (3rd Ed.), Wiley
- Neamen, D.A. — Semiconductor Physics and Devices: Basic Principles (4th Ed.), McGraw-Hill
- Streetman, B.G. & Banerjee, S. — Solid State Electronic Devices, Pearson
- MIT OCW 6.012 — Microelectronic Devices and Circuits (Prof. Jesús del Alamo)
- TSMC Technology Overview — tsmc.com/technology
- ITRS/IRDS Roadmap — irds.ieee.org
If you found this post helpful, check out the next in the series: "Analog Circuit Design Complete Guide."