Amplifier Fundamentals
Voltage gain, current gain, impedances, common-emitter and common-source topologies, small-signal analysis, frequency response, and the gain-bandwidth product
1. Amplifier Parameters
Any two-port amplifier is completely characterized by four quantities: voltage gain, current gain, input impedance, and output impedance. In decibels, voltage gain is\( A_v\,[\text{dB}] = 20\log_{10}|A_v| \), while power gain uses\( G\,[\text{dB}] = 10\log_{10}(P_{out}/P_{in}) \).
The ideal amplifier has infinite \( Z_{in} \) (draws no input current) and zero\( Z_{out} \) (drives any load without loss). Real amplifiers approximate these ideals through careful design.
2. Common-Emitter Amplifier
The common-emitter (CE) configuration is the workhorse BJT amplifier. Using the small-signal hybrid-Ī model, the voltage gain (with emitter bypass capacitor) is\( A_v = -g_m R_C \), where the transconductance\( g_m = I_C / V_T \) (\( V_T \approx 26\,\text{mV} \) at room temperature).
The minus sign in \( A_v = -g_m R_C \) indicates a 180° phase inversion â a hallmark of the common-emitter stage. The input impedance is\( Z_{in} = r_\pi \| R_{B1} \| R_{B2} \) where\( r_\pi = \beta / g_m \).
With an unbypassed emitter resistor \( R_E \), the gain becomes\( A_v \approx -R_C / R_E \), trading gain for improved linearity and temperature stability.
3. Common-Source MOSFET Amplifier
The MOSFET common-source (CS) amplifier is the FET analogue of the CE stage. Using the small-signal model with transconductance \( g_m = 2I_D / (V_{GS} - V_{th}) \), the voltage gain is \( A_v = -g_m (R_D \| r_{ds}) \).
4. Frequency Response & Gain-Bandwidth Product
Every amplifier has a frequency-dependent gain \( A_v(j\omega) \). For a single-pole amplifier, the transfer function is:
The magnitude falls to \( A_0/\sqrt{2} \) (i.e., â3 dB) at the pole frequency\( \omega_p = 1/RC \). At higher frequencies, gain rolls off at â20 dB/decade.
A fundamental trade-off exists: the gain-bandwidth product (GBW) is approximately constant for a given amplifier technology:
Increasing DC gain \( A_0 \) proportionally reduces bandwidth. Negative feedback exploits this: by reducing closed-loop gain by factor \( (1+A_0\beta) \), bandwidth increases by the same factor.
5. Python: Bode Plot & Gain-Bandwidth Product
Plot the frequency response of a single-pole amplifier (Aâ = 60 dB, f_p = 1 kHz), demonstrate the â3 dB bandwidth, and show how feedback trades gain for bandwidth.
Click Run to execute the Python code
Code will be executed with Python 3 on the server