INTRODUCTION. TITLE OF PROJECT SIMULATION OF FREQUENCY HOPPING SPREAD SPECTRUM IN MATLAB TITLE OF PROJECT SIMULATION OF FREQUENCY HOPPING SPREAD SPECTRUM.

Slides:



Advertisements
Similar presentations
EE578 Assignment #5 Abdul-Aziz.M Al-Yami November 8 th 2010.
Advertisements

6.1 Chapter 6 Bandwidth Utilization: Multiplexing and Spreading Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
IE 419/519 Wireless Networks Lecture Notes #6 Spread Spectrum.
Spread Spectrum Chapter 7.
Spread Spectrum Chapter 7. Spread Spectrum Input is fed into a channel encoder Produces analog signal with narrow bandwidth Signal is further modulated.
The University of Iowa. Copyright© 2005 A. Kruger 1 Introduction to Wireless Sensor Networks Spread Spectrum and CDMA 24 February 2005.
Lecture 8: Spread Spectrum
Cellular Communications
Spread Spectrum Input is fed into a channel encoder
Spread Spectrum Steganography Nick Sterling Sarah Wahl Sarah Summers.
William Stallings Data and Computer Communications 7th Edition
Data and Computer Communications Eighth Edition by William Stallings Chapter 9 – Spread Spectrum.
SPREAD SPECTRUM In spread spectrum (SS), we combine signals from different sources to fit into a larger bandwidth, but our goals are to prevent eavesdropping.
Spread Spectrum Steganography
1 CMPT 371 Data Communications and Networking Spread Spectrum.
© 2002 Pearson Education, Inc. Commercial use, distribution, or sale prohibited. Wireless Communications Principles and Practice 2/e T.S. Rapppaport Chapter.
Wireless & Mobile Networking: Multiple Division Techniques
Data Communication and Networking 332 Hardware Components of Data Communication.
Direct Sequence Spread- Spectrum with Frequency Hopping.
Spread Spectrum Techniques
King Fahd University of Petroleum & Minerals  Electrical Engineering Department EE 578 Simulation of Wireless Systems Code Division Multiple Access Transmission.
CDMA WIRELESS DATA TRANSMITTER By Vijay kumar kintali B.tech 7 th semester Regd no:
Software Defined Radio
1 Introduction to. 2 Contents: DEFINITION OF SPREAD SPECTRUM ( SS ) CHARACTERISTICS OF SPREAD SPECTRUM BASIC PRINCIPLES OF DIRECT SEQUENCE SPREAD SPECTRUM.
Modulation-Why? 1. Low frequency signal has less energy, which means it can travel less distance. 2. Practibility of antenna.
Data and Computer Communications Eighth Edition by William Stallings Lecture slides by Lawrie Brown Chapter 9 – Spread Spectrum.
Spread Spectrum Spread-spectrum techniques are methods by which energy generated in a particular bandwidth is deliberately spread in the frequency domain,
Lecture02 Spread Spectrum Communication By Engr. Muhammad Ashraf Bhutta.
EE578 Assignment #5 Abdul-Aziz.M Al-Yami November 8 th 2010.
Chapter 13. Spread Spectrum Park Dong-Hyun Department of Information and Communications Engineering The Graduate School of Sejong University.
1 Chapter 7. Spread Spectrum Wen-Shyang Hwang KUAS EE.
WCDMA Introduction Code Division Multiple Access
1 William Stallings Data and Computer Communications 7 th Edition Chapter 9 Spread Spectrum.
Wireless Networks Standards and Protocols & x Standards and x refers to a family of specifications developed by the IEEE for.
Stallings, Wireless Communications & Networks, Second Edition, © 2005 Pearson Education, Inc. All rights reserved Multiple Access Techniques.
Code Division Multiple Access (CDMA) Transmission Technology
Data and Computer Communications Eighth Edition by William Stallings Lecture slides by Lawrie Brown Chapter 9 – Spread Spectrum.
Data and Computer Communications Ninth Edition by William Stallings Chapter 9 – Spread Spectrum Data and Computer Communications, Ninth Edition by William.
1 Spread Spectrum Technology. 2 What is Spread Spectrum(SS) Spread Spectrum (SS) technology was first introduced by military as a way of sending secure.
Code Division Multiple Access (CDMA) Transmission Technology
Stallings, Wireless Communications & Networks, Second Edition, © 2005 Pearson Education, Inc. All rights reserved Spread Spectrum Chapter.
Data and Computer Communications Tenth Edition by William Stallings Data and Computer Communications, Tenth Edition by William Stallings, (c) Pearson Education.
TUNALIData Communication1 Spread Spectrum Chapter 9.
Wireless LAN Technology Chapter 13. Wireless LAN  Wireless LAN is one that make use of a wireless transmission medium.  Wireless LAN use infrared or.
DATA AND COMPUTER COMMUNICATIONS Eighth Edition by William Stallings Lecture slides by Lawrie Brown Chapter 9 – Spread Spectrum.
William Stallings Data and Computer Communications 7th Edition
CSE 5345 – Fundamentals of Wireless Networks
Lecture 7 CSMA and Spread Spectrum Dr. Ghalib A. Shah
Chapter 5: Third generation systems-Wideband Digital Modulation
Outline Introduction Type of Multiplexing FDMA TDMA CDMA Future Work
Wireless Communication Project
Bandwidth Utilization: Multiplexing and Spreading
DIRECT SEQUENCE SPREAD SPECTRUM WITH FREQUENCY HOPPING
An Enhancement of WirelessHART Protocol
Wireless & Mobile Networking: Multiple Division Techniques
Data and Computer Communications Eighth Edition by William Stallings Lecture slides by Lawrie Brown Chapter 9 – Spread Spectrum.
Spread Spectrum Chapter 7.
Spread Spectrum L.Tahani Aljehani.
Spread Spectrum Multiplexing combines signals from several sources to achieve bandwidth efficiency: The available bandwidth of a link is divided between.
QPSK System Design and Simulation: Laboratory Manual
Chapter 5: Third generation systems-Wideband Digital Modulation
Spread Spectrum A signal that occupies a bandwidth of B, is spread out to occupy a bandwidth of Bss All signals are spread to occupy the same bandwidth.
Direct Sequence Spread Spectrum Modulation and Demodulation using Compressive Sensing Under the guidance of M.Venugopala Rao Submitted by K.Y.K.Kumari.
CSE 4215/5431: Mobile Communications Winter 2011
Wireless Networks Fall 2007
Spread Spectrum Chapter 7.
William Stallings Data and Computer Communications 7th Edition
Wireless LAN Technologies and Products
William Stallings Data and Computer Communications 7th Edition
Spread Spectrum Analog or digital data Analog signal
Presentation transcript:

INTRODUCTION

TITLE OF PROJECT SIMULATION OF FREQUENCY HOPPING SPREAD SPECTRUM IN MATLAB TITLE OF PROJECT SIMULATION OF FREQUENCY HOPPING SPREAD SPECTRUM IN MATLAB

ABSTRACT: Understanding the spread spectrum technique. How a frequency hopping signal look like. All the necessary steps required to make a frequency hopping signal.

WHY I HAVE CHOSEN THIS TOPIC: Interest in signal processing & data communication field. Interest in cryptography. Main essence/theme same. Related to military.

SPREAD SPECTRUM??? New commercial market place. Signals distributed over a wide range of frequencies. Collected at the receiver. Immunity to jamming, interference etc.

FREQUENCY HOPPING SPREAD SPECTRUM.  History  Signal hops between different frequencies.  Seed/Pseudo random numbers.  Synchronization between transmitter and receiver.  Modulation and demodulation

EXPLANATION:

METHODOLOGY/BLOCK DIAGRAM:

ADVANTAGES:  Resistant to narrowband interference.  Difficult to intercept.  Utilization of Bandwidth.  Resistant to jamming

Applications:  Military use/ Electronic warfare.  Mobile communications/GSM.  W/LANS  Country wide networks for transferring mail,faxes,multimedia etc.

CODE… s=round(rand(1,25)); signal=[]; carrier=[]; t=[0:2*pi/119:2*pi]; for k=1:25 if s(1,k)==0 sig=-ones(1,120); else sig=ones(1,120); end c=cos(t); carrier=[carrier c]; signal=[signal sig]; end

… subplot(4,1,1); plot(signal); axis([ ]); title('\bf\it Original Bit Sequence'); % BPSK Modulation of the signal bpsk_sig=signal.*carrier; subplot(4,1,2); plot(bpsk_sig) axis([ ]); title('\bf\it BPSK Modulated Signal');

… t1=[0:2*pi/9:2*pi]; t2=[0:2*pi/19:2*pi]; t3=[0:2*pi/29:2*pi]; t4=[0:2*pi/39:2*pi]; t5=[0:2*pi/59:2*pi]; t6=[0:2*pi/119:2*pi]; c1=cos(t1); c1=[c1 c1 c1 c1 c1 c1 c1 c1 c1 c1 c1 c1]; c2=cos(t2); c2=[c2 c2 c2 c2 c2 c2]; c3=cos(t3); c3=[c3 c3 c3 c3]; c4=cos(t4); c4=[c4 c4 c4]; c5=cos(t5); c5=[c5 c5]; c6=cos(t6);

… % Random frequency hops to form a spread signal spread_signal=[]; for n=1:25 c=randint(1,1,[1 6]); switch(c) case(1) spread_signal=[spread_signal c1]; case(2) spread_signal=[spread_signal c2]; case(3) spread_signal=[spread_signal c3]; case(4) spread_signal=[spread_signal c4]; case(5) spread_signal=[spread_signal c5]; case(6) spread_signal=[spread_signal c6]; end subplot(4,1,3) plot([1:3000],spread_signal); axis([ ]); title('\bf\it Spread Signal with 6 frequencies');

… freq_hopped_sig=bpsk_sig.*spread_signal; subplot(4,1,4) plot([1:3000],freq_hopped_sig); axis([ ]); title('\bf\it Frequency Hopped Spread Spectrum Signal'); % Expressing the FFTs to know about the frequency content of the signal figure,subplot(2,1,1) plot([1:3000],freq_hopped_sig); axis([ ]); title('\bf\it Frequency Hopped Spread Spectrum signal and its FFT'); subplot(2,1,2); plot([1:3000],abs(fft(freq_hopped_sig)));

RESULTS

THANKS QUESTIONS???