An amplifier class defines how its output transistors are biased and conduct current relative to the input signal cycle, directly dictating the trade-off between audio fidelity and power efficiency. In a real circuit, the chosen class changes your power supply sizing, physical heatsink mass, total harmonic distortion (THD), and battery life. The most common confusion among hobbyists is assuming "Class D" means "Digital"—it is actually an analog switching topology using pulse-width modulation (PWM), and the letters A through D simply reflect chronological invention, not a quality grade.
The Core Amplifier Classes Explained
To select the right topology, you need to understand the conduction angle—the portion of the 360-degree input waveform where the output transistors are actively conducting current.
- Class A (360° Conduction): The output devices are biased so they conduct current continuously, even with no audio signal present. This eliminates crossover distortion entirely, yielding the lowest THD (often <0.01%). However, it is terribly inefficient, capping out at a theoretical maximum of 25% to 30% efficiency for a standard resistive load.
- Class B (180° Conduction): Uses a push-pull configuration where one transistor handles the positive half of the waveform and the other handles the negative. They are biased exactly at cutoff. Theoretical efficiency reaches 78.5%, but the dead zone where one transistor turns off and the other turns on creates severe crossover distortion, making it unusable for high-fidelity audio.
- Class AB (>180° Conduction): The practical compromise. Transistors are biased slightly above cutoff, meaning both conduct for a small overlap around the zero-crossing point. This eliminates the worst of the crossover distortion while maintaining a respectable 50% to 65% real-world efficiency. According to Electronics Tutorials, this remains the standard for traditional linear audio amplification.
- Class C (<180° Conduction): The transistor conducts for less than half the cycle. Efficiency can exceed 80%, but the output is heavily distorted and missing chunks of the waveform. It is strictly used in RF applications with tuned LC tank circuits to reconstruct the sine wave.
- Class D (Switching): Output transistors operate strictly as switches (fully on or fully off), toggling at high frequencies (typically 300kHz to 600kHz) to create a PWM representation of the audio signal. An LC low-pass filter reconstructs the analog waveform at the speaker. Efficiency routinely exceeds 90%.
Worked Example: Thermal Math for a 50W Output
Let us calculate the physical reality of driving 50W RMS into an 8-ohm speaker using Class AB versus Class D. This dictates your hardware footprint.
Scenario 1: Class AB (e.g., LM3886 IC)
While the theoretical peak efficiency of Class AB is 78.5%, continuous music signals average around 50% efficiency.
- Power Drawn from Supply: 100W
- Power Dissipated as Heat: 50W
- Required Thermal Resistance (Junction-to-Ambient): 100°C / 50W = 2.0°C/W
Subtracting the IC's internal junction-to-case resistance (typically ~1.0°C/W), your external heatsink must have a thermal rating of 1.0°C/W or lower. This requires a massive, heavy extruded aluminum fin array, likely costing $20-$40 and taking up significant enclosure volume.
Scenario 2: Class D (e.g., TPA3116D2 IC)
Modern Class D amps operate at roughly 90% efficiency under the same continuous music conditions.
- Power Drawn from Supply: 55.5W
- Power Dissipated as Heat: 5.5W
- Required Thermal Resistance (Junction-to-Ambient): 100°C / 5.5W = 18.1°C/W
A thermal resistance of 18.1°C/W is easily achieved by the copper pour on the PCB itself, or with a tiny $1 clip-on surface-mount heatsink. The physical size and cost of the thermal management drop by an order of magnitude.
Where You Meet These Classes in Practice
Understanding where each class dominates helps you reverse-engineer commercial gear and set realistic expectations for your builds.
- Class A: Boutique guitar pedals (like Klon Centaur clones), high-end studio microphone preamps, and extreme audiophile headphone amps (e.g., Pass Labs). You meet it where heat and power draw are secondary to absolute signal purity.
- Class AB: Traditional AV receivers, powered studio monitors (like older KRK Rokits), and the solid-state power sections of guitar amplifiers. It is the legacy workhorse of mains-powered audio.
- Class C: Ham radio transmitters, RF oscillators, and induction heaters. Never use this for audio.
- Class D: Bluetooth portable speakers, active subwoofers, soundbars, and 12V car audio. As noted by Texas Instruments' audio amplifier portfolio, Class D has entirely conquered the mobile and high-power compact audio markets due to its thermal advantages.
Decision Tree: Picking Your Topology and IC
Use this decision matrix to terminate your design phase and select a concrete part number for your bill of materials.
| Application Constraint | Recommended Class | Concrete IC Pick / Module |
|---|---|---|
| Battery-powered, portable, or tight thermal enclosure | Class D | MAX98357A (I2S input, 3.2W) or TPA3116D2 (up to 50W) |
| Mains-powered desktop amp, subwoofer, or high-power PA | Class D | TPA3255 (up to 315W per channel, ultra-low THD) |
| Mains-powered studio monitors, legacy repair, or specific warm clipping desired | Class AB | LM3886 (68W continuous, excellent thermal protection) |
| Studio mic preamp, discrete guitar pedal, cost/heat are irrelevant | Class A | Discrete BJTs (e.g., 2N3904/2N3906) or LME49720 op-amps biased heavily |
| RF transmission, ham radio, Tesla coil driver | Class C | Discrete MOSFETs (e.g., IRFP460) with tuned LC tank |
Troubleshooting and Common Pitfalls
Why is my Class D amp causing noise on my Arduino/ESP32 ADC or I2C bus?
Cause: Class D amplifiers generate massive electromagnetic interference (EMI) from their high-frequency PWM switching (often 400kHz+) and the fast dV/dt edges on the speaker output traces.
Fix: Ensure your Class D module has a proper LC output filter (ferrite beads and capacitors) installed directly at the speaker terminals. Physically separate the audio output traces from your microcontroller's low-voltage GPIO/I2C lines by at least 2 inches, and never run them parallel to each other. Use a star-ground topology to prevent switching noise from injecting into your MCU's ground reference.
My Class AB amplifier IC (LM3886) keeps hitting thermal shutdown during bass transients.
Cause: Insufficient heatsink mass, poor thermal interface material (TIM) application, or the quiescent bias current is set too high.
Fix: Verify the thermal pad between the IC and the heatsink is making full contact with a thin, even layer of thermal paste. If you are using a discrete Class AB design, measure the voltage across the emitter resistors to ensure the bias current isn't exceeding 50mA per transistor at idle. Finally, add a Zobel network (typically a 10Ω resistor in series with a 0.1µF capacitor) across the speaker output to prevent high-frequency oscillation that invisibly generates heat.
Can I wire two Class D amplifier boards in parallel (bridged) to get double the power?
Cause: Attempting to bridge standard single-ended Class D boards.
Fix: Do not bridge standard Class D boards unless the datasheet explicitly supports a PBTL (Parallel Bridge-Tied Load) configuration. Because Class D outputs are actively driven switching nodes (not just passive linear outputs), tying two independent switching nodes together will cause cross-conduction, instantly shorting the outputs and destroying the MOSFETs. Buy a single chip designed for higher power (like the TPA3255 in bridge mode) instead.






