Electronic – Why does quantization noise in ADC have such a wide bandwidth

adc

In the slide shown below by red arrow we have quantization noise up to fs/2, but why?

From Nyquist fs=fb/2 for good sampling but why is there noise here noise up to fs/2?

What is the logic ?

enter image description here

Best Answer

Quantization is a non-linear process and in general produces an output waveform with lots of harmonics which in digital domain would alias back to frequency region between \$[-\frac{f_s}{2},\frac{f_s}{2}]\$. Thus the spectrum of quantization "error" could cover the entire Nyquist band. Note that quantization error is a deterministic signal which can be calculated from the input signal and the quantizer characteristics and hence does not behave as noise at all.
For convenience, we can model the quantization error as a white noise. For this assumption to hold, we need to ensure that the input signal is "well-behaved". These assumptions include:

  1. The input signal should be able to cover the entire range of the quantizer.
  2. The input signal changes sufficiently between sample to sample so that its position within the quantization interval is random.
  3. The input signal frequency should not be harmonically related to the sampling frequency.

Essentially, these assumptions make sure that the quantization error gets a different value from sample to sample and can be considered as random (uncorrelated from sample to sample) and hence treated as 'white noise' with flat power spectral density (PSD). If these assumptions are not satisfied quantization error power will not be flat.

This can be easily simulated in MATLAB. For instance, consider an input sinusoid of frequency \$f = \frac{19}{4096}f_s\$ sampled at sampling frequency \$f_s = 1MHz\$. The quantizer rounds the sampled signal to the nearest 2 decimal position (\$\Delta = 0.01\$). Then, the quantization error can be seen to be quite random, as shown below: enter image description here

enter image description here

enter image description here

The PSD (one-sided) of the quantization error from white noise assumption comes to be \$P = 10*log10(2*\frac{\Delta^2}{12}) = 10*log10(2*\frac{0.01^2}{12}) = -107dB/Hz\$ is shown as orange line above. We see that the white noise assumption is holding quite well.

Consider another case where signal frequency, \$f = f_s/8 = 125kHz\$. Now the white noise assumption is not valid and the noise power is concentrated at \$\frac{3f_s}{4},\frac{f_s}{2}\$. This is expected since quantization error is now a periodic signal. All this is happening as assumption number 3 is not satisfied:

enter image description here enter image description here enter image description here Just to clarify, the PSD plots is showing the PSD of the output signal after quantization and the biggest tones in both the plots is the input signal.