Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Help me calculate minimum SNR required

Status
Not open for further replies.

peethol

Newbie level 4
Joined
Jun 7, 2009
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,323
Hi,

I want to calculate the minimum SNR required,with modulation scheme (BPSK, QPSK or 8PSK) and a block code (LDPC or BCH), so that my system can work?
I've read in an article that NASA uses 11dB as their minimum SNR but I can't find the article anywhere and I can't remember what modulation scheme and FEC scheme they used.
So basically I want to know how would I calculate that minimum SNR value for a system?

Any help would be appreciated :)
 

Re: Minimum SNR required

well to calculate min. SNR for different Digital modulation schemes first u need to know the data rate(Bandwidth) and type of modulation scheme from there u can get Eb/No (standard tables are available for different modulation schemes) after that simply multiply Eb/no with datarate and divide by bandwwidth after that u can add block code gain to get final Min. SNR.
 

Re: Minimum SNR required

first of all you need the know or determine the BER required. Based on that, and knowing the modulation and coding scheme, you can find the minimum SNR required. However, in practical systems they add a margin over this minimum value for tolerance.
 

Re: Minimum SNR required

Hi,

I have a reference on te SNR requrement for different BER requirements for different modulation scheme. a page of 'Degrees of freedom in adaptive modulation' by A. Goldsmith is attached

I have a different issue on this area, I follow the equations as given in the paper, but the graph that i get is not the same ( i calculated for 16-QAM)

Here is the code i run in MATLAB:

k=4; % 4bits/symbol M=2^k >> 16QAM
SNR=[1:1000];SNRdb=10*log(SNR); % SNR/bit

BER4=0.2*exp(-1.6*SNR/(2^k-1));

ber=2*(1-1/sqrt(2^k))/k*erfc(sqrt(1.5*SNR/(2^k-1)));
figure(2);
semilogy(SNRdb,BER4);hold on;
semilogy(SNRdb,ber,'r*');grid on; axis([0 50 10^-8 1]);

BER SNR mygraph.JPG

Can anyone help me with this equation, i just don't know why they are not consistent...

Thank you
 

Attachments

  • BER SNR.JPG
    BER SNR.JPG
    237.4 KB · Views: 173

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top