Amplititude Modulation

Basic Introduction

What is Modulation

If you want to understand what is modulation, you need to first know Why we need Modulation.
As we all know, the frequency spectrum is limited and valueable which enable us to transmit signals at the same time without interference.

But the signals we transmit is usually low frequency and long wave length ($ \lambda = \frac{c}{f} $). But due to its low frequency, it is easy to be interfered by other signals along the way it transmits. So it is necessary to come out a way that can enable low-frequncy signal to transmit in long distance.

That is why we need modulation.Modulation is the process that make the signal you want to tranmit become a high frequency signal. What is it mean? It is says that the information of signal is preserved by some characteristics of the signal like amplititude、frequency and phase. We want to transmit and put the infomation on a high frequency signal. That is waht we call Modulation. Its basical theory is use high-frequency signal to maintain the infomation low-frequency signal carried, and Demodulate it to get the infomation that high-frequency signal maintained.

In this way, we finally get acccess to transmit low-frequency signal in long distance and maintain its signal characteristics. We call the signal we want to transmit Modulation Signal and the signal that maintains the characters Carrier Signal.

What is AM

As we talk about modulation, we can maintain some infomation of signal we want to transmit onto the high-frequency signal. But how to maintain? We say that the infomation is contained in the amplitude of the modulation signal. So we can use the amplitude of the carrier signal to maintain the infomation of the modulation signal. That is what we call Amplitude Modulation.

How to Modulate(its principle)

If we have a modulation signal :

$$ Modulation-signal = Am * \cos(2\pi f_{m}t) $$

then we want to modulate it onto a high-frequency carrier signal :

$$ Carrier-signal = Ac * \cos(2\pi f_{c}t) $$

Then the modulated signal is :

$$ AM_{signal} = (A + mod) * carrier = (A + Amp*\sin(2\pi f_{m}t)) * Ac * \sin(2\pi f_{c}t) $$

If you see close to the formula, you will find that the amplititude of the modulated signal is the sum of a DC value and the modulation signal. The value $ \frac{max{mod}}{A} = \frac{Amp}{A} $ is what we call the depth of modulation. Usually we set $ \frac{Amp}{A} = 1 $ to make the modulated signal as high as possible.

Referred MATLAB Code

Here we provide you with a MATLAB code used to modulate AM signal. In this way you could learn modulation visually and understand it better.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
clc;
clear;
Fs = 4e6; % 采样频率,根据采样定理,采样频率要大于最高频率的两倍
Fc = 2e5; % 载波频率
Fm = 4e3; % 调制信号频率
Am = 1; % 载波幅度 -> 叠加在调制信号的直流偏置
ma = Am; % 调制深度100%

% 创建时间轴
L = 8e3; % 取样点数
Ts = 1 / Fs; % 采样周期
t = (1 : L ) * Ts;

% 生成AM信号
% 创建载波信号 正弦载波
carr_w = sin(2*pi*Fc*t);
% 创建调制信号(这里使用一个简单的正弦波作为调制信号)
modu_s = Am*sin(2*pi*Fm*t); % Am * ma is the Amp of modu_s

figure;
plot(t, carr_w);
title('carr_w');
figure;
plot(t, modu_s);
title('modu_s');

% 进行调幅
AM_signal = ((ma + modu_s) .* sin(2*pi*Fc*t));

% FFT
[ST_I,f_I] = my_fft(AM_signal,Fs); % 观察已调信号st的频谱
% 解调AM信号
AM_mid = AM_signal .* carr_w;
output = lowpass(AM_mid, Fm*2, Fs);
figure;
plot(t, output);
title('demodu_s with DC');
out_fix = output-mean(output); % 去除直流分量

% 绘制解调后的波形
figure;
plot(t, AM_signal);
title('AM调制波');
figure;
plot(t, 2*out_fix);
hold on
plot(t,modu_s,'r-');
hold on
plot(t, output,'r--');
legend('解调信号','调制信号','未去除直流分量的解调信号')

% 观察频谱 不提供FFT函数 可以直接使用MATLAB自带的FFT函数操作
[ST_O,f_O] = my_fft(out_fix,Fs);
figure;
plot(f_O,abs(ST_O));
xlabel('频率(Hz)');
ylabel('幅度');
title('解调信号频谱图');
hold on
plot(f_I,abs(ST_I));
xlabel('频率(Hz)');
ylabel('幅度');
title('已调信号频谱图');
legend('解调信号','AM信号');
[~, max_index] = max(ST_O);
fre=abs(f_O(max_index));
fprintf('基带频率 fre = %.2f\n',fre );

And the modulated signal and the carrier is like :

Modulation-signal

Carrier-signal

And we modulated the signal as the principles mentioned above. The AM signal is like :

AM-signal

As you can see, the connection is nearly zero which conferes that the depth of modulation is 100%.

AM-Spectrum

If we do FFT to transform the AM signal to frequency domain, you will see the spectrum of the modulation signal is carried to the point where the carrier signal is. Is is so-called spectrum shifting.

Envelpoe

the we show you the demodulated signal comparing with the original signal. As you can see, the envelope is almost the same.

Some Words to Say

I will continues to write blog about different modulation methods ranging from analog to digital, from AM to PSK and etc.