MAE143A Signals & Systems - Homework 8, Winter 2013 due by the end of class Tuesday March 5, 2013.

Size: px
Start display at page:

Download "MAE143A Signals & Systems - Homework 8, Winter 2013 due by the end of class Tuesday March 5, 2013."

Transcription

1 MAE43A Signals & Systems - Homework 8, Winter 3 due by the end of class uesday March 5, 3. Question Measuring frequency responses Before we begin to measure frequency responses, we need a little theory... Oh No! Part (a): Use the cos(a + B) formula to show that cos (θ) = [ + cos(θ)], () sin (θ) = [ cos(θ)]. () And use the sin(a + B) formula to show that: sin(θ) cos(θ) = sin(θ). (3) cos(θ) = cos(θ + θ), he first two answers follow. o show the third relation; = cos(θ) cos(θ) sin(θ)sin(θ), = cos (θ) sin (θ), cos (θ) [ cos (θ)], = [ sin (θ)] sin (θ), cos (θ), = sin (θ). sin(θ) =sin(θ + θ), = sin(θ) cos(θ) + cos(θ) sin(θ), =sin(θ) cos(θ). Part (b): Now consider: the input signal, u(t) = A cos(ωt + φ), its so-called quadrature signal z(t) = A sin(ωt + φ), and the corresponding output signal y(t) =AB cos(ωt + φ + ψ). Clearly, we may write y(t) =AB cos(ωt + φ) cos(ψ) AB sin(ωt + φ)sin(ψ). (4) Use (-3) to show the following relationships. y (t) dt = A B, u (t) dt = A, u(t)y(t) dt = A B z(t)y(t) dt = A B cos(ψ), sin(ψ).

2 Hence, B = = y (t) dt u (t) dt ψ = atan = atan y (t) dt u (t) dt z(t)y(t) dt, z(t)y(t) dt, u(t)y(t) dt u(t)y(t) dt, (5). (6) hese formulæ are highly useful in understanding communications systems and radio. y (t) dt = A B y (t) dt = [ + cos(ωt +φ +ψ)] dt, = A B + [sin(ω +φ +ψ) sin( + φ +ψ)], 4ω A B = A B. he u expression is the same, but now has B =and ψ =. Now consider, using (4), + [sin(ω +φ +ψ) sin( + φ +ψ)] 4ω u(t)y(t) =A B cos (ωt + φ) cos(ψ) A B cos(ωt + φ)sin(ωt + φ)sin(φ), = A B {[ + cos(ωt +φ)] cos(ψ) sin(ωt +φ)sin(ψ)}, u(t)y(t) dt = A B cos(ψ), and taking its as yields the results, because the other terms all tend to zero. Further, z(t)y(t) =A B sin(ωt + φ) cos(ωt + φ) cos(ψ) A B sin (ωt + φ)sin(φ), = A B {[sin(ωt +φ) cos(ψ) [ cos(ωt +φ)] sin(ψ)}, z(t)y(t) dt = A B cos(ψ),., Question matlab and the estimation of frequency response Part (a): We are going to use the formulæ (5-6) to estimate a frequency response in matlab.

3 Download the code trfnest.m from the class website, either ED or oodgeroo. Run the code and explain what the code is doing in terms of the formulæ above. What is happening when the two different plotted curves diverge at the right-hand ends? Part (b): Create the uvec and corresponding yvec from Part (a) for each of three frequencies: ω=.5,.5, 9 radians/sec. Call them u, y, u, y, u3, y3 respectively. Plot each pair against time using, say, plot(t,u,t,y). Zoom in and identify how to measure the magnitude and phase from each plot. You already have the correct answers from Part (a). So indicate on the time plots the quantities needed to calculate gain and phase. Next plot the input and output signals against one another using, say, plot(u,y). How now can the magnitude and phase be measured from this figure, which is called a Lissajous figure? [See: [Hint: Consider that the x signal, u, is A cos(ωt + φ) and the y signal, y, is AB cos(ωt + φ + ψ) as in Part (a) and ask about when these signals cross the axes or reach their extremities.]

4 Problem : Part A: he code is using input and quadrature signals over a range of frequencies as well as the corresponding response signals to find β and φ over a range of frequencies. It does this by numerically integrating the quantities in equations (5) and (6). We will end up with a graph of relative magnitudes and phases. It also uses Matlab s built in command bode in order to compare. Because we are sampling at a finite rate, as we increase the frequency of the input (and correspondingly, the output) there will be a point at which the signal is no longer being accurately represented. We call this point the Nyquist frequency. his is what is happening on the plot. Note: he plot that results from the code given in part A has units of Hertz, not rad/sec. his differs from the label. Part B: We can measure the relative magnitudes in Figure by comparing the height of the peaks of the input and output signals. We can measure the phase by seeing how far the peaks of the input and output are shifted in time and converting by Φ = 8 freq(rad/sec). π he relative amplitudes can be devised from Figure by comparing the maximum values the graphs obtain on the X and Y axis. he phase can be determined by the direction the graphs are plotted (clockwise or counterclockwise) as well as the slope and shape of the graphs.

5 .4 w=.5 rad/sec.5 w=.5 rad/sec. w=9 rad/sec y y y u..5.5 u..5.5 u3 Figure : Plotting the Lissajous figures.8 w=.5 rad/sec u y.8 w=.5 rad/sec u y.8 w=9 rad/sec u3 y Signal Value Signal Value Signal Value ime (S) ime (S) ime (S) Figure : Plotting the response with the three inputs

6 = 6; % time frame in seconds for experiment s =.; % sample time milliseconds 3 t = [:s:]'; % time vector sys = tf([ ],[. ]); % sys with zero at s=,... poles at s=., 6 7 % Part b 8 w=[.5.5 9]; 9 u=cos(w()**pi*t); u=cos(w()**pi*t); u3=cos(w(3)**pi*t); y = lsim(sys,u,t); 3 y = lsim(sys,u,t); 4 y3 = lsim(sys,u3,t); 5 6 figure() 7 subplot(,3,) 8 plot(t,u,t,y) 9 x([,5]) title('w=.5 rad/sec') xlabel ('ime (S)') ylabel ('Signal Value') 3 legend('u','y') 4 subplot(,3,) 5 plot(t,u,t,y) 6 x([,5]) 7 title('w=.5 rad/sec') 8 xlabel ('ime (S)') 9 ylabel ('Signal Value') 3 legend('u','y') 3 subplot(,3,3) 3 plot(t,u3,t,y3) 33 x([,.5]) 34 title('w=9 rad/sec') 35 xlabel ('ime (S)') 36 ylabel ('Signal Value') 37 legend('u3','y3') figure() 4 subplot(,3,) 4 plot(u,y) 4 title('w=.5 rad/sec') 43 xlabel ('u') 44 ylabel ('y') 45 subplot(,3,) 46 plot(u,y) 47 title('w=.5 rad/sec') 48 xlabel ('u') 49 ylabel ('y') 5 subplot(,3,3) 5 plot(u3,y3) 5 title('w=9 rad/sec') 53 xlabel ('u3') 54 ylabel ('y3') 3 Figure 3: Matlab code for ODE function in Problem, Part B

JUST THE MATHS SLIDES NUMBER 3.5. TRIGONOMETRY 5 (Trigonometric identities & wave-forms) A.J.Hobson

JUST THE MATHS SLIDES NUMBER 3.5. TRIGONOMETRY 5 (Trigonometric identities & wave-forms) A.J.Hobson JUST THE MATHS SLIDES NUMBER 3.5 TRIGONOMETRY 5 (Trigonometric identities & wave-forms by A.J.Hobson 3.5.1 Trigonometric identities 3.5. Amplitude, wave-length, frequency and phase-angle UNIT 3.5 - TRIGONOMETRY

More information

(A) Based on the second-order FRF provided, determine appropriate values for ω n, ζ, and K. ω n =500 rad/s; ζ=0.1; K=0.

(A) Based on the second-order FRF provided, determine appropriate values for ω n, ζ, and K. ω n =500 rad/s; ζ=0.1; K=0. ME35 Homework # Due: 1/1/1 Problem #1 (3%) A co-worker brings you an accelerometer spec sheet with the following frequency response function (FRF):. s G accelerometer = [volt +.1 jω.1 ω m ] (A) Based on

More information

Complex Numbers in Electronics

Complex Numbers in Electronics P5 Computing, Extra Practice After Session 1 Complex Numbers in Electronics You would expect the square root of negative numbers, known as complex numbers, to be only of interest to pure mathematicians.

More information

EECS 216 Winter 2008 Lab 2: FM Detector Part I: Intro & Pre-lab Assignment

EECS 216 Winter 2008 Lab 2: FM Detector Part I: Intro & Pre-lab Assignment EECS 216 Winter 2008 Lab 2: Part I: Intro & Pre-lab Assignment c Kim Winick 2008 1 Introduction In the first few weeks of EECS 216, you learned how to determine the response of an LTI system by convolving

More information

Physics 132 Quiz # 23

Physics 132 Quiz # 23 Name (please (please print) print) Physics 132 Quiz # 23 I. I. The The current in in an an ac ac circuit is is represented by by a phasor.the value of of the the current at at some time time t t is is

More information

Lesson 12: LRC Circuit, Tuning and ode45

Lesson 12: LRC Circuit, Tuning and ode45 Lesson 12: LRC Circuit, Tuning and ode45 12.1 Applied Problem. A series LRC circuit can be viewed as a primitive tuning circuit in a simple radio. The objective is to adjust L or C so that the in the circuit

More information

THE SINUSOIDAL WAVEFORM

THE SINUSOIDAL WAVEFORM Chapter 11 THE SINUSOIDAL WAVEFORM The sinusoidal waveform or sine wave is the fundamental type of alternating current (ac) and alternating voltage. It is also referred to as a sinusoidal wave or, simply,

More information

ME 375. HW 7 Solutions. Original Homework Assigned 10/12, Due 10/19.

ME 375. HW 7 Solutions. Original Homework Assigned 10/12, Due 10/19. ME 375. HW 7 Solutions. Original Homework Assigned /2, Due /9. Problem. Palm 8.2 a-b Part (a). T (s) = 5 6s+2 = 5 2 3s+. Here τ = 3 and the multiplicative factor 5/2 shifts the magnitude curve up by 2log5/2

More information

Alternating voltages and currents

Alternating voltages and currents Alternating voltages and currents Introduction - Electricity is produced by generators at power stations and then distributed by a vast network of transmission lines (called the National Grid system) to

More information

Digital Video and Audio Processing. Winter term 2002/ 2003 Computer-based exercises

Digital Video and Audio Processing. Winter term 2002/ 2003 Computer-based exercises Digital Video and Audio Processing Winter term 2002/ 2003 Computer-based exercises Rudolf Mester Institut für Angewandte Physik Johann Wolfgang Goethe-Universität Frankfurt am Main 6th November 2002 Chapter

More information

Circuit Analysis-II. Circuit Analysis-II Lecture # 2 Wednesday 28 th Mar, 18

Circuit Analysis-II. Circuit Analysis-II Lecture # 2 Wednesday 28 th Mar, 18 Circuit Analysis-II Angular Measurement Angular Measurement of a Sine Wave ü As we already know that a sinusoidal voltage can be produced by an ac generator. ü As the windings on the rotor of the ac generator

More information

Basic Signals and Systems

Basic Signals and Systems Chapter 2 Basic Signals and Systems A large part of this chapter is taken from: C.S. Burrus, J.H. McClellan, A.V. Oppenheim, T.W. Parks, R.W. Schafer, and H. W. Schüssler: Computer-based exercises for

More information

SIGNALS AND SYSTEMS: 3C1 LABORATORY 1. 1 Dr. David Corrigan Electronic and Electrical Engineering Dept.

SIGNALS AND SYSTEMS: 3C1 LABORATORY 1. 1 Dr. David Corrigan Electronic and Electrical Engineering Dept. 2012 Signals and Systems: Laboratory 1 1 SIGNALS AND SYSTEMS: 3C1 LABORATORY 1. 1 Dr. David Corrigan Electronic and Electrical Engineering Dept. corrigad@tcd.ie www.mee.tcd.ie/ corrigad The aims of this

More information

MATLAB Assignment. The Fourier Series

MATLAB Assignment. The Fourier Series MATLAB Assignment The Fourier Series Read this carefully! Submit paper copy only. This project could be long if you are not very familiar with Matlab! Start as early as possible. This is an individual

More information

Exercise 8: Frequency Response

Exercise 8: Frequency Response Exercise 8: Frequency Response Introduction We can find the frequency response of a system by exciting the system with a sinusoidal signal of amplitude A and frequency ω [rad/s] (Note: ω = 2πf) and observing

More information

Ac fundamentals and AC CIRCUITS. Q1. Explain and derive an expression for generation of AC quantity.

Ac fundamentals and AC CIRCUITS. Q1. Explain and derive an expression for generation of AC quantity. Ac fundamentals and AC CIRCUITS Q1. Explain and derive an expression for generation of AC quantity. According to Faradays law of electromagnetic induction when a conductor is moving within a magnetic field,

More information

MATH 255 Applied Honors Calculus III Winter Homework 1. Table 1: 11.1:8 t x y

MATH 255 Applied Honors Calculus III Winter Homework 1. Table 1: 11.1:8 t x y MATH 255 Applied Honors Calculus III Winter 2 Homework Section., pg. 692: 8, 24, 43. Section.2, pg. 72:, 2 (no graph required), 32, 4. Section.3, pg. 73: 4, 2, 54, 8. Section.4, pg. 79: 6, 35, 46. Solutions.:

More information

Study Guide for Chapter 11

Study Guide for Chapter 11 Study Guide for Chapter 11 Objectives: 1. Know how to analyze a balanced, three-phase Y-Y connected circuit. 2. Know how to analyze a balanced, three-phase Y-Δ connected circuit. 3. Be able to calculate

More information

ECE317 Homework 7. where

ECE317 Homework 7. where ECE317 Homework 7 Problem 1: Consider a system with loop gain, T(s), given by: where T(s) = 300(1+s)(1+ s 40 ) 1) Determine whether the system is stable by finding the closed loop poles of the system using

More information

6.1 - Introduction to Periodic Functions

6.1 - Introduction to Periodic Functions 6.1 - Introduction to Periodic Functions Periodic Functions: Period, Midline, and Amplitude In general: A function f is periodic if its values repeat at regular intervals. Graphically, this means that

More information

Chapter 6: Alternating Current. An alternating current is an current that reverses its direction at regular intervals.

Chapter 6: Alternating Current. An alternating current is an current that reverses its direction at regular intervals. Chapter 6: Alternating Current An alternating current is an current that reverses its direction at regular intervals. Overview Alternating Current Phasor Diagram Sinusoidal Waveform A.C. Through a Resistor

More information

Calculus for the Life Sciences

Calculus for the Life Sciences Calculus for the Life Sciences Lecture Notes Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research Center San Diego

More information

George Mason University Signals and Systems I Spring 2016

George Mason University Signals and Systems I Spring 2016 George Mason University Signals and Systems I Spring 2016 Laboratory Project #4 Assigned: Week of March 14, 2016 Due Date: Laboratory Section, Week of April 4, 2016 Report Format and Guidelines for Laboratory

More information

Digital Signal Processing Lecture 1 - Introduction

Digital Signal Processing Lecture 1 - Introduction Digital Signal Processing - Electrical Engineering and Computer Science University of Tennessee, Knoxville August 20, 2015 Overview 1 2 3 4 Basic building blocks in DSP Frequency analysis Sampling Filtering

More information

+ + G c (s G p (s. a) What is overall transfer closed-loop transfer function θ(s)

+ + G c (s G p (s. a) What is overall transfer closed-loop transfer function θ(s) Problem 1 (35 pts) Department of Mechanical Engineering Massachusetts Institute of Technology 2.14 Analysis and Design of Feedback Control Systems Fall 2004 Quiz 1 Wednesday October 6, 2004 OPEN BOOK A

More information

MAE143A Signals & Systems - Homework 4, Winter 2014 due by the end of class Thursday February 6, 2014.

MAE143A Signals & Systems - Homework 4, Winter 2014 due by the end of class Thursday February 6, 2014. MAEA Signals & Systems - Homework, Winter due by the of class Thursday February 6,. This test uses matlab to explore the answers to Midterm, which is available on the class website http://oodgeroo.ucsd.edu/

More information

Lab 8 - INTRODUCTION TO AC CURRENTS AND VOLTAGES

Lab 8 - INTRODUCTION TO AC CURRENTS AND VOLTAGES 08-1 Name Date Partners ab 8 - INTRODUCTION TO AC CURRENTS AND VOTAGES OBJECTIVES To understand the meanings of amplitude, frequency, phase, reactance, and impedance in AC circuits. To observe the behavior

More information

Introduction to signals and systems

Introduction to signals and systems CHAPTER Introduction to signals and systems Welcome to Introduction to Signals and Systems. This text will focus on the properties of signals and systems, and the relationship between the inputs and outputs

More information

Sinusoids. Lecture #2 Chapter 2. BME 310 Biomedical Computing - J.Schesser

Sinusoids. Lecture #2 Chapter 2. BME 310 Biomedical Computing - J.Schesser Sinusoids Lecture # Chapter BME 30 Biomedical Computing - 8 What Is this Course All About? To Gain an Appreciation of the Various Types of Signals and Systems To Analyze The Various Types of Systems To

More information

EE Experiment 8 Bode Plots of Frequency Response

EE Experiment 8 Bode Plots of Frequency Response EE16:Exp8-1 EE 16 - Experiment 8 Bode Plots of Frequency Response Objectives: To illustrate the relationship between a system frequency response and the frequency response break frequencies, factor powers,

More information

Knowledge Integration Module 2 Fall 2016

Knowledge Integration Module 2 Fall 2016 Knowledge Integration Module 2 Fall 2016 1 Basic Information: The knowledge integration module 2 or KI-2 is a vehicle to help you better grasp the commonality and correlations between concepts covered

More information

2. (8pts) If θ is an acute angle, find the values of all the trigonometric functions of θ given

2. (8pts) If θ is an acute angle, find the values of all the trigonometric functions of θ given Trigonometry Joysheet 1 MAT 145, Spring 2017 D. Ivanšić Name: Covers: 6.1, 6.2 Show all your work! 1. 8pts) If θ is an acute angle, find the values of all the trigonometric functions of θ given that sin

More information

The University of Texas at Austin Dept. of Electrical and Computer Engineering Midterm #2

The University of Texas at Austin Dept. of Electrical and Computer Engineering Midterm #2 The University of Texas at Austin Dept. of Electrical and Computer Engineering Midterm #2 Date: November 18, 2010 Course: EE 313 Evans Name: Last, First The exam is scheduled to last 75 minutes. Open books

More information

Trigonometric Identities

Trigonometric Identities Trigonometric Identities Scott N. Walck September 1, 010 1 Prerequisites You should know the cosine and sine of 0, π/6, π/4, π/, and π/. Memorize these if you do not already know them. cos 0 = 1 sin 0

More information

Lab 1: First Order CT Systems, Blockdiagrams, Introduction

Lab 1: First Order CT Systems, Blockdiagrams, Introduction ECEN 3300 Linear Systems Spring 2010 1-18-10 P. Mathys Lab 1: First Order CT Systems, Blockdiagrams, Introduction to Simulink 1 Introduction Many continuous time (CT) systems of practical interest can

More information

The Formula for Sinusoidal Signals

The Formula for Sinusoidal Signals The Formula for I The general formula for a sinusoidal signal is x(t) =A cos(2pft + f). I A, f, and f are parameters that characterize the sinusoidal sinal. I A - Amplitude: determines the height of the

More information

Contents. An introduction to MATLAB for new and advanced users

Contents. An introduction to MATLAB for new and advanced users An introduction to MATLAB for new and advanced users (Using Two-Dimensional Plots) Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional

More information

Exam 2 Review Sheet. r(t) = x(t), y(t), z(t)

Exam 2 Review Sheet. r(t) = x(t), y(t), z(t) Exam 2 Review Sheet Joseph Breen Particle Motion Recall that a parametric curve given by: r(t) = x(t), y(t), z(t) can be interpreted as the position of a particle. Then the derivative represents the particle

More information

Trig functions are examples of periodic functions because they repeat. All periodic functions have certain common characteristics.

Trig functions are examples of periodic functions because they repeat. All periodic functions have certain common characteristics. Trig functions are examples of periodic functions because they repeat. All periodic functions have certain common characteristics. The sine wave is a common term for a periodic function. But not all periodic

More information

Frequency Response Analysis and Design Tutorial

Frequency Response Analysis and Design Tutorial 1 of 13 1/11/2011 5:43 PM Frequency Response Analysis and Design Tutorial I. Bode plots [ Gain and phase margin Bandwidth frequency Closed loop response ] II. The Nyquist diagram [ Closed loop stability

More information

1 Graphs of Sine and Cosine

1 Graphs of Sine and Cosine 1 Graphs of Sine and Cosine Exercise 1 Sketch a graph of y = cos(t). Label the multiples of π 2 and π 4 on your plot, as well as the amplitude and the period of the function. (Feel free to sketch the unit

More information

zt ( ) = Ae find f(t)=re( zt ( )), g(t)= Im( zt ( )), and r(t), and θ ( t) if z(t)=r(t) e

zt ( ) = Ae find f(t)=re( zt ( )), g(t)= Im( zt ( )), and r(t), and θ ( t) if z(t)=r(t) e Homework # Fundamentals Review Homework or EECS 562 (As needed or plotting you can use Matlab or another sotware tool or your choice) π. Plot x ( t) = 2cos(2π5 t), x ( t) = 2cos(2π5( t.25)), and x ( t)

More information

1. page xviii, line 23:... conventional. Part of the reason for this...

1. page xviii, line 23:... conventional. Part of the reason for this... DSP First ERRATA. These are mostly typos, double words, misspellings, etc. Underline is not used in the book, so I ve used it to denote changes. JMcClellan, February 22, 2002 1. page xviii, line 23:...

More information

Bode plot, named after Hendrik Wade Bode, is usually a combination of a Bode magnitude plot and Bode phase plot:

Bode plot, named after Hendrik Wade Bode, is usually a combination of a Bode magnitude plot and Bode phase plot: Bode plot From Wikipedia, the free encyclopedia A The Bode plot for a first-order (one-pole) lowpass filter Bode plot, named after Hendrik Wade Bode, is usually a combination of a Bode magnitude plot and

More information

Alternating current circuits- Series RLC circuits

Alternating current circuits- Series RLC circuits FISI30 Física Universitaria II Professor J.. ersosimo hapter 8 Alternating current circuits- Series circuits 8- Introduction A loop rotated in a magnetic field produces a sinusoidal voltage and current.

More information

The period is the time required for one complete oscillation of the function.

The period is the time required for one complete oscillation of the function. Trigonometric Curves with Sines & Cosines + Envelopes Terminology: AMPLITUDE the maximum height of the curve For any periodic function, the amplitude is defined as M m /2 where M is the maximum value and

More information

5.1 Graphing Sine and Cosine Functions.notebook. Chapter 5: Trigonometric Functions and Graphs

5.1 Graphing Sine and Cosine Functions.notebook. Chapter 5: Trigonometric Functions and Graphs Chapter 5: Trigonometric Functions and Graphs 1 Chapter 5 5.1 Graphing Sine and Cosine Functions Pages 222 237 Complete the following table using your calculator. Round answers to the nearest tenth. 2

More information

7.1 INTRODUCTION TO PERIODIC FUNCTIONS

7.1 INTRODUCTION TO PERIODIC FUNCTIONS 7.1 INTRODUCTION TO PERIODIC FUNCTIONS Ferris Wheel Height As a Function of Time The London Eye Ferris Wheel measures 450 feet in diameter and turns continuously, completing a single rotation once every

More information

Electrochemical Impedance Spectroscopy

Electrochemical Impedance Spectroscopy The Basics of Electrochemical Impedance Spectroscopy CORROSION COATINGS BATTERY TESTING PHOTOVOLTAICS C3 PROZESS- UND ANALYSENTECHNIK GmbH Peter-Henlein-Str. 20 D-85540 Haar b. München Telefon 089/45 60

More information

ωc ωc sin(wt 90o ) (for a capacitance) (4)

ωc ωc sin(wt 90o ) (for a capacitance) (4) Physics'241'Signal'Processing:'Lab'3' Sinusoidal esponse of, L ircuits In the previous lab, we studied the behavior of series combinations of and L circuits with input square and triangular waveforms.

More information

MAE143A Signals & Systems - Homework 9, Winter 2015 due by the end of class Friday March 13, 2015.

MAE143A Signals & Systems - Homework 9, Winter 2015 due by the end of class Friday March 13, 2015. MAEA Signals & Systems - Homework 9, Winter due by the end of class Friday March,. Question Three audio files have been placed on the class website: Waits.wav, WaitsAliased.wav, WaitsDecimated.wav. These

More information

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 5 RC Circuits Frequency Response

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 5 RC Circuits Frequency Response POLYTECHNIC UNIVERSITY Electrical Engineering Department EE SOPHOMORE LORTORY Eperiment 5 RC Circuits Frequency Response Modified for Physics 18, rooklyn College I. Overview of Eperiment In this eperiment

More information

, answer the next six questions.

, answer the next six questions. Frequency Response Problems Conceptual Questions 1) T/F Given f(t) = A cos (ωt + θ): The amplitude of the output in sinusoidal steady-state increases as K increases and decreases as ω increases. 2) T/F

More information

ME 5281 Fall Homework 8 Due: Wed. Nov. 4th; start of class.

ME 5281 Fall Homework 8 Due: Wed. Nov. 4th; start of class. ME 5281 Fall 215 Homework 8 Due: Wed. Nov. 4th; start of class. Reading: Chapter 1 Part A: Warm Up Problems w/ Solutions (graded 4%): A.1 Non-Minimum Phase Consider the following variations of a system:

More information

Week 2: Plotting in Matlab APPM 2460

Week 2: Plotting in Matlab APPM 2460 Week 2: Plotting in Matlab APPM 2460 1 Introduction Matlab is great at crunching numbers, and one of the fundamental ways that we understand the output of this number-crunching is through visualization,

More information

Lecture 2: SIGNALS. 1 st semester By: Elham Sunbu

Lecture 2: SIGNALS. 1 st semester By: Elham Sunbu Lecture 2: SIGNALS 1 st semester 1439-2017 1 By: Elham Sunbu OUTLINE Signals and the classification of signals Sine wave Time and frequency domains Composite signals Signal bandwidth Digital signal Signal

More information

INTRODUCTION PROPOSED SOLUTION STEPS TAKEN. MATLAB Simulation

INTRODUCTION PROPOSED SOLUTION STEPS TAKEN. MATLAB Simulation INTRODUCTION In a circuit with reactive (inductive or capacitive) loads, the voltage and current are about 90 degrees out of phase. Inductive loads are mainly found in industries that use heavy equipment

More information

Project I: Phase Tracking and Baud Timing Correction Systems

Project I: Phase Tracking and Baud Timing Correction Systems Project I: Phase Tracking and Baud Timing Correction Systems ECES 631, Prof. John MacLaren Walsh, Ph. D. 1 Purpose In this lab you will encounter the utility of the fundamental Fourier and z-transform

More information

NPTEL Online Course: Control Engineering

NPTEL Online Course: Control Engineering NPTEL Online Course: Control Engineering Dr. Ramkrishna Pasumarthy and Dr.Viswanath Assignment - 0 : s. A passive band pass filter with is one which: (a) Attenuates signals between the two cut-off frequencies

More information

Signal Processing. Naureen Ghani. December 9, 2017

Signal Processing. Naureen Ghani. December 9, 2017 Signal Processing Naureen Ghani December 9, 27 Introduction Signal processing is used to enhance signal components in noisy measurements. It is especially important in analyzing time-series data in neuroscience.

More information

ECE503: Digital Signal Processing Lecture 1

ECE503: Digital Signal Processing Lecture 1 ECE503: Digital Signal Processing Lecture 1 D. Richard Brown III WPI 12-January-2012 WPI D. Richard Brown III 12-January-2012 1 / 56 Lecture 1 Major Topics 1. Administrative details: Course web page. Syllabus

More information

Electromagnetic Oscillations and Currents. March 23, 2014 Chapter 30 1

Electromagnetic Oscillations and Currents. March 23, 2014 Chapter 30 1 Electromagnetic Oscillations and Currents March 23, 2014 Chapter 30 1 Driven LC Circuit! The voltage V can be thought of as the projection of the vertical axis of the phasor V m representing the time-varying

More information

Section 8.1 Radians and Arc Length

Section 8.1 Radians and Arc Length Section 8. Radians and Arc Length Definition. An angle of radian is defined to be the angle, in the counterclockwise direction, at the center of a unit circle which spans an arc of length. Conversion Factors:

More information

Department of Mechanical Engineering and Automation, Harbin Institute of Technology Shenzhen Graduate School, Shenzhen, , China

Department of Mechanical Engineering and Automation, Harbin Institute of Technology Shenzhen Graduate School, Shenzhen, , China 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 16) Precision Measurement of Displacement with Two Quasi-Orthogonal Signals for Linear Diffraction Grating

More information

Signal Processing First Lab 02: Introduction to Complex Exponentials Direction Finding. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt }

Signal Processing First Lab 02: Introduction to Complex Exponentials Direction Finding. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt } Signal Processing First Lab 02: Introduction to Complex Exponentials Direction Finding Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over

More information

MATLAB: Plots. The plot(x,y) command

MATLAB: Plots. The plot(x,y) command MATLAB: Plots In this tutorial, the reader will learn about obtaining graphical output. Creating a proper engineering plot is not an easy task. It takes lots of practice, because the engineer is trying

More information

Precalculus Lesson 9.2 Graphs of Polar Equations Mrs. Snow, Instructor

Precalculus Lesson 9.2 Graphs of Polar Equations Mrs. Snow, Instructor Precalculus Lesson 9.2 Graphs of Polar Equations Mrs. Snow, Instructor As we studied last section points may be described in polar form or rectangular form. Likewise an equation may be written using either

More information

Sinusoids and Sinusoidal Correlation

Sinusoids and Sinusoidal Correlation Laboratory 3 May 24, 2002, Release v3.0 EECS 206 Laboratory 3 Sinusoids and Sinusoidal Correlation 3.1 Introduction Sinusoids are important signals. Part of their importance comes from their prevalence

More information

Review of Filter Types

Review of Filter Types ECE 440 FILTERS Review of Filters Filters are systems with amplitude and phase response that depends on frequency. Filters named by amplitude attenuation with relation to a transition or cutoff frequency.

More information

AC BEHAVIOR OF COMPONENTS

AC BEHAVIOR OF COMPONENTS AC BEHAVIOR OF COMPONENTS AC Behavior of Capacitor Consider a capacitor driven by a sine wave voltage: I(t) 2 1 U(t) ~ C 0-1 -2 0 2 4 6 The current: is shifted by 90 o (sin cos)! 1.0 0.5 0.0-0.5-1.0 0

More information

CH 1. Large coil. Small coil. red. Function generator GND CH 2. black GND

CH 1. Large coil. Small coil. red. Function generator GND CH 2. black GND Experiment 6 Electromagnetic Induction "Concepts without factual content are empty; sense data without concepts are blind... The understanding cannot see. The senses cannot think. By their union only can

More information

Boise State University Department of Electrical and Computer Engineering ECE 212L Circuit Analysis and Design Lab

Boise State University Department of Electrical and Computer Engineering ECE 212L Circuit Analysis and Design Lab Objecties Boise State Uniersity Department of Electrical and Computer Engineering ECE 22L Circuit Analysis and Design Lab Experiment #2: Sinusoidal Steady State and Resonant Circuits The objecties of this

More information

UNIT Explain the radiation from two-wire. Ans: Radiation from Two wire

UNIT Explain the radiation from two-wire. Ans:   Radiation from Two wire UNIT 1 1. Explain the radiation from two-wire. Radiation from Two wire Figure1.1.1 shows a voltage source connected two-wire transmission line which is further connected to an antenna. An electric field

More information

EXPERIMENT 4: RC, RL and RD CIRCUITs

EXPERIMENT 4: RC, RL and RD CIRCUITs EXPERIMENT 4: RC, RL and RD CIRCUITs Equipment List An assortment of resistor, one each of (330, 1k,1.5k, 10k,100k,1000k) Function Generator Oscilloscope 0.F Ceramic Capacitor 100H Inductor LED and 1N4001

