Title: Pulse Amplitude Modulation.

Size: px
Start display at page:

Download "Title: Pulse Amplitude Modulation."

Transcription

1 Title: Pulse Amplitude Modulation. AIM Write a program to take input Frequency of Message Signal and find out the Aliased and Anti-Aliased wave, and also the Carrier Signal, Message Signal and their Fourier Transformation Spectrum. Apparatus Required: Matlab to be installed in the computer or in the laptop. Theory: Pulse amplitude modulation is the pulse analog modulation scheme in which the amplitude of train of carrier pulses are varied according to the instantaneous amplitude of the message signal. Pulse-amplitude modulation (PAM), is a form of signal modulation where the message information is encoded in the amplitude of a series of signal pulse. It is an analog pulse modulation scheme in which the amplitudes of a train of carrier pulses are varied according to the sample value of the message signal. Demodulation is performed by detecting the amplitude level of the carrier at every single period. PAM is a technique that is also used in PCM. Aliasing is an effect that causes different signals to become indistinguishable from each other during sampling. Aliasing is characterized by the altering of output compared to the original signal because resampling or interpolation resulted in a lower resolution in images, a slower frame rate in terms of video or a lower wave resolution in audio. Anti-aliasing filters can be used to correct this problem. In pam pulse by pulse transmission is occurred. Each of the pulse to be transmitted corresponding baseband signal and can be directly transmitted through baseband channel. There are three types of sampling: 1. Instantaneous sampling 2. Natural Sampling 3. Flat top Sampling(We can retrieve the signal by ejecting the noise, if noise is induced by accident) We use stem function to discrete the signal. 1) PAM (INSTANTANEOUS SAMPLING)

2 Code: clc clear close all fm= input('enter the frequency of message signal'); t=-1:0.01:1; x=(t==0); y=sin(2*pi*fm*t); fs=100; N=length(t); xf=fftshift(fft(x,n)/n) f=linspace(-fs/2,fs/2,n) yf=fftshift(fft(y,n)/n); subplot(2,2,1) plot(t,x) xlabel('time') title('impluswe Function') subplot(2,2,2) plot( f, ceil(abs(xf))) xlabel('frequency') title('frequency Response') subplot(2,2,3) plot(t,y) xlabel('frequency') title('sine Function') subplot(2,2,4) plot(f,abs(yf)) xlabel('frequency') title('frequency Response') subplot(2,1,1) Fs=5*fm; t1=-1:1/fs:1; y1=sin(2*pi*fm*t1); plot(t,y) xlabel('time') title('no Aliasing') hold on stem(t1,y1) hold off subplot(2,1,2) Fs=1.5*fm; t1=-1:1/fs:1;

3 y1=sin(2*pi*fm*t1); plot(t,y) xlabel('time') title('aliasing') hold on stem(t1,y1) hold off Output:

4 2) PAM (Natural Sampling) : AIM- Write a Program to show the Carrier Signal, Message Signal, The PAM signal, and it s Demodulated Signal. CODE: clc; clear close all fc=100; fm=fc/10; fs=100*fc; t=0:1/fs:4/fm; mt=cos(2*pi*fm*t); ct=0.5*square(2*pi*fc*t)+0.5; st=mt.*ct; figure(1) subplot(4,1,1); plot(t,mt); title('message signal'); xlabel('timeperiod'); subplot(4,1,2); plot(t,ct); title('carrier signal'); xlabel('timeperiod');

5 subplot(4,1,3); plot(t,st); title('modulated signal'); xlabel('timeperiod'); % Demodulation % dt=st.*ct; filter=fir1(200,fm/fs,'low'); % FIR filter demod_signal=conv(filter,dt); % Convolution between filter coefficient and dt %t1=0:1/(length(demod_signal)-1):1; t1=linspace(0,1,length(demod_signal)); subplot(4,1,4); plot(t1,demod_signal); title('demodulated signal'); xlabel('timeperiod'); Output: 3) PAM(Flat top sampling): AIM- Write a Program to show the Impulse train, Message Signal, Modulated and it s Demodulated Signal. Code: clc

