Measuring Modulations

Size: px
Start display at page:

Download "Measuring Modulations"

Transcription

1 I N S T I T U T E O F C O M M U N I C A T I O N E N G I N E E R I N G Telecommunications Laboratory Measuring Modulations laboratory guide

2 Table of Contents 2 Measurement Tasks Starting up the system Connecting to another modem Programming the automatic mode Overview of other parameters Analyzing analog and digital modulations in MATLAB Modulating signals Analog modulations amplitude modulation (AM) Analog modulations AM continued Analog modulations Frequency Modulation (FM) and Phase Modulation (PM) Analog modulations Quadrature Amplitude Modulation (QAM) Digital modulations Phase Shift Keying (PSK) Digital modulations PSK continued QAM continued Questions...10

3 2 Measurement Tasks Write a report document about the class. In this document you have to list all the commands that you've given out, and additionally you must explain what these commands do. 2.1 Starting up the system Switch on the PC and the modem. Check the RS-232 connection between the PC and the modem. Check the telecommunications connection of the modem. (This connects to a subsystem in the lab, rather than the public line.) Verify that you are properly connected to the line subsystem. (Do you get a tone in the telephone connected to the modem? Can you dial a number?) Start the terminal software on the PC. Check the settings of the communications port. Send an empty AT command (AT, enter) to test the connection. If it works properly you should see an "OK". Set the modem to its default state. This is done via an AT command consult the manual of the device for help. 2.2 Connecting to another modem Call the other device with the corresponding AT command. Take a note of each step of the call process. Try to establish a connection in both TONE and PULSE mode. Evaluate the CONNECT message. Verify the established connection with text transfer. 2.3 Programming the automatic mode With the use of the manual set the modem to automatic mode, and program it to answer the call after 3 rings (for example). Take a note of the commands that you give out, and the state of the modem after you do. (There is an "AA" LED on the front of the device that indicates this.) Verify the successful programming with a call. 2.4 Overview of other parameters Search the manual for the functions of the S registers, and take a note of a few. Take a note of a few settings of your choice. Draw a figure detailing the process of establishing the connection, and the process of disconnection.

4 3 Analyzing analog and digital modulations in MATLAB 3.1 Modulating signals Create two periodic signals, specifically cosine waves, with different phases and frequencies. You'll use these as modulating signals later. Since MATLAB can only work with discrete numbers, you must specify the parameters required for processing the analog signals: N Tw Fs Td the number of samples window time, [s] this is how long our sample will be sampling frequency, [Hz] delay time this specifies the time between two samples The latter two can be derived from the former two (N and Tw) by using the software itself: N=10000; tw=5e-3; fs=n/tw; td=tw/n; t=0:td:tw-td; The last line creates a one-dimensional vector, starting from zero and ending at Tw minus Td, with step size Td. (You can check it in the 'Workspace' window, double clicking its name.) Take a note of the value of the parameters, and their connection. What is the maximum frequency that we can measure with this particular setup? The parameters of the two periodic (cosine) signals are: Name of the variable Amplitude Frequency Starting phase x Hz 0 x Hz - π/4 a) Use the following commands to realize x1 with the data given in the last table, and to graph it in time and in frequency dimension. To put notes on the graphs, use the text boxes by clicking 'Data Cursor' (this icon: ), and dragging it to a noteworthy spot. You can put down more than one with using the "Alt" key. You can use the function "drawfft" to graph something in the frequency dimension. This is a Fast Fourier Transformation (FFT) function, loaded from the file drawfft.m. We'll only need the result for positive frequencies and for absolute values. This drawfft command needs two parameters to run: the signal itself, and the sampling frequency, given in parenthesis and separated by comma: f1=1000; fi1=0; A1=2; x1=a1*cos(2*pi*f1*t+fi1); plot(t,x1) drawfft(x1,fs)

5 b) Similarly, create signal "x2" and graph it: f2=1600; fi2=-pi/4; A2=1; x2=a2*cos(2*pi*f2*t+fi2); plot(t,x2) drawfft(x2,fs) c) Then add "x1" and "x2" to a new variable and graph the addition, too: x=x1+x2; plot(t,x) drawfft(x,fs) 3.2 Analog modulations amplitude modulation (AM) a) To realize the modulation you must specify the frequency of the carrier signal, and then modulate this carrier signal with the "x1" signal: fc=20000; %[Hz] yx1amdsbtc=modulate(x1,fc,fs,'amdsb-tc'); Graph the result in time dimension and in frequency dimension: plot(t,yx1amdsbtc) drawfft(yx1amdsbtc,fs) b) Demodulate the signal "yx1amdsbtc", and graph both in time and in frequency dimension. Is the demodulated baseband signal the same as the original? If you found differences you must explain it (e.g. DC offset, different amplitude). x1amdsbtc=demod(yx1amdsbtc,fc,fs,'amdsb-tc'); c) Modulate the "x1" signal with other carrier frequencies, too. When selecting the frequency make sure you don't violate the Nyquist-Shannon sampling theorem. What does this theorem states? Fc1=50000; %[Hz] yx1amdsbtc2=modulate(x1,fc1,fs,'amdsb-tc'); d) Modulate the "x2" signal, too: yx2amdsbtc=modulate(x2,fc,fs,'amdsb-tc');

6 3.3 Analog modulations AM continued What other amplitude modulating methods can be used by the "modulate" command? Search the Help in MatLab, or write the 'help modulate' command into the main window for answers. Use the "x" signal for modulation, and graph the results in both time and frequency dimensions. Use these to help explain the differences between the modulating methods (AMDSB-TC, AMSSB, AMDSB-SC). a) Modulating with the AMDSB-TC method: Demodulating: yxamdsbtc=modulate(x,fc,fs,'amdsb-tc'); xamdsbtc=demod(yxamdsbtc,fc,fs,'amdsb-tc'); b) Modulating with the AMDSB-SC method: Demodulating: yxamdsbsc=modulate(x,fc,fs,'amdsb-sc'); xamdsbsc=demod(yxamdsbsc,fc,fs,'amdsb-sc'); c) Modulating with the AMSSB method: Demodulating: yxamssb=modulate(x,fc,fs,'amssb'); xamssb=demod(yxamssb,fc,fs,'amssb');

