LAB Report #7 Title
LAB Report #7 Title
Title:
FM Modulation and Demodulation Using PLL
Objectives:
Methodology:
In the following lab we worked on how to do frequency modulation and
demodulation using phase locked loop.
We did this in the Simulink and on the discrete components as well to do this on the
discrete components we used the CD 4046 BC (PLL). Below attached is the diagram
of it.
We also did the same pll modulation and demodulation on matlab as well
clc;
close all; clear all;
t=-0.1:0.001:0.1;
fm=5;
fc=100;
m_t=sin(2*pi.*fm.*t);
A=5;
% offset=3;
kf=10;
c_t=A*cos(2*pi.*fc.*t+kf.*(m_t));
subplot 221
plot(t,m_t);
subplot 222
plot(t,c_t)
Result
Conclusion:
After performing this lab we were able to do frequency modulation and
demodulation on discrete components and as well as on Simulink using the phase
locked loop.