6 close all; fc = 20; fm = 2; fs = 1000; t = 1; n = [0:1/fs:t]; n = n(1:end - 1); duty = 20; s = square(2*pi*fc*n,duty); s(find(s<0)) = 0; m = sin(2*pi*fm*n); period_samp = length(n)/fc; ind = [1:period_samp:length(n)]; on_samp = ceil(period_samp * duty/100); pam=zeros(1,length(n)); for i = 1 : length(ind) pam(ind(i):ind(i) + on_samp) = m(ind(i)); end subplot(2,2,1);plot(n,s);ylim([ ]); title('impulse train') xlabel('time'); subplot(2,2,2);plot(n,m);ylim([ ]); title('mesage signal') xlabel('time'); subplot(2,2,3);plot(n,pam);ylim([ ]); title('modulated signal'); xlabel('time'); dt=s.*pam; filter=fir1(200,fm/fs,'low'); demod_signal=conv(filter,dt); t1=linspace(0,1,length(demod_signal)); subplot(2,2,4) plot(t1,demod_signal); title('demodulated signal'); xlabel('timeperiod');

7 Output: Conclusion: In the non-alias the sinusoidal wave is expected, and the stem is our output. We can see that if we reconstruct the non alias using the stems, we can get the sinusoidal wave back. But in case of alias the stem are so distorted that original sinusoidal wave cannot be reconstructed. Title: Pulse width modulation. (PWM SAWTOOTH) AIM Write a Program to Generate a PWM wave, find it s Sawtooth representation, and find it s Message Signal. Apparatus Required: Matlab to be installed in the computer or in the laptop.

8 Theory: In case of Pam amplitude of carrier pulse is varying with the amplitude of message signal, in this case the width of the carrier pulse will be varying with the instantaneous amplitude of message signal. Pulse-width modulation (PWM), or pulse-duration modulation (PDM), is a modulation technique used to encode a message into a pulsing signal. Although this modulation technique can be used to encode information for transmission, its main use is to allow the control of the power supplied to electrical devices, especially to inertial loads such as motors. In addition, PWM is one of the two principal algorithms used in photovoltaic solar battery chargers,the other being maximum power point tracking. As the amplitude of message is getting larger, the width of the carrier pulse will increase, and in accordance with the message signal, as the amplitude gets lower, the width of the carrier will also decrease. We have used saw-tooth signal as the carrier, so the amplitude of message should be preferably less than the carrier signal. The sawtooth wave (or saw wave) is a kind of non-sinusoidal waveform. It is so named based on its resemblance to the teeth of a plain-toothed saw with a zero rake angle. The convention is that a sawtooth wave ramps upward and then sharply drops. However, in a "reverse (or inverse) sawtooth wave", the wave ramps downward and then sharply rises. It can also be considered the extreme case of an asymmetric triangle wave. Applications: Sawtooth waves are known for their use in music. The sawtooth and square waves are among the most common waveforms used to create sounds with subtractive analog and virtual analog music synthesizers. Sawtooth waves are used in switched-mode power supplies. In the regulator chip the feedback signal from the output is continuously compared to a high frequency sawtooth to generate a new duty cycle PWM signal on the output of the comparator. The main advantage of PWM is that power loss in the switching devices is very low. When a switch is off there is practically no current, and when it is on and power is being transferred to the load, there is almost no voltage drop across the switch. Power loss, being the product of voltage and current, is thus in both cases close to zero. PWM also works well with digital controls, which, because of their on/off nature, can easily set the needed duty cycle. Code:

9 clc clear all; close all; F2=input('Message signal'); F1=input('carrier signal'); A=5; t=0:0.001:1; c=a.*sawtooth(2*pi*f1*t);%carrier sawtooth subplot(3,1,1); plot(t,c); xlabel('time'); title('carrier sawtooth wave'); ; m=0.75*a.*sin(2*pi*f2*t);%message amplitude must be less than sawtooth carrier subplot(3,1,2); plot(t,m); xlabel('time'); title('message signal'); ; n=length(c);%length of carrier sawtooth is sorted to 'n' for i =1:n%comparing message and sawtooth amplitudes if(m(i)>=c(i)) pwm(i)=1; else pwm(i) =0; end end subplot(3,1,3); plot(t,pwm); xlabel('time'); title('plot of pwm'); axis([ ]);%x-axis varies from 0 to 1 & y axis from 0 to 2 ; Output:

10 Conclusion: The main advantage of PWM is that power loss in the switching devices is very low. The amplitude of message should be preferably less than the carrier signal. PWM also works well with digital controls, which, because of their on/off nature, can easily set the needed duty cycle. The PWM switching frequency has to be much higher than what would affect the load (the device that uses the power), which is to say that the resultant waveform perceived by the load must be as smooth as possible

Department of Electronics & Communication Engineering LAB MANUAL

