Lab 1: Analog Modulations

Size: px
Start display at page:

Download "Lab 1: Analog Modulations"

Transcription

1 Lab 1: Analog Modulations October 20, 2017 This lab contains two parts: for the first part you will perform simulation entirely in MATLAB, for the second part you will use a hardware device to interface with MATLAB and receive radio signals. Part 1. Load the following sample audio file from MATLAB audio = audioread( handel.ogg ); This audio signal has been sampled at 44, 100 Hz and has a duration of seconds. 1. Use the interp command to increase the sampling rate by 8 and display its spectrum using the following commands: audio_inp = interp(audio,8); SpecAnlyzr1 = dsp.spectrumanalyzer( SampleRate,fs, PlotAsTwoSidedSpectrum,false); SpecAnlyzr1(audio_inp) 2. Use the interpolated audio signal to modulate a sinusoidal carrier at f c = 100 KHz using SSB modulation (suppressed carrier). Display the spectra of the message and modulated signals, and measure the transmission bandwidth. Calculate the average power (in db) of the modulated signal. You can use the following command to calculate the average signal power: L = length(audio_mod); Avg_sig_pow = 10*log10((norm(audio_mod))^2/L) 3. Add some white Gaussian noise to the modulated signal. Create a noise vector of the same length as the modulated signal using the following command: noise = wgn(l,1,p_n); where P N represents the noise power in dbw. You can choose P N comparable to the modulated signal power to begin with. 4. Demodulate the signal with noise. Display the output spectrum and listen to the demodulated signal. Vary the noise power and comment on the result. What is the noise power level that does not affect the output much? What is the noise power level that the output music is barely recognizable? What is the noise power level that you wouldn t want to listen to the music anymore? 1

2 5. Repeat parts 2 4 for FM modulation using a modulation index β = 4. Note the frequency deviation in FM modulation command (fmmod) can be calculated as f = β.w, where W is the message bandwidth (15 khz in this case). 6. Next change β to two different values, one much larger and one much smaller (for example β = 10 and β = 2). For each new beta, use the same noise levels as before and listen to the demodulated FM signal. Comment on the clarity of the music. This exercise should demonstrate that you can adjust FM bandwidth for better noise performance. Specifically you can trade off more bandwidth (higher β) to get better performance in FM at the same noise level. This ability is not present in AM. 7. Crank up the noise gradually in FM and listen to the output (until the output music is no longer recognizable). Do you observe any special effect when noise is increased gradually in FM? Repeat this exercise with SSB, what do you observe? FM receivers are nonlinear and exhibit a threshold effect, which means when noise is above a certain threshold, the receiver stops functioning correctly and just outputs noise. This effect is not present in linear receivers such as a coherent detector where the output just gradually degrades as noise increases. 8. Include in your report the answer to each of the steps above. Also include the comparison between SSB and FM modulations at different β factors and noise levels in the following aspects: Transmission bandwidth Transmit power (power of the modulated signal) Noise performance: which system performs better at the same noise level, and which is more robust to noise? Note: You need to support all your comparison with results from your simulations, including figures and calculation. 2

3 Part 2. Software-Defined Radio (SDR) SDR is a radio system in which communication components (mixers, filters, modulators, demodulators, etc.) are implemented by means of software instead of real hardware. In other words, SDR utilizes software to perform signal processing tasks that are traditionally done in hardware. In this lab, we will use an RTL- SDR, a software defined radio device from NooElec (NESDR Mini 2+), to receive FM signals. You can read more information about this device at the following link: For this lab, you need to sign out a NESDR package from the TA (one package per student). Each package includes a NESDR dongle and an antenna. You can use the package for the duration of the lab and return it at together with the lab report. Note that it is important to keep the package in good condition and return it at the end for future uses. Your grade will not be released until the package is safely returned. FM Broadcast Receiver Spectrum Analyzer (Rcv. Signal) Spectrum Analyzer (Demod. Signal) Baseband File Reader FM Broadcast Captured Signal 0 1 Lost Late x <x> <Lost> FM Broadcast FM Broadcast Demodulator Baseband Audio Device Writer 1e Center Frequency (MHz) fc Data RTL-SDR Receiver lost RTL-SDR Receiver late x Lost Late Signal Source Selector <Late> Lost Samples Audio output.wav To Multimedia File Info Signal Source Latency Copyright The MathWorks, Inc. Figure 1: FM Receiver Simulink Model 3

4 1. Setup: You have the choice to perform this lab in the lab room H229, or to do it on your own computer. (a) To perform in the lab: Go to a lab computer in H229, and run Matlab2016b program. Check the Add-On Manager to make sure the Communications System Toolbox Support Package for RTL-SDR radio is installed on the MATLAB and ready to use. To open the Add-On Manager, go to the Home tab, and select Add-Ons > Manage Add-Ons. (b) To perform on your computer: Make sure you have installed Matlab2016b or a later version. If you currently using an earlier Matlab version, please update it to the latest version via Tufts software download (the lab may not function properly on earlier MATLAB versions): Run MATLAB and go to Home > Add-Ons > Manage Add-Ons, find the Communications System Toolbox Support Package for RTL-SDR radio and install it. After the package installation is done, a new window will pop up and ask you to set up your RTL- SDR device. Plug in the device to a USB port on the computer and follow the instruction to set up the dongle. 2. Connect the SDR device with its antenna using the provided cable and use the command sdrinfo to check the connectivity of the device. 3. Open the FM receiver Simulink model FMReceiverSimulinkExample (a screenshot of the model is shown in Fig. 1) and take the following steps: Save as the model with a different file name. Add two spectrum analyzers to capture the spectra of the received signal and demodulated signals. Go to Library Browser > DSP System Toolbox > Sinks and drag & drop the Spectrum Analyzer block. Use the Signal Source Selector block to choose the RTL-SDR Receiver as your signal source. Set the frequency of the radio station. You are free to choose your own frequency, some options for clear signal reception are: MHz, MHz, and 92.9 MHz. 4

5 4. Run the model, listen to the FM output and comment on the clarity. The spectrum analyzers will display the instantaneous spectra of the received signal and the demodulated signal. In Spectrum Analyzer window, open the Trace Options panel from the menu bar and set the Average parameter to 100 in order to see the average spectra of the signals. Open the Channel Measurements panel from the menu bar and set the following parameters: Measurement type: Occupied BW Span: 40 khz Occupied BW (%): 99 The Occupied BW is the bandwidth containing the specified percentage of the total power of the spectrum. Check the documentation for Spectrum Analyzer on Mathworks website for more details. Measure the bandwidth of the received signal (transmission bandwidth) and the bandwidth of the demodulated signal. Comment on the difference. Can you infer the modulation index from these two bandwidths? 5. Repeat the exercise for a different FM frequency. Report. For the report, choose two different FM stations and perform the following tasks: (a) Print out the received FM signal power spectrum, clearly label the frequencies. (b) Measure the average power in the received signal and find the occupied bandwidth for 99% of the power. (c) Print out the demodulated signal power spectrum, clearly label the frequencies. (d) Measure the average power in the demodulated signal and find the occupied bandwidth for 99% of the power. (e) Compute the modulation index from the measured bandwidth (using Carson s formula). (f) Comment on the clarity of the demodulated signals. 5

Lab 1: Analog Modulations

Lab 1: Analog Modulations Lab 1: Analog Modulations Due: October 11, 2018 This lab contains two parts: for the first part you will perform simulation entirely in MATLAB, for the second part you will use a hardware device to interface

More information

and RTL-SDR Wireless Systems

and RTL-SDR Wireless Systems Laboratory 4 FM Receiver using MATLAB and RTL-SDR Wireless Systems TLEN 5830 Wireless Systems This Lab introduces the working of FM Receiver using MATLAB and Software Defined Radio This exercise encompasses

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

Outline. Communications Engineering 1

Outline. Communications Engineering 1 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

Experiment # 4. Frequency Modulation

Experiment # 4. Frequency Modulation ECE 416 Fall 2002 Experiment # 4 Frequency Modulation 1 Purpose In Experiment # 3, a modulator and demodulator for AM were designed and built. In this experiment, another widely used modulation technique

More information

Faculty of Engineering Electrical Engineering Department Communication Engineering I Lab (EELE 3170) Eng. Adam M. Hammad

Faculty of Engineering Electrical Engineering Department Communication Engineering I Lab (EELE 3170) Eng. Adam M. Hammad Faculty of Engineering Electrical Engineering Department Communication Engineering I Lab (EELE 3170) Eng. Adam M. Hammad EXPERIMENT #5 DSB-SC AND SSB MODULATOR Theory The amplitude-modulated signal is

More information

Estimation of Predetection SNR of LMR Analog FM Signals Using PL Tone Analysis

Estimation of Predetection SNR of LMR Analog FM Signals Using PL Tone Analysis Estimation of Predetection SNR of LMR Analog FM Signals Using PL Tone Analysis Akshay Kumar akshay2@vt.edu Steven Ellingson ellingson@vt.edu Virginia Tech, Wireless@VT May 2, 2012 Table of Contents 1 Introduction

More information

Amplitude Modulated Systems

Amplitude Modulated Systems Amplitude Modulated Systems Communication is process of establishing connection between two points for information exchange. Channel refers to medium through which message travels e.g. wires, links, or

More information

Amplitude Modulation Chapter 2. Modulation process

Amplitude Modulation Chapter 2. Modulation process Question 1 Modulation process Modulation is the process of translation the baseband message signal to bandpass (modulated carrier) signal at frequencies that are very high compared to the baseband frequencies.

More information

S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN)

S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN) Total No. of Questions 12] [Total No. of Printed Pages 7 Seat No. [4657]-49 S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN)

More information

Simulink Implementation of Amplitude Modulation Technique using Matlab

Simulink Implementation of Amplitude Modulation Technique using Matlab Simulink Implementation of Amplitude Modulation Technique using Matlab Mr. Ranjeet R. Suryawanshi 1, Mr. Vikas D. Patil 2 1,2Assistant Professor, Department of Electronics & Telecommunication Engineering,

More information

EE470 Electronic Communication Theory Exam II

EE470 Electronic Communication Theory Exam II EE470 Electronic Communication Theory Exam II Open text, closed notes. For partial credit, you must show all formulas in symbolic form and you must work neatly!!! Date: November 6, 2013 Name: 1. [16%]

More information

Signal Generators for Anritsu RF and Microwave Handheld Instruments

Signal Generators for Anritsu RF and Microwave Handheld Instruments Measurement Guide Signal Generators for Anritsu RF and Microwave Handheld Instruments BTS Master Spectrum Master Tracking Generator Option 20 Vector signal Generator Option 23 Anritsu Company 490 Jarvis

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

ES442 Final Project AM & FM De/Modulation Using SIMULINK

ES442 Final Project AM & FM De/Modulation Using SIMULINK ES442 Final Project AM & FM De/Modulation Using SIMULINK Goal: 1. Understand the basics of SIMULINK and how it works within MATLAB. 2. Be able to create, configure and run a simple model. 3. Create a subsystem.

More information

Experiment 02: Amplitude Modulation

Experiment 02: Amplitude Modulation ECE316, Experiment 02, 2017 Communications Lab, University of Toronto Experiment 02: Amplitude Modulation Bruno Korst - bkf@comm.utoronto.ca Abstract In this second laboratory experiment, you will see

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

What's New in MATLAB and Simulink for Signal Processing? Daniel Aronsson, Application Engineer

What's New in MATLAB and Simulink for Signal Processing? Daniel Aronsson, Application Engineer What's New in MATLAB and Simulink for Signal Processing? Daniel Aronsson, Application Engineer 2014 The MathWorks, Inc. 1 Signal Processing 2 Harmonic and Intermodulation Distortion Measurement Industry-standard

More information

(b) What are the differences between FM and PM? (c) What are the differences between NBFM and WBFM? [9+4+3]

(b) What are the differences between FM and PM? (c) What are the differences between NBFM and WBFM? [9+4+3] Code No: RR220401 Set No. 1 1. (a) The antenna current of an AM Broadcast transmitter is 10A, if modulated to a depth of 50% by an audio sine wave. It increases to 12A as a result of simultaneous modulation

More information

Modulation Methods Frequency Modulation

Modulation Methods Frequency Modulation Modulation Methods Frequency Modulation William Sheets K2MQJ Rudolf F. Graf KA2CWL The use of frequency modulation (called FM) is another method of adding intelligence to a carrier signal. While simple

More information

OBJECTIVES EQUIPMENT LIST

OBJECTIVES EQUIPMENT LIST 1 Reception of Amplitude Modulated Signals AM Demodulation OBJECTIVES The purpose of this experiment is to show how the amplitude-modulated signals are demodulated to obtain the original signal. Also,

More information

Code No: R Set No. 1

Code No: R Set No. 1 Code No: R05220405 Set No. 1 II B.Tech II Semester Regular Examinations, Apr/May 2007 ANALOG COMMUNICATIONS ( Common to Electronics & Communication Engineering and Electronics & Telematics) Time: 3 hours

More information

Keysight X-Series Signal Analyzer

Keysight X-Series Signal Analyzer Keysight X-Series Signal Analyzer This manual provides documentation for the following Analyzers: N9040B UXA N9030B PXA N9020B MXA N9010B EXA N9000B CXA N9063C Analog Demod Measurement Application Measurement

More information

EE4512 Analog and Digital Communications Chapter 6. Chapter 6 Analog Modulation and Demodulation

EE4512 Analog and Digital Communications Chapter 6. Chapter 6 Analog Modulation and Demodulation Chapter 6 Analog Modulation and Demodulation Chapter 6 Analog Modulation and Demodulation Amplitude Modulation Pages 306-309 309 The analytical signal for double sideband, large carrier amplitude modulation

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

Charan Langton, Editor

Charan Langton, Editor Charan Langton, Editor SIGNAL PROCESSING & SIMULATION NEWSLETTER Baseband, Passband Signals and Amplitude Modulation The most salient feature of information signals is that they are generally low frequency.

More information

Wireless Communication Systems Laboratory Lab #3: Introduction to wireless front-end

Wireless Communication Systems Laboratory Lab #3: Introduction to wireless front-end Objective Wireless Communication Systems Laboratory Lab #3: Introduction to wireless front-end The objective of this experiment is to study hardware components which are commonly used in most of the wireless

More information

Waveform Generation and Testing with Software-Defined Radios (SDR) and RF instruments

Waveform Generation and Testing with Software-Defined Radios (SDR) and RF instruments Waveform Generation and Testing with Software-Defined Radios (SDR) and RF instruments Houman Zarrinkoub, PhD. Product Manager Signal Processing & Communications houmanz@mathworks.com 2015 The MathWorks,

More information

COMM 601: Modulation I

COMM 601: Modulation I Prof. Ahmed El-Mahdy, Communications Department The German University in Cairo Text Books [1] Couch, Digital and Analog Communication Systems, 7 th edition, Prentice Hall, 2007. [2] Simon Haykin, Communication

More information

Wireless Communication Systems Laboratory #2. Understanding test equipments. The students will be familiar with the following items:

Wireless Communication Systems Laboratory #2. Understanding test equipments. The students will be familiar with the following items: Wireless Communication Systems Laboratory #2 Understanding test equipments Objective The students will be familiar with the following items: Signal generation and analysis tools Description of the laboratory

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

Laboratory 3: Frequency Modulation

Laboratory 3: Frequency Modulation Laboratory 3: Frequency Modulation Cory J. Prust, Ph.D. Electrical Engineering and Computer Science Department Milwaukee School of Engineering Last Update: 20 December 2018 Contents 0 Laboratory Objectives

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

Incorporating PlutoSDR in the Communication Laboratory and Classroom: Potential or Pitfall?

Incorporating PlutoSDR in the Communication Laboratory and Classroom: Potential or Pitfall? Paper ID #21580 Incorporating PlutoSDR in the Communication Laboratory and Classroom: Potential or Pitfall? Dr. John Ed E. Post P.E., Embry-Riddle Aeronautical University John. E. Post received the B.S.

More information

HF Receivers, Part 2

HF Receivers, Part 2 HF Receivers, Part 2 Superhet building blocks: AM, SSB/CW, FM receivers Adam Farson VA7OJ View an excellent tutorial on receivers NSARC HF Operators HF Receivers 2 1 The RF Amplifier (Preamp)! Typical

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

EXPERIMENT 4 INTRODUCTION TO AMPLITUDE MODULATION SUBMITTED BY

EXPERIMENT 4 INTRODUCTION TO AMPLITUDE MODULATION SUBMITTED BY EXPERIMENT 4 INTRODUCTION TO AMPLITUDE MODULATION SUBMITTED BY NAME:. STUDENT ID:.. ROOM: INTRODUCTION TO AMPLITUDE MODULATION Purpose: The objectives of this laboratory are:. To introduce the spectrum

More information

UNIT 1 QUESTIONS WITH ANSWERS

UNIT 1 QUESTIONS WITH ANSWERS UNIT 1 QUESTIONS WITH ANSWERS 1. Define modulation? Modulation is a process by which some characteristics of high frequency carrier signal is varied in accordance with the instantaneous value of the modulating

More information

Wireless Communication Systems Lab-Manual-3 Introduction to Wireless Front End. Objective

Wireless Communication Systems Lab-Manual-3 Introduction to Wireless Front End. Objective Wireless Communication Systems Lab-Manual-3 Introduction to Wireless Front End Objective The objective of this experiment is to study hardware components which are commonly used in most of the wireless

More information

AM and FM MODULATION Lecture 5&6

AM and FM MODULATION Lecture 5&6 AM and FM MODULATION Lecture 5&6 Ir. Muhamad Asvial, MEng., PhD Center for Information and Communication Engineering Research Electrical Engineering Department University of Indonesia Kampus UI Depok,

More information

Elements of Communication System Channel Fig: 1: Block Diagram of Communication System Terminology in Communication System

Elements of Communication System Channel Fig: 1: Block Diagram of Communication System Terminology in Communication System Content:- Fundamentals of Communication Engineering : Elements of a Communication System, Need of modulation, electromagnetic spectrum and typical applications, Unit V (Communication terminologies in communication

More information

Technician License Course Chapter 2. Lesson Plan Module 3 Modulation and Bandwidth

Technician License Course Chapter 2. Lesson Plan Module 3 Modulation and Bandwidth Technician License Course Chapter 2 Lesson Plan Module 3 Modulation and Bandwidth The Basic Radio Station What Happens During Radio Communication? Transmitting (sending a signal): Information (voice, data,

More information

B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering)

B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering) Code: 13A04404 R13 B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering) Time: 3 hours Max. Marks: 70 PART A

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

Analog Communication.

Analog Communication. Analog Communication Vishnu N V Tele is Greek for at a distance, and Communicare is latin for to make common. Telecommunication is the process of long distance communications. Early telecommunications

More information

Exercise 1: RF Stage, Mixer, and IF Filter

Exercise 1: RF Stage, Mixer, and IF Filter SSB Reception Analog Communications Exercise 1: RF Stage, Mixer, and IF Filter EXERCISE OBJECTIVE DISCUSSION On the circuit board, you will set up the SSB transmitter to transmit a 1000 khz SSB signal

More information

Lab Assignment 1 Spectrum Analyzers

Lab Assignment 1 Spectrum Analyzers THE UNIVERSITY OF BRITISH COLUMBIA Department of Electrical and Computer Engineering ELEC 391 Electrical Engineering Design Studio II Lab Assignment 1 Spectrum Analyzers 1 Objectives This lab consists

More information

Matlab exercises 2015 ELEC-E5410 Signal processing for communications

Matlab exercises 2015 ELEC-E5410 Signal processing for communications Matlab exercises 2015 ELEC-E5410 Signal processing for communications Matlab exercises Matlab exercises in ELEC-E5410 Signal Processing for Communications min 50% of exercises required to be returned See

More information

ENSC327 Communications Systems 14: Multiplexing. School of Engineering Science Simon Fraser University

ENSC327 Communications Systems 14: Multiplexing. School of Engineering Science Simon Fraser University ENSC327 Communications Systems 14: Multiplexing School of Engineering Science Simon Fraser University 1 Outline Required background (Recall various modulation schemes) Different Multiplexing strategies:

More information

CHAPTER 3 Noise in Amplitude Modulation Systems

CHAPTER 3 Noise in Amplitude Modulation Systems CHAPTER 3 Noise in Amplitude Modulation Systems NOISE Review: Types of Noise External (Atmospheric(sky),Solar(Cosmic),Hotspot) Internal(Shot, Thermal) Parameters of Noise o Signal to Noise ratio o Noise

More information

EE-4022 Experiment 3 Frequency Modulation (FM)

EE-4022 Experiment 3 Frequency Modulation (FM) EE-4022 MILWAUKEE SCHOOL OF ENGINEERING 2015 Page 3-1 Student Objectives: EE-4022 Experiment 3 Frequency Modulation (FM) In this experiment the student will use laboratory modules including a Voltage-Controlled

More information

1B Paper 6: Communications Handout 2: Analogue Modulation

1B Paper 6: Communications Handout 2: Analogue Modulation 1B Paper 6: Communications Handout : Analogue Modulation Ramji Venkataramanan Signal Processing and Communications Lab Department of Engineering ramji.v@eng.cam.ac.uk Lent Term 16 1 / 3 Modulation Modulation

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

UNIT-2 Angle Modulation System

UNIT-2 Angle Modulation System UNIT-2 Angle Modulation System Introduction There are three parameters of a carrier that may carry information: Amplitude Frequency Phase Frequency Modulation Power in an FM signal does not vary with modulation

More information

4.1 REPRESENTATION OF FM AND PM SIGNALS An angle-modulated signal generally can be written as

4.1 REPRESENTATION OF FM AND PM SIGNALS An angle-modulated signal generally can be written as 1 In frequency-modulation (FM) systems, the frequency of the carrier f c is changed by the message signal; in phase modulation (PM) systems, the phase of the carrier is changed according to the variations

More information

ENSC327 Communications Systems 14: Multiplexing. Jie Liang School of Engineering Science Simon Fraser University

ENSC327 Communications Systems 14: Multiplexing. Jie Liang School of Engineering Science Simon Fraser University ENSC327 Communications Systems 14: Multiplexing Jie Liang School of Engineering Science Simon Fraser University 1 Outline Multiplexing allows signals to share channels Many different strategies are possible

More information

HY448 Sample Problems

HY448 Sample Problems HY448 Sample Problems 10 November 2014 These sample problems include the material in the lectures and the guided lab exercises. 1 Part 1 1.1 Combining logarithmic quantities A carrier signal with power

More information

Laboratory 2: Amplitude Modulation

Laboratory 2: Amplitude Modulation Laboratory 2: Amplitude Modulation Cory J. Prust, Ph.D. Electrical Engineering and Computer Science Department Milwaukee School of Engineering Last Update: 4 December 2018 Contents 0 Laboratory Objectives

More information

EXTEND YOUR REACH. Copper Mountain Technologies USB VNAs. S-parameter measurement solutions from 9 khz to 110 GHz Measured parameters from S 11

EXTEND YOUR REACH. Copper Mountain Technologies USB VNAs. S-parameter measurement solutions from 9 khz to 110 GHz Measured parameters from S 11 Copper Mountain Technologies USB VNAs S-parameter measurement solutions from 9 khz to 110 GHz Measured parameters from S 11 to S 44 Dynamic range as high as 162 db typ. (1 Hz IF bandwidth) Measurement

More information

ELG3175: Introduction to Communication Systems. Laboratory II: Amplitude Modulation

ELG3175: Introduction to Communication Systems. Laboratory II: Amplitude Modulation Introduction: ELG3175: Introduction to Communication Systems Laboratory II: Amplitude Modulation In this lab, we shall investigate some fundamental aspects of the conventional AM and DSB-SC modulation

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

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

ANALOG COMMUNICATION

ANALOG COMMUNICATION ANALOG COMMUNICATION TRAINING LAB Analog Communication Training Lab consists of six kits, one each for Modulation (ACL-01), Demodulation (ACL-02), Modulation (ACL-03), Demodulation (ACL-04), Noise power

More information

THE SPECTRUM ANALYZER AND SPECTRAL CONTENT

THE SPECTRUM ANALYZER AND SPECTRAL CONTENT ECE 351 OBJECTIVE: EQUIPMENT: EXPERIMENT EM4 THE SPECTRUM ANALYZER AND SPECTRAL CONTENT The purpose of this experiment is to introduce the student to the spectrum analyzer and to demonstrate the activity

More information

Application Note: Testing P25 Conventional Radios Using the Freedom Communications System Analyzers

Application Note: Testing P25 Conventional Radios Using the Freedom Communications System Analyzers : Testing P25 Conventional Radios Using the Freedom Communications System Analyzers FCT-1007A Motorola CPS and Tuner Software Motorola provides a CD containing software programming facilities for the radio

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

Lab 3: Introduction to Software Defined Radio and GNU Radio

Lab 3: Introduction to Software Defined Radio and GNU Radio ECEN 4652/5002 Communications Lab Spring 2017 2-6-17 P. Mathys Lab 3: Introduction to Software Defined Radio and GNU Radio 1 Introduction A software defined radio (SDR) is a Radio in which some or all

More information

Lab 4: Measuring Received Signal Power EE 361 Signal Propagation Spring 2017

Lab 4: Measuring Received Signal Power EE 361 Signal Propagation Spring 2017 Lab 4: Measuring Received Signal Power EE 361 Signal Propagation Spring 2017 This is a one-week lab, plus an extra class period next week outside taking measurements. The lab period is 04-May, and the

More information

15.Calculate the local oscillator frequency if incoming frequency is F1 and translated carrier frequency

15.Calculate the local oscillator frequency if incoming frequency is F1 and translated carrier frequency DEPARTMENT OF ELECTRONICS & COMMUNICATION ENGINEERING SUBJECT NAME:COMMUNICATION THEORY YEAR/SEM: II/IV SUBJECT CODE: EC 6402 UNIT I:l (AMPLITUDE MODULATION) PART A 1. Compute the bandwidth of the AMP

More information

LABORATORY MANUAL COMMUNICATIONS LABORATORY EE 321

LABORATORY MANUAL COMMUNICATIONS LABORATORY EE 321 LABORATORY MANUAL COMMUNICATIONS LABORATORY EE 321 K. Rad October 26, 2005 DEPARTMENT OF ELECTRICAL & COMPUTER ENGINEERING CALIFORNIA STATE UNIVERSITY, LOS ANGELES K. Rad Experiment 1 Part 1: Exercise

More information

Testing Motorola P25 Conventional Radios Using the R8000 Communications System Analyzer

Testing Motorola P25 Conventional Radios Using the R8000 Communications System Analyzer Testing Motorola P25 Conventional Radios Using the R8000 Communications System Analyzer Page 1 of 24 Motorola CPS and Tuner Software Motorola provides a CD containing software programming facilities for

More information

Master Degree in Electronic Engineering

Master Degree in Electronic Engineering Master Degree in Electronic Engineering Analog and telecommunication electronic course (ATLCE-01NWM) Miniproject: Baseband signal transmission techniques Name: LI. XINRUI E-mail: s219989@studenti.polito.it

More information

ELEC 350 Communications Theory and Systems: I. Review. ELEC 350 Fall

ELEC 350 Communications Theory and Systems: I. Review. ELEC 350 Fall ELEC 350 Communications Theory and Systems: I Review ELEC 350 Fall 007 1 Final Examination Saturday, December 15-3 hours Two pages of notes allowed Calculator Tables provided Fourier transforms Table.1

More information

CME312- LAB Manual DSB-SC Modulation and Demodulation Experiment 6. Experiment 6. Experiment. DSB-SC Modulation and Demodulation

CME312- LAB Manual DSB-SC Modulation and Demodulation Experiment 6. Experiment 6. Experiment. DSB-SC Modulation and Demodulation Experiment 6 Experiment DSB-SC Modulation and Demodulation Objectives : By the end of this experiment, the student should be able to: 1. Demonstrate the modulation and demodulation process of DSB-SC. 2.

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

Communications IB Paper 6 Handout 2: Analogue Modulation

Communications IB Paper 6 Handout 2: Analogue Modulation Communications IB Paper 6 Handout 2: Analogue Modulation Jossy Sayir Signal Processing and Communications Lab Department of Engineering University of Cambridge jossy.sayir@eng.cam.ac.uk Lent Term c Jossy

More information

Angle Modulated Systems

Angle Modulated Systems Angle Modulated Systems Angle of carrier signal is changed in accordance with instantaneous amplitude of modulating signal. Two types Frequency Modulation (FM) Phase Modulation (PM) Use Commercial radio

More information

UNIT-I AMPLITUDE MODULATION (2 Marks Questions and Answers)

UNIT-I AMPLITUDE MODULATION (2 Marks Questions and Answers) UNIT-I AMPLITUDE MODULATION (2 Marks Questions and Answers) 1. Define modulation? Modulation is a process by which some characteristics of high frequency carrier Signal is varied in accordance with the

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

Ascent Ground and Satellite Demonstration

Ascent Ground and Satellite Demonstration Ascent Ground and Satellite Demonstration By Ray Roberge, WA1CYB & Howie DeFelice, AB2S WA1CYB s1 Big Picture Goals Place more capable satellites into higher orbits Utilize software defined radios A programmable

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

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

Software Defined Radios

Software Defined Radios Software Defined Radios What Is the SDR Radio? An SDR in general is a radio that has: Primary Functionality [modulation and demodulation, filtering, etc.] defined in software. DSP algorithms implemented

More information

Wireless Transmission Detection and Monitoring System using GNU Radio and Multiple RTL SDR Receivers

Wireless Transmission Detection and Monitoring System using GNU Radio and Multiple RTL SDR Receivers RESEARCH ARTICLE OPEN ACCESS Wireless Transmission Detection and Monitoring System using GNU Radio and Multiple RTL SDR Receivers Madhuram Mishra*, Dr. Anjali Potnis** *M.Tech. Student (Department of Electrical

More information

Practical Assignment 1: Arduino interface with Simulink

Practical Assignment 1: Arduino interface with Simulink !! Department of Electrical Engineering Indian Institute of Technology Dharwad EE 303: Control Systems Practical Assignment - 1 Adapted from Take Home Labs, Oklahoma State University Practical Assignment

More information

Lecture 6. Angle Modulation and Demodulation

Lecture 6. Angle Modulation and Demodulation Lecture 6 and Demodulation Agenda Introduction to and Demodulation Frequency and Phase Modulation Angle Demodulation FM Applications Introduction The other two parameters (frequency and phase) of the carrier

More information

Microwave Metrology -ECE 684 Spring Lab Exercise I&Q.v3: I&Q Time and Frequency Domain Measurements

Microwave Metrology -ECE 684 Spring Lab Exercise I&Q.v3: I&Q Time and Frequency Domain Measurements Lab Exercise I&Q.v3: I&Q Time and Frequency Domain Measurements In this lab exercise you will perform measurements both in time and in frequency to establish the relationship between these two dimension

More information

WAVEFORM DEVELOPMENT USING REDHAWK

WAVEFORM DEVELOPMENT USING REDHAWK WAVEFORM DEVELOPMENT USING REDHAWK C. Chen (UPR at Mayaguez, Mayaguez, Puerto Rico; cecilia.chen@upr.edu); N. Hatton (Virginia Commonwealth University; hattonn@vcu.edu) ABSTRACT REDHAWK is new, open source

More information

ELEC3242 Communications Engineering Laboratory Amplitude Modulation (AM)

ELEC3242 Communications Engineering Laboratory Amplitude Modulation (AM) ELEC3242 Communications Engineering Laboratory 1 ---- Amplitude Modulation (AM) 1. Objectives 1.1 Through this the laboratory experiment, you will investigate demodulation of an amplitude modulated (AM)

More information

ANALOGUE TRANSMISSION OVER FADING CHANNELS

ANALOGUE TRANSMISSION OVER FADING CHANNELS J.P. Linnartz EECS 290i handouts Spring 1993 ANALOGUE TRANSMISSION OVER FADING CHANNELS Amplitude modulation Various methods exist to transmit a baseband message m(t) using an RF carrier signal c(t) =

More information

Twelve voice signals, each band-limited to 3 khz, are frequency -multiplexed using 1 khz guard bands between channels and between the main carrier

Twelve voice signals, each band-limited to 3 khz, are frequency -multiplexed using 1 khz guard bands between channels and between the main carrier Twelve voice signals, each band-limited to 3 khz, are frequency -multiplexed using 1 khz guard bands between channels and between the main carrier and the first channel. The modulation of the main carrier

More information

Amplitude Modulation. Ahmad Bilal

Amplitude Modulation. Ahmad Bilal Amplitude Modulation Ahmad Bilal 5-2 ANALOG AND DIGITAL Analog-to-analog conversion is the representation of analog information by an analog signal. Topics discussed in this section: Amplitude Modulation

More information

Communication Systems Lab

Communication Systems Lab LAB MANUAL Communication Systems Lab (EE-226-F) Prepared by: Varun Sharma (Lab In-charge) Dayal C. Sati (Faculty In-charge) B R C M CET BAHAL DEPARTMENT OF ELECTRONICS & COMMUNICATION ENGINEERING Page

More information

EE-4022 Experiment 2 Amplitude Modulation (AM)

EE-4022 Experiment 2 Amplitude Modulation (AM) EE-4022 MILWAUKEE SCHOOL OF ENGINEERING 2015 Page 2-1 Student objectives: EE-4022 Experiment 2 Amplitude Modulation (AM) In this experiment the student will use laboratory modules to implement operations

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 301 Signals & Systems Prof. Mark Fowler Note Set #16 C-T Signals: Using FT Properties 1/12 Recall that FT Properties can be used for: 1. Expanding use of the FT table 2. Understanding real-world concepts

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

TS9050/60. microgen. electronics TM FM Modulation and Spectrum Analyser

TS9050/60. microgen. electronics TM FM Modulation and Spectrum Analyser TS9050/60 FM Modulation and Spectrum Analyser Introducing the TS9050 and TS9060, new and updated versions of the TS9000 NAB2004 Radio World Cool Stuff and The Radio Magazine Pick Hit award winner TS9050

More information

PRINCIPLES OF COMMUNICATION SYSTEMS. Lecture 1- Introduction Elements, Modulation, Demodulation, Frequency Spectrum

PRINCIPLES OF COMMUNICATION SYSTEMS. Lecture 1- Introduction Elements, Modulation, Demodulation, Frequency Spectrum PRINCIPLES OF COMMUNICATION SYSTEMS Lecture 1- Introduction Elements, Modulation, Demodulation, Frequency Spectrum Topic covered Introduction to subject Elements of Communication system Modulation General

More information

Spectrum Analyzers 2680 Series Features & benefits

Spectrum Analyzers 2680 Series Features & benefits Data Sheet Features & benefits n Frequency range: 9 khz to 2.1 or 3.2 GHz n High Sensitivity -161 dbm/hz displayed average noise level (DANL) n Low phase noise of -98 dbc/hz @ 10 khz offset n Low level

More information

ERC Recommendation 54-01

ERC Recommendation 54-01 ERC Recommendation 54-01 Method of measuring the maximum frequency deviation of FM broadcast emissions in the band 87.5 to 108 MHz at monitoring stations Approved May 1998 Amended 13 February 2015 Amended

More information