Sunday, 13 April 2014

digital logic - Signal to Noise ratio problem


A 200mv peak to peak sinusoidal signal is applied to an ideal 12 bit A/D converter, for which Vref(v p-p full scale) is 5v. Find signal to noise ratio.


This is a problem worked out by one of my lecturer and the answer seems to be 46dB. But I am confused on his method. Is there anyone who could explain me how the result was worked out?



Answer



If $N$ is the number of bits then your input signal range is divided into quantization intervals of size



q=Vref2N


The maximum quantization error is $q/2$ and it is usually assumed that the quantization error is uniformly distributed between $-q/2$ and $q/2$. So the PDF of the quantization error is constant between $-q/2$ and $q/2$ with height $1/q$. With this assumption the quantization noise power is


Pq=1qq/2q/2x2dx=q212=V2ref1222N


The signal power is given by


Px=V2max2 with Vmax=100mV


The factor $1/2$ in the signal power comes from the fact that the input is sinusoidal, i.e. its power is given by half its maximum value. Note that the maximum value is the amplitude which is half the peak-to-peak value. Putting everything together we get


SNR=10logPxPq=10log6V2max22NV2ref==10log6V2maxV2ref+10log22N=10log6(0.1)252+N20log2==26.2+126.02=46dB


EDIT: To see how the $1.76$dB pop up we now use $V_{pp}$ instead of $V_{max}$, where $V_{pp}=2V_{max}$ is the peak-to-peak input voltage. The SNR can then be written as


SNR=10log3V2pp2V2ref+10log22N==10logV2ppV2ref+10log32+N20log2==10logV2ppV2ref+1.76+6.02N


So if we use the maximum input range, i.e. $V_{pp}=V_{ref}$ we get the formula that was mentioned in the question.



No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...