7 3.4 Analog modulations Frequency Modulation (FM) and Phase Modulation (PM) Use the signal "x1" to understand how frequency modulated and phase modulated signals look like in the time dimension. Graph the modulated signals, and explain using those. a) FM: yx1fm=modulate(x1,fc,fs,'fm'); b) AM: yx1pm=modulate(x1,fc,fs,'pm'); 3.5 Analog modulations Quadrature Amplitude Modulation (QAM) With QAM we can modulate two signals that are independent onto a single carrier. Use the signals "x1" and "x2". Examine the modulated signal both in time and frequency dimension. yqam=modulate(x1,fc,fs,'qam',x2); Demodulate the signal, and compare the results with the original, baseband signals. Do they match? [x1dem,x2dem]=demod(yqam,fc,fs,'qam'); plot(t,x1dem) drawfft(x1dem,fs) plot(t,x2dem) drawfft(x2dem,fs)

8 3.6 Digital modulations Phase Shift Keying (PSK) In this case our signal is made out of bits. These bits are grouped together into symbols, and we modulate the carrier signal with these symbols. First, you should examine the properties of Phase Shift Keying. In this case the different symbols are "translated" to different phases. In case of 2PSK, or BPSK there are two symbols, and these are represented by 0 rad and π rad. Digital signals like this are best represented by a constellation diagram. This is essentially a plane where every point corresponds to a complex number. To every point we can draw a vector; the length of this vector is the amplitude of the signal, and the angle between the vector and the X axis is the phase. The amplitude is constant (e.g. =1) in case of PSK. a) Define the phases for BPSK on the complex plane. This is trivial using an exponential expression: konst_bpsk=exp(j*[0,pi]); Graph a few points on the complex plane, and write the symbol values next to the points: scatterplot(konst_bpsk,1,0,'o'); text(real(konst_bpsk),imag(konst_bpsk)+0.1,dec2bin([0 1])); What's the phase difference between the symbols, in degrees? How many bits can we transfer with one symbol here? b) Create the constellation diagram of QPSK (or 4PSK). What is the phase difference between the QPSK symbols? How many bits can we transfer with this modulation, per symbol? konst_qpsk=exp(j*[0,pi/2,3*pi/2,pi]); scatterplot(konst_qpsk,1,0,'o'); text(real(konst_qpsk),imag(konst_qpsk)+0.1,dec2bin([ ])); c) Create the constellation diagram of 8PSK. Again, determine what is the phase difference between the symbols, and how many bits can we transfer with 8PSK per symbol. konst_8psk=exp(j*[...,...,...,...,...,...,...,...,]); scatterplot(konst_8psk,1,0,'o'); text(...,...,...); d) Compare the 3 types of PSK in terms of phase differences between symbols, the transferred bits per symbols, and noise. (In case of noise: let's say that noise enters into the channel. Which PSK method would be more vulnerable to it, and which one would be less affected?)

9 3.7 Digital modulations PSK continued a) Transfer random numbers with 8PSK in a noisy channel. What do you see on the constellation diagram? Run the code with at least 3 different signal-to-noise ratio (SNR), and explain the differences between them. Increase or decrease the SNR successively, and choose practical values (10,15,20,30,etc.) Use the provided "psk.m" file for this. b) Use Gray code in the symbols of 8PSK. You can realize this by uncommenting the corresponding commands in "psk.m", by deleting the "%" symbols at the beginning of the rows. (You can also highlight multiple rows and switch to commented/uncommented state with a button on the graphical interface, or with Ctrl-R/Ctrl-T.) What are the advantages of using Gray code here? What is SNR? What is better: lower or higher SNR? Why? 3.8 QAM continued Use the provided "qam.m" file to realize this part. a) Examine the usage of QAM with different amount of symbols and different signal-to-noise ratios. What do you experience? How does the number of symbols influence the quality of the transfer medium that can be used to transfer data? b) Use Gray coding on the symbols of QAM16. Use the commented out commands in "qam.m" for this.

10 4 Questions 1. What is modulation? When do we use it? 2. What is a carrier signal? What is a modulating signal? 3. How can we tell the difference between modulation methods? 4. Explain what the following terms mean: amplitude modulation, frequency modulation, phase modulation, quadrature modulation. Use diagrams and annotate them. 5. What is the main difference between AM-ASK, FM-FSK, and PM-PSK? 6. How do we use Gray code on a constellation diagram? What is the benefit of using it? Explain it on a 3-bit (8-state) constellation diagram. 7. What are the advantages and the disadvantages of using QAM32 instead of QAM16? How does the carrier medium influence the number of states we should use? Why? 8. What is the difference between synchronous and asynchronous communication? What is the difference between serial and parallel communication? 9. What are AT commands? Where do we use them, and for what?

BER Performance with GNU Radio

BER Performance with GNU Radio BER Performance with GNU Radio Digital Modulation Digital modulation is the process of translating a digital bit stream to analog waveforms that can be sent over a frequency band In digital modulation,

More information

Introduction to Simulink Assignment Companion Document

Introduction to Simulink Assignment Companion Document Introduction to Simulink Assignment Companion Document Implementing a DSB-SC AM Modulator in Simulink The purpose of this exercise is to explore SIMULINK by implementing a DSB-SC AM modulator. DSB-SC AM

More information

Modulations Analog Modulations Amplitude modulation (AM) Linear modulation Frequency modulation (FM) Phase modulation (PM) cos Angle modulation FM PM Digital Modulations ASK FSK PSK MSK MFSK QAM PAM Etc.

