Communication Principles LAB.
Experiment No. (3)
AM Modulation and Demodulation
Introduction:
Amplitude modulation (AM) is one of the simplest methods for
modulating a sinusoidal carrier wave. The first use of AM for
transmission of voice signals by radio can be traced to the beginning
of the 20th century. Yet, AM continues to be used today in many
communication applications including broadcast radio, aircraft VHF
radios and two-way radios.
In amplitude modulation, the amplitude (signal strength) of the carrier
wave is varied in proportion to the waveform being transmitted.
In general form, a modulation process of a sinusoidal carrier
wave may be described by the following equation
𝑆𝐴𝑀 (𝑡 ) = [𝐴𝑐 + 𝑚(𝑡 )] cos(2𝜋𝑓𝑐 𝑡 )
𝐴𝑐 represents amplitude of the carrier signal, 𝑓𝑐 frequency of the
carrier signal & 𝑚(𝑡 ) is the message signal.
Figure (1): AM modulated signal
Matlab Simulation
Part1
1. Open MATLAB and Open new M-file.
2. Type the program
3. Save in current directory
4. Compile and Run the program.
clear all
clc
Ac=input('carrier signal amplitude');
Am=input('message signal amplitude');
fc=input('carrier signal frequency');
fm=input('message signal frequency');
while fm>fc
disp('message signal frequency is incorrect');
fm=input('message signal frequency');
end
T=input('time period');
t=0:0.01:T;
m= Am*sin(2*pi*fm*t);
subplot(4,1,1)
plot(t,m);
c=Ac*sin(2*pi*fc*t);
subplot(4,1,2)
plot(t,c);
z=((Ac+m).*c);
subplot(4,1,3)
plot(t,z);
y= z.*c;
subplot(4,1,4)
plot(t,y);
Part 2
1- Open MATLAB and Open new Simulink model.
2- Arrange the functional blocks as shown in figure (2).
3- Display and draw the output signals at the spectrum analyser and
scopes and comment on the results.
Figure (2): AMDSB Modulator and Demodulator
4- Arrange the functional blocks as shown in figure (3).
Figure (3): AM Modulator
5- Use a Spectrum Analyzer to observe the frequency components of
the modulated signal, noting the presence of sidebands.
Discussion:
1- Discuss how varying the modulation index (ratio of message
amplitude to carrier amplitude) affects the modulation quality.
2- draw the spectrum of the SSBAM depending on the results.
3- what is AMDSB-SC?
4- Explain the BW for SSBAM.