-
sdr.awgn_capacity(snr: ArrayLike, bandwidth: float | None =
None
) NDArray[float_] Calculates the capacity of an additive white Gaussian noise (AWGN) channel.
- Parameters:¶
- Returns:¶
The capacity
of the channel in bits/2D, or bits/s if bandwidth was specified.
Notes¶
The inputs to the AWGN channel are
and the outputs are . The capacity of the AWGN channel iswhere
is the average signal power and is the complex noise power. The units are bits/2D, which is equivalent to bits per complex channel use.If the channel bandwidth
is specified, the channel capacity isExamples¶
The capacity monotonically decreases as the SNR decreases. In the limit as the SNR approaches 0 (
dB), the capacity approaches 0.In [1]: snr = np.linspace(-20, 20, 100); \ ...: C = sdr.awgn_capacity(snr) ...: In [2]: plt.figure(figsize=(8, 4)); \ ...: plt.plot(snr, C); \ ...: plt.xlabel("Signal-to-noise ratio (dB), $S/N$"); \ ...: plt.ylabel("Capacity (bits/2D), $C$"); \ ...: plt.title("Capacity of the AWGN Channel"); \ ...: plt.grid(True); \ ...: plt.tight_layout() ...:
At capacity, which occurs when
, is related to byWhen viewing the capacity as a function of
, the capacity approaches 0 as approaches -1.59 dB. This is the absolute Shannon limit.In [3]: ebn0 = sdr.snr_to_ebn0(snr, C) In [4]: plt.figure(figsize=(8, 4)); \ ...: plt.semilogy(ebn0, C); \ ...: plt.xlabel("Bit energy to noise PSD ratio (dB), $E_b/N_0$"); \ ...: plt.ylabel("Capacity (bits/2D), $C$"); \ ...: plt.title("Capacity of the AWGN Channel"); \ ...: plt.grid(True, which="both"); \ ...: plt.tight_layout() ...: