OFDM Performance Analysis

Measuring OFDM Performance

This section brings everything together: simulate a complete OFDM system over frequency-selective channels and measure BER, throughput, and spectral efficiency.

Definition:

Effective SNR for OFDM

The effective SNR maps the per-subcarrier SNR vector to a single number predicting system performance. The exponential effective SNR mapping (EESM) is:

SNReff=βˆ’Ξ²ln⁑ ⁣(1Nβˆ‘k=0Nβˆ’1eβˆ’SNRk/Ξ²)\text{SNR}_{\text{eff}} = -\beta \ln\!\left(\frac{1}{N}\sum_{k=0}^{N-1} e^{-\text{SNR}_k / \beta}\right)

where Ξ²\beta is a modulation-dependent parameter.

Theorem: OFDM BER as Average of Subcarrier BERs

With perfect channel knowledge and ZF equalization, the average BER of OFDM with MM-QAM is:

PΛ‰b=1Ndataβˆ‘k∈dataPbAWGN(∣H[k]∣2β‹…SNR)\bar{P}_b = \frac{1}{N_{\text{data}}} \sum_{k \in \text{data}} P_b^{\text{AWGN}}(|H[k]|^2 \cdot \text{SNR})

Each subcarrier contributes its own BER based on its effective SNR.

OFDM decomposes the problem into NN independent AWGN channels, each with its own SNR determined by the channel response at that frequency.

Example: OFDM BER Simulation Over Multipath

Simulate OFDM BER with 16-QAM over a 5-tap channel and compare ZF vs MMSE equalization.

OFDM BER Over Multipath Channel

Simulate OFDM BER with different modulation orders and channel models.

Parameters

OFDM Constellation vs SNR

Watch the equalized constellation improve as SNR increases.

Parameters

OFDM Parameters in Wireless Standards

ParameterLTE (20 MHz)5G NR (100 MHz)Wi-Fi 6 (160 MHz)
FFT Size204840962048
Subcarrier Spacing15 kHz30 kHz78.125 kHz
CP Length144/160 samples288 samples0.8/1.6 us
Data Subcarriers120032761960
ModulationUp to 256-QAMUp to 256-QAMUp to 1024-QAM

Common Mistake: Channel Longer Than CP

Mistake:

Simulating with a channel whose delay spread exceeds the CP length without realizing the BER floor it creates.

Correction:

Always check: assert len(h) - 1 <= N_cp. If the channel is too long, either increase the CP or accept the BER floor and model the ISI.

Historical Note: OFDM in Wi-Fi

1999

IEEE 802.11a (1999) was the first mass-market wireless system using OFDM, with 64 subcarriers at 20 MHz bandwidth. Its success demonstrated that OFDM could be implemented cost-effectively with commodity DSPs, paving the way for LTE and 5G adoption.