Frequency Modulation
Frequency Modulation
Pre-view
I’m glad that I still have time to write this blog in spite of so much things i need to do. The pressure of my grade is overweighted. But I feel lucky to have a little spare time to do something meaningful rather just playing games and wasting it. So back to the topic. In this blog, i will introduce a more useful modulation method called Frequency Modulation.
Definition
Unlike AM modulation which use the amplitude of the carrier signal to maintain the amplitude of modulation signal, which enable to transmit the infomation of modulation signal in a high frequency range(carrier signal’s frequency), FM modulation add the modulation signal to carrier signal’s frequency. So although the signal still transmit in high frequency range, the signal frequency is changed by the value of modulation signal. In this way, the signal carries the infomation of modulation signal in its frequency.
Math Theory
So, what is the official definition of FM?
Let’s think about a modulation signal and a carrier signal. Its formula is :
$$ Modulation-Signal = Am * \cos(2\pi f_{m}t) \tag{1}$$
$$ Carrier-Signal = Ac * \cos(2\pi f_{c}t) \tag{2}$$
And the modulation process is add modulation signal to the frequency of carrier signal.
$$ FM(t) = A \cos \left[ \omega_c t + A_c \int_0^t (cos2\pi f_c\tau )d\tau \right] = A\cos \left[ (\omega_c + Ac*cos(2\pi f_ct)t + \theta) \right] \tag{3}$$
If you look more close to it, you will find that the integeration of frequency is the phase
$$ \frac{d \left[ A_c \int_0^t (cos2\pi f_c\tau )d\tau \right]}{dt} = A_c cos2\pi f_ct \tag{4}$$
which means if you add a phase varable $ \theta(t^2) $ to the phase of carrier signal, it is not only a FM but a PM also.
$$\beta = \frac{A_c |cos2\pi f_ct|_{max}}{W} \tag{5}$$
And the $ A_c $ represents the frequency modulation sensitivity. The $W$ is the bandwidth (or the highest frequency) of the baseband signal (modulating signal).
MATLAB Simulation
The Simulation code of MATLAB is as followed :
1 | % FM调制解调过程 |
Above all is the whole content of our blog. I hope it will be of great help to you. See you in the next blog.