RV College of Engineering®: Self Study (Experiential Learning) Report On
RV College of Engineering®: Self Study (Experiential Learning) Report On
Submitted by:
Definition:
The below diagrams show the transmitter and receiver block diagram of the QAM
scheme.
QAM Modulator
QAM Demodulator
Working Principle:
“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.”
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.
The below waveforms are indicating the two different carrier signals of the QAM
technique.
%Message signal 1
%Message signal 2
%Carrier signal 1
fc1 = 50; %carriersignal 1 ,2frequency
Ac1 = 2; %carrier signal 1,2 amplitude
%composite signal
x=m1.*c1+m2.*c2;
figure(1);
plot(t,x);
xlabel('Time');
ylabel('Amplitude');
title('cOMPOSITE signal');
N=length(x);
X=fftshift(fft(x,N));
f=fs*[-N/2:N/2-1]/N;
figure(2);
plot(f,abs(X));
xlabel('Absolute Frequency');
ylabel('DFT VALUES');
title('Spectrum of composite signal');
%COHERENT DEMODULATION
%UPPER PATH
z1=2*x.*c1;%product modulator 1 op
figure(3);
plot(t,z1);
xlabel('Time');
ylabel('Amplitude');
title('product modulator 1 op');
N=length(z1);
Z1=fftshift(fft(z1,N));
f=fs*[-N/2:N/2-1]/N;
figure(4);
plot(f,abs(Z1));
xlabel('Absolute Frequency');
ylabel('DFT VALUES');
[num den]=butter(5,fm1*4/fs);
rec1=filter(num,den,z1);
figure(5);
plot(t,rec1);
xlabel('Time');
ylabel('amplitude');
title('RECOVERED SIGNAL');
%SPECTRUM OF LPF1 OP
figure(6);
plot(f,abs(R1));
xlabel('Absolute Frequency');
ylabel('DFT VALUES');
%LOWER PATH
z2=2*x.*c2;%product modulator 2 op
figure(7);
plot(t,z2);
xlabel('Time');
ylabel('Amplitude');
title('product modulator 2 op');
N=length(z2);
Z2=fftshift(fft(z2,N));
f=fs*[-N/2:N/2-1]/N;
figure(8);
plot(f,abs(Z2));
xlabel('Absolute Frequency');
ylabel('DFT VALUES');
[num den]=butter(5,fm1*4/fs);
rec2=filter(num,den,z2);
figure(9);
plot(t,rec2);
xlabel('Time');
ylabel('amplitude');
%SPECTRUM OF LPF2 OP
figure(10);
plot(f,abs(R2));
xlabel('Absolute Frequency');
ylabel('DFT VALUES');
Advantages of QAM
The quadrature amplitude modulation advantages are listed below. They are
• 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
It is more susceptible to noise because the states are closer together so that a lower
level of noise is needed to move the signal to a different decision point.
Receivers for use with phase or frequency modulation are both able to use limiting
amplifiers that are able to remove any amplitude noise and thereby improve the
noise reliance. This is not the case with QAM
Conclusion: