SlideShare a Scribd company logo
1 of 21
Download to read offline
PONDICHERRY UNIVERSITY
DEPARTMENT OF ELECTRONICS
AND COMMUNICATION
ENGINEERING
QUADRATURE AMPLITUDE MODULATION (QAM)
GUIDED BY:
PROF. DR. P. SAMUNDISWARY
PRESENTED BY
AWANISH KUMAR
(21304006)
CONTENTS
❖ OBJECTIVE
❖ INTRODUCTION
❖ QUADRATURE AMPLITUDE MODULATION
❖ QAM WORKING Principle
❖ BLOCK DIAGRAM
❖ CONSTELLATION DIAGRAM
❖ ADVANTAGES AND DISADVANTAGES
❖ CODE
❖ CONCLUSION
OBJECTIVE
The main objective of the system is achieved through the analysis
of Bit Error Rate performance of M-QAM modulation techniques
over Gaussian fading channel.
Due to the faded environment the results which obtained clearly
indicate that out of three QAM which considered in the analysis
16-QAM gave better results on Gaussian and Rayleigh fading
channel.
The performance of Bit error rate will improve by using effective
suitable channel coding techniques over faded environment.
INTRODUCTION
Quadrature Amplitude Modulation or QAM is a form of modulation
which is widely used for modulating data signals onto a carrier used
for radio communications. It is widely used because it offers
advantages over other forms of data modulation such as PSK,
although many forms of data modulation operate along side each
other.
Quadrature Amplitude Modulation, QAM is a signal in which two
carriers shifted in phase by 90 degrees are modulated and the
resultant output consists of both amplitude and phase variations. In
view of the fact that both amplitude and phase variations are present
it may also be considered as a mixture of amplitude and phase
modulation.
What is QAM, quadrature amplitude modulation
•Quadrature Amplitude Modulation, QAM is a signal in which two
carriers shifted in phase by 90 degrees (i.e. sine and cosine) are
modulated and combined. As a result of their 90° phase
difference they are in quadrature and this gives rise to the name.
Often one signal is called the In-phase or “I” signal, and the other
is the quadrature or “Q” signal.
•The resultant overall signal consisting of the combination of both
I and Q carriers contains of both amplitude and phase variations.
In view of the fact that both amplitude and phase variations are
present it may also be considered as a mixture of amplitude and
phase modulation.
QAM Working Principle
QAM Modulator
•In the QAM transmitter, the above
section i.e., product modulator1 and
local oscillator are called the
in-phase channel and product
modulator2 and local oscillator are
called a quadrature channel. Both
output signals of the in-phase
channel and quadrature channel are
summed so the resultant output will
be QAM.”
➢ QAM Demodulator
At the receiver level, the QAM
signal is forwarded from the
upper channel of receiver and
lower channel, and the
resultant signals of product
modulators are forwarded from
LPF1 and LPF2.
These LPF’s are fixed to the
cut off frequencies of input 1
and input 2 signals. Then the
filtered outputs are the
recovered original signals.
● One signal is called the in-phase “I”
signal, and the other is called the
quadrature “Q” signal. Mathematically,
one of the carrier signals can be
represented by a sine wave (i.e. sin(wt))
and the other can be represented by a
cosine wave (i.e.cos(wt) ).
● The two modulated carrier signals are
transmitted together at the source and
at the destination, these two carrier
signals are demodulated (i.e. separated)
independently. To demodulate the signal
coherent detection method is used.
Waveforms of QAM
CONSTELLATION DIAGRAM
• The constellation diagram is useful for
QAM. In QAM, the constellation points are
usually arranged in a square grid with
equal vertical and horizontal spacing.
• In digital telecommunication the data is
usually binary, so the number of points in
the grid is typically a power of 2 (2, 4, 8,
…), corresponding to the number of bits
per symbol. The simplest and most
commonly used QAM constellations
consist of points arranged in a square, i.e.
16-QAM, 64-QAM and 256-QAM (even
powers of two)
The BER of M-ary QAM signals
•Eb and N0 are the energy and
noise power per bit.
•for M = 16, 64, 256, and 1024
Advantages of QAM
•One of the best advantages of QAM – supports a high data rate.
So, the number of bits can be carried by the carrier signal.
Because of these advantages it preferable in wireless
communication networks.
•QAM’s noise immunity is very high. Due to this noise
interference is very less.
•It has a low probability of error value.
•QAM expertly uses channel bandwidth.
Disadvantages of QAM
● In QAM, amplitude changes are susceptible to noise.
● It is not necessary to use of linear amplifier in a radio transmitter
when a phase or frequency modulated.
● It is possible to transmit more bits per symbol but in higher-order
QAM formats the constellation points are closely spaced which is
more susceptible to noise and produces errors in the data.
● Also in higher-order QAM formats, there is a difficulty for the
receiver to decode the signal appropriately. In other words, there is
reduced noise immunity.
● So the higher-order QAM formats are only used when there is a high
signal to noise ratio
● QAM technique is widely used in the radio communications field
because of the increase of the bit data rate.
● QAM is used in applications ranging from short-range wireless
communications to long-distance telephone systems.
● QAM is used in microwave and telecommunication systems to
transmit the information.
● The 64 QAM and 256 QAM are used in digital cable television and
cable modem.
● QAM is used in optical fiber systems to increase bit rates. It is
used in many communication systems like Wi-Fi, Digital Video
Broadcast (DVB), and WiMAX.
APPLICATIONS OF QAM
CODE (16-QAM)
clc;
clear;
M = 16;
K = log2(M);
N = 30000; % number of symbols
alpha16qam = [-3 -1 1 3]; % 16-QAM alphabets
Es_N0_dB = [0:20]; % multiple Es/N0 values
ipHat = zeros(1,N);
for ii = 1:length(Es_N0_dB)
ip = randsrc(1,N,alpha16qam) +
j*randsrc(1,N,alpha16qam);
s = (1/sqrt(10))*ip; % normalization of energy to 1
n = 1/sqrt(2)*[randn(1,N) + j*randn(1,N)]; % white
guassian noise, 0dB variance
y = s + 10^(-Es_N0_dB(ii)/20)*n; % additive white
gaussian noise
% demodulation
y_re = real(y); % real part
y_im = imag(y); % imaginary part
ipHat_re(find(y_re< -2/sqrt(10))) = -3;
ipHat_re(find(y_re > 2/sqrt(10))) = 3;
ipHat_re(find(y_re>-2/sqrt(10) & y_re<=0)) = -1;
ipHat_re(find(y_re>0 & y_re<=2/sqrt(10))) = 1;
ipHat_im(find(y_im< -2/sqrt(10))) = -3;
ipHat_im(find(y_im > 2/sqrt(10))) = 3;
ipHat_im(find(y_im>-2/sqrt(10) & y_im<=0)) = -1;
ipHat_im(find(y_im>0 & y_im<=2/sqrt(10))) = 1;
ipHat = ipHat_re + j*ipHat_im;
nErr(ii) = size(find([ip- ipHat]),2); % couting the
number of errors
end
simBer = nErr/N;
theoryBer = 3/2*erfc(sqrt(0.1*(10.^(Es_N0_dB/10))));
close all
figure
semilogy(Es_N0_dB,theoryBer,'b.-','LineWidth',2);
hold on
semilogy(Es_N0_dB,simBer,'mx-','Linewidth',2);
axis([0 20 10^-5 1])
grid on
legend('theory', 'simulation');
xlabel('Es/No, dB')
ylabel('Symbol Error Rate')
title('Symbol error probability curve for 16-QAM
modulation')
Bit Error Rate plot for 16QAM modulation
CONCLUSION
From the simulation we can conclude (expected from the theory)
that as Eb/N0 increased (so SNR increased), BER reduced.
Interference typically increases when we are moving to a higher
order QAM constellation (more constellation points, higher data
rate and mode)
REFERENCES
● J. G. Proakis, Digital Communications, New York, NY, McGrawHill,
2001.
● B. Sklar, Digital Communications - Fundamentals and Applications,
Prentice Hall, New Jersey, 2001.
THANK YOU

More Related Content

What's hot

Small scale fading
Small scale fadingSmall scale fading
Small scale fadingAJAL A J
 
Moving target indicator radar (mti)part2
Moving target indicator radar (mti)part2Moving target indicator radar (mti)part2
Moving target indicator radar (mti)part2abdulrehmanali
 
Concept of Diversity & Fading (wireless communication)
Concept of Diversity & Fading (wireless communication)Concept of Diversity & Fading (wireless communication)
Concept of Diversity & Fading (wireless communication)Omkar Rane
 
9. parameters of mobile multipath channels
9. parameters of mobile multipath channels9. parameters of mobile multipath channels
9. parameters of mobile multipath channelsJAIGANESH SEKAR
 
Unit 1 Introduction to wireless telecommunication system and networks
Unit  1 Introduction to wireless telecommunication system and networksUnit  1 Introduction to wireless telecommunication system and networks
Unit 1 Introduction to wireless telecommunication system and networksAshutha K
 
Handoff in Mobile Communication
Handoff in Mobile CommunicationHandoff in Mobile Communication
Handoff in Mobile CommunicationNoushad Hasan
 
Large scale path loss 1
Large scale path loss 1Large scale path loss 1
Large scale path loss 1Vrince Vimal
 
QUADRATURE AMPLITUDE MODULATION
QUADRATURE AMPLITUDE MODULATIONQUADRATURE AMPLITUDE MODULATION
QUADRATURE AMPLITUDE MODULATIONAHSAN HALIMI
 
Design and Application of Biconical Antenna
Design and Application of Biconical AntennaDesign and Application of Biconical Antenna
Design and Application of Biconical AntennaYahya Rais
 
Millimeter Wave mobile communications for 5g cellular
Millimeter Wave mobile communications for 5g cellularMillimeter Wave mobile communications for 5g cellular
Millimeter Wave mobile communications for 5g cellularraghubraghu
 
Numbering plan system
Numbering plan systemNumbering plan system
Numbering plan systemnimay1
 
Phased array antenna
Phased array antennaPhased array antenna
Phased array antennaShaveta Banda
 
Cellular network
Cellular networkCellular network
Cellular networkMr SMAK
 
5. 2 ray propagation model part 1
5. 2 ray propagation model   part 15. 2 ray propagation model   part 1
5. 2 ray propagation model part 1JAIGANESH SEKAR
 
Fading and Large Scale Fading
 Fading and Large Scale Fading Fading and Large Scale Fading
Fading and Large Scale Fadingvickydone
 
Mobile Radio Propagation
Mobile Radio PropagationMobile Radio Propagation
Mobile Radio PropagationIzah Asmadi
 

What's hot (20)

Small scale fading
Small scale fadingSmall scale fading
Small scale fading
 
Microwave measurements in detail
Microwave measurements in detailMicrowave measurements in detail
Microwave measurements in detail
 
Moving target indicator radar (mti)part2
Moving target indicator radar (mti)part2Moving target indicator radar (mti)part2
Moving target indicator radar (mti)part2
 
Concept of Diversity & Fading (wireless communication)
Concept of Diversity & Fading (wireless communication)Concept of Diversity & Fading (wireless communication)
Concept of Diversity & Fading (wireless communication)
 
9. parameters of mobile multipath channels
9. parameters of mobile multipath channels9. parameters of mobile multipath channels
9. parameters of mobile multipath channels
 
Unit 1 Introduction to wireless telecommunication system and networks
Unit  1 Introduction to wireless telecommunication system and networksUnit  1 Introduction to wireless telecommunication system and networks
Unit 1 Introduction to wireless telecommunication system and networks
 
Handoff in Mobile Communication
Handoff in Mobile CommunicationHandoff in Mobile Communication
Handoff in Mobile Communication
 
Large scale path loss 1
Large scale path loss 1Large scale path loss 1
Large scale path loss 1
 
Cw and fm cw radar
Cw and fm cw radarCw and fm cw radar
Cw and fm cw radar
 
Cdma2000
Cdma2000Cdma2000
Cdma2000
 
Source coding systems
Source coding systemsSource coding systems
Source coding systems
 
QUADRATURE AMPLITUDE MODULATION
QUADRATURE AMPLITUDE MODULATIONQUADRATURE AMPLITUDE MODULATION
QUADRATURE AMPLITUDE MODULATION
 
Design and Application of Biconical Antenna
Design and Application of Biconical AntennaDesign and Application of Biconical Antenna
Design and Application of Biconical Antenna
 
Millimeter Wave mobile communications for 5g cellular
Millimeter Wave mobile communications for 5g cellularMillimeter Wave mobile communications for 5g cellular
Millimeter Wave mobile communications for 5g cellular
 
Numbering plan system
Numbering plan systemNumbering plan system
Numbering plan system
 
Phased array antenna
Phased array antennaPhased array antenna
Phased array antenna
 
Cellular network
Cellular networkCellular network
Cellular network
 
5. 2 ray propagation model part 1
5. 2 ray propagation model   part 15. 2 ray propagation model   part 1
5. 2 ray propagation model part 1
 
Fading and Large Scale Fading
 Fading and Large Scale Fading Fading and Large Scale Fading
Fading and Large Scale Fading
 
Mobile Radio Propagation
Mobile Radio PropagationMobile Radio Propagation
Mobile Radio Propagation
 

Similar to Bit Error rate of QAM

quadrature amplitude modulation
quadrature amplitude modulationquadrature amplitude modulation
quadrature amplitude modulationtusharsinghal58
 
ADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMA
ADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMAADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMA
ADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMAmirza asif haider
 
M ary psk and m ary qam ppt
M ary psk and m ary qam pptM ary psk and m ary qam ppt
M ary psk and m ary qam pptDANISHAMIN950
 
Qudrature Amplitude Modulation by Krishna Teja & Sunil
Qudrature Amplitude Modulation by Krishna Teja & SunilQudrature Amplitude Modulation by Krishna Teja & Sunil
Qudrature Amplitude Modulation by Krishna Teja & Sunilkrishnateja407
 
QAM Microsoft PowerPoint جديد.pptx
QAM Microsoft PowerPoint جديد.pptxQAM Microsoft PowerPoint جديد.pptx
QAM Microsoft PowerPoint جديد.pptxssuserd6ee01
 
Quadrature amplitude modulation
Quadrature amplitude modulationQuadrature amplitude modulation
Quadrature amplitude modulationAanchalKumari4
 
Analysis of FHSS-CDMA with QAM-64 over AWGN and Fading Channels
Analysis of FHSS-CDMA with QAM-64 over AWGN and Fading ChannelsAnalysis of FHSS-CDMA with QAM-64 over AWGN and Fading Channels
Analysis of FHSS-CDMA with QAM-64 over AWGN and Fading ChannelsIRJET Journal
 
Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...
Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...
Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...Berna Bulut
 
Designing and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM SystemDesigning and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM SystemIOSR Journals
 
Designing and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM SystemDesigning and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM SystemIOSR Journals
 
Digital modulation basics(nnm)
Digital modulation basics(nnm)Digital modulation basics(nnm)
Digital modulation basics(nnm)nnmaurya
 
4g 5g document 5g day five usefull .pptx
4g 5g document 5g day five usefull .pptx4g 5g document 5g day five usefull .pptx
4g 5g document 5g day five usefull .pptxDhamoDharan66
 
Comparison of BER performances of 64-PSK and 64-QAM in AWGN channels
Comparison of BER performances of  64-PSK and 64-QAM in  AWGN channelsComparison of BER performances of  64-PSK and 64-QAM in  AWGN channels
Comparison of BER performances of 64-PSK and 64-QAM in AWGN channelsBerk Soysal
 
Implementation of m qam modulation techniques in 4 g communication
Implementation of m qam modulation techniques in 4 g communicationImplementation of m qam modulation techniques in 4 g communication
Implementation of m qam modulation techniques in 4 g communicationShatrughanPatel1
 

Similar to Bit Error rate of QAM (20)

Quadrature amplitude modulation
Quadrature amplitude modulationQuadrature amplitude modulation
Quadrature amplitude modulation
 
quadrature amplitude modulation
quadrature amplitude modulationquadrature amplitude modulation
quadrature amplitude modulation
 
QAM
QAMQAM
QAM
 
ADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMA
ADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMAADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMA
ADAPTIVE MODULATION TECHNIQUES FOR CAPACITY IMPROVEMENT OF BER IN WCDMA
 
Qam.pptx
Qam.pptxQam.pptx
Qam.pptx
 
M ary psk and m ary qam ppt
M ary psk and m ary qam pptM ary psk and m ary qam ppt
M ary psk and m ary qam ppt
 
Qudrature Amplitude Modulation by Krishna Teja & Sunil
Qudrature Amplitude Modulation by Krishna Teja & SunilQudrature Amplitude Modulation by Krishna Teja & Sunil
Qudrature Amplitude Modulation by Krishna Teja & Sunil
 
QAM Microsoft PowerPoint جديد.pptx
QAM Microsoft PowerPoint جديد.pptxQAM Microsoft PowerPoint جديد.pptx
QAM Microsoft PowerPoint جديد.pptx
 
Quadrature amplitude modulation
Quadrature amplitude modulationQuadrature amplitude modulation
Quadrature amplitude modulation
 
Qudrature Amplitude Modulation
Qudrature Amplitude Modulation Qudrature Amplitude Modulation
Qudrature Amplitude Modulation
 
Analysis of FHSS-CDMA with QAM-64 over AWGN and Fading Channels
Analysis of FHSS-CDMA with QAM-64 over AWGN and Fading ChannelsAnalysis of FHSS-CDMA with QAM-64 over AWGN and Fading Channels
Analysis of FHSS-CDMA with QAM-64 over AWGN and Fading Channels
 
Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...
Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...
Cross-Layer Design of Raptor Codes for Video Multicast over 802.11n MIMO Chan...
 
Designing and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM SystemDesigning and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM System
 
Designing and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM SystemDesigning and Performance Evaluation of 64 QAM OFDM System
Designing and Performance Evaluation of 64 QAM OFDM System
 
Digital modulation basics(nnm)
Digital modulation basics(nnm)Digital modulation basics(nnm)
Digital modulation basics(nnm)
 
4g 5g document 5g day five usefull .pptx
4g 5g document 5g day five usefull .pptx4g 5g document 5g day five usefull .pptx
4g 5g document 5g day five usefull .pptx
 
Comparison of BER performances of 64-PSK and 64-QAM in AWGN channels
Comparison of BER performances of  64-PSK and 64-QAM in  AWGN channelsComparison of BER performances of  64-PSK and 64-QAM in  AWGN channels
Comparison of BER performances of 64-PSK and 64-QAM in AWGN channels
 
Link adaptation
Link adaptationLink adaptation
Link adaptation
 
205 eng105
205 eng105205 eng105
205 eng105
 
Implementation of m qam modulation techniques in 4 g communication
Implementation of m qam modulation techniques in 4 g communicationImplementation of m qam modulation techniques in 4 g communication
Implementation of m qam modulation techniques in 4 g communication
 

More from AWANISHKUMAR84

PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdf
PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdfPONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdf
PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdfAWANISHKUMAR84
 
Cognitive Radio Spectrum Management.pdf
Cognitive Radio Spectrum Management.pdfCognitive Radio Spectrum Management.pdf
Cognitive Radio Spectrum Management.pdfAWANISHKUMAR84
 
Optimum Receiver corrupted by AWGN Channel
Optimum Receiver corrupted by AWGN ChannelOptimum Receiver corrupted by AWGN Channel
Optimum Receiver corrupted by AWGN ChannelAWANISHKUMAR84
 
Optical Channel Capacity of MIMO system
Optical Channel Capacity of MIMO systemOptical Channel Capacity of MIMO system
Optical Channel Capacity of MIMO systemAWANISHKUMAR84
 
Rfid based attendance system using arduino (1)
Rfid based attendance system using arduino (1)Rfid based attendance system using arduino (1)
Rfid based attendance system using arduino (1)AWANISHKUMAR84
 

More from AWANISHKUMAR84 (8)

LMS .pdf
LMS .pdfLMS .pdf
LMS .pdf
 
FSM.pdf
FSM.pdfFSM.pdf
FSM.pdf
 
PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdf
PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdfPONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdf
PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS ENGINEERING.pdf
 
Cognitive Radio Spectrum Management.pdf
Cognitive Radio Spectrum Management.pdfCognitive Radio Spectrum Management.pdf
Cognitive Radio Spectrum Management.pdf
 
Optimum Receiver corrupted by AWGN Channel
Optimum Receiver corrupted by AWGN ChannelOptimum Receiver corrupted by AWGN Channel
Optimum Receiver corrupted by AWGN Channel
 
Optical Channel Capacity of MIMO system
Optical Channel Capacity of MIMO systemOptical Channel Capacity of MIMO system
Optical Channel Capacity of MIMO system
 
Rfid based attendance system using arduino (1)
Rfid based attendance system using arduino (1)Rfid based attendance system using arduino (1)
Rfid based attendance system using arduino (1)
 
CMOS
CMOS CMOS
CMOS
 

Recently uploaded

Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxLigayaBacuel1
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 

Recently uploaded (20)

Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptx
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 

Bit Error rate of QAM

  • 1. PONDICHERRY UNIVERSITY DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING QUADRATURE AMPLITUDE MODULATION (QAM) GUIDED BY: PROF. DR. P. SAMUNDISWARY PRESENTED BY AWANISH KUMAR (21304006)
  • 2. CONTENTS ❖ OBJECTIVE ❖ INTRODUCTION ❖ QUADRATURE AMPLITUDE MODULATION ❖ QAM WORKING Principle ❖ BLOCK DIAGRAM ❖ CONSTELLATION DIAGRAM ❖ ADVANTAGES AND DISADVANTAGES ❖ CODE ❖ CONCLUSION
  • 3. OBJECTIVE The main objective of the system is achieved through the analysis of Bit Error Rate performance of M-QAM modulation techniques over Gaussian fading channel. Due to the faded environment the results which obtained clearly indicate that out of three QAM which considered in the analysis 16-QAM gave better results on Gaussian and Rayleigh fading channel. The performance of Bit error rate will improve by using effective suitable channel coding techniques over faded environment.
  • 4. INTRODUCTION Quadrature Amplitude Modulation or QAM is a form of modulation which is widely used for modulating data signals onto a carrier used for radio communications. It is widely used because it offers advantages over other forms of data modulation such as PSK, although many forms of data modulation operate along side each other. Quadrature Amplitude Modulation, QAM is a signal in which two carriers shifted in phase by 90 degrees are modulated and the resultant output consists of both amplitude and phase variations. In view of the fact that both amplitude and phase variations are present it may also be considered as a mixture of amplitude and phase modulation.
  • 5. What is QAM, quadrature amplitude modulation •Quadrature Amplitude Modulation, QAM is a signal in which two carriers shifted in phase by 90 degrees (i.e. sine and cosine) are modulated and combined. As a result of their 90° phase difference they are in quadrature and this gives rise to the name. Often one signal is called the In-phase or “I” signal, and the other is the quadrature or “Q” signal. •The resultant overall signal consisting of the combination of both I and Q carriers contains of both amplitude and phase variations. In view of the fact that both amplitude and phase variations are present it may also be considered as a mixture of amplitude and phase modulation.
  • 6. QAM Working Principle QAM Modulator •In the QAM transmitter, the above section i.e., product modulator1 and local oscillator are called the in-phase channel and product modulator2 and local oscillator are called a quadrature channel. Both output signals of the in-phase channel and quadrature channel are summed so the resultant output will be QAM.”
  • 7. ➢ QAM Demodulator At the receiver level, the QAM signal is forwarded from the upper channel of receiver and lower channel, and the resultant signals of product modulators are forwarded from LPF1 and LPF2. These LPF’s are fixed to the cut off frequencies of input 1 and input 2 signals. Then the filtered outputs are the recovered original signals.
  • 8. ● One signal is called the in-phase “I” signal, and the other is called the quadrature “Q” signal. Mathematically, one of the carrier signals can be represented by a sine wave (i.e. sin(wt)) and the other can be represented by a cosine wave (i.e.cos(wt) ). ● The two modulated carrier signals are transmitted together at the source and at the destination, these two carrier signals are demodulated (i.e. separated) independently. To demodulate the signal coherent detection method is used.
  • 10. CONSTELLATION DIAGRAM • The constellation diagram is useful for QAM. In QAM, the constellation points are usually arranged in a square grid with equal vertical and horizontal spacing. • In digital telecommunication the data is usually binary, so the number of points in the grid is typically a power of 2 (2, 4, 8, …), corresponding to the number of bits per symbol. The simplest and most commonly used QAM constellations consist of points arranged in a square, i.e. 16-QAM, 64-QAM and 256-QAM (even powers of two)
  • 11. The BER of M-ary QAM signals •Eb and N0 are the energy and noise power per bit. •for M = 16, 64, 256, and 1024
  • 12. Advantages of QAM •One of the best advantages of QAM – supports a high data rate. So, the number of bits can be carried by the carrier signal. Because of these advantages it preferable in wireless communication networks. •QAM’s noise immunity is very high. Due to this noise interference is very less. •It has a low probability of error value. •QAM expertly uses channel bandwidth.
  • 13. Disadvantages of QAM ● In QAM, amplitude changes are susceptible to noise. ● It is not necessary to use of linear amplifier in a radio transmitter when a phase or frequency modulated. ● It is possible to transmit more bits per symbol but in higher-order QAM formats the constellation points are closely spaced which is more susceptible to noise and produces errors in the data. ● Also in higher-order QAM formats, there is a difficulty for the receiver to decode the signal appropriately. In other words, there is reduced noise immunity. ● So the higher-order QAM formats are only used when there is a high signal to noise ratio
  • 14. ● QAM technique is widely used in the radio communications field because of the increase of the bit data rate. ● QAM is used in applications ranging from short-range wireless communications to long-distance telephone systems. ● QAM is used in microwave and telecommunication systems to transmit the information. ● The 64 QAM and 256 QAM are used in digital cable television and cable modem. ● QAM is used in optical fiber systems to increase bit rates. It is used in many communication systems like Wi-Fi, Digital Video Broadcast (DVB), and WiMAX. APPLICATIONS OF QAM
  • 15. CODE (16-QAM) clc; clear; M = 16; K = log2(M); N = 30000; % number of symbols alpha16qam = [-3 -1 1 3]; % 16-QAM alphabets Es_N0_dB = [0:20]; % multiple Es/N0 values ipHat = zeros(1,N); for ii = 1:length(Es_N0_dB) ip = randsrc(1,N,alpha16qam) + j*randsrc(1,N,alpha16qam); s = (1/sqrt(10))*ip; % normalization of energy to 1 n = 1/sqrt(2)*[randn(1,N) + j*randn(1,N)]; % white guassian noise, 0dB variance y = s + 10^(-Es_N0_dB(ii)/20)*n; % additive white gaussian noise % demodulation
  • 16. y_re = real(y); % real part y_im = imag(y); % imaginary part ipHat_re(find(y_re< -2/sqrt(10))) = -3; ipHat_re(find(y_re > 2/sqrt(10))) = 3; ipHat_re(find(y_re>-2/sqrt(10) & y_re<=0)) = -1; ipHat_re(find(y_re>0 & y_re<=2/sqrt(10))) = 1; ipHat_im(find(y_im< -2/sqrt(10))) = -3; ipHat_im(find(y_im > 2/sqrt(10))) = 3; ipHat_im(find(y_im>-2/sqrt(10) & y_im<=0)) = -1; ipHat_im(find(y_im>0 & y_im<=2/sqrt(10))) = 1; ipHat = ipHat_re + j*ipHat_im; nErr(ii) = size(find([ip- ipHat]),2); % couting the number of errors end
  • 17. simBer = nErr/N; theoryBer = 3/2*erfc(sqrt(0.1*(10.^(Es_N0_dB/10)))); close all figure semilogy(Es_N0_dB,theoryBer,'b.-','LineWidth',2); hold on semilogy(Es_N0_dB,simBer,'mx-','Linewidth',2); axis([0 20 10^-5 1]) grid on legend('theory', 'simulation'); xlabel('Es/No, dB') ylabel('Symbol Error Rate') title('Symbol error probability curve for 16-QAM modulation')
  • 18. Bit Error Rate plot for 16QAM modulation
  • 19. CONCLUSION From the simulation we can conclude (expected from the theory) that as Eb/N0 increased (so SNR increased), BER reduced. Interference typically increases when we are moving to a higher order QAM constellation (more constellation points, higher data rate and mode)
  • 20. REFERENCES ● J. G. Proakis, Digital Communications, New York, NY, McGrawHill, 2001. ● B. Sklar, Digital Communications - Fundamentals and Applications, Prentice Hall, New Jersey, 2001.