Channel Visualization

Seeing the Channel

Visualizing channel responses—impulse response, power delay profile, Doppler spectrum, and scattering function—provides intuition that numbers alone cannot convey. This section builds publication-quality channel visualizations.

Definition:

Power Delay Profile

The power delay profile (PDP) gives the average power at each excess delay τ\tau:

P(τ)=E[h(τ)2]P(\tau) = E[|h(\tau)|^2]

Key statistics derived from the PDP:

  • Mean excess delay: τˉ=kPkτkkPk\bar{\tau} = \frac{\sum_k P_k \tau_k}{\sum_k P_k}
  • RMS delay spread: τrms=τ2τˉ2\tau_{\text{rms}} = \sqrt{\overline{\tau^2} - \bar{\tau}^2}
def pdp_stats(delays, powers):
    total = np.sum(powers)
    mean_delay = np.sum(delays * powers) / total
    rms_delay = np.sqrt(np.sum(delays**2 * powers)/total - mean_delay**2)
    return mean_delay, rms_delay

Definition:

Scattering Function

The scattering function S(τ,ν)S(\tau, \nu) describes the channel's power distribution in both delay and Doppler dimensions:

S(τ,ν)=H(τ,ν)2S(\tau, \nu) = |H(\tau, \nu)|^2

where H(τ,ν)H(\tau, \nu) is the delay-Doppler spreading function. The PDP is the Doppler-marginal, and the Doppler spectrum is the delay-marginal of S(τ,ν)S(\tau, \nu).

Example: Generating a 3GPP TDL Channel

Implement the 3GPP TDL-A channel model and visualize its impulse response and power delay profile.

Channel Impulse Response Viewer

Visualize channel impulse responses, power delay profiles, and frequency responses for different channel models.

Parameters

Wireless Channel Modeling Overview

Wireless Channel Modeling Overview
Overview of wireless channel effects: path loss, shadow fading, and multipath fading at different spatial scales.

Quick Check

If the RMS delay spread is 100 ns, what is the approximate coherence bandwidth?

200 kHz

2 MHz

20 MHz

100 MHz

Key Takeaway

The power delay profile and Doppler spectrum are the two fundamental channel characterizations. They determine the coherence bandwidth (Bc1/5τrmsB_c \approx 1/5\tau_{\text{rms}}) and coherence time (Tc0.423/fdT_c \approx 0.423/f_d), which dictate OFDM system design parameters.

Power Delay Profile

The average power as a function of excess delay, showing the multipath structure of the channel.

RMS Delay Spread

The second central moment of the power delay profile; characterizes the temporal dispersion of the channel.