RF Wireless World

Browse articles, tutorials, tools, and vendors.

Power Amplifier (PA) Efficiency Types Explained

By RF Wireless Expert Team

This page delves into the different types of efficiency measurements used for Power Amplifiers (PAs). We’ll cover Drain Efficiency, Power Added Efficiency (PAE), and Overall Efficiency, providing the equations for each.

Drain Efficiency

Drain Efficiency is a key metric that reflects how effectively the PA converts DC power into RF output power. It essentially tells you how much of the DC power is successfully transformed into the signal you want to amplify.

Equation:

Drain Efficiency = Pout / Pdc

Where:

  • Pout is the RF output power.
  • Pdc is the DC power consumed by the amplifier.

Power Added Efficiency (PAE)

Power Added Efficiency (PAE) provides a more nuanced view by considering the input RF power required to drive the amplifier. It measures the increase in output power relative to the DC power consumed, taking into account the input power. This is particularly important as amplifiers aren’t perfectly linear and require input power to operate.

Equation:

Power Added Efficiency = (Pout - Pin) / Pdc

Where:

  • Pout is the RF output power.
  • Pin is the RF input power.
  • Pdc is the DC power consumed by the amplifier.

Overall Efficiency

Overall Efficiency gives the most comprehensive picture, encompassing all power consumed by the amplifier, including both DC power and RF input power. It reflects the complete power conversion effectiveness of the amplifier system.

Equation:

Overall Efficiency = Pout / (Pdc + Pin)

Where:

  • Pout is the RF output power.
  • Pin is the RF input power.
  • Pdc is the DC power consumed by the amplifier.

PA Impairment Addition MATLAB CODE

% Example placeholder - replace with actual code
% This code simulates a basic PA nonlinearity

x = linspace(-1,1,1000); % Input signal
y = x + 0.1*x.^3;        % Add a cubic nonlinearity
plot(x,y);
xlabel('Input');
ylabel('Output');
title('PA Nonlinearity Simulation');

Continue Learning Power Amplifiers (PA) & RF Amplifiers

Explore Specialized Architectures in Amplifiers

Explore Impairments in Amplifiers & Measurements

Keep Reading