More information

of the whole circumference.

of the whole circumference. TRIGONOMETRY WEEK 13 ARC LENGTH AND AREAS OF SECTORS If the complete circumference of a circle can be calculated using C = 2πr then the length of an arc, (a portion of the circumference) can be found by

More information

Bode and Log Magnitude Plots

Bode and Log Magnitude Plots Bode and Log Magnitude Plots Bode Magnitude and Phase Plots System Gain and Phase Margins & Bandwidths Polar Plot and Bode Diagrams Transfer Function from Bode Plots Bode Plots of Open Loop and Closed

More information

Mathematics Lecture. 3 Chapter. 1 Trigonometric Functions. By Dr. Mohammed Ramidh

Mathematics Lecture. 3 Chapter. 1 Trigonometric Functions. By Dr. Mohammed Ramidh Mathematics Lecture. 3 Chapter. 1 Trigonometric Functions By Dr. Mohammed Ramidh Trigonometric Functions This section reviews the basic trigonometric functions. Trigonometric functions are important because

More information

REAL-TIME DSP LABORATORY2:

REAL-TIME DSP LABORATORY2: Contents REAL-TIME DSP LABORATORY: Signals and Systems on the TMS30C6713 DSK 1 Introduction 1 Sampling And Reconstruction 1.1 Discrete-Time Systems................................. Digital Systems.....................................3