Department of Electronics & Communication Engineering LAB MANUAL Department of Electronics & Communication Engineering LAB MANUAL SUBJECT: DIGITAL COMMUNICATION [06BEC201] B.Tech III Year VI Semester (Branch: ECE) BHAGWANT UNIVERSITY SIKAR ROAD, AJMER DIGITAL COMMUNICATION

More information

Communication Systems Lab Manual

Communication Systems Lab Manual SWEDISH COLLEGE OF ENGINEERING & TECHNOLOGY Communication Systems Lab Manual Submitted by: Roll No.: Board Roll No.: Submitted to: Ahmad Bilal COMMUNICATION SYSTEMS Table of Contents SAMPLING Understanding

More information

Module 3 : Sampling & Reconstruction Lecture 26 : Ideal low pass filter

Module 3 : Sampling & Reconstruction Lecture 26 : Ideal low pass filter Module 3 : Sampling & Reconstruction Lecture 26 : Ideal low pass filter Objectives: Scope of this Lecture: We saw that the ideal low pass filter can be used to reconstruct the original Continuous time

More information

Experiment 8: Sampling

Experiment 8: Sampling Prepared By: 1 Experiment 8: Sampling Objective The objective of this Lab is to understand concepts and observe the effects of periodically sampling a continuous signal at different sampling rates, changing

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

*Day 5 part 1* DEMODULATED SIGNAL OF SSBSC CODE: clc; clear all; close all; t=0:0.001:1; Am=input('Enter the amplitude of the message signal :')

*Day 5 part 1* DEMODULATED SIGNAL OF SSBSC CODE: clc; clear all; close all; t=0:0.001:1; Am=input('Enter the amplitude of the message signal :') *Day 5 part 1* DEMODULATED SIGNAL OF SSBSC CODE: clc; clear all; close all; t=0:0.001:1; Am=input('Enter the amplitude of the message signal :') Fm=input('Enter the frequency of the message signal :')

More information

Pulse Code Modulation

Pulse Code Modulation Pulse Code Modulation Modulation is the process of varying one or more parameters of a carrier signal in accordance with the instantaneous values of the message signal. The message signal is the signal

More information

ECE 484 Digital Image Processing Lec 09 - Image Resampling

ECE 484 Digital Image Processing Lec 09 - Image Resampling ECE 484 Digital Image Processing Lec 09 - Image Resampling Zhu Li Dept of CSEE, UMKC Office: FH560E, Email: lizhu@umkc.edu, Ph: x 2346. http://l.web.umkc.edu/lizhu slides created with WPS Office Linux

More information

Lab 1 - Simulation of Communication System with ECG Signal Transmission