More information

Mobile Communication An overview Lesson 03 Introduction to Modulation Methods

Mobile Communication An overview Lesson 03 Introduction to Modulation Methods Mobile Communication An overview Lesson 03 Introduction to Modulation Methods Oxford University Press 2007. All rights reserved. 1 Modulation The process of varying one signal, called carrier, according

More information

ENSC327 Communication Systems Fall 2011 Assignment #1 Due Wednesday, Sept. 28, 4:00 pm

ENSC327 Communication Systems Fall 2011 Assignment #1 Due Wednesday, Sept. 28, 4:00 pm ENSC327 Communication Systems Fall 2011 Assignment #1 Due Wednesday, Sept. 28, 4:00 pm All problem numbers below refer to those in Haykin & Moher s book. 1. (FT) Problem 2.20. 2. (Convolution) Problem

More information

Experiment 1 Introduction to MATLAB and Simulink

Experiment 1 Introduction to MATLAB and Simulink Experiment 1 Introduction to MATLAB and Simulink INTRODUCTION MATLAB s Simulink is a powerful modeling tool capable of simulating complex digital communications systems under realistic conditions. It includes

More information

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY An Overview of Modulation Techniques: chapter 3.1 3.3.1 2 Introduction (3.1) Analog Modulation Amplitude Modulation Phase and

More information

ECE 4600 Communication Systems

ECE 4600 Communication Systems ECE 4600 Communication Systems Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences Course Topics Course Introduction

More information

ECE 4203: COMMUNICATIONS ENGINEERING LAB II

ECE 4203: COMMUNICATIONS ENGINEERING LAB II DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING ECE 4203: COMMUNICATIONS ENGINEERING LAB II SEMESTER 2, 2017/2018 DIGITAL MODULATIONS INTRODUCTION In many digital communication systems, cable (as for data

More information

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY

TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY TSEK02: Radio Electronics Lecture 2: Modulation (I) Ted Johansson, EKS, ISY 2 Basic Definitions Time and Frequency db conversion Power and dbm Filter Basics 3 Filter Filter is a component with frequency

More information

Digital modulation techniques

Digital modulation techniques Outline Introduction Signal, random variable, random process and spectra Analog modulation Analog to digital conversion Digital transmission through baseband channels Signal space representation Optimal

More information

Signal Encoding Techniques

Signal Encoding Techniques 2 Techniques ITS323: to Data Communications CSS331: Fundamentals of Data Communications Sirindhorn International Institute of Technology Thammasat University Prepared by Steven Gordon on 3 August 2015

More information

PGT313 Digital Communication Technology. Lab 3. Quadrature Phase Shift Keying (QPSK) and 8-Phase Shift Keying (8-PSK)

PGT313 Digital Communication Technology. Lab 3. Quadrature Phase Shift Keying (QPSK) and 8-Phase Shift Keying (8-PSK) PGT313 Digital Communication Technology Lab 3 Quadrature Phase Shift Keying (QPSK) and 8-Phase Shift Keying (8-PSK) Objectives i) To study the digitally modulated quadrature phase shift keying (QPSK) and

More information

FACULTY OF ENGINEERING LAB SHEET ETN3046 ANALOG AND DIGITAL COMMUNICATIONS TRIMESTER 1 (2018/2019) ADC2 Digital Carrier Modulation

FACULTY OF ENGINEERING LAB SHEET ETN3046 ANALOG AND DIGITAL COMMUNICATIONS TRIMESTER 1 (2018/2019) ADC2 Digital Carrier Modulation FACULTY OF ENGINEERING LAB SHEET ETN3046 ANALOG AND DIGITAL COMMUNICATIONS TRIMESTER 1 (2018/2019) ADC2 Digital Carrier Modulation TC Chuah (2018 July) Page 1 ADC2 Digital Carrier Modulation with MATLAB

More information

Chapter 12: Digital Modulation and Modems

Chapter 12: Digital Modulation and Modems Chapter 12: Digital Modulation and Modems MULTIPLE CHOICE 1. FSK stands for: a. Full-Shift Keying c. Full-Signal Keying b. Frequency-Shift Keying d. none of the above 2. PSK stands for: a. Pulse-Signal

More information

Digital to Digital Encoding

Digital to Digital Encoding MODULATION AND ENCODING Data must be transformed into signals to send them from one place to another Conversion Schemes Digital-to-Digital Analog-to-Digital Digital-to-Analog Analog-to-Analog Digital to

More information

Chapter 7. Multiple Division Techniques

Chapter 7. Multiple Division Techniques Chapter 7 Multiple Division Techniques 1 Outline Frequency Division Multiple Access (FDMA) Division Multiple Access (TDMA) Code Division Multiple Access (CDMA) Comparison of FDMA, TDMA, and CDMA Walsh

More information

COSC 3213: Computer Networks I: Chapter 3 Handout #4. Instructor: Dr. Marvin Mandelbaum Department of Computer Science York University Section A

COSC 3213: Computer Networks I: Chapter 3 Handout #4. Instructor: Dr. Marvin Mandelbaum Department of Computer Science York University Section A COSC 3213: Computer Networks I: Chapter 3 Handout #4 Instructor: Dr. Marvin Mandelbaum Department of Computer Science York University Section A Topics: 1. Line Coding: Unipolar, Polar,and Inverted ; Bipolar;

More information

Recap of Last 2 Classes

Recap of Last 2 Classes Recap of Last 2 Classes Transmission Media Analog versus Digital Signals Bandwidth Considerations Attentuation, Delay Distortion and Noise Nyquist and Shannon Analog Modulation Digital Modulation What

More information

ECT-215 Homework #1 Solution Set Chapter 14 Problems 1-29

ECT-215 Homework #1 Solution Set Chapter 14 Problems 1-29 Scoring: 1 point per problem, 29 points total. ECT-215 Homework #1 Solution Set Chapter 14 Problems 1-29 1. For the system of figure 14-1, give the binary code output that will result for each of the following

More information

Emona Telecoms-Trainer ETT-101

Emona Telecoms-Trainer ETT-101 EXPERIMENTS IN MODERN COMMUNICATIONS Emona Telecoms-Trainer ETT-101 Multi-Experiment Single Board Telecommunications Trainer for Technical College and Technical High School Students EMONA INSTRUMENTS www.ett101.com

More information

Modulation and Coding Tradeoffs

Modulation and Coding Tradeoffs 0 Modulation and Coding Tradeoffs Contents 1 1. Design Goals 2. Error Probability Plane 3. Nyquist Minimum Bandwidth 4. Shannon Hartley Capacity Theorem 5. Bandwidth Efficiency Plane 6. Modulation and

More information

Chapter 6 Passband Data Transmission

Chapter 6 Passband Data Transmission Chapter 6 Passband Data Transmission Passband Data Transmission concerns the Transmission of the Digital Data over the real Passband channel. 6.1 Introduction Categories of digital communications (ASK/PSK/FSK)

More information

How to Simply Generate a PSK Modulation

How to Simply Generate a PSK Modulation How to Simply Generate a PSK Modulation Phase-Shift Keying (PSK) is a technique used to transmit data by modifying the phase of a sinusoid carrier wave. The Tabor family of Arbitrary Waveform Generators

More information

DigiPoints Volume 1. Student Workbook. Module 2 Modem Overview

DigiPoints Volume 1. Student Workbook. Module 2 Modem Overview Modem Overview Page 2.1 DigiPoints Volume 1 Module 2 Modem Overview Summary One of the potential advantages the cable telecommunications industry has is the ability to carry data signals at speeds significantly

More information

SETTING UP A WIRELESS LINK USING ME1000 RF TRAINER KIT

SETTING UP A WIRELESS LINK USING ME1000 RF TRAINER KIT SETTING UP A WIRELESS LINK USING ME1000 RF TRAINER KIT Introduction S Kumar Reddy Naru ME Signal Processing S. R. No - 05812 The aim of the project was to try and set up a point to point wireless link.

More information

Objectives. Presentation Outline. Digital Modulation Lecture 01

Objectives. Presentation Outline. Digital Modulation Lecture 01 Digital Modulation Lecture 01 Review of Analogue Modulation Introduction to Digital Modulation Techniques Richard Harris Objectives You will be able to: Classify the various approaches to Analogue Modulation

More information

Digital Modulation Lecture 01. Review of Analogue Modulation Introduction to Digital Modulation Techniques Richard Harris

Digital Modulation Lecture 01. Review of Analogue Modulation Introduction to Digital Modulation Techniques Richard Harris Digital Modulation Lecture 01 Review of Analogue Modulation Introduction to Digital Modulation Techniques Richard Harris Objectives You will be able to: Classify the various approaches to Analogue Modulation

More information

EEL 4350 Principles of Communication Project 2 Due Tuesday, February 10 at the Beginning of Class

EEL 4350 Principles of Communication Project 2 Due Tuesday, February 10 at the Beginning of Class EEL 4350 Principles of Communication Project 2 Due Tuesday, February 10 at the Beginning of Class Description In this project, MATLAB and Simulink are used to construct a system experiment. The experiment

More information

Real and Complex Modulation

Real and Complex Modulation Real and Complex Modulation TIPL 4708 Presented by Matt Guibord Prepared by Matt Guibord 1 What is modulation? Modulation is the act of changing a carrier signal s properties (amplitude, phase, frequency)

More information

Principles of Communications ECS 332

Principles of Communications ECS 332 Principles of Communications ECS 332 Asst. Prof. Dr. Prapun Suksompong prapun@siit.tu.ac.th 5. Angle Modulation Office Hours: BKD, 6th floor of Sirindhralai building Wednesday 4:3-5:3 Friday 4:3-5:3 Example

More information

Implementation of QAM Modulation Demodulation Based on. Simulink

Implementation of QAM Modulation Demodulation Based on. Simulink 1 Implementation of QAM Modulation Demodulation Based on Simulink Wanjian Jiang,Mingjie Zhao,Yaodong Tang Computer Technology and Engineering College, Qinhuangdao University, Hebei, China Abstract: This

More information

Swedish College of Engineering and Technology Rahim Yar Khan

Swedish College of Engineering and Technology Rahim Yar Khan PRACTICAL WORK BOOK Telecommunication Systems and Applications (TL-424) Name: Roll No.: Batch: Semester: Department: Swedish College of Engineering and Technology Rahim Yar Khan Introduction Telecommunication

More information

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2)

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2) 192620010 Mobile & Wireless Networking Lecture 2: Wireless Transmission (2/2) [Schiller, Section 2.6 & 2.7] [Reader Part 1: OFDM: An architecture for the fourth generation] Geert Heijenk Outline of Lecture

More information

Error Probability of Different Modulation Schemes for OFDM based WLAN standard IEEE a

Error Probability of Different Modulation Schemes for OFDM based WLAN standard IEEE a Error Probability of Different Modulation Schemes for OFDM based WLAN standard IEEE 802.11a Sanjeev Kumar Asst. Professor/ Electronics & Comm. Engg./ Amritsar college of Engg. & Technology, Amritsar, 143001,

More information

Amplitude Modulation, II

Amplitude Modulation, II Amplitude Modulation, II Single sideband modulation (SSB) Vestigial sideband modulation (VSB) VSB spectrum Modulator and demodulator NTSC TV signsals Quadrature modulation Spectral efficiency Modulator

More information

Lab 1B LabVIEW Filter Signal

Lab 1B LabVIEW Filter Signal Lab 1B LabVIEW Filter Signal Due Thursday, September 12, 2013 Submit Responses to Questions (Hardcopy) Equipment: LabVIEW Setup: Open LabVIEW Skills learned: Create a low- pass filter using LabVIEW and

More information

Wireless Communication Fading Modulation

Wireless Communication Fading Modulation EC744 Wireless Communication Fall 2008 Mohamed Essam Khedr Department of Electronics and Communications Wireless Communication Fading Modulation Syllabus Tentatively Week 1 Week 2 Week 3 Week 4 Week 5

More information

Capturing IQ data with NRA and IDA

Capturing IQ data with NRA and IDA Narda Remote Spectrum Analyzer, NRA Series Interference and Direction Analyzer, IDA Series Technical Note TN101 Capturing with NRA and IDA A brief theoretical outline with practical examples With the Scope/IQ

More information

OptiSystem applications: Digital modulation analysis (PSK)

OptiSystem applications: Digital modulation analysis (PSK) OptiSystem applications: Digital modulation analysis (PSK) 7 Capella Court Nepean, ON, Canada K2E 7X1 +1 (613) 224-4700 www.optiwave.com 2009 Optiwave Systems, Inc. Introduction PSK modulation Digital

More information

Amplitude Frequency Phase

Amplitude Frequency Phase Chapter 4 (part 2) Digital Modulation Techniques Chapter 4 (part 2) Overview Digital Modulation techniques (part 2) Bandpass data transmission Amplitude Shift Keying (ASK) Phase Shift Keying (PSK) Frequency

More information

Memorial University of Newfoundland Faculty of Engineering and Applied Science. Lab Manual

Memorial University of Newfoundland Faculty of Engineering and Applied Science. Lab Manual Memorial University of Newfoundland Faculty of Engineering and Applied Science Engineering 6871 Communication Principles Lab Manual Fall 2014 Lab 1 AMPLITUDE MODULATION Purpose: 1. Learn how to use Matlab

More information

C06a: Digital Modulation

C06a: Digital Modulation CISC 7332X T6 C06a: Digital Modulation Hui Chen Department of Computer & Information Science CUNY Brooklyn College 10/2/2018 CUNY Brooklyn College 1 Outline Digital modulation Baseband transmission Line

More information

Discussion Chapter#5

Discussion Chapter#5 The Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 4314: Data Communication Instructor: Dr. Aiman Abu Samra T.A.: Eng. Alaa O. Shama Discussion Chapter#5 Main

More information

Data Encoding g(p (part 2)

Data Encoding g(p (part 2) Data Encoding g(p (part 2) CSE 3213 Instructor: U.T. Nguyen 10/11/2007 12:44 PM 1 Analog Data, Digital Signals (5.3) 2 1 Analog Data, Digital Signals Digitization Conversion of analog data into digital

More information

Chapter 4. Part 2(a) Digital Modulation Techniques

Chapter 4. Part 2(a) Digital Modulation Techniques Chapter 4 Part 2(a) Digital Modulation Techniques Overview Digital Modulation techniques Bandpass data transmission Amplitude Shift Keying (ASK) Phase Shift Keying (PSK) Frequency Shift Keying (FSK) Quadrature

More information

ISHIK UNIVERSITY Faculty of Science Department of Information Technology Fall Course Name: Wireless Networks

ISHIK UNIVERSITY Faculty of Science Department of Information Technology Fall Course Name: Wireless Networks ISHIK UNIVERSITY Faculty of Science Department of Information Technology 2017-2018 Fall Course Name: Wireless Networks Agenda Lecture 4 Multiple Access Techniques: FDMA, TDMA, SDMA and CDMA 1. Frequency

More information

9.4. Synchronization:

9.4. Synchronization: 9.4. Synchronization: It is the process of timing the serial transmission to properly identify the data being sent. There are two most common modes: Synchronous transmission: Synchronous transmission relies

More information

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT Course Curriculum. Digital Communication Course Code:

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT Course Curriculum. Digital Communication Course Code: GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT Course Curriculum Digital (Code: 334110) Diploma Programmes in which this course is offered Electronics & Engineering Semester in which offered 4 th

More information

Analog and Telecommunication Electronics

Analog and Telecommunication Electronics Politecnico di Torino Electronic Eng. Master Degree Analog and Telecommunication Electronics C5 - Synchronous demodulation» AM and FM demodulation» Coherent demodulation» Tone decoders AY 2015-16 19/03/2016-1

More information

EECS 307: Lab Handout 2 (FALL 2012)

EECS 307: Lab Handout 2 (FALL 2012) EECS 307: Lab Handout 2 (FALL 2012) I- Audio Transmission of a Single Tone In this part you will modulate a low-frequency audio tone via AM, and transmit it with a carrier also in the audio range. The

More information

EXPERIMENT WISE VIVA QUESTIONS

EXPERIMENT WISE VIVA QUESTIONS EXPERIMENT WISE VIVA QUESTIONS Pulse Code Modulation: 1. Draw the block diagram of basic digital communication system. How it is different from analog communication system. 2. What are the advantages of

More information

EXAMINATION FOR THE DEGREE OF B.E. Semester 1 June COMMUNICATIONS IV (ELEC ENG 4035)

EXAMINATION FOR THE DEGREE OF B.E. Semester 1 June COMMUNICATIONS IV (ELEC ENG 4035) EXAMINATION FOR THE DEGREE OF B.E. Semester 1 June 2007 101902 COMMUNICATIONS IV (ELEC ENG 4035) Official Reading Time: Writing Time: Total Duration: 10 mins 120 mins 130 mins Instructions: This is a closed

More information

EE 460L University of Nevada, Las Vegas ECE Department

EE 460L University of Nevada, Las Vegas ECE Department EE 460L PREPARATION 1- ASK Amplitude shift keying - ASK - in the context of digital communications is a modulation process which imparts to a sinusoid two or more discrete amplitude levels. These are related

More information

AC : LOW-COST VECTOR SIGNAL ANALYZER FOR COMMUNICATION EXPERIMENTS

AC : LOW-COST VECTOR SIGNAL ANALYZER FOR COMMUNICATION EXPERIMENTS AC 2007-3034: LOW-COST VECTOR SIGNAL ANALYZER FOR COMMUNICATION EXPERIMENTS Frank Tuffner, University of Wyoming FRANK K. TUFFNER received his B.S. degree (2002) and M.S. degree (2004) in EE from the University

More information

Environment Signals Plug-in Application Printable Help Document

Environment Signals Plug-in Application Printable Help Document xx ZZZ Environment Signals Plug-in Application Printable Help Document *P077140100* 077-1401-00 ZZZ Environment Signals Plug-in Application Printable Help Document www.tek.com 077-1401-00 Copyright Tektronix.

More information

Communication Systems

Communication Systems Electrical Engineering Communication Systems Comprehensive Theory with Solved Examples and Practice Questions Publications Publications MADE EASY Publications Corporate Office: 44-A/4, Kalu Sarai (Near

More information

LTSpice Basic Tutorial

LTSpice Basic Tutorial Index: I. Opening LTSpice II. Drawing the circuit A. Making Sure You Have a GND B. Getting the Parts C. Placing the Parts D. Connecting the Circuit E. Changing the Name of the Part F. Changing the Value

More information

Basic Concepts in Data Transmission

Basic Concepts in Data Transmission Basic Concepts in Data Transmission EE450: Introduction to Computer Networks Professor A. Zahid A.Zahid-EE450 1 Data and Signals Data is an entity that convey information Analog Continuous values within

More information

Agilent PN 8780A-1 Introductory Operating Guide to the Agilent 8780A Vector Signal Generator. Product Note

Agilent PN 8780A-1 Introductory Operating Guide to the Agilent 8780A Vector Signal Generator. Product Note Agilent PN 8780A-1 Introductory Operating Guide to the Agilent 8780A Vector Signal Generator Product Note Table of Contents 3 4 5 5 6 6 8 9 10 10 10 11 12 12 13 14 14 14 14 14 15 15 15 19 19 20 20 21 22

More information

UNIT 2 DIGITAL COMMUNICATION DIGITAL COMMUNICATION-Introduction The techniques used to modulate digital information so that it can be transmitted via microwave, satellite or down a cable pair is different

More information

DHANALAKSHMI SRINIVASAN COLLEGE OF ENGINEERING AND TECHNOLOGY CS6304- ANALOG AND DIGITAL COMMUNICATION BE-CSE/IT SEMESTER III REGULATION 2013 Faculty

DHANALAKSHMI SRINIVASAN COLLEGE OF ENGINEERING AND TECHNOLOGY CS6304- ANALOG AND DIGITAL COMMUNICATION BE-CSE/IT SEMESTER III REGULATION 2013 Faculty DHANALAKSHMI SRINIVASAN COLLEGE OF ENGINEERING AND TECHNOLOGY CS6304- ANALOG AND DIGITAL COMMUNICATION BE-CSE/IT SEMESTER III REGULATION 2013 Faculty Name: S.Kalpana, AP/ECE QUESTION BANK UNIT I ANALOG

More information

ELT COMMUNICATION THEORY

ELT COMMUNICATION THEORY ELT 41307 COMMUNICATION THEORY Project work, Fall 2017 Experimenting an elementary single carrier M QAM based digital communication chain 1 ASSUMED SYSTEM MODEL AND PARAMETERS 1.1 SYSTEM MODEL In this

More information

Problems from the 3 rd edition

Problems from the 3 rd edition (2.1-1) Find the energies of the signals: a) sin t, 0 t π b) sin t, 0 t π c) 2 sin t, 0 t π d) sin (t-2π), 2π t 4π Problems from the 3 rd edition Comment on the effect on energy of sign change, time shifting

More information

Outline. EECS 3213 Fall Sebastian Magierowski York University. Review Passband Modulation. Constellations ASK, FSK, PSK.

Outline. EECS 3213 Fall Sebastian Magierowski York University. Review Passband Modulation. Constellations ASK, FSK, PSK. EECS 3213 Fall 2014 L12: Modulation Sebastian Magierowski York University 1 Outline Review Passband Modulation ASK, FSK, PSK Constellations 2 1 Underlying Idea Attempting to send a sequence of digits through

More information

Communication Systems