More information

Tone Detection with a Quadrature Receiver

Tone Detection with a Quadrature Receiver Tone Detection with a Quadrature Receiver James E. Gilley Chief Scientist Transcrypt International, Inc. jgilley@transcrypt.com January 5, 005 1 Introduction Two-way land mobile radio has long used analog

More information

Experiments #6. Convolution and Linear Time Invariant Systems

Experiments #6. Convolution and Linear Time Invariant Systems Experiments #6 Convolution and Linear Time Invariant Systems 1) Introduction: In this lab we will explain how to use computer programs to perform a convolution operation on continuous time systems and

More information

ECE 2006 University of Minnesota Duluth Lab 11. AC Circuits

ECE 2006 University of Minnesota Duluth Lab 11. AC Circuits 1. Objective AC Circuits In this lab, the student will study sinusoidal voltages and currents in order to understand frequency, period, effective value, instantaneous power and average power. Also, the

More information

What is a Sine Function Graph? U4 L2 Relate Circle to Sine Activity.pdf

What is a Sine Function Graph? U4 L2 Relate Circle to Sine Activity.pdf Math 3 Unit 6, Trigonometry L04: Amplitude and Period of Sine and Cosine AND Translations of Sine and Cosine Functions WIMD: What I must do: I will find the amplitude and period from a graph of the sine