Lab 1 - Simulation of Communication System with ECG Signal Transmission Lab 1 - Simulation of Communication System with ECG Signal Transmission Object: 1. Enhance the understanding of communication theory, especially the modulation schemes (such as analog modulation AM, and

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

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

Signal Processing Toolbox

Signal Processing Toolbox Signal Processing Toolbox Perform signal processing, analysis, and algorithm development Signal Processing Toolbox provides industry-standard algorithms for analog and digital signal processing (DSP).

More information

Figure 1: Block diagram of Digital signal processing

Figure 1: Block diagram of Digital signal processing Experiment 3. Digital Process of Continuous Time Signal. Introduction Discrete time signal processing algorithms are being used to process naturally occurring analog signals (like speech, music and images).

More information

Jawaharlal Nehru Engineering College

Jawaharlal Nehru Engineering College Jawaharlal Nehru Engineering College Laboratory Manual DIGITAL COMMUNICATION For Third Year Students Manual made by Prof.P.B.Murmude Author JNEC, Aurangabad MGM S Jawaharlal Nehru Engineering College N-6,

More information

QUESTION BANK. SUBJECT CODE / Name: EC2301 DIGITAL COMMUNICATION UNIT 2

QUESTION BANK. SUBJECT CODE / Name: EC2301 DIGITAL COMMUNICATION UNIT 2 QUESTION BANK DEPARTMENT: ECE SEMESTER: V SUBJECT CODE / Name: EC2301 DIGITAL COMMUNICATION UNIT 2 BASEBAND FORMATTING TECHNIQUES 1. Why prefilterring done before sampling [AUC NOV/DEC 2010] The signal

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

Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab

Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab German Jordanian University Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab Experiment 2 Pulse Modulation Eng. AnasAlashqar Dr. Ala' Khalifeh 1 Experiment 1Experiment

More information

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

Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Spring Semester, Introduction to EECS 2 Massachusetts Institute of Technology Dept. of Electrical Engineering and Computer Science Spring Semester, 2007 6.082 Introduction to EECS 2 Lab #3: Modulation and Filtering Goal:... 2 Instructions:...

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

Biomedical Signals. Signals and Images in Medicine Dr Nabeel Anwar

Biomedical Signals. Signals and Images in Medicine Dr Nabeel Anwar Biomedical Signals Signals and Images in Medicine Dr Nabeel Anwar Noise Removal: Time Domain Techniques 1. Synchronized Averaging (covered in lecture 1) 2. Moving Average Filters (today s topic) 3. Derivative

More information

The University of Texas at Austin Dept. of Electrical and Computer Engineering Final Exam

The University of Texas at Austin Dept. of Electrical and Computer Engineering Final Exam The University of Texas at Austin Dept. of Electrical and Computer Engineering Final Exam Date: December 18, 2017 Course: EE 313 Evans Name: Last, First The exam is scheduled to last three hours. Open

More information

Communications IB Paper 6 Handout 3: Digitisation and Digital Signals

Communications IB Paper 6 Handout 3: Digitisation and Digital Signals Communications IB Paper 6 Handout 3: Digitisation and Digital Signals Jossy Sayir Signal Processing and Communications Lab Department of Engineering University of Cambridge jossy.sayir@eng.cam.ac.uk Lent

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

LAB 4 GENERATION OF ASK MODULATION SIGNAL

LAB 4 GENERATION OF ASK MODULATION SIGNAL Total Marks: / LAB 4 GENERATION OF ASK MODULATION SIGNAL Student Name:... Metrics Num:... Date:... Instructor Name:... Faculty of Engineering Technology (BTECH), Universiti Malaysia Perlis SUBMITTED Signature

More information

ANALOG AND DIGITAL COMMUNICATION DATA AND PULSE COMMUNICATION HISTORY OF DATA COMMUNICATION, STANDARDS ORGANIZATIONS FOR DATA COMMUNICATION.

ANALOG AND DIGITAL COMMUNICATION DATA AND PULSE COMMUNICATION HISTORY OF DATA COMMUNICATION, STANDARDS ORGANIZATIONS FOR DATA COMMUNICATION. UNIT III DATA AND PULSE COMMUNICATION 3.1 DATA COMMUNICATION: HISTORY OF DATA COMMUNICATION, STANDARDS ORGANIZATIONS FOR DATA COMMUNICATION. Data communication can be defined as two personal computers

More information

Simulation Scenario For Digital Conversion And Line Encoding Of Data Transmission

Simulation Scenario For Digital Conversion And Line Encoding Of Data Transmission Simulation Scenario For Digital Conversion And Line Encoding Of Data Transmission Olutayo Ojuawo Department of Computer Science, The Federal Polytechnic, Ilaro, Ogun State, Nigeria Luis Binotto M.Sc in

More information

LABORATORY - FREQUENCY ANALYSIS OF DISCRETE-TIME SIGNALS

LABORATORY - FREQUENCY ANALYSIS OF DISCRETE-TIME SIGNALS LABORATORY - FREQUENCY ANALYSIS OF DISCRETE-TIME SIGNALS INTRODUCTION The objective of this lab is to explore many issues involved in sampling and reconstructing signals, including analysis of the frequency

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

Signal Processing Techniques for Software Radio

Signal Processing Techniques for Software Radio Signal Processing Techniques for Software Radio Behrouz Farhang-Boroujeny Department of Electrical and Computer Engineering University of Utah c 2007, Behrouz Farhang-Boroujeny, ECE Department, University

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

BLOCK DIAGRAM: PULSE CODE MODULATION: FUNCTION GENERATOR CHECKER CIRCUIT DEMODULATED O/P TIMING

BLOCK DIAGRAM: PULSE CODE MODULATION:   FUNCTION GENERATOR CHECKER CIRCUIT DEMODULATED O/P TIMING BLOCK DIAGRAM: PULSE CODE MODULATION: FUNCTION GENERATOR CHECKER CIRCUIT DEMODULATED O/P TIMING LOGIC TIMING LOGIC PCM OUTPUT SAMPLE INPUT SIGNAL OUTPUT LOGIC LATCH DIGITAL TO ANALOG CONVERTER PAM O/P

More information

Jawaharlal Nehru Engineering College

Jawaharlal Nehru Engineering College Jawaharlal Nehru Engineering College Laboratory Manual SIGNALS & SYSTEMS For Third Year Students Prepared By: Ms.Sunetra S Suvarna Assistant Professor Author JNEC INSTRU. & CONTROL DEPT., Aurangabad SUBJECT

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

World Journal of Engineering Research and Technology WJERT

World Journal of Engineering Research and Technology WJERT wjert, 2017, Vol. 3, Issue 2, 185-197 Original Article ISSN 2454-695X Susanchi et al. WJERT www.wjert.org SJIF Impact Factor: 4.326 DESIGN AND SIMULATION OF DOUBLE SIDE BAND SUPPRESSED CARRIER MODEL USING

More information

BAPATLA ENGINEERING COLLEGE DIGITAL COMMUNICATIONS LAB EC-451. PREPARED BY S. Pallaviram, Lecturer

BAPATLA ENGINEERING COLLEGE DIGITAL COMMUNICATIONS LAB EC-451. PREPARED BY S. Pallaviram, Lecturer BAPATLA ENGINEERING COLLEGE DIGITAL COMMUNICATIONS LAB EC-451 PREPARED BY S. Pallaviram, Lecturer Department of Electronics and Communications Engineering Bapatla Engineering College (Affiliated to Acharya

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

Software Simulation of Pulse Time Modulation Techniques

Software Simulation of Pulse Time Modulation Techniques 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

More information

Downloaded from 1

Downloaded from  1 VII SEMESTER FINAL EXAMINATION-2004 Attempt ALL questions. Q. [1] How does Digital communication System differ from Analog systems? Draw functional block diagram of DCS and explain the significance of

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

ELT COMMUNICATION THEORY

ELT COMMUNICATION THEORY ELT 41307 COMMUNICATION THEORY Matlab Exercise #1 Sampling, Fourier transform, Spectral illustrations, and Linear filtering 1 SAMPLING The modeled signals and systems in this course are mostly analog (continuous

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

ANALOGUE AND DIGITAL COMMUNICATION

ANALOGUE AND DIGITAL COMMUNICATION ANALOGUE AND DIGITAL COMMUNICATION Syed M. Zafi S. Shah Umair M. Qureshi Lecture xxx: Analogue to Digital Conversion Topics Pulse Modulation Systems Advantages & Disadvantages Pulse Code Modulation Pulse

More information

EEE 309 Communication Theory

EEE 309 Communication Theory EEE 309 Communication Theory Semester: January 2017 Dr. Md. Farhad Hossain Associate Professor Department of EEE, BUET Email: mfarhadhossain@eee.buet.ac.bd Office: ECE 331, ECE Building Types of Modulation

More information

IMPLEMENTATION OF GMSK MODULATION SCHEME WITH CHANNEL EQUALIZATION

IMPLEMENTATION OF GMSK MODULATION SCHEME WITH CHANNEL EQUALIZATION IMPLEMENTATION OF GMSK MODULATION SCHEME WITH CHANNEL EQUALIZATION References MX589 GMSK MODEM Application Modem Techniques in Satellite Communication Practical GMSK Data Transmission GMSK MODEM Application

More information

Sampling and Pulse Trains

Sampling and Pulse Trains Sampling and Pulse Trains Sampling and interpolation Practical interpolation Pulse trains Analog multiplexing Sampling Theorem Sampling theorem: a signal g(t) with bandwidth B can be reconstructed exactly

More information

UNIT III -- DATA AND PULSE COMMUNICATION PART-A 1. State the sampling theorem for band-limited signals of finite energy. If a finite energy signal g(t) contains no frequency higher than W Hz, it is completely

More information

Lecture 7 Frequency Modulation

Lecture 7 Frequency Modulation Lecture 7 Frequency Modulation Fundamentals of Digital Signal Processing Spring, 2012 Wei-Ta Chu 2012/3/15 1 Time-Frequency Spectrum We have seen that a wide range of interesting waveforms can be synthesized

More information

3. DAC Architectures and CMOS Circuits

3. DAC Architectures and CMOS Circuits 1/30 3. DAC Architectures and CMOS Circuits Francesc Serra Graells francesc.serra.graells@uab.cat Departament de Microelectrònica i Sistemes Electrònics Universitat Autònoma de Barcelona paco.serra@imb-cnm.csic.es

More information

AMPLITUDE SHIFT KEYING

AMPLITUDE SHIFT KEYING Experiment No.1 AMPLITUDE SHIFT KEYING Aim: To generate and demodulate amplitude shift keyed (ASK) signal using MATLAB Theory Generation of ASK Amplitude shift keying - ASK - is a modulation process, which

More information

Digital Communication (650533) CH 3 Pulse Modulation

Digital Communication (650533) CH 3 Pulse Modulation Philadelphia University/Faculty of Engineering Communication and Electronics Engineering Digital Communication (650533) CH 3 Pulse Modulation Instructor: Eng. Nada Khatib Website: http://www.philadelphia.edu.jo/academics/nkhatib/

More information

UNIT TEST I Digital Communication

UNIT TEST I Digital Communication Time: 1 Hour Class: T.E. I & II Max. Marks: 30 Q.1) (a) A compact disc (CD) records audio signals digitally by using PCM. Assume the audio signal B.W. to be 15 khz. (I) Find Nyquist rate. (II) If the Nyquist

More information

Fourier transforms and series

Fourier transforms and series Fourier transforms and series A Fourier transform converts a function of time into a function of frequency f is frequency in hertz t is time in seconds t = 1 and f = 1 f t ω = πf i is ( 1) e ia = cos(a)

More information

Complex Sounds. Reading: Yost Ch. 4

Complex Sounds. Reading: Yost Ch. 4 Complex Sounds Reading: Yost Ch. 4 Natural Sounds Most sounds in our everyday lives are not simple sinusoidal sounds, but are complex sounds, consisting of a sum of many sinusoids. The amplitude and frequency

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

DEPARTMENT OF CSE QUESTION BANK

DEPARTMENT OF CSE QUESTION BANK DEPARTMENT OF CSE QUESTION BANK SUBJECT CODE: CS6304 SUBJECT NAME: ANALOG AND DIGITAL COMMUNICATION Part-A UNIT-I ANALOG COMMUNICATION 1.Define modulation? Modulation is a process by which some characteristics

More information

Sampling of Continuous-Time Signals. Reference chapter 4 in Oppenheim and Schafer.

Sampling of Continuous-Time Signals. Reference chapter 4 in Oppenheim and Schafer. Sampling of Continuous-Time Signals Reference chapter 4 in Oppenheim and Schafer. Periodic Sampling of Continuous Signals T = sampling period fs = sampling frequency when expressing frequencies in radians

More information

ECEGR Lab #8: Introduction to Simulink

ECEGR Lab #8: Introduction to Simulink Page 1 ECEGR 317 - Lab #8: Introduction to Simulink Objective: By: Joe McMichael This lab is an introduction to Simulink. The student will become familiar with the Help menu, go through a short example,

More information

1 Analog and Digital Communication Lab

1 Analog and Digital Communication Lab 1 2 Amplitude modulator trainer kit diagram AM Detector trainer kit Diagram 3 4 Calculations: 5 Result: 6 7 8 Balanced modulator circuit diagram Generation of DSB-SC 1. For the same circuit apply the modulating

More information

UNIT I AMPLITUDE MODULATION

UNIT I AMPLITUDE MODULATION UNIT I AMPLITUDE MODULATION Prepared by: S.NANDHINI, Assistant Professor, Dept. of ECE, Sri Venkateswara College of Engineering, Sriperumbudur, Tamilnadu. CONTENTS Introduction to communication systems

More information

Project 2 - Speech Detection with FIR Filters

Project 2 - Speech Detection with FIR Filters Project 2 - Speech Detection with FIR Filters ECE505, Fall 2015 EECS, University of Tennessee (Due 10/30) 1 Objective The project introduces a practical application where sinusoidal signals are used to

More information

QUESTION BANK EC 1351 DIGITAL COMMUNICATION YEAR / SEM : III / VI UNIT I- PULSE MODULATION PART-A (2 Marks) 1. What is the purpose of sample and hold

QUESTION BANK EC 1351 DIGITAL COMMUNICATION YEAR / SEM : III / VI UNIT I- PULSE MODULATION PART-A (2 Marks) 1. What is the purpose of sample and hold QUESTION BANK EC 1351 DIGITAL COMMUNICATION YEAR / SEM : III / VI UNIT I- PULSE MODULATION PART-A (2 Marks) 1. What is the purpose of sample and hold circuit 2. What is the difference between natural sampling

More information

Pulse Code Modulation (PCM)

Pulse Code Modulation (PCM) Project Title: e-laboratories for Physics and Engineering Education Tempus Project: contract # 517102-TEMPUS-1-2011-1-SE-TEMPUS-JPCR 1. Experiment Category: Electrical Engineering >> Communications 2.

More information

CHAPTER 4. PULSE MODULATION Part 2

CHAPTER 4. PULSE MODULATION Part 2 CHAPTER 4 PULSE MODULATION Part 2 Pulse Modulation Analog pulse modulation: Sampling, i.e., information is transmitted only at discrete time instants. e.g. PAM, PPM and PDM Digital pulse modulation: Sampling

More information

Amplitude modulator trainer kit diagram

Amplitude modulator trainer kit diagram Amplitude modulator trainer kit diagram AM Detector trainer kit Diagram Calculations: Result: Pre lab test (20) Observation (20) Simulation (20) Remarks & Signature with Date Circuit connection (30) Result

More information

Sound Synthesis Methods

Sound Synthesis Methods Sound Synthesis Methods Matti Vihola, mvihola@cs.tut.fi 23rd August 2001 1 Objectives The objective of sound synthesis is to create sounds that are Musically interesting Preferably realistic (sounds like

More information

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING QUESTION BANK. Subject Name: Digital Communication Techniques

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING QUESTION BANK. Subject Name: Digital Communication Techniques KINGS COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING QUESTION BANK Subject Code: EC1351 Year/Sem: III/IV Subject Name: Digital Communication Techniques UNIT I PULSE MODULATION

More information

FFT Analyzer. Gianfranco Miele, Ph.D

FFT Analyzer. Gianfranco Miele, Ph.D FFT Analyzer Gianfranco Miele, Ph.D www.eng.docente.unicas.it/gianfranco_miele g.miele@unicas.it Introduction It is a measurement instrument that evaluates the spectrum of a time domain signal applying

More information

ece 429/529 digital signal processing robin n. strickland ece dept, university of arizona ECE 429/529 RNS

ece 429/529 digital signal processing robin n. strickland ece dept, university of arizona ECE 429/529 RNS ece 429/529 digital signal processing robin n. strickland ece dept, university of arizona 2007 SPRING 2007 SCHEDULE All dates are tentative. Lesson Day Date Learning outcomes to be Topics Textbook HW/PROJECT

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

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

Class 4 ((Communication and Computer Networks))

Class 4 ((Communication and Computer Networks)) Class 4 ((Communication and Computer Networks)) Lesson 5... SIGNAL ENCODING TECHNIQUES Abstract Both analog and digital information can be encoded as either analog or digital signals. The particular encoding

More information

Fourier Series and Gibbs Phenomenon

Fourier Series and Gibbs Phenomenon Fourier Series and Gibbs Phenomenon University Of Washington, Department of Electrical Engineering This work is produced by The Connexions Project and licensed under the Creative Commons Attribution License

More information

Signal Processing. Introduction

Signal Processing. Introduction Signal Processing 0 Introduction One of the premiere uses of MATLAB is in the analysis of signal processing and control systems. In this chapter we consider signal processing. The final chapter of the

More information

SAMPLING AND RECONSTRUCTING SIGNALS

SAMPLING AND RECONSTRUCTING SIGNALS CHAPTER 3 SAMPLING AND RECONSTRUCTING SIGNALS Many DSP applications begin with analog signals. In order to process these analog signals, the signals must first be sampled and converted to digital signals.

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

Sixth Semester B.E. Degree Examination, May/June 2010 Digital Communication Note: Answer any FIVEfull questions, selecting at least TWO questionsfrom each part. PART-A a. With a block diagram, explain

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

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

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

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

Communication Theory II

Communication Theory II Communication Theory II Lecture 17: Conversion of Analog Waveforms into Coded Pulses Ahmed Elnakib, PhD Assistant Professor, Mansoura University, Egypt April 16 th, 2015 1 opulse Modulation Analog Pulse

More information

DIGITAL COMMUNICATIONS

DIGITAL COMMUNICATIONS DIGITAL COMMUNICATIONS LAB MANUAL (STUDENT COPY) DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING GUDLAVALLERU ENGINEERING COLLEGE SESHADRI RAO KNOWLEDGE VILLAGE::GUDLAVALLERU INDEX S.NO. NAME OF

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

Sampling and Reconstruction of Analog Signals

Sampling and Reconstruction of Analog Signals Sampling and Reconstruction of Analog Signals Chapter Intended Learning Outcomes: (i) Ability to convert an analog signal to a discrete-time sequence via sampling (ii) Ability to construct an analog signal

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

ITM 1010 Computer and Communication Technologies

ITM 1010 Computer and Communication Technologies ITM 1010 Computer and Communication Technologies Lecture #20 Review: Communication Technologies 2003 香港中文大學, 電子工程學系 (Prof. H.K.Tsang) ITM 1010 計算機與通訊技術 1 Review of Communication Technologies! Information

More information

7.1 Introduction 7.2 Why Digitize Analog Sources? 7.3 The Sampling Process 7.4 Pulse-Amplitude Modulation Time-Division i i Modulation 7.

7.1 Introduction 7.2 Why Digitize Analog Sources? 7.3 The Sampling Process 7.4 Pulse-Amplitude Modulation Time-Division i i Modulation 7. Chapter 7 Digital Representation of Analog Signals Wireless Information Transmission System Lab. Institute of Communications Engineering g National Sun Yat-sen University Contents 7.1 Introduction 7.2

More information

Waveshaping Synthesis. Indexing. Waveshaper. CMPT 468: Waveshaping Synthesis

Waveshaping Synthesis. Indexing. Waveshaper. CMPT 468: Waveshaping Synthesis Waveshaping Synthesis CMPT 468: Waveshaping Synthesis Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 8, 23 In waveshaping, it is possible to change the spectrum

More information

!"!#"#$% Lecture 2: Media Creation. Some materials taken from Prof. Yao Wang s slides RECAP

!!##$% Lecture 2: Media Creation. Some materials taken from Prof. Yao Wang s slides RECAP Lecture 2: Media Creation Some materials taken from Prof. Yao Wang s slides RECAP #% A Big Umbrella Content Creation: produce the media, compress it to a format that is portable/ deliverable Distribution:

More information

Voice Transmission --Basic Concepts--

Voice Transmission --Basic Concepts-- Voice Transmission --Basic Concepts-- Voice---is analog in character and moves in the form of waves. 3-important wave-characteristics: Amplitude Frequency Phase Telephone Handset (has 2-parts) 2 1. Transmitter

More information

The figures and the logic used for the MATLAB are given below.

The figures and the logic used for the MATLAB are given below. MATLAB FIGURES & PROGRAM LOGIC: Transmitter: The figures and the logic used for the MATLAB are given below. Binary Data Sequence: For our project we assume that we have the digital binary data stream.

More information

DT Filters 2/19. Atousa Hajshirmohammadi, SFU

DT Filters 2/19. Atousa Hajshirmohammadi, SFU 1/19 ENSC380 Lecture 23 Objectives: Signals and Systems Fourier Analysis: Discrete Time Filters Analog Communication Systems Double Sideband, Sub-pressed Carrier Modulation (DSBSC) Amplitude Modulation

More information

EC 2301 Digital communication Question bank

EC 2301 Digital communication Question bank EC 2301 Digital communication Question bank UNIT I Digital communication system 2 marks 1.Draw block diagram of digital communication system. Information source and input transducer formatter Source encoder

More information

Set-up. Equipment required: Your issued Laptop MATLAB ( if you don t already have it on your laptop)

Set-up. Equipment required: Your issued Laptop MATLAB ( if you don t already have it on your laptop) All signals found in nature are analog they re smooth and continuously varying, from the sound of an orchestra to the acceleration of your car to the clouds moving through the sky. An excerpt from http://www.netguru.net/ntc/ntcc5.htm

More information

Lecture 3 Review of Signals and Systems: Part 2. EE4900/EE6720 Digital Communications

Lecture 3 Review of Signals and Systems: Part 2. EE4900/EE6720 Digital Communications EE4900/EE6720: Digital Communications 1 Lecture 3 Review of Signals and Systems: Part 2 Block Diagrams of Communication System Digital Communication System 2 Informatio n (sound, video, text, data, ) Transducer

More information

Spectrum. Additive Synthesis. Additive Synthesis Caveat. Music 270a: Modulation

Spectrum. Additive Synthesis. Additive Synthesis Caveat. Music 270a: Modulation Spectrum Music 7a: Modulation Tamara Smyth, trsmyth@ucsd.edu Department of Music, University of California, San Diego (UCSD) October 3, 7 When sinusoids of different frequencies are added together, the

More information

Chapter-2 SAMPLING PROCESS

Chapter-2 SAMPLING PROCESS Chapter-2 SAMPLING PROCESS SAMPLING: A message signal may originate from a digital or analog source. If the message signal is analog in nature, then it has to be converted into digital form before it can

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

Observation of the Effects of the Fourier Transformation on Periodic Signals ECE 521. Project 2

Observation of the Effects of the Fourier Transformation on Periodic Signals ECE 521. Project 2 Observation of the Effects of the Fourier Transformation on Periodic Signals ECE 521 Project 2 June 21, 2007 Abstract In this project we compared several signals with their Fourier Transforms in the frequency

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