Skip to content

AJAYD313/SSB

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

SSB

EXP NO: 3 SSB-SC-AM MODULATION using SCILAB

AIM:

To write a program to perform SSBSC modulation and demodulation using SCI LAB and study its spectral characteristics

EQUIPMENTS REQUIRED

• Computer with i3 Processor

• SCI LAB

Note: Keep all the switch faults in off position

Algorithm

  1. Define Parameters: • Fs: Sampling frequency. • T: Duration of the signal. • Fc: Carrier frequency. • Fm: Frequency of the message signal. • Amplitude: Maximum amplitude of the message signal.
  2. Generate Signals: • Message Signal: The baseband signal that will be modulated. • Carrier Signal: A high-frequency signal used for modulation. • Analytic Signal: Constructed using the Hilbert transform to get the in-phase and quadrature components.
  3. SSBSC Modulation: • Modulated Signal: Create the SSBSC signal using the in-phase and quadrature components, modulated by the carrier.
  4. SSBSC Demodulation: • Mixing: Multiply the SSBSC signal with the carrier to retrieve the message signal. • Low-pass Filtering: Apply a low-pass filter to remove high-frequency components and recover the original message signal.
  5. Visualization: • Plot the message signal, carrier signal, SSBSC modulated signal, and the recovered signal after demodulation.

PROCEDURE

• Refer Algorithms and write code for the experiment. • Open SCILAB in System • Type your code in New Editor • Save the file

• Execute the code • If any Error, correct it in code and execute again • Verify the generated waveform using Tabulation and Model Waveform

Model Waveform

image image

Program Am=9.5; Ac=19; fm=709; fc=7090; fs=70900; t=0:1/fs:2/fm; m1=Amcos(23.14fmt); subplot(4,1,1); plot(t,m1); c1=Accos(23.14fct); subplot(4,1,2); plot(t,c1); m2=Amcos(1.57-(23.14fmt)); c2=Accos(1.57-(23.14fct)); s1=m1.*c1; s2=m2.*c2; LSB=s1+s2; subplot(4,1,3); plot(t,LSB); USB=s1-s2; subplot(4,1,4); plot(t,USB);

OUTPUT WAVEFORM Screenshot 2025-11-03 205241

TABULATION WhatsApp Image 2025-10-28 at 10 17 37 AM

RESULT:

Thus, the SSB-SC-AM Modulation and Demodulation is experimentally done and the output is verified.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors