Lecture 16 FREQUENCY RESPONSE OF SIMPLE CIRCUITS

Size: px
Start display at page:

Download "Lecture 16 FREQUENCY RESPONSE OF SIMPLE CIRCUITS"

Transcription

1 Lecture 6 FREQUENCY RESPONSE OF SIMPLE CIRCUITS Ray DeCarlo School of ECE Purdue University West Lafayette, IN decarlo@ecn.purdue.edu

2 EE-202, Frequency Response p 2 R. A. DeCarlo I. WHAT IS FREQUENCY RESPONSE?. Recall Sinusoidal Steady State Analysis K cos(ωt +θ) Stable Circuit with TF H(s) s= jω M(ω )cos( ωt +ϕ(ω )) (a) M (ω ) = K H ( jω ) -- ω -dependent magnitude (b) ϕ(ω ) = H ( jω ) + θ -- ω -dependent phase-shift

3 EE-202, Frequency Response p 3 R. A. DeCarlo 2. DEFINITION frequency response: H ( jω ) = H (s)] s= jω, i.e., H (s) evaluated along the imaginary axis of complex plane. NOTE: H ( jω ) is an ω -dependent complex number: H ( jω ) H ( jω ) H ( jω ) (a) H ( jω ) is phase response, (b) H ( jω ) is magnitude response/gain.

4 EE-202, Frequency Response p 4 R. A. DeCarlo EXAMPLE. Plot the Phase and Magnitude of H (s) = s +0 s s = jω j0 j j0 j400 H( jω ) j j j0+0 j j400+0 j H ( jω ) H ( jω ) = j j0 = 45 o 0 = 45 o = j j400 = 90 o 45 o = 45 o

5 EE-202, Frequency Response p 5 R. A. DeCarlo Phase in degrees degrees w in rad/sec What are the important angles?

6 EE-202, Frequency Response p 6 R. A. DeCarlo Magnitude w in rad/s What are the important magnitudes besides 0.707? What does the frequency response magnitude do to low and high frequency sinusoids?

7 EE-202, Frequency Response p 7 R. A. DeCarlo EXAMPLE 2. Band pass (BP) transfer functions: pass frequencies in a (narrow) frequency band (passband) and significantly reject/attenuate frequencies outside the passband. (i) 2 nd order BP transfer function (blue curve): H (s) = 0.25s s s + = 0.25s (s ) 2 + (0.992) 2 (ii) 4 th order BP transfer function (green curve): H 2 (s) = s 2 s s s s + = s (s ) 2 + (.0884) s (s ) 2 + (0.964) 2 Question: What are the magnitudes at s = jω = 0 and s = jω =? ANSWER: (a) H (0) = H ( j ) = 0 (magnitude is zero at dc and infinity) (b) H 2 (0) = H 2 ( j ) = 0

8 EE-202, Frequency Response p 8 R. A. DeCarlo Magnitude response th Order BP 0.2 2nd Order BP Frequency r/s What are the differences/similarties between the 2 nd and 4 th order BP magnitude responses?

9 EE-202, Frequency Response p 9 R. A. DeCarlo (iii) Plot H ( jω ) using the following MATLAB code: n = 0.25*[ 0]; % numerator coefficients H d = [ 0.25 ]; % denom coefficients H2 n2 = *[ 0 0]; % numerator coefficients H2 d2 = [ e e-0 ]; w=0.2:0.005:2; % Frequency range h = freqs(n,d,w); % Freq response calculation h2 = freqs(n2,d2,w); plot(w,abs(h),w,abs(h2)) grid xlabel('frequency r/s') ylabel('magnitude response') gtext('2nd Order BP') gtext('4th Order BP')

10 EE-202, Frequency Response p 0 R. A. DeCarlo (c) The Idea of Frequency Scaling: s H old (s old ) = H old s new K f = H new (s new ) s K f : Remark: We generally drop the new and old notation in practice: H(s) H s = H new (s). K f Kf = 000; % Frequency Scale Factor n = 0.25*[/Kf 0]; % s! s/kf in num coefficients of H d = [/Kf^2 0.25/Kf ]; % s! s/kf in denom coefficients of H n2 = *[/Kf^2 0 0]; % s! s/kf in num coefficients of H2 d2 = [/Kf^ e-0/Kf^ /Kf^ e-0/Kf ]; w=0.2*kf::2*kf; % Freq range is scaled up proportionately h = freqs(n,d,w); h2 = freqs(n2,d2,w); plot(w,abs(h),w,abs(h2)) grid xlabel('frequency r/s') ylabel('magnitude response') gtext('2nd Order BP') gtext('4th Order BP')

11 EE-202, Frequency Response p R. A. DeCarlo Magnitude response nd Order BP th Order BP Frequency r/s

12 EE-202, Frequency Response p 2 R. A. DeCarlo EXAMPLE 3. Magnitude response H ( jω ) of three (so called) normalized low pass (LP) Butterworth filter transfer functions: (a) First Order Normalized LP Butterworth H (s) = s + (b) 2 nd Order Normalized Butterworth (how many zeros) H (s) = LC s 2 + R s L s + LC = s s +

13 EE-202, Frequency Response p 3 R. A. DeCarlo (c) 3 rd Order Normalized Butterworth (how many zeros) H (s) = s 3 + 2s 2 + 2s + (d) MATLAB Code for frequency response calculation given H(s):»w = logspace(-2,2,800);»n = ; d = [ ];»n2 = ; d2 = [ sqrt(2) ];»n3 = ; d3 = [ 2 2 ];»h = freqs(n,d,w);»h2 = freqs(n2,d2,w);»h3 = freqs(n3,d3,w);»semilogx(w,abs(h),w,abs(h2),w,abs(h3))»grid»xlabel('normalized rad frequency')»ylabel('magnitude Response')

14 EE-202, Frequency Response p 4 R. A. DeCarlo (e) Magnitude Response Plots (Note transitions of gain from to near 0) Magnitude Response TextEnd Normalized rad frequency

15 EE-202, Frequency Response p 5 R. A. DeCarlo (f) Pole-Zero Plot of 2 nd and 3 rd Order (Normalized) Butterworth Filters Notes: How many infinite zeros? Poles lie on the unit circle in left half complex plane. Are such filters stable??

16 EE-202, Frequency Response p 6 R. A. DeCarlo EXAMPLE 4. Plot of H ( jω ) of three low pass Butterworth transfer functions frequency scaled by K f = 000 : H new (s) = H old s K f = s H new (s) = H old s K f = 2 s s H new (s) = H old s K f = 3 s s s

17 EE-202, Frequency Response p 7 R. A. DeCarlo Note: Same Plots as before with cut-off frequency at Magnitude Response TextEnd Normalized rad frequency

18 EE-202, Frequency Response p 8 R. A. DeCarlo EXAMPLE 5. Frequency response of the (High Pass-HP) RC circuit; Capacitor has high impedance for low frequencies and low impedance for high frequencies. (a) Transfer function: H (s) = s s + C = s s +00 (i) One pole at s = 00; one zero at s = 0. by V-division. (b) s = jω, H ( jω ) = R R + jωc = jωcr jωcr + = ω j 00 j ω 00 +

19 EE-202, Frequency Response p 9 R. A. DeCarlo STEP 2. ASYMPTOTIC BEHAVIOR: IMPORTANT FREQUENCIES ARE: 0,, AND???? ω H ( jω ) = R R + jωc H ( jω ) 0 ω 0 H ( jω ) = jωcr jωcr + 0 H ( jω ) 90o ω 00 H ( jω ) = j ω 00 j ω H ( jω ) 45 o

20 EE-202, Frequency Response p 20 R. A. DeCarlo STEP 3. PLOTS FROM MATLAB: w = logspace(0,4,500); H = freqs([ 0],[ 00],w); semilogx(w,abs(h)) grid xlabel('frequency in rad/sec') ylabel('magnitude') MAGNITUDE High Pass Response 0.6 Magnitude Frequency in rad/sec

21 EE-202, Frequency Response p 2 R. A. DeCarlo semilogx(w,80*angle(h)/pi) grid xlabel('frequency rad/sec') ylabel('angle in degrees') 90 PHASE Angle in degrees Frequency rad/sec

22 EE-202, Frequency Response p 22 R. A. DeCarlo EXAMPLE 6. Frequency response of the (Band Pass-BP) RLC circuit STEP : CALCULATION OF TRANSFER FUNCTION: By V-division, H(s) = V out (s) V in (s) = R R + Ls + Cs = R L s s 2 + R L s + LC NOTE: a finite zero at s = 0 and one infinite zero; two finite poles at s = 50 ± j86.6

23 EE-202, Frequency Response p 23 R. A. DeCarlo STEP 2: IMPORTANT FREQUENCIES AND ASYMPTOTIC BEHAVIOR ω (rad/sec) H ( jω ) = j ω L LC ω 2 + j ω L = j0ω 0 4 ω 2 + j0ω ω 0 ω ω 00???? H ( jω ) H ( jω ) 0 90 o H ( jω ) H ( jω ) 0 0 o H ( jω ) H ( jω ) 0 o H ( jω ) H ( jω ) 2 45o H ( jω ) H ( jω ) 2 45o Hint: for what values of ω are the magnitudes of the real and imaginary parts of the denominator equal?

24 EE-202, Frequency Response p 24 R. A. DeCarlo STEP 4. PLOTS FROM MATLAB: w = logspace(0,4,000); R = 0; L = 0.; C = e-3; n = [R/L 0]; d = [ R/L /(L*C)]; h = freqs(n,d,w); semilogx(w,abs(h)) grid xlabel('frequency in rad/s') ylabel('magnitude Response') Magnitude Response Frequency in rad/s NOTE: a finite zero at s = 0 and one infinite zero; two finite poles at s = 50 ± j86.6

25 EE-202, Frequency Response p 25 R. A. DeCarlo semilogx(w,angle(h)*80/pi) grid xlabel('frequency in rad/s') ylabel('phase Response') Phase Response Frequency in rad/s

26 EE-202, Frequency Response p 26 R. A. DeCarlo EXAMPLE 7. Frequency response of the (Band Reject-BR) RLC circuit: Passes most frequencies with little or no attenuation and rejects a small band of frequencies. STEP : CALCULATION OF TRANSFER FUNCTION: By V-division, H (s) = R + R Cs + Ls = s 2 + LC s 2 + RC s + LC When is numerator magnitude zero? H ( jω ) = LC ω 2 LC ω 2 + j ω RC. Zeros at ± j LC = ± j00.

27 EE-202, Frequency Response p 27 R. A. DeCarlo Step 2. Some analysis (fill in the missing information) ω (rad/sec) ω 0 ω ω 00 H ( jω ) = LC ω 2 LC ω 2 + j ω RC H ( jω ) H ( jω ) H ( jω ) H ( jω ) H ( jω ) H ( jω )?? H ( jω ) H ( jω )?? H ( jω ) H ( jω )

28 EE-202, Frequency Response p 28 R. A. DeCarlo STEP 3. PLOTS FROM MATLAB: Band Reject Response 0.8 Magnitude Frequency in rad/sec 0 3 Close-up Band Reject Response Magnitude Frequency in rad/sec

29 EE-202, Frequency Response p 29 R. A. DeCarlo And the Phase 00 Band Reject Response 50 Phase in degrees Frequency in rad/sec 0 3

EE221 Circuits II. Chapter 14 Frequency Response

EE221 Circuits II. Chapter 14 Frequency Response EE22 Circuits II Chapter 4 Frequency Response Frequency Response Chapter 4 4. Introduction 4.2 Transfer Function 4.3 Bode Plots 4.4 Series Resonance 4.5 Parallel Resonance 4.6 Passive Filters 4.7 Active

More information

EE221 Circuits II. Chapter 14 Frequency Response

EE221 Circuits II. Chapter 14 Frequency Response EE22 Circuits II Chapter 4 Frequency Response Frequency Response Chapter 4 4. Introduction 4.2 Transfer Function 4.3 Bode Plots 4.4 Series Resonance 4.5 Parallel Resonance 4.6 Passive Filters 4.7 Active

More information

LECTURE 21: Butterworh & Chebeyshev BP Filters. Part 1: Series and Parallel RLC Circuits On NOT Again

LECTURE 21: Butterworh & Chebeyshev BP Filters. Part 1: Series and Parallel RLC Circuits On NOT Again LECTURE : Butterworh & Chebeyshev BP Filters Part : Series and Parallel RLC Circuits On NOT Again. RLC Admittance/Impedance Transfer Functions EXAMPLE : Series RLC. H(s) I out (s) V in (s) Y in (s) R Ls

More information

Dynamic circuits: Frequency domain analysis

Dynamic circuits: Frequency domain analysis Electronic Circuits 1 Dynamic circuits: Contents Free oscillation and natural frequency Transfer functions Frequency response Bode plots 1 System behaviour: overview 2 System behaviour : review solution

More information

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros)

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) J. McNames Portland State University ECE 222 Bode Plots Ver.

More information

Lecture 15: Sinusoidal Steady State (SSS) Analysis or Phasors without a Phasor more or less

Lecture 15: Sinusoidal Steady State (SSS) Analysis or Phasors without a Phasor more or less Spring 18 page 1 Lecture 15: Sinusoidal Steady State (SSS) Analysis or Phasors without a Phasor more or less 1. Definition. A signal f (t) is periodic with period T > 0 if f (t) = f (t + T ) ; the smallest

More information

EE-202 Exam III April 13, 2015

EE-202 Exam III April 13, 2015 EE-202 Exam III April 3, 205 Name: (Please print clearly.) Student ID: CIRCLE YOUR DIVISION DeCarlo-7:30-8:30 Furgason 3:30-4:30 DeCarlo-:30-2:30 202 2022 2023 INSTRUCTIONS There are 2 multiple choice

More information

LECTURE 25 and MORE: Basic Ingredients of Butterworth Filtering. Objective: Design a second order low pass filter whose 3dB down point is f c,min

LECTURE 25 and MORE: Basic Ingredients of Butterworth Filtering. Objective: Design a second order low pass filter whose 3dB down point is f c,min LECTURE 25 and MORE: Basic Ingredients of Butterworth Filtering INTRODUCTION: A SIMPLISTIC DESIGN OVERVIEW Objective: Design a second order low pass filter whose 3dB down point is f c,min 500 Hz or ω c,min

More information

Frequency Response of Discrete-Time Systems

Frequency Response of Discrete-Time Systems Frequency Response of Discrete-Time Systems EE 37 Signals and Systems David W. Graham 6 Relationship of Pole-Zero Plot to Frequency Response Zeros Roots of the numerator Pin the system to a value of ero

More information

EE-202 Exam III April 6, 2017

EE-202 Exam III April 6, 2017 EE-202 Exam III April 6, 207 Name: (Please print clearly.) Student ID: CIRCLE YOUR DIVISION DeCarlo--202 DeCarlo--2022 7:30 MWF :30 T-TH INSTRUCTIONS There are 3 multiple choice worth 5 points each and

More information

Sophomore Physics Laboratory (PH005/105)

