Software Simulation of Pulse Time Modulation Techniques

Size: px
Start display at page:

Download "Software Simulation of Pulse Time Modulation Techniques"

Transcription

1 Case Study Software Simulation of Pulse Time Modulation Techniques Introduction In recent years we have seen a growing interest in application of software simulation in communication engineering. With the hardware becoming more complex and costly, a way forward to many researchers and teachers would be first to implements the ideas in the software environment. Computer simulations in many cases are an attractive alternative to hardware implementation. The advantage would be that one is able to make significant changes readily with a press of a button. This allows testing of the system using idealised processing elements, which may take a significant time to design and realise in hardware. In addition, simulation can support the hardware design by giving optimised component values, for the critical parts, and an early indication of the performance of the system. In simulation information can be tabulated and plotted with ease. There are several commercial packages, which enable complex systems to be modelled. In this study a commercially available software package called Matlab is used to demonstrate how complex communication systems can be modelled and their behaviour explored. It is the intention of this case study to demonstrate that MATLAB can be used to implement complete communication systems as shown in Fig. 1. Channel Input signal Modulator + Demodulator Output signal Transmitter Receiver Noise Fig. 1 A typical communication system block diagram. Brief Introduction to Matlab The Matlab software was initially developed to be a matrix laboratory. It is gradually evolved to be an interactive programming language for scientific and engineering computation. The basic 1

2 units of operation in Matlab are matrices. A matrix is a set of numbers arranged in one or more rows. Each element within the matrix can be referred to by its location in a row and column. For example the element a nm is located in the nth row and mth column of the matrix A shown below, a a... a A = a a... a a31 a32... a m m nm Matlab enables matrices to be easily manipulated, for example they can be added, subtracted, multiplied, divided, transposed, etc. Matlab has numerous toolboxes, which facilitate complex scientific and engineering mathematical operations to be carried out with a minimum amount of programming. Matlab programming language is developed in such a way that it can be learnt with ease [2]. The order in which the statements are executed in Matlab can be controlled by the use of flow control characters such as IF, FOR and WHILE. In order to demonstrate the simplicity of Matlab programming, a simple Matlab program it shown below. The comments appear after the % sign and they are included for documentation purposes. The program asks for a value for the radius of a circle. If the entered value is a negative number, an error massage is printed and a new value is requested. When a positive number is entered the area of the circle is computed and is displayed on the screen. Matlab can produce both planer and 3 dimensional plots. A simple Matlab program % Program to calculate the area of a circle r = input ( Enter a value for radius : ) % check for correct value for radius while r < 0 fprintf( Note: Radius should be positive ) r = input ( Enter another value for radius : ) end % calculate area area = pi * r.^2 (1) 2

3 Modulation Modulation is an essential process in telecommunication since it enables multiple signals to be transmitted simultaneously over a common medium or communication channel. The process involves transferring the information from the signal to be transmitted (i.e. the modulating signal) to a high-frequency signal known as the carrier. For a sinusoidal carrier, the amplitude, frequency or phase can be varied by the modulating signal. When the amplitude of the carrier signal is varied in accordance with the modulating signal, the form of modulation is known as amplitude modulation. On the other hand if the frequency or phase of the carrier signal is varied, the result is frequency or phase modulation, respectively. Example: Amplitude modulation Amplitude modulation (AM) is used in applications such as radio and television Broadcasting. An amplitude modulated carrier signal; e(t) can be expressed as [Young, 1990], et ( ) = E [ 1+ Mcos( 2πf t)]cos( 2π ft) (2) c m c Where, E c and f c are the amplitude and frequency of the carrier signal, respectively, M = E C /E M is the modulation index, and E m and f m are the amplitude and frequency the modulating signal, respectively. The essential Matlab code segments for simulating AM are shown below. AM simulation codes. %generate modulating signal fm=1.0e+4;% frequency (Hz) m=0.5; %modulation index t=0:0.4e-3/10000:0.4e-3; %time vector, xm=cos(2*pi*fm*t);%modulating signal %generate carrier signal fc=1.0e+6; %frequency(hz) ec= 1; amplitude(v) xam= ec(1+m*xm).*cos(2*pi*fc*t); %AM signal magspec= abs(fft(xam)); %generates the AM spectrum Figure 2 shows the results obtained when executing the above program. The modulating signal of 10 khz is shown in Fig. 2.a. The resulting AM signal, with M = 50 % and a carrier frequency of 1 MHz, and its frequency spectrum are shown in Figs. 2. and 2.c, respectively. The spectrum 3

4 consists of the carrier at 1 MHz and a period of side bands at 1 MHz ± 1 khz. Increasing the modulation index M to 1.5 results in over modulated waveform as shown in Fig. 2.d. Fig. 2 AM simulation results: (a) modulating signal, (b) AM waveform, (c) AM spectrum and (d) over modulated AM waveform. Case Study: Pulse Time Modulation Digital communication systems can be implemented using a variety of different modulation schemes one of which is based on pulse time modulation (PTM) methods. In PTM schemes one of a range of time dependent features of constant amplitude squarewave carrier waveform is used to convey information (see Table 1). In this case study a PTM scheme known as pulse width modulation (PWM) was selected. The codes with slight modifications can be applied to the other PTM schemes. PWM and PPM are an attractive scheme for transmission of analogue and data signals compared with purely digital modulation techniques [3-6]. In PWM the width of a constant amplitude pulse 4

5 carrier is changed according to the sample values of the modulating signal. Figure 3 shows a block diagram and waveforms associated with a simple PWM system. At the transmitter the analogue signal and a sawtooth ramp are compared directly at the input of a comparator, the output of which is the PWM pulse train. PPM is simply generated by differentiating PWM pulse train. The duration of the kth plus is given as: τ k = τ [ + Mm( kt )] (3) 0 1 c where τ 0 is the unmodulated pulse width representing Mm(T c ) = 0, and M is the modulation index = 2Δτ/T c, T c is the sampling interval, and m(t) = sin ω m t is the single tone modulating signal. Table 1 PTM Possible schemes Pulse width modulation (PWM) Pulse position modulation(ppm) Pulse interval modulation(pim) Pulse interval and width modulation (PIWM) Pulse frequency modulation (PFM) Squarewave FM (SWFM) Variable Width (duration) Position Interval (space) Interval and width Frequency Frequency The resulting spectra for a trailing edge modulated naturally sampled PWM waveform may be expressed as: sin ( n ω t M c ) 1 V ns ( t ) = sin ω m t + n = 1 n π J 0 ( n π M ) sin ( n ω c t n π ) n = 1 n π ± J k ( n π M ) n = 1 k = ± 1 n π sin [ ( n ω + k ω ) t n π ] Where M = modulation index (0<M<1), and ω m and ω c are the modulating signal and the carrier frequencies respectively. Jk(x) is a Bessel function of the first kind, order k. In the absence of a modulating signal (M = 0) this series reduces to the Fourier series of the square carrier wave. With the modulating signal present a diminishing series of sidetones are generated around the carrier frequency and all its harmonics and separated by a frequency equal to that of c m (4) 5

6 the input signal ω m (term 5) along with a baseband component (term 2), see Fig.4. As the Fig. 4 PWM modulation spectrum. modulation index is increased the number of sidetones and their amplitude increase with respect to the sampling frequency and input signal component, effectively limiting the distortion performance for a given ratio of sampling frequency to maximum input frequency. An improved distortion performance for a given modulation index, assuming that the distortion is above the noise threshold, can only be achieved by increasing the sampling ratio, thereby also increasing the bandwidth of the modulated signal. During signal transmission the PWM and PPM signals will be corrupted by noise and this was simulated by adding white Gaussian noise signal. The noise is band limited and the channel was modelled as a simple first order low pass filter. At the receiver, the received PPM pulse train is passed through a slicer in order to reshape the pulse train and eliminate the amplitude noise. PPM (with clock pulses) signal is then converted back into PWM by using a divide by two circuits. The regenerated PWM signal is then passed a high order low pass filter in order to recover the information signal. System Specifications Transmitter: 6

7 - Modulating Single: Sinewave with amplitude = 3V and Frequency = 10 khz. - Carrier signal: Ramp waveform: amplitude = 5 V - Sampling ratio: 10, 5, and 3 - Modulation index: 50%, 25%, and 10% - PWM/PPM: Unipolar with amplitude of 5 V - PPM duty cycle: Student to select Channel: Receiver: - A simple low pass filter:- bandwidth; 300 khz, 200 khz, 100 khz - Noise: bandlimited white noise with bandwidth: 100 khz, 50 khz, and 20 khz - Slicer: Threshold level set by the students. - Low pass filter:- type: chose any, order: 6 th, bandwidth: 10 khz and gain: optional. For a given set of parameters: i.e. modulation index, sampling ratio, channel bandwidth, simulation should be carried out to show: Time domain waveforms and frequency spectra: Transmitter:- Modulating signal, ramp, PWM and PPM waveforms Channel:- Noise, PWM + Noise and PPM + Noise Receiver: Regenerated PWM, regenerated PPM and recovered modulating signal System linearity test. This can be done by: 1. Transmitting a very low frequency ramp signal and comparing it with the received waveform 2. Plotting modulating signal amplitude (peak-to-peak) vs. modulation index 2 nd and third harmonic distortion measured at the output stage Signal to noise ratio Vs. carrier to noise ratio. Change the set up parameters and repeat the simulation. References 1. Matlab,: The MathWorks, Inc. (1993). 2. Pärt-Enander, E., Sjöberrg, A., Melin, B., and Isaksson, P.,: The Matlab handbook (Addison-Wesley, 1996). 3. Young, P.H.,: Electronic communication techniques (Macmillan Publishing Company 1990, 3rd Edition, pp ). 7

8 4. Arnold, J. M., and Berry, M.: 'Pulse width modulation for optical fibre transmission of video signals', IEE International Conference on impact of VLSI technology on communication systems, 1983, London. 5. Suh, S. Y.:"Pulse width modulation for analog fiber-optic communications", J. lightwave Technol., 1987, LT-5, pp Wilson, B., Ghassemlooy, Z.: "Optical pwm data link for high quality analogue and video signals', J. Physics E, 1987, 20, pp Professor Z Ghassemlooy 8

9 Modulating signal DC level Ramp generator + Comparator PWM Pulse generator PPM (a) V Ramp Input signal 0 PWM Clock Unmodulated position Modulated edges PPM (b) time PWM PWM + noise PPM + Channel Slicer 2 Lowpass filter Output Low pass filter Noise Generator PPM + noise PWM (c) Fig. 3 PPM/PWM system: (a) transmitter, (b) waveforms and (c) channel and receiver. 9

10 Appendix A AM Matlab codes: echo on clear clc n=4096; fs= ; %sampling frequency; fm=50000; %modulating frequency; fc=500000;%carrier frequency; M=1; %modulation index; t=0:1/fs:n/fs; %time vector x= M*sin(2*pi*fm*t); % Modulating signal P=spectrum(x,n); A=[ ]; axis(a) specplot(p,fs),pause axis y=sin(2*pi*fc*t); %Sinewave carrier z=x.* y; %AM signal %rand('normal'); %Random noise %z=z+(1/416)*rand(t); %Plot AM signal pause % Strike any key for plot. plot(t(1:n/10),z(1:n/10)), title('time Domain Waveform'),.. xlabel('time (s)'), pause %x=[]; y=[]; pack clc P=spectrum(z,n); % AM spectrum axis(a) specplot(p,fs),pause axis %demodulator %local carrier frequency; %w=sin((2*pi*fc*t)); %frequency error in local oscillator %w=sin((2*pi*(fc-1000)*t)) %phase error in local oscillator %+30*pi/180); %modulation is demodulation! %v = z.* w; v = z*z; z=[];w=[];p=[]; 10

11 z=[];p=[]; pack pause % Strike any key for plot. plot(t(1:n/10),v(1:n/10)), title('time Domain waveform'),... xlabel('time (s)'), ylabel('amplitude(v)'),pause P=spectrum(v,n); axis(a); specplot(p,fs),pause axis; P=[]; pack %low pass filter; %cutoff frequency; fco=100000; [b,a] = butter(4,(fco)*2/fs); y = filter(b,a,v); plot(t(1:n),y(1:n)),title('baseband signal'),... xlabel('time(s)'), ylabel('amplitude(v)'),pause P=spectrum(y,n); axis(a); specplot(p,fs),pause axis %specplot(p(1:50),fs*50/2048);pause 11

SOFTWARE SIMULATION TECHNIQUES FOR TEACHING COMMUNICATION SYSTEMS

SOFTWARE SIMULATION TECHNIQUES FOR TEACHING COMMUNICATION SYSTEMS Abstract SOFTWARE SIMULATION TECHNIQUES FOR TEACHING COMMUNICATION SYSTEMS Z. GHASSEMLOOY and R. SAATCHI School of Engineering, Sheffield Hallam University, Pond St., Sheffield, UK. Theoretical concepts

More information

A Seminar Report On PULSE TIME MODULATION TECHNIQUES. Jithin R. J. (Roll No. EC04B081)

A Seminar Report On PULSE TIME MODULATION TECHNIQUES. Jithin R. J. (Roll No. EC04B081) A Seminar Report On PULSE TIME MODULATION TECHNIQUES Submitted in partial fulfillment for the award of the Degree of Bachelor of Technology in Electronics and Communication Engineering by Jithin R. J.

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

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

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

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

(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

Signals and Systems Lecture 9 Communication Systems Frequency-Division Multiplexing and Frequency Modulation (FM)

Signals and Systems Lecture 9 Communication Systems Frequency-Division Multiplexing and Frequency Modulation (FM) Signals and Systems Lecture 9 Communication Systems Frequency-Division Multiplexing and Frequency Modulation (FM) April 11, 2008 Today s Topics 1. Frequency-division multiplexing 2. Frequency modulation

More information

Communication Channels

Communication Channels Communication Channels wires (PCB trace or conductor on IC) optical fiber (attenuation 4dB/km) broadcast TV (50 kw transmit) voice telephone line (under -9 dbm or 110 µw) walkie-talkie: 500 mw, 467 MHz

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

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

Electrical & Computer Engineering Technology

Electrical & Computer Engineering Technology Electrical & Computer Engineering Technology EET 419C Digital Signal Processing Laboratory Experiments by Masood Ejaz Experiment # 1 Quantization of Analog Signals and Calculation of Quantized noise Objective:

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

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

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

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

Laboratory Assignment 2 Signal Sampling, Manipulation, and Playback

Laboratory Assignment 2 Signal Sampling, Manipulation, and Playback Laboratory Assignment 2 Signal Sampling, Manipulation, and Playback PURPOSE This lab will introduce you to the laboratory equipment and the software that allows you to link your computer to the hardware.

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

Laboratory Assignment 5 Amplitude Modulation

Laboratory Assignment 5 Amplitude Modulation Laboratory Assignment 5 Amplitude Modulation PURPOSE In this assignment, you will explore the use of digital computers for the analysis, design, synthesis, and simulation of an amplitude modulation (AM)

More information

Digital Communication

Digital Communication Digital Communication Laboratories bako@ieee.org DigiCom Labs There are 5 labs related to the digital communication. Study of the parameters of metal cables including: characteristic impendance, attenuation

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

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

EE3723 : Digital Communications

EE3723 : Digital Communications EE3723 : Digital Communications Week 8-9: Bandpass Modulation MPSK MASK, OOK MFSK 04-May-15 Muhammad Ali Jinnah University, Islamabad - Digital Communications - EE3723 1 In-phase and Quadrature (I&Q) Representation

More information

Signal Characteristics

Signal Characteristics Data Transmission The successful transmission of data depends upon two factors:» The quality of the transmission signal» The characteristics of the transmission medium Some type of transmission medium

More information

Final Exam Solutions June 7, 2004

Final Exam Solutions June 7, 2004 Name: Final Exam Solutions June 7, 24 ECE 223: Signals & Systems II Dr. McNames Write your name above. Keep your exam flat during the entire exam period. If you have to leave the exam temporarily, close

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

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, Introduction to EECS 2 Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Fall Semester, 2006 6.082 Introduction to EECS 2 Modulation and Demodulation Introduction A communication system

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

Introduction to Amplitude Modulation

Introduction to Amplitude Modulation 1 Introduction to Amplitude Modulation Introduction to project management. Problem definition. Design principles and practices. Implementation techniques including circuit design, software design, solid

More information

ECE513 RF Design for Wireless

ECE513 RF Design for Wireless 1 ECE513 RF Design for Wireless MODULE 1 RF Systems LECTURE 1 Modulation Techniques Chapter 1, Sections 1.1 1.3 Professor Michael Steer http://www4.ncsu.edu/~mbs 2 Module 1: RF Systems Amplifiers, Mixers

More information

2. TELECOMMUNICATIONS BASICS

2. TELECOMMUNICATIONS BASICS 2. TELECOMMUNICATIONS BASICS The purpose of any telecommunications system is to transfer information from the sender to the receiver by a means of a communication channel. The information is carried by

More information

ECE 3500: Fundamentals of Signals and Systems (Fall 2014) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation

ECE 3500: Fundamentals of Signals and Systems (Fall 2014) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation ECE 3500: Fundamentals of Signals and Systems (Fall 2014) Lab 4: Binary Phase-Shift Keying Modulation and Demodulation Files necessary to complete this assignment: none Deliverables Due: Before your assigned

More information

Lecture 10. Digital Modulation

Lecture 10. Digital Modulation Digital Modulation Lecture 10 On-Off keying (OOK), or amplitude shift keying (ASK) Phase shift keying (PSK), particularly binary PSK (BPSK) Frequency shift keying Typical spectra Modulation/demodulation

More information

The Sampling Theorem:

The Sampling Theorem: The Sampling Theorem: Aim: Experimental verification of the sampling theorem; sampling and message reconstruction (interpolation). Experimental Procedure: Taking Samples: In the first part of the experiment

More information

TE 302 DISCRETE SIGNALS AND SYSTEMS. Chapter 1: INTRODUCTION

TE 302 DISCRETE SIGNALS AND SYSTEMS. Chapter 1: INTRODUCTION TE 302 DISCRETE SIGNALS AND SYSTEMS Study on the behavior and processing of information bearing functions as they are currently used in human communication and the systems involved. Chapter 1: INTRODUCTION

More information

DSP First. Laboratory Exercise #7. Everyday Sinusoidal Signals

DSP First. Laboratory Exercise #7. Everyday Sinusoidal Signals DSP First Laboratory Exercise #7 Everyday Sinusoidal Signals This lab introduces two practical applications where sinusoidal signals are used to transmit information: a touch-tone dialer and amplitude

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

Physical Layer: Outline

Physical Layer: Outline 18-345: Introduction to Telecommunication Networks Lectures 3: Physical Layer Peter Steenkiste Spring 2015 www.cs.cmu.edu/~prs/nets-ece Physical Layer: Outline Digital networking Modulation Characterization

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

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

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

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

Implementation of Digital Signal Processing: Some Background on GFSK Modulation

Implementation of Digital Signal Processing: Some Background on GFSK Modulation Implementation of Digital Signal Processing: Some Background on GFSK Modulation Sabih H. Gerez University of Twente, Department of Electrical Engineering s.h.gerez@utwente.nl Version 5 (March 9, 2016)

More information

Lecture Schedule: Week Date Lecture Title

Lecture Schedule: Week Date Lecture Title http://elec3004.org Sampling & More 2014 School of Information Technology and Electrical Engineering at The University of Queensland Lecture Schedule: Week Date Lecture Title 1 2-Mar Introduction 3-Mar

More information

Islamic University of Gaza. Faculty of Engineering Electrical Engineering Department Spring-2011

Islamic University of Gaza. Faculty of Engineering Electrical Engineering Department Spring-2011 Islamic University of Gaza Faculty of Engineering Electrical Engineering Department Spring-2011 DSP Laboratory (EELE 4110) Lab#4 Sampling and Quantization OBJECTIVES: When you have completed this assignment,

More information

Basic Communication Laboratory Manual. Shimshon Levy&Harael Mualem

Basic Communication Laboratory Manual. Shimshon Levy&Harael Mualem Basic Communication Laboratory Manual Shimshon Levy&Harael Mualem September 2006 CONTENTS 1 The oscilloscope 2 1.1 Objectives... 2 1.2 Prelab... 2 1.3 Background Theory- Analog Oscilloscope...... 3 1.4

More information

Chapter 3. Amplitude Modulation Fundamentals

Chapter 3. Amplitude Modulation Fundamentals Chapter 3 Amplitude Modulation Fundamentals Topics Covered 3-1: AM Concepts 3-2: Modulation Index and Percentage of Modulation 3-3: Sidebands and the Frequency Domain 3-4: AM Power 3-5: Single-Sideband

More information

ADC Clock Jitter Model, Part 1 Deterministic Jitter

ADC Clock Jitter Model, Part 1 Deterministic Jitter ADC Clock Jitter Model, Part 1 Deterministic Jitter Analog to digital converters (ADC s) have several imperfections that effect communications signals, including thermal noise, differential nonlinearity,

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

DATA INTEGRATION MULTICARRIER REFLECTOMETRY SENSORS

DATA INTEGRATION MULTICARRIER REFLECTOMETRY SENSORS Report for ECE 4910 Senior Project Design DATA INTEGRATION IN MULTICARRIER REFLECTOMETRY SENSORS Prepared by Afshin Edrissi Date: Apr 7, 2006 1-1 ABSTRACT Afshin Edrissi (Cynthia Furse), Department of

More information

EE 400L Communications. Laboratory Exercise #7 Digital Modulation

EE 400L Communications. Laboratory Exercise #7 Digital Modulation EE 400L Communications Laboratory Exercise #7 Digital Modulation Department of Electrical and Computer Engineering University of Nevada, at Las Vegas PREPARATION 1- ASK Amplitude shift keying - ASK - in

More information

Computer Networks. Practice Set I. Dr. Hussein Al-Bahadili

Computer Networks. Practice Set I. Dr. Hussein Al-Bahadili بسم االله الرحمن الرحيم Computer Networks Practice Set I Dr. Hussein Al-Bahadili (1/11) Q. Circle the right answer. 1. Before data can be transmitted, they must be transformed to. (a) Periodic signals

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. 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

Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective

Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective Wireless Communication Systems Laboratory Lab#1: An introduction to basic digital baseband communication through MATLAB simulation Objective The objective is to teach students a basic digital communication

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

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

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

YEDITEPE UNIVERSITY ENGINEERING FACULTY COMMUNICATION SYSTEMS LABORATORY EE 354 COMMUNICATION SYSTEMS

YEDITEPE UNIVERSITY ENGINEERING FACULTY COMMUNICATION SYSTEMS LABORATORY EE 354 COMMUNICATION SYSTEMS YEDITEPE UNIVERSITY ENGINEERING FACULTY COMMUNICATION SYSTEMS LABORATORY EE 354 COMMUNICATION SYSTEMS EXPERIMENT 3: SAMPLING & TIME DIVISION MULTIPLEX (TDM) Objective: Experimental verification of the

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

Amplitude Modulation Fundamentals

Amplitude Modulation Fundamentals 3 chapter Amplitude Modulation Fundamentals In the modulation process, the baseband voice, video, or digital signal modifies another, higher-frequency signal called the carrier, which is usually a sine

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

Speech, music, images, and video are examples of analog signals. Each of these signals is characterized by its bandwidth, dynamic range, and the

Speech, music, images, and video are examples of analog signals. Each of these signals is characterized by its bandwidth, dynamic range, and the Speech, music, images, and video are examples of analog signals. Each of these signals is characterized by its bandwidth, dynamic range, and the nature of the signal. For instance, in the case of audio

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

Problem Set 1 (Solutions are due Mon )

Problem Set 1 (Solutions are due Mon ) ECEN 242 Wireless Electronics for Communication Spring 212 1-23-12 P. Mathys Problem Set 1 (Solutions are due Mon. 1-3-12) 1 Introduction The goals of this problem set are to use Matlab to generate and

More information

Lab10: FM Spectra and VCO

Lab10: FM Spectra and VCO Lab10: FM Spectra and VCO Prepared by: Keyur Desai Dept. of Electrical Engineering Michigan State University ECE458 Lab 10 What is FM? A type of analog modulation Remember a common strategy in analog 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

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

Lecture 2 Fiber Optical Communication Lecture 2, Slide 1

Lecture 2 Fiber Optical Communication Lecture 2, Slide 1 Lecture 2 General concepts Digital modulation in general Optical modulation Direct modulation External modulation Modulation formats Differential detection Coherent detection Fiber Optical Communication

More information

Chapter 3 Data Transmission COSC 3213 Summer 2003

Chapter 3 Data Transmission COSC 3213 Summer 2003 Chapter 3 Data Transmission COSC 3213 Summer 2003 Courtesy of Prof. Amir Asif Definitions 1. Recall that the lowest layer in OSI is the physical layer. The physical layer deals with the transfer of raw

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

DFT: Discrete Fourier Transform & Linear Signal Processing

DFT: Discrete Fourier Transform & Linear Signal Processing DFT: Discrete Fourier Transform & Linear Signal Processing 2 nd Year Electronics Lab IMPERIAL COLLEGE LONDON Table of Contents Equipment... 2 Aims... 2 Objectives... 2 Recommended Textbooks... 3 Recommended

More information

ECE 201: Introduction to Signal Analysis

ECE 201: Introduction to Signal Analysis ECE 201: Introduction to Signal Analysis Prof. Paris Last updated: October 9, 2007 Part I Spectrum Representation of Signals Lecture: Sums of Sinusoids (of different frequency) Introduction Sum of Sinusoidal

More information

Chapter 3 Digital Transmission Fundamentals

Chapter 3 Digital Transmission Fundamentals Chapter 3 Digital Transmission Fundamentals Characterization of Communication Channels Fundamental Limits in Digital Transmission CSE 323, Winter 200 Instructor: Foroohar Foroozan Chapter 3 Digital Transmission

More information

Signals A Preliminary Discussion EE442 Analog & Digital Communication Systems Lecture 2

Signals A Preliminary Discussion EE442 Analog & Digital Communication Systems Lecture 2 Signals A Preliminary Discussion EE442 Analog & Digital Communication Systems Lecture 2 The Fourier transform of single pulse is the sinc function. EE 442 Signal Preliminaries 1 Communication Systems and

More information

EE390 Frequency Modulation/Demodulation Lab #4

EE390 Frequency Modulation/Demodulation Lab #4 EE390 Frequency Modulation/Demodulation Lab #4 Objective Observe FM signals in both the time and frequency domain while making basic measurements. Equipment used. The Dual Function Generator: A feature

More information

Workspace for '6-pulse' Page 1 (row 1, column 1)

Workspace for '6-pulse' Page 1 (row 1, column 1) Workspace for '6-pulse' Page 1 (row 1, column 1) Workspace for '6-pulse' Page 2 (row 2, column 1) Workspace for '6-pulse' Page 3 (row 3, column 1) ECEN 449 Microprocessor System Design Pulse Modulation

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

The quality of the transmission signal The characteristics of the transmission medium. Some type of transmission medium is required for transmission:

The quality of the transmission signal The characteristics of the transmission medium. Some type of transmission medium is required for transmission: Data Transmission The successful transmission of data depends upon two factors: The quality of the transmission signal The characteristics of the transmission medium Some type of transmission medium is

More information

EXPERIMENT 3 - Part I: DSB-SC Amplitude Modulation

EXPERIMENT 3 - Part I: DSB-SC Amplitude Modulation OBJECTIVE To generate DSB-SC amplitude modulated signal. EXPERIMENT 3 - Part I: DSB-SC Amplitude Modulation PRELIMINARY DISCUSSION In the modulation process, the message signal (the baseband voice, video,

More information

Laboratory Assignment 4. Fourier Sound Synthesis

Laboratory Assignment 4. Fourier Sound Synthesis Laboratory Assignment 4 Fourier Sound Synthesis PURPOSE This lab investigates how to use a computer to evaluate the Fourier series for periodic signals and to synthesize audio signals from Fourier series

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

Theory of Telecommunications Networks

Theory of Telecommunications Networks Theory of Telecommunications Networks Anton Čižmár Ján Papaj Department of electronics and multimedia telecommunications CONTENTS Preface... 5 1 Introduction... 6 1.1 Mathematical models for communication

More information

Lab 0: Introduction to TIMS AND MATLAB

Lab 0: Introduction to TIMS AND MATLAB TELE3013 TELECOMMUNICATION SYSTEMS 1 Lab 0: Introduction to TIMS AND MATLAB 1. INTRODUCTION The TIMS (Telecommunication Instructional Modelling System) system was first developed by Tim Hooper, then a

More information

Communications I (ELCN 306)

Communications I (ELCN 306) Communications I (ELCN 306) c Samy S. Soliman Electronics and Electrical Communications Engineering Department Cairo University, Egypt Email: samy.soliman@cu.edu.eg Website: http://scholar.cu.edu.eg/samysoliman

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

COMMUNICATION SYSTEMS-II (In continuation with Part-I)

COMMUNICATION SYSTEMS-II (In continuation with Part-I) MODULATING A SIGNAL COMMUNICATION SYSTEMS-II (In continuation with Part-I) TRANSMITTING SIGNALS : In order to transmit the original low frequency baseband message efficiently over long distances, the signal

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

1/14. Signal. Surasak Sanguanpong Last updated: 11 July Signal 1/14

1/14. Signal. Surasak Sanguanpong  Last updated: 11 July Signal 1/14 1/14 Signal Surasak Sanguanpong nguan@ku.ac.th http://www.cpe.ku.ac.th/~nguan Last updated: 11 July 2000 Signal 1/14 Transmission structure 2/14 Transmitter/ Receiver Medium Amplifier/ Repeater Medium

More information

Signals. Periodic vs. Aperiodic. Signals

Signals. Periodic vs. Aperiodic. Signals Signals 1 Periodic vs. Aperiodic Signals periodic signal completes a pattern within some measurable time frame, called a period (), and then repeats that pattern over subsequent identical periods R s.

More information

Digital communication

Digital communication Chapter 4 Digital communication A digital is a discrete-time binary m : Integers Bin = {0, 1}. To transmit such a it must first be transformed into a analog. The is then transmitted as such or modulated

More information

Experiment 7: Frequency Modulation and Phase Locked Loops

Experiment 7: Frequency Modulation and Phase Locked Loops Experiment 7: Frequency Modulation and Phase Locked Loops Frequency Modulation Background Normally, we consider a voltage wave form with a fixed frequency of the form v(t) = V sin( ct + ), (1) where c

More information

Multi-carrier Modulation and OFDM

Multi-carrier Modulation and OFDM 3/28/2 Multi-carrier Modulation and OFDM Prof. Luiz DaSilva dasilval@tcd.ie +353 896-366 Multi-carrier systems: basic idea Typical mobile radio channel is a fading channel that is flat or frequency selective

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

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

ECE 2111 Signals and Systems Spring 2012, UMD Experiment 9: Sampling

ECE 2111 Signals and Systems Spring 2012, UMD Experiment 9: Sampling ECE 2111 Signals and Systems Spring 2012, UMD Experiment 9: Sampling Objective: In this experiment the properties and limitations of the sampling theorem are investigated. A specific sampling circuit will

More information

Noise Simulation and Reduction in AM-SSB Radio Systems Thiago D. Olson, Zi Ling, and Mohammad Naquiddin A. Razak

Noise Simulation and Reduction in AM-SSB Radio Systems Thiago D. Olson, Zi Ling, and Mohammad Naquiddin A. Razak 1 Noise Simulation and Reduction in AM-SSB Radio Systems Thiago D. Olson, Zi Ling, and Mohammad Naquiddin A. Razak Abstract Ham radio transmission distance is affected by many different external sources.

More information

Communication Systems Lecture-12: Delta Modulation and PTM

Communication Systems Lecture-12: Delta Modulation and PTM Communication Systems Lecture-12: Delta Modulation and PTM Department of Electrical and Computer Engineering Lebanese American University chadi.abourjeily@lau.edu.lb October 26, 2017 Delta Modulation (1)

More information

CHAPTER 2! AMPLITUDE MODULATION (AM)

CHAPTER 2! AMPLITUDE MODULATION (AM) CHAPTER 2 AMPLITUDE MODULATION (AM) Topics 2-1 : AM Concepts 2-2 : Modulation Index and Percentage of Modulation 2-3 : Sidebands and the Frequency Domain 2-4 : Single-Sideband Modulation 2-5 : AM Power

More information