You are on page 1of 13

Lab Report 04:

Generating AM wave at a
different modulation index

Submitted By :

MUHAMMAD DANYAL
Reg # :

FA20-EEE-055
Submitted To:

Sir Atiq-ul-Anam

Dated: 6/21/2023

1
Statement:
Generate AM wave (Amplitude Modulation) at a different modulation index.
Verify whether the modulation index depends on the band width of AM
modulated wave or the power of side bands?

Literature Background:
Amplitude Modulation:
The amplitude modulation is a technique in which the amplitude of the carrier
changes according to the instantaneous amplitude of the baseband signal.
M𝐴𝑀Vc M𝐴𝑀Vc
fAM cos((m c − wm )t) + cos((w c +
(t) = Vc cosmc t + )t) (1)
2 2
wm

Power of a Signal:
Power is energy over a time period.
1 ∞ 2
𝑃 = ∫−∞|ƒ(𝑡)| 𝑑𝑡 (2)
𝑇

In MATLAB power is calculated by:


2
∑𝑙𝑒𝑛𝑔𝑡ℎ
i=0 |f 𝑐(i)|
𝑃= (3)
𝑇

Band width:
Difference of highest and lowest frequencies which contain 90% energy of the
signal.
Where bandwidth of an AM is given by
B.W=2*Fm (4)
“fm” is the highest frequency of baseband signal.

Procedure:
MATLAB Coding:
clc
clear all
close all
2
t=0:1:200;
fm=500;
fc=20*fm;
Vc=10;
MA=1;
Vm=MA*Vc;
phase =0;
fs=10*fc;
ts=t/fs;
Xm=Vm*cos(2*pi*fm*ts+phase);
plot(ts*1000,Xm)
title('baseband signal')
xlabel('time in ms')
ylabel('Vm')
grid on;

figure
Xc=Vc*cos(2*pi*fc*ts+phase);
plot(ts*1000,Xc)
title('carrier signal')
xlabel('time in ms')
ylabel('Vc')
grid on;

figure
Y=Xc+Xm.*cos(2*pi*fc*ts+phase);
plot(ts*1000,Y)
title('Amplitude Modulated wave')
xlabel('time in ms')
ylabel('Vc+Vm')
grid on;

figure
z=fft(Y);
z=abs(z(1:length(z)/2+1));
frq=(0:length(z)-1)*fs/length(z)/2;
plot(frq/1000,z);
title('FFT of Modulated Wave')
xlabel('F in kHz')
ylabel('Amplitude')
grid on;

3
carrier_power = sum(Xc.^2)/length(t);
display(carrier_power);

entire_power = sum(Y.^2)/length(t);
display(entire_power);

sideband_power = entire_power-carrier_power;
display(sideband_power);

Analysis:
𝑀𝐴 = 0

Figure 1: Baseband signal with fm=500Hz, 𝑉𝑚 =0V

Figure 2: Carrier signal with fc=10kHz 𝑉𝑐 =10V

4
Figure 3: Amplitude Modulated Signal

Figure 4: AM Wave in Frequency Domain


carrier_power =
50.2488
entire_power =
50.2488
sideband_power =
0

5
𝑀𝐴 = 0.5

Figure 5: Baseband signal with fm=500Hz, 𝑉𝑚 =5V

Figure 6: Carrier signal with fc=10kHz, 𝑉𝑐 =10V

6
Figure 7: Amplitude Modulated Signal

Figure 8: AM Wave in Frequency Domain


carrier_power =
50.2488
entire_power =
57.0896
sideband_power =
6.8408

7
𝑀𝐴 = 1

Figure 9: Baseband signal with fm=500Hz, 𝑉𝑚 =10V

Figure 10: Carrier signal with fc=10kHz, 𝑉𝑐 =10V

8
Figure 11: Amplitude Modulated Signal

Figure 12: AM Wave in Frequency Domain


carrier_power =
50.2488
entire_power =
76.6169
sideband_power =
26.3682

9
𝑀𝐴 = 1.5

Figure 13: Baseband signal with fm=500Hz, 𝑉𝑚 =15V

Figure 14: Carrier signal with fc=10kHz, 𝑉𝑐 =10V

10
Figure 15: Amplitude Modulated Signal

Figure 16: AM Wave in Frequency Domain


carrier_power =
50.2488
entire_power =
108.8308
sideband_power =
58.5821

11
Table # 01:
S.No Modulation Power in Power in Bandwidth
Index entire AM side in Hz
Wave bands
only
1 0 50.2488 0 1

2 0.5 57.0896 6.8408 1000

3 1 76.6169 26.3682 1000

4 1.5 108.8303 58.5821 1000

Questions:
Q1) What will happen to the power of side bands (increasing or
decreasing) with the increase of modulation index? Give mathematical
reasoning?

Ans: Relation for Power of the side bands is

𝑃 = 𝑃𝑐(MA)2 (5)
2
𝑠
𝑃𝑠 is power of
sidebands
𝑃𝑠 is power of carrier wave
MA is Modulation index
From eq(5) it is clearly seen that power of the sidebands is directly proportional
to the Modulation index. With the increase in Modulation index, power of the
side bands also increases.

Q2) What will happen to the band width of AM wave (increasing or


decreasing) with the increase of modulation index? Give mathematical
reasoning?
Ans: The band width of AM wave does not depends on Modulation index.
If Modulation index is increased or decreased, the bandwidth of AM will
remains same.
12
Mathematically:
Bw=2*fm (6)

From eq(6) we clearly see that bandwidth depends on the higher frequency of
baseband signal not on Modulation index.

Q3) Why the modulation index in AM is not greater than 1?


Ans: Maximum value of Modulation index for AM is 1 because when
Modulation index is greater than 1, over modulation occurs and distortion
created in signal and information will be lost.
Mathematically:
Vm
MA = (7)
Vc

When 𝑉𝑚 =𝑉𝑐 , 𝑀𝐴
=1
If 𝑉𝑚 is further increased, Over Modulation occurs which will cause distortion
in transmitted signal.

Conclusion:
 Transmitted Power and Power of side bands increases with increase in
Modulation index.

𝑃𝑠 (MA)2
= 𝑃𝑐 (1 + )
2

 Band width of AM is independent of Modulation index.


 Band width of AM depends on the highest frequency of baseband signal.
Bw=2*fm
 Bandwidth is 1Hz when Modulation index is 0 because 𝑉𝑚 = 0 and 𝑃𝑠=0.
 Transmitted Signal will be distorted when Modulation index >1.

13

You might also like