More information

Introduction. Transients in RLC Circuits

Introduction. Transients in RLC Circuits Introduction In this experiment, we will study the behavior of simple electronic circuits whose response varies as a function of the driving frequency. One key feature of these circuits is that they exhibit

More information

Chapter 6: Alternating Current

Chapter 6: Alternating Current hapter 6: Alternating urrent 6. Alternating urrent.o 6.. Define alternating current (A) An alternating current (A) is the electrical current which varies periodically with time in direction and magnitude.

More information

Costas Loop. Modules: Sequence Generator, Digital Utilities, VCO, Quadrature Utilities (2), Phase Shifter, Tuneable LPF (2), Multiplier

Costas Loop. Modules: Sequence Generator, Digital Utilities, VCO, Quadrature Utilities (2), Phase Shifter, Tuneable LPF (2), Multiplier Costas Loop Modules: Sequence Generator, Digital Utilities, VCO, Quadrature Utilities (2), Phase Shifter, Tuneable LPF (2), Multiplier 0 Pre-Laboratory Reading Phase-shift keying that employs two discrete

More information

VectorPlot[{y^2-2x*y,3x*y-6*x^2},{x,-5,5},{y,-5,5}]

VectorPlot[{y^2-2x*y,3x*y-6*x^2},{x,-5,5},{y,-5,5}] hapter 16 16.1. 6. Notice that F(x, y) has length 1 and that it is perpendicular to the position vector (x, y) for all x and y (except at the origin). Think about drawing the vectors based on concentric

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

