0% found this document useful (0 votes)
20 views5 pages

LAB SESSION 07a

This document describes a lab experiment on generating and detecting single sideband (SSB) signals using the phase shift method. The objective is to generate an SSB signal using phase modulation and detect the SSB signal using a synchronous detector. The theory section explains how SSB modulation uses only one sideband and the carrier to transmit information, reducing bandwidth compared to AM and DSB. The block diagram shows the SSB modulator and demodulator. The program section includes MATLAB code to generate SSB signals, demodulate them, and filter the output.

Uploaded by

Mudassar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views5 pages

LAB SESSION 07a

This document describes a lab experiment on generating and detecting single sideband (SSB) signals using the phase shift method. The objective is to generate an SSB signal using phase modulation and detect the SSB signal using a synchronous detector. The theory section explains how SSB modulation uses only one sideband and the carrier to transmit information, reducing bandwidth compared to AM and DSB. The block diagram shows the SSB modulator and demodulator. The program section includes MATLAB code to generate SSB signals, demodulate them, and filter the output.

Uploaded by

Mudassar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 5

COMMUNICATION SYSTEM LAB

LAB SESSION 07
SSB-SC MODULATOR & DETECTOR
(PHASE SHIFT METHOD)

Name of Student: ……………………………………………………

Roll No.: …………………………………Section: …………………

Date of Experiment: ………………………………………………….

Report submitted on: …………………………………………………

Marks obtained: ……………………………………

Remarks: ……………………………………………

Instructor’s Signature: ……………………………...

DEPARTMENT OF ELECTRICAL ENGINEERING

1
COMMUNICATION SYSTEM LAB

Objective:
To generate SSB using phase method and detection of SSB signal using
Synchronous detector.

THEORY:
AM and DSBSC modulation are wasteful of band width because they both
require a transmission bandwidth which is equal to twice the message
bandwidth In SSB only one side band and the carrier is used. The other side
band is suppressed at the transmitter, but no information is lost. Thus the
communication channel needs to provide the same band width, when only one
side band is transmitted. So the modulation system is referred to as SSB system.
The base band signal may not be recovered from a SSB signal by the Use of a
diode modulator. The bae band signal can be recovered if the spectral
component of the output i.e either the LSB or USB is multiplied by the carrier
signal.
Consider the modulating signal
M(t)=Am cos Wmt
C(t)=Ac cosWct
M(t)c(t)= AcAm cosWmt cosWct
The above signal when passed through a filter, only one of the above
component is obtained which lays the SSB signal.

BLOCK DIAGRAM:

2
COMMUNICATION SYSTEM LAB

PROGRAM:
% program for ssb modulation and demodulation
close all
clear all
clc
fs=8000;
fm=20;
fc=50;
Am=1;
Ac=1;
t=[0:0.1*fs]/fs;
subplot(5,1,1);
m1=Am*cos(2*pi*fm*t);
plot(t,m1);
title('Message Signal');
m2=Am*sin(2*pi*fm*t);
subplot(5,1,2)
c1=Ac*cos(2*pi*fc*t);
plot(t,c1)
title('Carrier Signal');
c2=Ac*sin(2*pi*fc*t);
subplot(5,1,3)
% Susb=0.5* Am*cos(2*pi*fm*t).* Ac*cos(2*pi*fc*t) -- 0.5*
Am*sin(2*pi*fm*t).* Ac*sin(2*pi*fc*t);
Susb=0.5*m1.*c1-0.5*m2.*c2;

3
COMMUNICATION SYSTEM LAB

plot(t,Susb);
title('SSB-SC Signal with USB');
subplot(5,1,4);
Slsb=0.5*m1.*c1+0.5*m2.*c2;
plot(t,Slsb);
title('SSB-SC Signal with LSB');
r = Susb.*c1;
subplot(5,1,5);
[b a] = butter(1,0.0001);
mr= filter(b,a,r);
plot(t,mr);
title('demodulated output');

4
COMMUNICATION SYSTEM LAB

You might also like