Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
22 views

Expt 3 BOC

This document summarizes an experiment on generating a single-sideband suppressed-carrier (SSB-SC) wave using MATLAB and NI Multisim software. It describes the aim to produce an SSB-SC wave, the hardware and software used including MATLAB R2023 and NI Multisim 14.0. It then provides the theory behind SSB-SC modulation, mathematical expressions, bandwidth calculations, power calculations, and methods for SSB transmission including the filter method. The document includes a circuit diagram and code sample. It concludes that the experiment was successful in producing an SSB-SC wave and the MATLAB code accurately displayed the time and frequency responses of SSB upper sideband modulation.

Uploaded by

Lajari Sawant
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

Expt 3 BOC

This document summarizes an experiment on generating a single-sideband suppressed-carrier (SSB-SC) wave using MATLAB and NI Multisim software. It describes the aim to produce an SSB-SC wave, the hardware and software used including MATLAB R2023 and NI Multisim 14.0. It then provides the theory behind SSB-SC modulation, mathematical expressions, bandwidth calculations, power calculations, and methods for SSB transmission including the filter method. The document includes a circuit diagram and code sample. It concludes that the experiment was successful in producing an SSB-SC wave and the MATLAB code accurately displayed the time and frequency responses of SSB upper sideband modulation.

Uploaded by

Lajari Sawant
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Basic Of Communication Lab

T.Y. B. Tech Electrical


Name: - Shashwat Baghel Group:- 3
Registration ID: - 211030052 Date: - 22/02/24
Experiment 3
Single-sideband Suppressed-carrier

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)

Mathematically , we can represent the equation of SSB SC wave as

s(t)=Am.Ac/2.(cos(2π(fc+fm)t) for the upper sideband

s(t)=Am.Ac/2.(cos(2π(fc-fm)t) for the lower sideband

Bandwidth of SSB SC wave


We know that the DSB SC modulated wave contains two sidebands and its
bandwidth is 2fm. Since the SSB SC modulated wave contains only one sideband,
its bandwidth is half of the bandwidth of the DSB SC modulated wave.
i.e. Bandwidth of SSB SC modulated wave=2fm/2=fm
Therefore, the bandwidth of SSB SC modulated waves is fm and it is equal to the
frequency of the modulating signal.

Power Calculations of SSB SC wave


Consider the following equation of SSB SC modulated wave.

s(t)=Am.Ac/2.(cos(2π(fc+fm)t) for the upper sideband

s(t)=Am.Ac/2.(cos(2π(fc-fm)t) for the lower sideband

Power of an SSB SC wave is equal to the power of any one sideband frequency
component.

Pt=Pusb=Plsb

We know that the standard formula for power of cos signal is


P=(Vrms)^2/R= (Vm/√2)^2/R
In this case , the power of the upper side band is

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

Therefore, the power of SSB SC wave is

P(t)=P(usb)=P(lsb)= (Am.Ac)^2/8R

There are two methods used for SSB Transmission:

I. Filter Method
II. Phase Shift Method

Filter Method
This is the filter method of SSB suppression for transmission.

The figure illustrates the block diagram of the Filter method.

● A crystal-controlled master oscillator produces a stable carrier frequency fc (say


100 KHz)
● This carrier frequency is then fed to the balanced modulator through a buffer
amplifier which isolates these two stages.
● The audio signal from the modulating amplifier modulates the carrier in the
balanced modulator. The audio frequency range is 300 to 2800 Hz. The carrier is
also suppressed in this stage but allows only to pass both sidebands. (USB &
LSB).
● A band pass filter (BPF) allows only a single band either USB or LSB to pass
through it. It depends on our requirements.
If we want to pass the USB then LSB will be suppressed.
● In this case, fc = 100 KHz
Audio range = 300 - 2800 Hz
USB frequency range = fc + 300 to fc + 2800
= 100000 + 300 to 100000 + 2800
= 100300 to 102800 Hz
So this band of frequency will be passed on through the USB filter section
● This sideband is then heterodyned in the balanced mixer stage with a 12 MHz
frequency produced by a crystal oscillator or synthesizer depending upon the
requirements of our transmission. So in the mixer stage, the frequency of the
crystal oscillator or synthesizer is added to the SSB signal. The output frequency
is thus raised to the value desired for transmission.
● Then this band is amplified in the driver and power amplifier stages and then fed
to the aerial for the 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.

Remark :_______________ Signature:______________

***************

You might also like