Sophomore Physics Laboratory (PH005/105) CALIFORNIA INSTITUTE OF TECHNOLOGY PHYSICS MATHEMATICS AND ASTRONOMY DIVISION Sophomore Physics Laboratory (PH5/15) Analog Electronics Active Filters Copyright c Virgínio de Oliveira Sannibale, 23 (Revision

More information

EE482: Digital Signal Processing Applications

EE482: Digital Signal Processing Applications Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu EE482: Digital Signal Processing Applications Spring 2014 TTh 14:30-15:45 CBC C222 Lecture 05 IIR Design 14/03/04 http://www.ee.unlv.edu/~b1morris/ee482/

More information

R-L-C Circuits and Resonant Circuits

R-L-C Circuits and Resonant Circuits P517/617 Lec4, P1 R-L-C Circuits and Resonant Circuits Consider the following RLC series circuit What's R? Simplest way to solve for is to use voltage divider equation in complex notation. X L X C in 0

More information

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2 EE 4: Introduction to Microelectronic Circuits Spring 8: Midterm Venkat Anantharam 3/9/8 Total Time Allotted : min Total Points:. This is a closed book exam. However, you are allowed to bring two pages

More information

Lecture 4: R-L-C Circuits and Resonant Circuits

Lecture 4: R-L-C Circuits and Resonant Circuits Lecture 4: R-L-C Circuits and Resonant Circuits RLC series circuit: What's V R? Simplest way to solve for V is to use voltage divider equation in complex notation: V X L X C V R = in R R + X C + X L L

More information

ECE 202 Fall 2013 Final Exam

ECE 202 Fall 2013 Final Exam ECE 202 Fall 2013 Final Exam December 12, 2013 Circle your division: Division 0101: Furgason (8:30 am) Division 0201: Bermel (9:30 am) Name (Last, First) Purdue ID # There are 18 multiple choice problems

More information

ECE3050 Assignment 7

ECE3050 Assignment 7 ECE3050 Assignment 7. Sketch and label the Bode magnitude and phase plots for the transfer functions given. Use loglog scales for the magnitude plots and linear-log scales for the phase plots. On the magnitude

More information

Some of the different forms of a signal, obtained by transformations, are shown in the figure. jwt e z. jwt z e

Some of the different forms of a signal, obtained by transformations, are shown in the figure. jwt e z. jwt z e Transform methods Some of the different forms of a signal, obtained by transformations, are shown in the figure. X(s) X(t) L - L F - F jw s s jw X(jw) X*(t) F - F X*(jw) jwt e z jwt z e X(nT) Z - Z X(z)

More information

OPERATIONAL AMPLIFIER APPLICATIONS

OPERATIONAL AMPLIFIER APPLICATIONS OPERATIONAL AMPLIFIER APPLICATIONS 2.1 The Ideal Op Amp (Chapter 2.1) Amplifier Applications 2.2 The Inverting Configuration (Chapter 2.2) 2.3 The Non-inverting Configuration (Chapter 2.3) 2.4 Difference

More information

Poles, Zeros, and Frequency Response

Poles, Zeros, and Frequency Response Complex Poles Poles, Zeros, and Frequency esponse With only resistors and capacitors, you're stuck with real poles. If you want complex poles, you need either an op-amp or an inductor as well. Complex

More information

Single-Time-Constant (STC) Circuits This lecture is given as a background that will be needed to determine the frequency response of the amplifiers.

Single-Time-Constant (STC) Circuits This lecture is given as a background that will be needed to determine the frequency response of the amplifiers. Single-Time-Constant (STC) Circuits This lecture is given as a background that will be needed to determine the frequency response of the amplifiers. Objectives To analyze and understand STC circuits with

More information

Second-order filters. EE 230 second-order filters 1

Second-order filters. EE 230 second-order filters 1 Second-order filters Second order filters: Have second order polynomials in the denominator of the transfer function, and can have zeroth-, first-, or second-order polynomials in the numerator. Use two

More information

Name: (Please print clearly) Student ID: CIRCLE YOUR DIVISION INSTRUCTIONS

Name: (Please print clearly) Student ID: CIRCLE YOUR DIVISION INSTRUCTIONS EE 202 Exam III April 13 2011 Name: (Please print clearly) Student ID: CIRCLE YOUR DIVISION Morning 7:30 MWF Furgason INSTRUCTIONS Afternoon 3:30 MWF DeCarlo There are 10 multiple choice worth 5 points

More information

Frequency Response. Re ve jφ e jωt ( ) where v is the amplitude and φ is the phase of the sinusoidal signal v(t). ve jφ

Frequency Response. Re ve jφ e jωt ( ) where v is the amplitude and φ is the phase of the sinusoidal signal v(t). ve jφ 27 Frequency Response Before starting, review phasor analysis, Bode plots... Key concept: small-signal models for amplifiers are linear and therefore, cosines and sines are solutions of the linear differential

More information

First and Second Order Circuits. Claudio Talarico, Gonzaga University Spring 2015

First and Second Order Circuits. Claudio Talarico, Gonzaga University Spring 2015 First and Second Order Circuits Claudio Talarico, Gonzaga University Spring 2015 Capacitors and Inductors intuition: bucket of charge q = Cv i = C dv dt Resist change of voltage DC open circuit Store voltage

More information

Filters and Tuned Amplifiers

Filters and Tuned Amplifiers Filters and Tuned Amplifiers Essential building block in many systems, particularly in communication and instrumentation systems Typically implemented in one of three technologies: passive LC filters,

More information

EE 4343/ Control System Design Project LECTURE 10

EE 4343/ Control System Design Project LECTURE 10 Copyright S. Ikenaga 998 All rights reserved EE 4343/5329 - Control System Design Project LECTURE EE 4343/5329 Homepage EE 4343/5329 Course Outline Design of Phase-lead and Phase-lag compensators using

More information

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Discussion 5A

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Discussion 5A EECS 6B Designing Information Devices and Systems II Fall 208 Elad Alon and Miki Lustig Discussion 5A Transfer Function When we write the transfer function of an arbitrary circuit, it always takes the

More information

EE-202 Exam III April 10, 2008

EE-202 Exam III April 10, 2008 EE-202 Exam III April 10, 2008 Name: (Please print clearly) Student ID: CIRCLE YOUR DIVISION Morning 8:30 MWF Afternoon 12:30 MWF INSTRUCTIONS There are 13 multiple choice worth 5 points each and there

More information

Chapter 10: Sinusoidal Steady-State Analysis

Chapter 10: Sinusoidal Steady-State Analysis Chapter 10: Sinusoidal Steady-State Analysis 1 Objectives : sinusoidal functions Impedance use phasors to determine the forced response of a circuit subjected to sinusoidal excitation Apply techniques

More information

Frequency Response part 2 (I&N Chap 12)

Frequency Response part 2 (I&N Chap 12) Frequency Response part 2 (I&N Chap 12) Introduction & TFs Decibel Scale & Bode Plots Resonance Scaling Filter Networks Applications/Design Frequency response; based on slides by J. Yan Slide 3.1 Example

More information

Passive RL and RC Filters

Passive RL and RC Filters NDSU Passive RL and RC Filters ECE 3 Passive RL and RC Filters A filter is a system whose gain changes with frequency. Essentially, all dynamic systems are filters. -Stage Low-Pass Filter For the following

More information

Network Synthesis. References :

Network Synthesis. References : References : Network ynthesis Gabor C. Temes & Jack W. Lapatra, Introduction to Circuit ynthesis and Design, McGraw-Hill Book Company. M.E. Van Valkenburg, Introduction to Modern Network ynthesis, John

More information

Fall 2011 ME 2305 Network Analysis. Sinusoidal Steady State Analysis of RLC Circuits

Fall 2011 ME 2305 Network Analysis. Sinusoidal Steady State Analysis of RLC Circuits Fall 2011 ME 2305 Network Analysis Chapter 4 Sinusoidal Steady State Analysis of RLC Circuits Engr. Humera Rafique Assistant Professor humera.rafique@szabist.edu.pk Faculty of Engineering (Mechatronics)

More information

EE-202 Exam III April 15, 2010

EE-202 Exam III April 15, 2010 EE-0 Exam III April 5, 00 Name: SOLUTION (No period) (Please print clearly) Student ID: CIRCLE YOUR DIVISION Morning 8:30 MWF Afternoon 3:30 MWF INSTRUCTIONS There are 9 multiple choice worth 5 points

More information

Speaker: Arthur Williams Chief Scientist Telebyte Inc. Thursday November 20 th 2008 INTRODUCTION TO ACTIVE AND PASSIVE ANALOG

Speaker: Arthur Williams Chief Scientist Telebyte Inc. Thursday November 20 th 2008 INTRODUCTION TO ACTIVE AND PASSIVE ANALOG INTRODUCTION TO ACTIVE AND PASSIVE ANALOG FILTER DESIGN INCLUDING SOME INTERESTING AND UNIQUE CONFIGURATIONS Speaker: Arthur Williams Chief Scientist Telebyte Inc. Thursday November 20 th 2008 TOPICS Introduction

More information

Lecture 6: Impedance (frequency dependent. resistance in the s- world), Admittance (frequency. dependent conductance in the s- world), and

Lecture 6: Impedance (frequency dependent. resistance in the s- world), Admittance (frequency. dependent conductance in the s- world), and Lecture 6: Impedance (frequency dependent resistance in the s- world), Admittance (frequency dependent conductance in the s- world), and Consequences Thereof. Professor Ray, what s an impedance? Answers:

More information

ECE-202 FINAL April 30, 2018 CIRCLE YOUR DIVISION

ECE-202 FINAL April 30, 2018 CIRCLE YOUR DIVISION ECE 202 Final, Spring 8 ECE-202 FINAL April 30, 208 Name: (Please print clearly.) Student Email: CIRCLE YOUR DIVISION DeCarlo- 7:30-8:30 DeCarlo-:30-2:45 2025 202 INSTRUCTIONS There are 34 multiple choice

More information

Electronic Circuits EE359A

Electronic Circuits EE359A Electronic Circuits EE359A Bruce McNair B26 bmcnair@stevens.edu 21-216-5549 Lecture 22 578 Second order LCR resonator-poles V o I 1 1 = = Y 1 1 + sc + sl R s = C 2 s 1 s + + CR LC s = C 2 sω 2 s + + ω

More information

Homework Assignment 11

Homework Assignment 11 Homework Assignment Question State and then explain in 2 3 sentences, the advantage of switched capacitor filters compared to continuous-time active filters. (3 points) Continuous time filters use resistors

More information

1 Phasors and Alternating Currents

1 Phasors and Alternating Currents Physics 4 Chapter : Alternating Current 0/5 Phasors and Alternating Currents alternating current: current that varies sinusoidally with time ac source: any device that supplies a sinusoidally varying potential

More information

Sinusoidal Steady-State Analysis

Sinusoidal Steady-State Analysis Chapter 4 Sinusoidal Steady-State Analysis In this unit, we consider circuits in which the sources are sinusoidal in nature. The review section of this unit covers most of section 9.1 9.9 of the text.

More information

Signals and Systems. Fourier Transform: Solving differential equations when the input is periodic

Signals and Systems. Fourier Transform: Solving differential equations when the input is periodic Signals and Systems Fourier Transform: Solving differential equations when the input is periodic Objectives Determine a least-squares curve fit for a function using a sinusoidal series (Fourier series)

More information

Solution: K m = R 1 = 10. From the original circuit, Z L1 = jωl 1 = j10 Ω. For the scaled circuit, L 1 = jk m ωl 1 = j10 10 = j100 Ω, Z L

Solution: K m = R 1 = 10. From the original circuit, Z L1 = jωl 1 = j10 Ω. For the scaled circuit, L 1 = jk m ωl 1 = j10 10 = j100 Ω, Z L Problem 9.9 Circuit (b) in Fig. P9.9 is a scaled version of circuit (a). The scaling process may have involved magnitude or frequency scaling, or both simultaneously. If R = kω gets scaled to R = kω, supply

More information

The general form for the transform function of a second order filter is that of a biquadratic (or biquad to the cool kids).

The general form for the transform function of a second order filter is that of a biquadratic (or biquad to the cool kids). nd-order filters The general form for the transform function of a second order filter is that of a biquadratic (or biquad to the cool kids). T (s) A p s a s a 0 s b s b 0 As before, the poles of the transfer

More information

2nd-order filters. EE 230 second-order filters 1

2nd-order filters. EE 230 second-order filters 1 nd-order filters Second order filters: Have second order polynomials in the denominator of the transfer function, and can have zeroth-, first-, or second-order polyinomials in the numerator. Use two reactive

More information

FREQUENCY-RESPONSE DESIGN

FREQUENCY-RESPONSE DESIGN ECE45/55: Feedback Control Systems. 9 FREQUENCY-RESPONSE DESIGN 9.: PD and lead compensation networks The frequency-response methods we have seen so far largely tell us about stability and stability margins

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering Dynamics and Control II Fall 2007

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering Dynamics and Control II Fall 2007 MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering.4 Dynamics and Control II Fall 7 Problem Set #9 Solution Posted: Sunday, Dec., 7. The.4 Tower system. The system parameters are

More information

Handout 11: AC circuit. AC generator

Handout 11: AC circuit. AC generator Handout : AC circuit AC generator Figure compares the voltage across the directcurrent (DC) generator and that across the alternatingcurrent (AC) generator For DC generator, the voltage is constant For

More information

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 3 Signals & Systems Prof. Mark Fowler Note Set #9 C-T Systems: Laplace Transform Transfer Function Reading Assignment: Section 6.5 of Kamen and Heck /7 Course Flow Diagram The arrows here show conceptual

More information

Electronic Circuits EE359A

Electronic Circuits EE359A Electronic Circuits EE359A Bruce McNair B26 bmcnair@stevens.edu 21-216-5549 Lecture 22 569 Second order section Ts () = s as + as+ a 2 2 1 ω + s+ ω Q 2 2 ω 1 p, p = ± 1 Q 4 Q 1 2 2 57 Second order section

More information

To find the step response of an RC circuit

To find the step response of an RC circuit To find the step response of an RC circuit v( t) v( ) [ v( t) v( )] e tt The time constant = RC The final capacitor voltage v() The initial capacitor voltage v(t ) To find the step response of an RL circuit

More information

Sinusoidal steady-state analysis

Sinusoidal steady-state analysis Sinusoidal steady-state analysis From our previous efforts with AC circuits, some patterns in the analysis started to appear. 1. In each case, the steady-state voltages or currents created in response

More information

coefnum = coefden =

coefnum = coefden = P57-58 clear; clc; format long; Amax = 1.4; Amin = 33; wp = 3400; ws = 16500; % Compute filter order n = ellipord(wp,ws,amax,amin, 's') % Compute the zeros, poles, and gain constant of HNLP(s) [z,p,k]

More information

Phasors: Impedance and Circuit Anlysis. Phasors

Phasors: Impedance and Circuit Anlysis. Phasors Phasors: Impedance and Circuit Anlysis Lecture 6, 0/07/05 OUTLINE Phasor ReCap Capacitor/Inductor Example Arithmetic with Complex Numbers Complex Impedance Circuit Analysis with Complex Impedance Phasor

More information

Frequency response. Pavel Máša - XE31EO2. XE31EO2 Lecture11. Pavel Máša - XE31EO2 - Frequency response

Frequency response. Pavel Máša - XE31EO2. XE31EO2 Lecture11. Pavel Máša - XE31EO2 - Frequency response Frequency response XE3EO2 Lecture Pavel Máša - Frequency response INTRODUCTION Frequency response describe frequency dependence of output to input voltage magnitude ratio and its phase shift as a function

More information

I. Frequency Response of Voltage Amplifiers

I. Frequency Response of Voltage Amplifiers I. Frequency Response of Voltage Amplifiers A. Common-Emitter Amplifier: V i SUP i OUT R S V BIAS R L v OUT V Operating Point analysis: 0, R s 0, r o --->, r oc --->, R L ---> Find V BIAS such that I C

More information

Lecture 9 Infinite Impulse Response Filters

Lecture 9 Infinite Impulse Response Filters Lecture 9 Infinite Impulse Response Filters Outline 9 Infinite Impulse Response Filters 9 First-Order Low-Pass Filter 93 IIR Filter Design 5 93 CT Butterworth filter design 5 93 Bilinear transform 7 9

More information

CHAPTER # 9 ROOT LOCUS ANALYSES

CHAPTER # 9 ROOT LOCUS ANALYSES F K א CHAPTER # 9 ROOT LOCUS ANALYSES 1. Introduction The basic characteristic of the transient response of a closed-loop system is closely related to the location of the closed-loop poles. If the system

More information

Finding Transfer Functions of Circuits Using State-Space

Finding Transfer Functions of Circuits Using State-Space Objective: Finding Transfer Functions of Circuits Using State-Space Write the state-space model for a circuit Find the transfer function for a system in state-space form Discussion Assume either The input

More information

Chapter 10: Sinusoids and Phasors

Chapter 10: Sinusoids and Phasors Chapter 10: Sinusoids and Phasors 1. Motivation 2. Sinusoid Features 3. Phasors 4. Phasor Relationships for Circuit Elements 5. Impedance and Admittance 6. Kirchhoff s Laws in the Frequency Domain 7. Impedance

More information

EE-202 Exam III April 13, 2006

EE-202 Exam III April 13, 2006 EE-202 Exam III April 13, 2006 Name: (Please print clearly) Student ID: CIRCLE YOUR DIVISION DeCarlo 2:30 MWF Furgason 3:30 MWF INSTRUCTIONS There are 10 multiple choice worth 5 points each and there is

More information

DIGITAL SIGNAL PROCESSING. Chapter 6 IIR Filter Design

DIGITAL SIGNAL PROCESSING. Chapter 6 IIR Filter Design DIGITAL SIGNAL PROCESSING Chapter 6 IIR Filter Design OER Digital Signal Processing by Dr. Norizam Sulaiman work is under licensed Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International

More information

EE-202 Exam II March 3, 2008

EE-202 Exam II March 3, 2008 EE-202 Exam II March 3, 2008 Name: (Please print clearly) Student ID: CIRCLE YOUR DIVISION MORNING 8:30 MWF AFTERNOON 12:30 MWF INSTRUCTIONS There are 12 multiple choice worth 5 points each and there is

More information

Problem Weight Score Total 100

Problem Weight Score Total 100 EE 350 EXAM IV 15 December 2010 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: DO NOT TURN THIS PAGE UNTIL YOU ARE TOLD TO DO SO Problem Weight Score 1 25 2 25 3 25 4 25 Total

More information

2.161 Signal Processing: Continuous and Discrete Fall 2008

2.161 Signal Processing: Continuous and Discrete Fall 2008 MT OpenCourseWare http://ocw.mit.edu 2.6 Signal Processing: Continuous and Discrete Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts

More information

EE482: Digital Signal Processing Applications

EE482: Digital Signal Processing Applications Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu EE482: Digital Signal Processing Applications Spring 2014 TTh 14:30-15:45 CBC C222 Lecture 02 DSP Fundamentals 14/01/21 http://www.ee.unlv.edu/~b1morris/ee482/

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 18 121025 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Review RMS Values Complex Numbers Phasors Complex Impedance Circuit Analysis

More information

Sinusoidal Steady-State Analysis

Sinusoidal Steady-State Analysis Sinusoidal Steady-State Analysis Almost all electrical systems, whether signal or power, operate with alternating currents and voltages. We have seen that when any circuit is disturbed (switched on or

More information

MODULE-4 RESONANCE CIRCUITS

MODULE-4 RESONANCE CIRCUITS Introduction: MODULE-4 RESONANCE CIRCUITS Resonance is a condition in an RLC circuit in which the capacitive and inductive Reactance s are equal in magnitude, there by resulting in purely resistive impedance.

More information

Lecture 28. Passive HP Filter Design

Lecture 28. Passive HP Filter Design Lecture 28. Paive HP Filter Deign STRATEGY: Convert HP pec to Equivalent NLP pec. Deign an appropriate 3dB NLP tranfer function. Realize the 3dB NLP tranfer function a a circuit. Convert the 3dB NLP circuit

More information

Design of Narrow Band Filters Part 1

Design of Narrow Band Filters Part 1 E.U.I.T. Telecomunicación 2010, Madrid, Spain, 27.09 30.09.2010 Design of Narrow Band Filters Part 1 Thomas Buch Institute of Communications Engineering University of Rostock Th. Buch, Institute of Communications

More information

Poles, Zeros, and Frequency Response

Poles, Zeros, and Frequency Response Poles, Zeros, and Frequency Response With the previous circuits, you can build filters with Real poles Complex Poles, and Zeros at s = 0 Filter design uses this to places poles and zeros to give a desired

More information

Identification Methods for Structural Systems. Prof. Dr. Eleni Chatzi System Stability - 26 March, 2014

Identification Methods for Structural Systems. Prof. Dr. Eleni Chatzi System Stability - 26 March, 2014 Prof. Dr. Eleni Chatzi System Stability - 26 March, 24 Fundamentals Overview System Stability Assume given a dynamic system with input u(t) and output x(t). The stability property of a dynamic system can

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 20 121101 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Chapters 1-3 Circuit Analysis Techniques Chapter 10 Diodes Ideal Model

More information

Signals and Systems. Lecture 11 Wednesday 22 nd November 2017 DR TANIA STATHAKI

Signals and Systems. Lecture 11 Wednesday 22 nd November 2017 DR TANIA STATHAKI Signals and Systems Lecture 11 Wednesday 22 nd November 2017 DR TANIA STATHAKI READER (ASSOCIATE PROFFESOR) IN SIGNAL PROCESSING IMPERIAL COLLEGE LONDON Effect on poles and zeros on frequency response

More information

EE348L Lecture 1. EE348L Lecture 1. Complex Numbers, KCL, KVL, Impedance,Steady State Sinusoidal Analysis. Motivation

EE348L Lecture 1. EE348L Lecture 1. Complex Numbers, KCL, KVL, Impedance,Steady State Sinusoidal Analysis. Motivation EE348L Lecture 1 Complex Numbers, KCL, KVL, Impedance,Steady State Sinusoidal Analysis 1 EE348L Lecture 1 Motivation Example CMOS 10Gb/s amplifier Differential in,differential out, 5 stage dccoupled,broadband

More information

Lecture 37: Frequency response. Context

Lecture 37: Frequency response. Context EECS 05 Spring 004, Lecture 37 Lecture 37: Frequency response Prof J. S. Smith EECS 05 Spring 004, Lecture 37 Context We will figure out more of the design parameters for the amplifier we looked at in

More information

Lecture 6: Impedance (frequency dependent. resistance in the s-world), Admittance (frequency. dependent conductance in the s-world), and

Lecture 6: Impedance (frequency dependent. resistance in the s-world), Admittance (frequency. dependent conductance in the s-world), and Lecture 6: Impedance (frequency dependent resistance in the s-world), Admittance (frequency dependent conductance in the s-world), and Consequences Thereof. Professor Ray, what s an impedance? Answers:.

More information

Review of DC Electric Circuit. DC Electric Circuits Examples (source:

Review of DC Electric Circuit. DC Electric Circuits Examples (source: Review of DC Electric Circuit DC Electric Circuits Examples (source: http://hyperphysics.phyastr.gsu.edu/hbase/electric/dcex.html) 1 Review - DC Electric Circuit Multisim Circuit Simulation DC Circuit

More information

Electronic Circuits EE359A

Electronic Circuits EE359A Electronic Circuits EE359A Bruce McNair B206 bmcnair@stevens.edu 201-216-5549 Lecture 18 379 Signal Generators and Waveform-shaping Circuits Ch 17 380 Stability in feedback systems Feedback system Bounded

More information

EE292: Fundamentals of ECE

EE292: Fundamentals of ECE EE292: Fundamentals of ECE Fall 2012 TTh 10:00-11:15 SEB 1242 Lecture 14 121011 http://www.ee.unlv.edu/~b1morris/ee292/ 2 Outline Review Steady-State Analysis RC Circuits RL Circuits 3 DC Steady-State

More information

EE 354 Fall 2013 Lecture 10 The Sampling Process and Evaluation of Difference Equations

EE 354 Fall 2013 Lecture 10 The Sampling Process and Evaluation of Difference Equations EE 354 Fall 203 Lecture 0 The Sampling Process and Evaluation of Difference Equations Digital Signal Processing (DSP) is centered around the idea that you can convert an analog signal to a digital signal

More information

Lecture Sketching the root locus

Lecture Sketching the root locus Lecture 05.02 Sketching the root locus It is easy to get lost in the detailed rules of manual root locus construction. In the old days accurate root locus construction was critical, but now it is useful

More information

School of Mechanical Engineering Purdue University. DC Motor Position Control The block diagram for position control of the servo table is given by:

School of Mechanical Engineering Purdue University. DC Motor Position Control The block diagram for position control of the servo table is given by: Root Locus Motivation Sketching Root Locus Examples ME375 Root Locus - 1 Servo Table Example DC Motor Position Control The block diagram for position control of the servo table is given by: θ D 0.09 See

More information

Digital Control & Digital Filters. Lectures 21 & 22

Digital Control & Digital Filters. Lectures 21 & 22 Digital Controls & Digital Filters Lectures 2 & 22, Professor Department of Electrical and Computer Engineering Colorado State University Spring 205 Review of Analog Filters-Cont. Types of Analog Filters:

More information

ENGN3227 Analogue Electronics. Problem Sets V1.0. Dr. Salman Durrani

ENGN3227 Analogue Electronics. Problem Sets V1.0. Dr. Salman Durrani ENGN3227 Analogue Electronics Problem Sets V1.0 Dr. Salman Durrani November 2006 Copyright c 2006 by Salman Durrani. Problem Set List 1. Op-amp Circuits 2. Differential Amplifiers 3. Comparator Circuits

More information

Radar Dish. Armature controlled dc motor. Inside. θ r input. Outside. θ D output. θ m. Gearbox. Control Transmitter. Control. θ D.

Radar Dish. Armature controlled dc motor. Inside. θ r input. Outside. θ D output. θ m. Gearbox. Control Transmitter. Control. θ D. Radar Dish ME 304 CONTROL SYSTEMS Mechanical Engineering Department, Middle East Technical University Armature controlled dc motor Outside θ D output Inside θ r input r θ m Gearbox Control Transmitter

More information

Introduction to Feedback Control

Introduction to Feedback Control Introduction to Feedback Control Control System Design Why Control? Open-Loop vs Closed-Loop (Feedback) Why Use Feedback Control? Closed-Loop Control System Structure Elements of a Feedback Control System

More information

Circuit Analysis-III. Circuit Analysis-II Lecture # 3 Friday 06 th April, 18

Circuit Analysis-III. Circuit Analysis-II Lecture # 3 Friday 06 th April, 18 Circuit Analysis-III Sinusoids Example #1 ü Find the amplitude, phase, period and frequency of the sinusoid: v (t ) =12cos(50t +10 ) Signal Conversion ü From sine to cosine and vice versa. ü sin (A ± B)

More information

ID # NAME. EE-255 EXAM 3 April 7, Instructor (circle one) Ogborn Lundstrom

ID # NAME. EE-255 EXAM 3 April 7, Instructor (circle one) Ogborn Lundstrom ID # NAME EE-255 EXAM 3 April 7, 1998 Instructor (circle one) Ogborn Lundstrom This exam consists of 20 multiple choice questions. Record all answers on this page, but you must turn in the entire exam.

More information

BIOEN 302, Section 3: AC electronics

BIOEN 302, Section 3: AC electronics BIOEN 3, Section 3: AC electronics For this section, you will need to have very present the basics of complex number calculus (see Section for a brief overview) and EE5 s section on phasors.. Representation

More information

Review of Linear Time-Invariant Network Analysis

Review of Linear Time-Invariant Network Analysis D1 APPENDIX D Review of Linear Time-Invariant Network Analysis Consider a network with input x(t) and output y(t) as shown in Figure D-1. If an input x 1 (t) produces an output y 1 (t), and an input x

More information

Frequency Response Analysis

Frequency Response Analysis Frequency Response Analysis Consider let the input be in the form Assume that the system is stable and the steady state response of the system to a sinusoidal inputdoes not depend on the initial conditions

More information

REACTANCE. By: Enzo Paterno Date: 03/2013

REACTANCE. By: Enzo Paterno Date: 03/2013 REACTANCE REACTANCE By: Enzo Paterno Date: 03/2013 5/2007 Enzo Paterno 1 RESISTANCE - R i R (t R A resistor for all practical purposes is unaffected by the frequency of the applied sinusoidal voltage or

More information

Lecture 9 Time Domain vs. Frequency Domain

Lecture 9 Time Domain vs. Frequency Domain . Topics covered Lecture 9 Time Domain vs. Frequency Domain (a) AC power in the time domain (b) AC power in the frequency domain (c) Reactive power (d) Maximum power transfer in AC circuits (e) Frequency

More information

EE40 Lec 13. Prof. Nathan Cheung 10/13/2009. Reading: Hambley Chapter Chapter 14.10,14.5

EE40 Lec 13. Prof. Nathan Cheung 10/13/2009. Reading: Hambley Chapter Chapter 14.10,14.5 EE4 Lec 13 Filter and eonance Pro. Nathan Cheung 1/13/9 eading: Hambley Chapter 6.6-6.8 Chapter 14.1,14.5 Slide 1 Common Filter Traner Function v. Freq H ( ) H( ) Low Pa High Pa Frequency H ( ) H ( ) Frequency

More information

Linear System Theory

Linear System Theory Linear System Theory - Laplace Transform Prof. Robert X. Gao Department of Mechanical Engineering University of Connecticut Storrs, CT 06269 Outline What we ve learned so far: Setting up Modeling Equations

More information

Homework 7 - Solutions

Homework 7 - Solutions Homework 7 - Solutions Note: This homework is worth a total of 48 points. 1. Compensators (9 points) For a unity feedback system given below, with G(s) = K s(s + 5)(s + 11) do the following: (c) Find the

More information

Frequency Response DR. GYURCSEK ISTVÁN

Frequency Response DR. GYURCSEK ISTVÁN DR. GYURCSEK ISTVÁN Frequency Response Sources and additional materials (recommended) Dr. Gyurcsek Dr. Elmer: Theories in Electric Circuits, GlobeEdit, 2016, ISBN:978-3-330-71341-3 Ch. Alexander, M. Sadiku:

More information