Expt 3 BOC
Expt 3 BOC
Aim: To generate SSB-SC wave using NI Multisim 14.0 and Matlab R2023
Hardware/Software Used:
Sr.No. Name
1. MATLAB R2023
2. NI Multisim 14.0
Theory:
The process of suppressing one of the sidebands along with the carrier and
transmitting a single sideband is called a Single Sideband Suppressed Carrier system or
simply SSBSC. It is plotted as shown in the following figure.
In the above figure, the carrier and the lower sideband are suppressed. Hence, the upper
sideband is used for transmission. Similarly, we can suppress the carrier and the upper
sideband while transmitting the lower sideband.
This SSB SC system, which transmits a single sideband has high power, as the power
allotted for both the carrier and the other sideband is utilized in transmitting this Single
Sideband.
Mathematical Expressions:
Let us consider the mathematical expressions for the modulating and the carrier
signals
i.e. Modulating signal
m(t)=Am.cos(2πfmt)
Carrier signal
c(t)=Ac.cos(2πfct)
Power of an SSB SC wave is equal to the power of any one sideband frequency
component.
Pt=Pusb=Plsb
Pusb=(Am.Ac/2√2)^2/R = (Am.Ac)^2/8R
Similarly, we will get the lower sideband power same as that of the upper side
band power.
Plsb=(Am.Ac/2√2)^2/R = (Am.Ac)^2/8R
P(t)=P(usb)=P(lsb)= (Am.Ac)^2/8R
I. Filter Method
II. Phase Shift Method
Filter Method
This is the filter method of SSB suppression for transmission.
Circuit Diagram:
Output:
Code:
clc;
clear all;
close all;
fc=154000;
fm=fc/10;
fs=100*fc;
t=0:1/fs:4/fm;
xc=cos(2*pi*fc*t);
xm=cos(2*pi*fm*t);
xh=cos((2*pi*fm*t)-pi/2);
%SSB UPPER SIDE BAND MODULATION
z2=(xm.*cos(2*pi*fc*t))-(xh.*sin(2*pi*fc*t));
figure(1)
subplot(2,1,1);
plot(t,z2);
title('ssb usb modulation in time domain');
xlabel('time(sec)');
ylabel('amplitude');
l2=length(z2);
f=linspace(-fs/2,fs/2,l2);
z1=fftshift(fft(z2,l2)/l2);
subplot(2,1,2);
plot(f,abs(z1));
title('ssb usb modulation in frequency domain');
xlabel('frequency(hz)');
ylabel('amplitude');
axis([-400000 400000 0 1]);
Output:
Conclusion:
The experiment was successful in producing a Single Sideband Suppressed Carrier (SSB-SC)
wave by the removal of the carrier and the lower sideband.The MATLAB code accurately
displayed the time and frequency responses of the SSB Upper Sideband (USB) modulation.
***************