Electronic – the core concept of SINR or SNR model

interferencesignal-to-noise

As we all know, there is a relationship between SINR or SNR and BER. Specifically, when SINR/SNR is higher, the BER is lower. And there are lots of work on modeling the complex SINR/SNR.

SNR

Signal-to-noise ratio (abbreviated SNR or S/N) is a measure used in science and engineering that compares the level of a desired signal to the level of background noise. It is defined as the ratio of signal power to the noise power, often expressed in decibels. A ratio higher than 1:1 (greater than 0 dB) indicates more signal than noise. While SNR is commonly quoted for electrical signals, it can be applied to any form of signal (such as isotope levels in an ice core or biochemical signaling between cells).

SINR

Analogous to the SNR used often in wired communications systems, the SINR is defined as the power of a certain signal of interest divided by the sum of the interference power (from all the other interfering signals) and the power of some background noise. If the power of noise term is zero, then the SINR reduces to the signal-to-interference ratio (SIR).

two of them are from the wiki.

While, there is still a question that
"What is the core concept of SINR/SNR?"

It is clear that when the signal is higher than the interference plus the noise, the probability of decoding signal successfully is higher. But, what is the root component that supports this?

Until now, the "Capture Effect" is the only concept that I found can explain this.

The capture effect is defined as the complete suppression of the weaker signal at the receiver limiter (if it has one) where the weaker signal is not amplified, but attenuated. When both signals are nearly equal in strength, or are fading independently, the receiver may switch from one to the other and exhibit picket fencing.

This is the description from the wiki. Capture effect
Specifically, the limiter at receiver works for it and it can explain the SINR/SNR to BER correspondingly.

But I am not sure whether it is the exact reason for the SINR/SNR model.

well, there is another question in my mind just now:
what is the basic/general technology for wireless system to combat the interference? Besides the SINR/SNR model (or the relative power model)?

Summarize:

1.What is the core concept of SINR/SNR?

2.what is the basic/general technology for wireless system to combat the interference?

Thanks!

Best Answer

Talking about digital; first SNR, then interference.

The core-concept so to speak for SNR (signal-to-noise ratio) is simply a measure of how much signal you have relative to your noise -- that's all. For example, on an Internet forum with very little moderation where bad posts are allowed to stick around (note: absolutely not calling out anyone here, this is more for humor), you may have a lot of 'noisy' posts crowding out the posts full of useful information.

$$ \text{SNR} = \frac{P_{\text{signal}}}{P_{\text{noise}}} $$

Similarly, if you have a signal you're sending over some communication channel, and then you apply AWGN (additive white Gaussian noise) to it, if you apply too much noise to that signal, it may be impossible to recover it. Additional "noise" sources could be Doppler shift, fading effects, path loss, etc.

A related concept to SNR is Eb/No, or energy per bit to noise-power spectral density ratio. Grossly simplified, one could consider this as how much energy you are shoving into each bit. This will come into play below talking about modulation.

Speaking of bits, let's talk modulation schemes. There's a litany of acronyms -- FSK, MSK, OOK, PSK, QAM, BSK, etc. Simply put, these are all ways of talking a signal / data (i.e. 1010 1010), modulating some carrier wave in some fashion, and then transmitting that modulated signal over your channel. After the channel, the receiver must demodulate this signal. A modulator well generate symbols for transmission.

One measure of performance is BER, or bit-error rate. Simply put, this is measuring how many of your bits made it correctly over your channel. Certain modulation schemes can deliver excellent BER performance compared to others; for example, if we just look at QAM, which FakeMoustache posted, you'll see that the signal energy is spread out over the constellation, and symbols at the far ends will have less Es (energy per symbol) than the ones closer to the middle. That scheme can push a lot of data, but compared to something simple like QPSK, where it's simply four equidistant points, it may be less tolerant to errors due to channel.

A quick example is QAM -- quadrature amplitude moduation. This is a coherent modulation schemes (must have phase knowledge) that is commonly used in both wireless and wired communication. Your average HDTV / cable systems utilize 256-QAM; some powerline networking products in your home utilize 1024 or even 4096 QAM. It all is dependent on what channel you're going to send it over; relatively low-noise, reliable copper-wiring, or a noisy, lossy free-space channel from the top of a mountain to a nearby city.

Here's a very high-level overview of the probability of bit and symbol errors for common modulations:enter image description here

One could also perform Monte Carlo simulations to attain experimental results, but these close-formed expressions utilizing Q Functions can be leveraged to generate some quick simulated graphs to compare performance.

As with all of engineering, modulation schemes are an exercise in compromise. Some may deliver an excellent BER at the expensive of requiring a powerful, highly complex receiver device. Others may be really good at data throughput, but awful resistance to interference. An engineer could try to fight noise problems by increasing transmit power, but that comes at the cost of money, power and size. He could try to use a more advanced scheme at the expense of a complex receiver that requires CSI (Channel State information).

So presented with a problem where 'interference' and/or a poor SNR is a problem, here are some things we can do with a non-exhaustive list of cons:

  1. Add transmitter power (cons: power, size, weight, cost)
  2. Add receiver "strength" (i.e. bigger, better antenna) (cons: size, cost, etc.)
  3. Change modulation schemes to something with a better BER (cons: loss of bandwidth/throughput, increase Rx complexity possibly)
  4. Increase system 'smarts' w/ cognitive radio-like behavior, pilot signals, etc.
  5. Add diversity (i.e. -- add more antennas!)
  6. Many, many more...

This is a really fast summary of a very complex field of EE that's responsible for a lot of the advances we take for granted today. If you're interested in more, the area you want to focus is Communication Systems / Wireless Communications. MIT OpenCourseWare has some decent courses on this, and in terms of book, Molisch is excellent, as is Tse's book.

tl;dr -- in a sentence, I'd say SNR is a metric to tell you how much of what you have is actually what you wanted in the first place. There are many ways to improve that ranging from hardware to software to mathematical.