Communication Systems Electronics Engineering Communication Systems Comprehensive Theory with Solved Examples and Practice Questions Publications Publications MADE EASY Publications Corporate Office: 44-A/4, Kalu Sarai (Near

More information

LOOKING AT DATA SIGNALS

LOOKING AT DATA SIGNALS LOOKING AT DATA SIGNALS We diplay data signals graphically in many ways, ranging from textbook illustrations to test equipment screens. This note helps you integrate those views and to see how some modulation

More information

21. Orthonormal Representation of Signals

21. Orthonormal Representation of Signals 1. Orthonormal Representation of Signals Introduction An analogue communication system is designed for the transmission of information in analogue form. he source information is in analogue form. In practice,

More information

Oluwole Oyetoke 1, 2 Dr. O.E Agboje. Covenant University, Ota, Nigeria

Oluwole Oyetoke 1, 2 Dr. O.E Agboje. Covenant University, Ota, Nigeria Design and Implementation of A Java Based Simulation Package for Spectrum Analysis, Digital Filtration and Modulation as A Teaching Aid for Data Communication Oluwole Oyetoke 1, 2 Dr. O.E Agboje 1, 2 Covenant

More information

Performance Evaluation of Wireless Communication System Employing DWT-OFDM using Simulink Model

Performance Evaluation of Wireless Communication System Employing DWT-OFDM using Simulink Model Performance Evaluation of Wireless Communication System Employing DWT-OFDM using Simulink Model M. Prem Anand 1 Rudrashish Roy 2 1 Assistant Professor 2 M.E Student 1,2 Department of Electronics & Communication

More information

AM Limitations. Amplitude Modulation II. DSB-SC Modulation. AM Modifications

AM Limitations. Amplitude Modulation II. DSB-SC Modulation. AM Modifications Lecture 6: Amplitude Modulation II EE 3770: Communication Systems AM Limitations AM Limitations DSB-SC Modulation SSB Modulation VSB Modulation Lecture 6 Amplitude Modulation II Amplitude modulation is

More information

Department of Electronics and Communication Engineering 1

Department of Electronics and Communication Engineering 1 UNIT I SAMPLING AND QUANTIZATION Pulse Modulation 1. Explain in detail the generation of PWM and PPM signals (16) (M/J 2011) 2. Explain in detail the concept of PWM and PAM (16) (N/D 2012) 3. What is the

More information

RF & Communications Handbook

RF & Communications Handbook RF & Communications Handbook Copyright 2007 National Instruments Corporation. All rights reserved. Under the copyright laws, this publication may not be reproduced or transmitted in any form, electronic

More information

Presentation Outline. Advisors: Dr. In Soo Ahn Dr. Thomas L. Stewart. Team Members: Luke Vercimak Karl Weyeneth. Karl. Luke

Presentation Outline. Advisors: Dr. In Soo Ahn Dr. Thomas L. Stewart. Team Members: Luke Vercimak Karl Weyeneth. Karl. Luke Bradley University Department of Electrical and Computer Engineering Senior Capstone Project Presentation May 2nd, 2006 Team Members: Luke Vercimak Karl Weyeneth Advisors: Dr. In Soo Ahn Dr. Thomas L.

More information

B.E./B.Tech. DEGREE EXAMINATION, NOVEMBER/DECEMBER Third Semester Computer Science and Engineering CS 2204 ANALOG AND DIGITAL COMMUNICATION

B.E./B.Tech. DEGREE EXAMINATION, NOVEMBER/DECEMBER Third Semester Computer Science and Engineering CS 2204 ANALOG AND DIGITAL COMMUNICATION B.E./B.Tech. DEGREE EXAMINATION, NOVEMBER/DECEMBER 2011. Third Semester Computer Science and Engineering CS 2204 ANALOG AND DIGITAL COMMUNICATION Time : Three hours Maximum : 100 marks Answer ALL questions.

More information

Revision of Lecture 3

Revision of Lecture 3 Revision of Lecture 3 Modulator/demodulator Basic operations of modulation and demodulation Complex notations for modulation and demodulation Carrier recovery and timing recovery This lecture: bits map

More information

Page 1/10 Digilent Analog Discovery (DAD) Tutorial 6-Aug-15. Figure 2: DAD pin configuration

Page 1/10 Digilent Analog Discovery (DAD) Tutorial 6-Aug-15. Figure 2: DAD pin configuration Page 1/10 Digilent Analog Discovery (DAD) Tutorial 6-Aug-15 INTRODUCTION The Diligent Analog Discovery (DAD) allows you to design and test both analog and digital circuits. It can produce, measure and

More information

Amplitude Modulation II

Amplitude Modulation II Lecture 6: Amplitude Modulation II EE 3770: Communication Systems Lecture 6 Amplitude Modulation II AM Limitations DSB-SC Modulation SSB Modulation VSB Modulation Multiplexing Mojtaba Vaezi 6-1 Contents

More information

Laboratory 5: Spread Spectrum Communications

Laboratory 5: Spread Spectrum Communications Laboratory 5: Spread Spectrum Communications Cory J. Prust, Ph.D. Electrical Engineering and Computer Science Department Milwaukee School of Engineering Last Update: 19 September 2018 Contents 0 Laboratory

More information

Department of Electronic and Information Engineering. Communication Laboratory

Department of Electronic and Information Engineering. Communication Laboratory Department of Electronic and Information Engineering Communication Laboratory Frequency Shift Keying (FSK) & Differential Phase Shift Keying (DPSK) & Differential Quadrature Phase Shift Keying (DQPSK)

More information

Digital Modulation Schemes

Digital Modulation Schemes Digital Modulation Schemes 1. In binary data transmission DPSK is preferred to PSK because (a) a coherent carrier is not required to be generated at the receiver (b) for a given energy per bit, the probability

More information

Thus there are three basic modulation techniques: 1) AMPLITUDE SHIFT KEYING 2) FREQUENCY SHIFT KEYING 3) PHASE SHIFT KEYING

Thus there are three basic modulation techniques: 1) AMPLITUDE SHIFT KEYING 2) FREQUENCY SHIFT KEYING 3) PHASE SHIFT KEYING CHAPTER 5 Syllabus 1) Digital modulation formats 2) Coherent binary modulation techniques 3) Coherent Quadrature modulation techniques 4) Non coherent binary modulation techniques. Digital modulation formats:

More information

DIGITAL COMMUNICATIONS SYSTEMS. MSc in Electronic Technologies and Communications

DIGITAL COMMUNICATIONS SYSTEMS. MSc in Electronic Technologies and Communications DIGITAL COMMUNICATIONS SYSTEMS MSc in Electronic Technologies and Communications Bandpass binary signalling The common techniques of bandpass binary signalling are: - On-off keying (OOK), also known as

More information

Lab 2: Digital Modulations

Lab 2: Digital Modulations Lab 2: Digital Modulations Due: November 1, 2018 In this lab you will use a hardware device (RTL-SDR which has a frequency range of 25 MHz 1.75 GHz) to implement a digital receiver with Quaternary Phase

More information

SIGNALS AND SYSTEMS LABORATORY 13: Digital Communication

SIGNALS AND SYSTEMS LABORATORY 13: Digital Communication SIGNALS AND SYSTEMS LABORATORY 13: Digital Communication INTRODUCTION Digital Communication refers to the transmission of binary, or digital, information over analog channels. In this laboratory you will

