Using QAM and QPSK modulation schemes, RF field measurements like received signal power and pathloss were obtained from where the SNR values were estimated. Their BER values were also calculated and Matlab was used to plot the BER vs SNR graphs for QAM and QPSK. Now from these graphs, how can one tell how each modulation scheme is able to maximize data throughput.
-
2You appear to have the results in front of you so what can you conclude? I don't see any graphs and unless someone has telepathic powers, nobody else can. – Andy aka May 25 '17 at 09:08
-
Really I wish i could, but i'm constrained... but in comparing QAM and QPSK from their BER performance (i.e from the BER vs SNR plots), QPSK modulation technique had lower errors compared to QAM. So I'd like to know if any relationship exist between the BER and the data throughput any modulation could offer. Does any relationship exist between these two variables?. This will help me know which one of QAM or QPSK modulation technique maximizes data throughput – ceo May 26 '17 at 15:00
1 Answers
Directly comparing QAM4 to QPSK4, these should behave identically in theory.
Both use the same constellation points, and the SNR and BER depend on how much noise is required to sort a symbol into the wrong bin on reception, and how often the noise in the channel exceeds the maximum in a way that actually causes an error.
Whether we use QAM or QPSK, the nearest constellation point for every symbol received would be the one that lies in the same quadrant. In principle we should arrive at the same result for each symbol, whether we decode it using cartesian or polar coordinates.
QAM4 is somewhat special, though: we do not really encode information in the amplitude, as that is the same for all constellation points. In the general case of QAM with more points, the receiver needs to calculate the channel gain in order to decode the signal properly, and normally bins for received symbols would not extend outward over the entire quadrant, but cover only a rectangular area centered around the nominal value.
So, if the constellation points are \$(-1,-1); (-1,1); (1,-1); (1,1)\$, and the received signal was \$(-2.5,0.3)\$, QPSK would place it in the same quadrant as \$(-1,1)\$, while QAM would reject it and register an invalid symbol.
This means that QPSK might recognize the symbol correctly in a case where QAM rejects it, but the noise here still exceeds the signal, so it is also possible that QPSK might recognize the wrong symbol here.
The received data stream would be exactly the same for both where symbols were recognized, but the QAM stream also has some symbols replaced by error markers, so an error correction algorithm on top of that would have more information to work with, since it doesn't have to decide which bits to discard.
For constellations with more points, QAM usually comes out ahead though, as the distance between two points on the unit circle is \$2\sin\frac{\phi}{2}\$, with \$\phi=\frac{\pi}{N}\$, so you can see that diminishing quickly for larger N, while the distance between QAM points is inversely proportional to \$\sqrt{N}\$ (assuming a quadratic constellation).
As said, QAM requires you to estimate channel gain, so you need a mechanism for that as well, like a pilot tone or symbol, or a preamble for intermittent transmissions.
Either of these can be combined with a channel-multiplexing method like OFDM, which helps against other common effects in wireless communication, such as specific notches in the frequency response of the channel.

- 12,031
- 1
- 23
- 49