SECTION 7: FREQUENCY DOMAIN ANALYSIS. MAE 3401 Modeling and Simulation

SECTION 7: FREQUENCY DOMAIN ANALYSIS. MAE 3401 Modeling and Simulation SECTION 7: FREQUENCY DOMAIN ANALYSIS MAE 3401 Modeling and Simulation 2 Response to Sinusoidal Inputs Frequency Domain Analysis Introduction 3 We ve looked at system impulse and step responses Also interested

More information

Practice Problems: Calculus in Polar Coordinates

Practice Problems: Calculus in Polar Coordinates Practice Problems: Calculus in Polar Coordinates Answers. For these problems, I want to convert from polar form parametrized Cartesian form, then differentiate and take the ratio y over x to get the slope,

More information

Now we are going to introduce a new horizontal axis that we will call y, so that we have a 3-dimensional coordinate system (x, y, z).

Now we are going to introduce a new horizontal axis that we will call y, so that we have a 3-dimensional coordinate system (x, y, z). Example 1. A circular cone At the right is the graph of the function z = g(x) = 16 x (0 x ) Put a scale on the axes. Calculate g(2) and illustrate this on the diagram: g(2) = 8 Now we are going to introduce

More information

Synchro and Resolver Conversion. Appendix F. Appendix F EFFECTS OF QUADRATURE SIGNALS ON SERVO SYSTEMS

Synchro and Resolver Conversion. Appendix F. Appendix F EFFECTS OF QUADRATURE SIGNALS ON SERVO SYSTEMS EFFECTS OF QUADRATURE SIGNALS ON SERVO SYSTEMS The usual arrangement of the Digital to Synchro converter in a control loop is shown in Chapter 4, Fig 4-38 The signal from the control transfmer is amplified

More information

CSC475 Music Information Retrieval

CSC475 Music Information Retrieval CSC475 Music Information Retrieval Sinusoids and DSP notation George Tzanetakis University of Victoria 2014 G. Tzanetakis 1 / 38 Table of Contents I 1 Time and Frequency 2 Sinusoids and Phasors G. Tzanetakis

More information

Chapter 33. Alternating Current Circuits

Chapter 33. Alternating Current Circuits Chapter 33 Alternating Current Circuits Alternating Current Circuits Electrical appliances in the house use alternating current (AC) circuits. If an AC source applies an alternating voltage to a series

More information

CHAPTER 5. Additional Problems (a) The AM signal is defined by st () = A c. k a A c 1

CHAPTER 5. Additional Problems (a) The AM signal is defined by st () = A c. k a A c 1 CHAPTER 5 Additional Problems 5.7 (a) The AM signal is defined by st () A c ( + k a mt ()) cos( ω c k a A c + ------------ + t cos( ω c To obtain 5% modulation, we choose k a, which results in the modulated

More information

Real Analog Chapter 10: Steady-state Sinusoidal Analysis

Real Analog Chapter 10: Steady-state Sinusoidal Analysis 1300 Henley Court Pullman, WA 99163 509.334.6306 www.store. digilent.com Real Analog Chapter 10: Steadystate Sinusoidal Analysis 10 Introduction and Chapter Objectives We will now study dynamic systems

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring Experiment 11: Driven RLC Circuit

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring Experiment 11: Driven RLC Circuit MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.2 Spring 24 Experiment 11: Driven LC Circuit OBJECTIVES 1. To measure the resonance frequency and the quality factor of a driven LC circuit.

More information

Signal Processing First Lab 02: Introduction to Complex Exponentials Multipath. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt }

Signal Processing First Lab 02: Introduction to Complex Exponentials Multipath. x(t) = A cos(ωt + φ) = Re{Ae jφ e jωt } Signal Processing First Lab 02: Introduction to Complex Exponentials Multipath Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises

More information

Solutions to the problems from Written assignment 2 Math 222 Winter 2015

Solutions to the problems from Written assignment 2 Math 222 Winter 2015 Solutions to the problems from Written assignment 2 Math 222 Winter 2015 1. Determine if the following limits exist, and if a limit exists, find its value. x2 y (a) The limit of f(x, y) = x 4 as (x, y)

More information

AN5161. Signal conditioning for resolver. Application note. Introduction

AN5161. Signal conditioning for resolver. Application note. Introduction Application note Signal conditioning for resolver Introduction This application note deals with the analog signal conditioning circuit used to drive a resolver and receive information from it. Some hints

More information

EXPERIMENT 4: RC, RL and RD CIRCUITs

EXPERIMENT 4: RC, RL and RD CIRCUITs EXPERIMENT 4: RC, RL and RD CIRCUITs Equipment List Resistor, one each of o 330 o 1k o 1.5k o 10k o 100k o 1000k 0.F Ceramic Capacitor 4700H Inductor LED and 1N4004 Diode. Introduction We have studied

More information