More information

CSCD 433 Network Programming Fall Lecture 5 Physical Layer Continued

CSCD 433 Network Programming Fall Lecture 5 Physical Layer Continued CSCD 433 Network Programming Fall 2016 Lecture 5 Physical Layer Continued 1 Topics Definitions Analog Transmission of Digital Data Digital Transmission of Analog Data Multiplexing 2 Different Types of

More information

CSCD 433 Network Programming Fall Lecture 5 Physical Layer Continued

CSCD 433 Network Programming Fall Lecture 5 Physical Layer Continued CSCD 433 Network Programming Fall 2016 Lecture 5 Physical Layer Continued 1 Topics Definitions Analog Transmission of Digital Data Digital Transmission of Analog Data Multiplexing 2 Different Types of

More information

Chapter 7 Multiple Division Techniques for Traffic Channels

Chapter 7 Multiple Division Techniques for Traffic Channels Introduction to Wireless & Mobile Systems Chapter 7 Multiple Division Techniques for Traffic Channels Outline Introduction Concepts and Models for Multiple Divisions Frequency Division Multiple Access

More information

Key Reference. Agilent Technologies E8257D/67D PSG Signal Generators. Manufacturing Part Number: E Printed in USA July 2007

Key Reference. Agilent Technologies E8257D/67D PSG Signal Generators. Manufacturing Part Number: E Printed in USA July 2007 Agilent Technologies E8257D/67D PSG Signal Generators This guide applies to the following signal generator models: E8267D PSG Vector Signal Generator E8257D PSG Analog Signal Generator Due to our continuing

More information

MATLAB^/Simulink for Digital Communication

MATLAB^/Simulink for Digital Communication /n- i-.1 MATLAB^/Simulink for Digital Communication Won Y. Yang, Yong S. Cho, Won G. Jeon, Jeong W. Lee, Jong H. Paik Jae K. Kim, Mi-Hyun Lee, Kyu I. Lee, Kyung W. Park, Kyung S. Woo V Table of j Contents

More information

Triarchy VSG6G1C USB Vector RF Signal Generator Operating Manual

Triarchy VSG6G1C USB Vector RF Signal Generator Operating Manual Triarchy VSG6G1C USB Vector RF Signal Generator Operating Manual CW signal NB RF noise generator Analog modulation GMSK modulation Frequency sweeping Hopping with data Mod Page 1 of 27 8PSK GSM signal

More information

CS601 Data Communication Solved Objective For Midterm Exam Preparation

CS601 Data Communication Solved Objective For Midterm Exam Preparation CS601 Data Communication Solved Objective For Midterm Exam Preparation Question No: 1 Effective network mean that the network has fast delivery, timeliness and high bandwidth duplex transmission accurate

More information

Compact system for wideband interception and technical analysis

Compact system for wideband interception and technical analysis RADIOMONITORING Monitoring systems R&S AMMOS R&S AMLAB Laboratory Compact system for wideband interception and technical analysis R&S AMLAB an essential module of the extensive R&S AMMOS system family

More information

END-OF-YEAR EXAMINATIONS ELEC321 Communication Systems (D2) Tuesday, 22 November 2005, 9:20 a.m. Three hours plus 10 minutes reading time.

END-OF-YEAR EXAMINATIONS ELEC321 Communication Systems (D2) Tuesday, 22 November 2005, 9:20 a.m. Three hours plus 10 minutes reading time. END-OF-YEAR EXAMINATIONS 2005 Unit: Day and Time: Time Allowed: ELEC321 Communication Systems (D2) Tuesday, 22 November 2005, 9:20 a.m. Three hours plus 10 minutes reading time. Total Number of Questions:

More information

Chapter 0 Outline. NCCU Wireless Comm. Lab

Chapter 0 Outline. NCCU Wireless Comm. Lab Chapter 0 Outline Chapter 1 1 Introduction to Orthogonal Frequency Division Multiplexing (OFDM) Technique 1.1 The History of OFDM 1.2 OFDM and Multicarrier Transmission 1.3 The Applications of OFDM 2 Chapter

More information

Data Communication (CS601)

Data Communication (CS601) Data Communication (CS601) MOST LATEST (2012) PAPERS For MID Term (ZUBAIR AKBAR KHAN) Page 1 Q. Suppose a famous Telecomm company AT&T is using AMI encoding standard for its digital telephone services,

More information

Modulation is the process of impressing a low-frequency information signal (baseband signal) onto a higher frequency carrier signal

Modulation is the process of impressing a low-frequency information signal (baseband signal) onto a higher frequency carrier signal Modulation is the process of impressing a low-frequency information signal (baseband signal) onto a higher frequency carrier signal Modulation is a process of mixing a signal with a sinusoid to produce

More information

Performance analysis of OFDM with QPSK using AWGN and Rayleigh Fading Channel

Performance analysis of OFDM with QPSK using AWGN and Rayleigh Fading Channel Performance analysis of OFDM with QPSK using AWGN and Rayleigh Fading Channel 1 V.R.Prakash* (A.P) Department of ECE Hindustan university Chennai 2 P.Kumaraguru**(A.P) Department of ECE Hindustan university

More information

ECE5713 : Advanced Digital Communications

ECE5713 : Advanced Digital Communications ECE5713 : Advanced Digital Communications Bandpass Modulation MPSK MASK, OOK MFSK 04-May-15 Advanced Digital Communications, Spring-2015, Week-8 1 In-phase and Quadrature (I&Q) Representation Any bandpass

More information

Experiment 1 Introduction to Simulink

Experiment 1 Introduction to Simulink 1 Experiment 1 Introduction to Simulink 1.1 Objective The objective of Experiment #1 is to familiarize the students with simulation of power electronic circuits in Matlab/Simulink environment. Please follow

More information