EECE 301 Signals & Systems Prof. Mark Fowler

Size: px
Start display at page:

Download "EECE 301 Signals & Systems Prof. Mark Fowler"

Transcription

1 EECE 301 Signals & Systems Prof. Mark Fowler Note Set #15 C-T Systems: CT Filters & Frequency Response 1/14

2 Ideal Filters Often we have a scenario where part of the input signal s spectrum comprises what we want and part comprises something we do not want. We can use a filter to remove (or filter out) the bad part. x() t yt () H() Called a Filter in this case Case #1: X () Spectrum of the Input Signal In this case, we want a filter like this: Mathematically: H ( ) 1, 0, H () otherwise Undesired Part A filter that passes low frequencies is called a low-pass filter Passband Stopband 2/14

3 Case #2: Input Signal Spectrum X () Undesired Part We then want: 1 H () A filter that passes high frequencies is called a high-pass filter H ( ) 0, 1, otherwise Stopband Passband 3/14

4 Case # 3: X ( ) Undesired Part 1 H () A filter that stops middle frequencies is called a band-stop filter Case #4: X ( ) Desired Part 1 H () A filter that passes middle frequencies is called a band-pass filter 4/14

5 What about the phase of an IDEAL filter s H()? Well we could tolerate a small delay in the output so Put in the signal we want passed From the time-shift property of the FT then we need: Y ( ) x g (t) y( t) xg ( t td ) H() Want to get out the signal we want passed but we can accept a small delay X g ( ) e j Thus we should treat the exponential term here as H(), so we have: t d H jtd For in the ( ) e 1 pass band of the filter H ( ) e jt d t d Line of slope t d Linear Phase 5/14

6 So for an ideal low-pass filter (LPF) we have: H () p 2 () 1e H ( ) 0, j t d, otherwise j td H( ) p ( ) e 2 Slope = td H () Summary of Ideal Filters 1. Magnitude Response: a. Constant in Passband b. Zero in Stopband 2. Phase Response a. Linear in Passband (negative slope = delay) b. Undefined in Stopband Phase is undefined in stop band: 0 0e 0? j i.e. phase is undefined for frequencies outside the ideal passband 6/14

7 Example of the effect of a nonlinear phase but an ideal magnitude 0 Hz 1 Hz 2 Hz 3 Hz x( t) 9 5cos(2t) 3cos(2 2t) cos(2 3t) H() y( t) 9 5cos(2t ) 3cos(2 2t ) cos(2 3t ) 4 10 Filter has FLAT Passband Filter has Non-Linear Phase Point of this Example A filter with an ideal magnitude response but nonideal phase response can still degrade a signal!!! 7/14

8 Are Ideal Filters Realizable? (i.e., can we actually MAKE one?) Sadly No!! So a big part of CT filter design focuses on how to get close to the ideal. Can t Get an Ideal Filter Because they are Non-Causal!!! j td H( ) p ( ) e For the ideal LPF we had 2 Now consider applying a delta function as its input: x(t) = (t) X() = 1 Then the output has FT 2 From the FT Table: 2sinc 2 t /2 2 p2( ) j td Y( ) X( ) H( ) p ( ) e Linear Phase Imparts Delay So the response to a delta (applied at t = 0) is: () ( / )sinc( / )( ) y t t t d x(t) = (t) y(t) t Ideal LPF Starts before input starts Thus, system is non-causal! t 8/14

9 Plotting Frequency Response of Practical Filters Although we ve previously shown the plots of Freq. Resp. using the actual numerical values of H() it is VERY common to plot its decibel values. Decibel: P1 10log 10 2 P bel decibel Know These! a logarithmic unit of measure for a ratio between two powers P 1 /P 2 (non-db) P 1 /P 2 (db) 1000 = db 100 = db 10 = db 1 = dB 0.1 = db 0.01 = db = db Decibel Power Rules 30 db is P ratio of db is P ratio of db is P ratio of 10 0 db is P ratio of 1-10 db is P ratio of db is P ratio of db is P ratio of Another Rule to Know!! P 1 /P 2 = 2 ~ 3 db P 1 /P 2 = 1/2 ~ -3 db 9/14

10 But H() relates Voltages (or current) not POWER!!! Acos( 0 t ) Input voltage amplitude = A h(t) H() A H ( 0) cos( 0t H ( 0)) Output voltage amplitude = A H( 0 ) H ( 0) Output Voltage Amplitude Input Voltage Amplitude Convert to Powers Input Power = A 2 /2 Output Power = A 2 H( 0 ) 2 /2 10log 2 2 P A H( ) /2 out 10 10log10 2 P in A / log H ( ) 20log H ( ) 2 20 log 10 ( H() ) Decibel value for H( 0 ) 10/14

11 In addition to using decibels for the H() it is also common to use a logarithmic scale for the frequency axis Linear Axis: f (Hz) Log Axis: f (Hz) We may be just as interested in 0 1 khz as we are in 1 10 khz But the linear axis plot has the 0 1 khz region all scrunched up However the log axis allows us to expand out the lower frequencies to see them better! 11/14

12 Simplest Real-World Lowpass Filter: RC Circuit Input Signal v(t) R 1. Convert capacitor into impedance: 2. Imagine input as phasor: Ae j Z c x C y(t) Output Signal 1 ( ) Small impedance at high j C Large impedance at low 3. Now analyze the circuit as if it were a DC circuit with a complex voltage in (the phasor) and complex resistors (the impedances): Ae j x R 1/jC y Now find the output phasor as a function of the input phasor the thing that multiplies the input phasor is ALWAYS the Freq Resp! Here use Voltage Divider. Zc( ) 1 y x x RZc( ) 1 jrc H ( ) 1 1 jrc 12/14

13 Now we can plot this H(f) <H(f) f (Hz) f (Hz) RC=1.5915e-4; f=0:10:10000; H=1./(1 + j*2*pi*f*rc); subplot(2,1,1) plot(f,abs(h)) grid xlabel('f (Hz)') ylabel(' H(f) ') subplot(2,1,2) plot(f,angle(h)) grid xlabel('f (Hz)') ylabel('<h(f)') Although these are correct plots we usually prefer to use: db for the magnitude axis (but not the angle axis!) log axis (rather than linear) for the frequency axis o But keep in mind that when using a log axis a linear phase will NOT be a straight line!!! 13/14

14 H(f) (db) <H(f) Instead we can plot this using db and log axes f (Hz) Using log scale allows us to see that this filter is quite flat up to about 200 Hz! RC=1.5915e-4; f=1:10:10000; H=1./(1 + j*2*pi*f*rc); subplot(2,1,1) semilogx(f,20*log10(abs(h))) grid xlabel('f (Hz)') ylabel(' H(f) ') subplot(2,1,2) semilogx(f,angle(h)) grid xlabel('f (Hz)') ylabel('<h(f)') Use 20 here! f (Hz) 14/14

Today. 1/25/11 Physics 262 Lecture 2 Filters. Active Components and Filters. Homework. Lab 2 this week

Today. 1/25/11 Physics 262 Lecture 2 Filters. Active Components and Filters. Homework. Lab 2 this week /5/ Physics 6 Lecture Filters Today Basics: Analog versus Digital; Passive versus Active Basic concepts and types of filters Passband, Stopband, Cut-off, Slope, Knee, Decibels, and Bode plots Active Components

More information

Chapter 5 Frequency Domain Analysis of Systems

Chapter 5 Frequency Domain Analysis of Systems Chapter 5 Frequency Domain Analysis of Systems CT, LTI Systems Consider the following CT LTI system: xt () ht () yt () Assumption: the impulse response h(t) is absolutely integrable, i.e., ht ( ) dt< (this

More information

Chapter 5 Frequency Domain Analysis of Systems

Chapter 5 Frequency Domain Analysis of Systems Chapter 5 Frequency Domain Analysis of Systems CT, LTI Systems Consider the following CT LTI system: xt () ht () yt () Assumption: the impulse response h(t) is absolutely integrable, i.e., ht ( ) dt< (this

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

EECE 301 Signals & Systems Prof. Mark Fowler

EECE 301 Signals & Systems Prof. Mark Fowler EECE 3 Signals & Systems Prof. ark Fowler Note Set #28 D-T Systems: DT Filters Ideal & Practical /4 Ideal D-T Filters Just as in the CT case we can specify filters. We looked at the ideal filter for the

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

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

DIGITAL SIGNAL PROCESSING UNIT III INFINITE IMPULSE RESPONSE DIGITAL FILTERS. 3.6 Design of Digital Filter using Digital to Digital

DIGITAL SIGNAL PROCESSING UNIT III INFINITE IMPULSE RESPONSE DIGITAL FILTERS. 3.6 Design of Digital Filter using Digital to Digital DIGITAL SIGNAL PROCESSING UNIT III INFINITE IMPULSE RESPONSE DIGITAL FILTERS Contents: 3.1 Introduction IIR Filters 3.2 Transformation Function Derivation 3.3 Review of Analog IIR Filters 3.3.1 Butterworth

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

Like bilateral Laplace transforms, ROC must be used to determine a unique inverse z-transform.

Like bilateral Laplace transforms, ROC must be used to determine a unique inverse z-transform. Inversion of the z-transform Focus on rational z-transform of z 1. Apply partial fraction expansion. Like bilateral Laplace transforms, ROC must be used to determine a unique inverse z-transform. Let X(z)

More information

Basic Electronics. Introductory Lecture Course for. Technology and Instrumentation in Particle Physics Chicago, Illinois June 9-14, 2011

Basic Electronics. Introductory Lecture Course for. Technology and Instrumentation in Particle Physics Chicago, Illinois June 9-14, 2011 Basic Electronics Introductory Lecture Course for Technology and Instrumentation in Particle Physics 2011 Chicago, Illinois June 9-14, 2011 Presented By Gary Drake Argonne National Laboratory Session 2

More information

University of Illinois at Chicago Spring ECE 412 Introduction to Filter Synthesis Homework #4 Solutions

University of Illinois at Chicago Spring ECE 412 Introduction to Filter Synthesis Homework #4 Solutions Problem 1 A Butterworth lowpass filter is to be designed having the loss specifications given below. The limits of the the design specifications are shown in the brick-wall characteristic shown in Figure

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

Digital Signal Processing IIR Filter Design via Bilinear Transform

Digital Signal Processing IIR Filter Design via Bilinear Transform Digital Signal Processing IIR Filter Design via Bilinear Transform D. Richard Brown III D. Richard Brown III 1 / 12 Basic Procedure We assume here that we ve already decided to use an IIR filter. The basic

More information

EE40 Homework #6. Due Oct 15 (Thursday), 12:00 noon in Cory 240

EE40 Homework #6. Due Oct 15 (Thursday), 12:00 noon in Cory 240 Fall 2009 EE40 Homework #6 Due Oct 15 (Thursday), 12:00 noon in Cory 240 Reading Assignments Chapter 5 of Hambley textbook. Section 5.7 on Three-Phase circuit is optional Sections 6.1-6.5 of Hambley textbook

More information

In addition to resistors that we have considered to date, there are two other basic electronic components that can be found everywhere: the capacitor

In addition to resistors that we have considered to date, there are two other basic electronic components that can be found everywhere: the capacitor In addition to resistors that we have considered to date, there are two other basic electronic components that can be found everywhere: the capacitor and the inductor. We will consider these two types

More information

Chapter 7: IIR Filter Design Techniques

Chapter 7: IIR Filter Design Techniques IUST-EE Chapter 7: IIR Filter Design Techniques Contents Performance Specifications Pole-Zero Placement Method Impulse Invariant Method Bilinear Transformation Classical Analog Filters DSP-Shokouhi Advantages

More information

( s) N( s) ( ) The transfer function will take the form. = s = 2. giving ωo = sqrt(1/lc) = 1E7 [rad/s] ω 01 := R 1. α 1 2 L 1.

( s) N( s) ( ) The transfer function will take the form. = s = 2. giving ωo = sqrt(1/lc) = 1E7 [rad/s] ω 01 := R 1. α 1 2 L 1. Problem ) RLC Parallel Circuit R L C E-4 E-0 V a. What is the resonant frequency of the circuit? The transfer function will take the form N ( ) ( s) N( s) H s R s + α s + ω s + s + o L LC giving ωo sqrt(/lc)

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

Cast of Characters. Some Symbols, Functions, and Variables Used in the Book

Cast of Characters. Some Symbols, Functions, and Variables Used in the Book Page 1 of 6 Cast of Characters Some s, Functions, and Variables Used in the Book Digital Signal Processing and the Microcontroller by Dale Grover and John R. Deller ISBN 0-13-081348-6 Prentice Hall, 1998

More information

Linear systems, small signals, and integrators

Linear systems, small signals, and integrators Linear systems, small signals, and integrators CNS WS05 Class Giacomo Indiveri Institute of Neuroinformatics University ETH Zurich Zurich, December 2005 Outline 1 Linear Systems Crash Course Linear Time-Invariant

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

University Question Paper Solution

University Question Paper Solution Unit 1: Introduction University Question Paper Solution 1. Determine whether the following systems are: i) Memoryless, ii) Stable iii) Causal iv) Linear and v) Time-invariant. i) y(n)= nx(n) ii) y(t)=

More information

Laboratory III: Operational Amplifiers

Laboratory III: Operational Amplifiers Physics 33, Fall 2008 Lab III - Handout Laboratory III: Operational Amplifiers Introduction Operational amplifiers are one of the most useful building blocks of analog electronics. Ideally, an op amp would

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

CHAPTER.6 :TRANSISTOR FREQUENCY RESPONSE

CHAPTER.6 :TRANSISTOR FREQUENCY RESPONSE CHAPTER.6 :TRANSISTOR FREQUENCY RESPONSE To understand Decibels, log scale, general frequency considerations of an amplifier. low frequency analysis - Bode plot low frequency response BJT amplifier Miller

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

(amperes) = (coulombs) (3.1) (seconds) Time varying current. (volts) =

(amperes) = (coulombs) (3.1) (seconds) Time varying current. (volts) = 3 Electrical Circuits 3. Basic Concepts Electric charge coulomb of negative change contains 624 0 8 electrons. Current ampere is a steady flow of coulomb of change pass a given point in a conductor in

More information

Grades will be determined by the correctness of your answers (explanations are not required).

Grades will be determined by the correctness of your answers (explanations are not required). 6.00 (Fall 2011) Final Examination December 19, 2011 Name: Kerberos Username: Please circle your section number: Section Time 2 11 am 1 pm 4 2 pm Grades will be determined by the correctness of your answers

More information

Use of a Notch Filter in a Tuned Mode for LISA.

Use of a Notch Filter in a Tuned Mode for LISA. Use of a Notch Filter in a Tuned Mode for LISA. Giorgio Fontana September 00 Abstract. During interferometric measurements the proof mass must be free from any controlling force within a given observation

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

University of TN Chattanooga Physics 1040L 8/18/2012 PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB

University of TN Chattanooga Physics 1040L 8/18/2012 PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB PHYSICS 1040L LAB LAB 4: R.C. TIME CONSTANT LAB OBJECT: To study the discharging of a capacitor and determine the time constant for a simple circuit. APPARATUS: Capacitor (about 24 μf), two resistors (about

More information

Source-Free RC Circuit

Source-Free RC Circuit First Order Circuits Source-Free RC Circuit Initial charge on capacitor q = Cv(0) so that voltage at time 0 is v(0). What is v(t)? Prof Carruthers (ECE @ BU) EK307 Notes Summer 2018 150 / 264 First Order

More information

Fourier Series Representation of

Fourier Series Representation of Fourier Series Representation of Periodic Signals Rui Wang, Assistant professor Dept. of Information and Communication Tongji University it Email: ruiwang@tongji.edu.cn Outline The response of LIT system

More information

ELEG 3124 SYSTEMS AND SIGNALS Ch. 5 Fourier Transform

ELEG 3124 SYSTEMS AND SIGNALS Ch. 5 Fourier Transform Department of Electrical Engineering University of Arkansas ELEG 3124 SYSTEMS AND SIGNALS Ch. 5 Fourier Transform Dr. Jingxian Wu wuj@uark.edu OUTLINE 2 Introduction Fourier Transform Properties of Fourier

More information

IMPERIAL COLLEGE OF SCIENCE, TECHNOLOGY AND MEDICINE UNIVERSITY OF LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2010

IMPERIAL COLLEGE OF SCIENCE, TECHNOLOGY AND MEDICINE UNIVERSITY OF LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2010 Paper Number(s): E1.1 IMPERIAL COLLEGE OF SCIENCE, TECHNOLOGY AND MEDICINE UNIVERSITY OF LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2010 EEE/ISE PART I: MEng, BEng and ACGI

More information

Active Filter Design by Carsten Kristiansen Napier University. November 2004

Active Filter Design by Carsten Kristiansen Napier University. November 2004 by Carsten Kristiansen November 2004 Title page Author: Carsten Kristiansen. Napier No: 0400772. Assignment partner: Benjamin Grydehoej. Assignment title:. Education: Electronic and Computer Engineering.

More information

3 Fourier Series Representation of Periodic Signals

3 Fourier Series Representation of Periodic Signals 65 66 3 Fourier Series Representation of Periodic Signals Fourier (or frequency domain) analysis constitutes a tool of great usefulness Accomplishes decomposition of broad classes of signals using complex

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

Review of 1 st Order Circuit Analysis

Review of 1 st Order Circuit Analysis ECEN 60 Circuits/Electronics Spring 007-7-07 P. Mathys Review of st Order Circuit Analysis First Order Differential Equation Consider the following circuit with input voltage v S (t) and output voltage

More information

Time Varying Circuit Analysis

Time Varying Circuit Analysis MAS.836 Sensor Systems for Interactive Environments th Distributed: Tuesday February 16, 2010 Due: Tuesday February 23, 2010 Problem Set # 2 Time Varying Circuit Analysis The purpose of this problem set

More information

Core Technology Group Application Note 3 AN-3

Core Technology Group Application Note 3 AN-3 Measuring Capacitor Impedance and ESR. John F. Iannuzzi Introduction In power system design, capacitors are used extensively for improving noise rejection, lowering power system impedance and power supply

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts Chapter 1 Fundamental Concepts 1 Signals A signal is a pattern of variation of a physical quantity, often as a function of time (but also space, distance, position, etc). These quantities are usually the

More information

I. Impedance of an R-L circuit.

I. Impedance of an R-L circuit. I. Impedance of an R-L circuit. [For inductor in an AC Circuit, see Chapter 31, pg. 1024] Consider the R-L circuit shown in Figure: 1. A current i(t) = I cos(ωt) is driven across the circuit using an AC

More information

2A1H Time-Frequency Analysis II

2A1H Time-Frequency Analysis II 2AH Time-Frequency Analysis II Bugs/queries to david.murray@eng.ox.ac.uk HT 209 For any corrections see the course page DW Murray at www.robots.ox.ac.uk/ dwm/courses/2tf. (a) A signal g(t) with period

More information

Switched Capacitor Circuits I. Prof. Paul Hasler Georgia Institute of Technology

Switched Capacitor Circuits I. Prof. Paul Hasler Georgia Institute of Technology Switched Capacitor Circuits I Prof. Paul Hasler Georgia Institute of Technology Switched Capacitor Circuits Making a resistor using a capacitor and switches; therefore resistance is set by a digital clock

More information

LINEAR-PHASE FIR FILTERS DESIGN

LINEAR-PHASE FIR FILTERS DESIGN LINEAR-PHASE FIR FILTERS DESIGN Prof. Siripong Potisuk inimum-phase Filters A digital filter is a minimum-phase filter if and only if all of its zeros lie inside or on the unit circle; otherwise, it is

More information

EE1-01 IMPERIAL COLLEGE LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2013 ANALYSIS OF CIRCUITS. Tuesday, 28 May 10:00 am

EE1-01 IMPERIAL COLLEGE LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2013 ANALYSIS OF CIRCUITS. Tuesday, 28 May 10:00 am EE1-01 IMPERIAL COLLEGE LONDON DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EXAMINATIONS 2013 ExamHeader: EEE/EIE PART I: MEng, Beng and ACGI ANALYSIS OF CIRCUITS Tuesday, 28 May 10:00 am Time allowed:

More information

Chapter 10 Sinusoidal Steady State Analysis Chapter Objectives:

Chapter 10 Sinusoidal Steady State Analysis Chapter Objectives: Chapter 10 Sinusoidal Steady State Analysis Chapter Objectives: Apply previously learn circuit techniques to sinusoidal steady-state analysis. Learn how to apply nodal and mesh analysis in the frequency

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Fall 2009 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its circuit

More information

Op-Amp Circuits: Part 3

Op-Amp Circuits: Part 3 Op-Amp Circuits: Part 3 M. B. Patil mbpatil@ee.iitb.ac.in www.ee.iitb.ac.in/~sequel Department of Electrical Engineering Indian Institute of Technology Bombay Introduction to filters Consider v(t) = v

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

ESE319 Introduction to Microelectronics Bode Plot Review High Frequency BJT Model

ESE319 Introduction to Microelectronics Bode Plot Review High Frequency BJT Model Bode Plot Review High Frequency BJT Model 1 Logarithmic Frequency Response Plots (Bode Plots) Generic form of frequency response rational polynomial, where we substitute jω for s: H s=k sm a m 1 s m 1

More information

Electrical Circuits Lab Series RC Circuit Phasor Diagram

Electrical Circuits Lab Series RC Circuit Phasor Diagram Electrical Circuits Lab. 0903219 Series RC Circuit Phasor Diagram - Simple steps to draw phasor diagram of a series RC circuit without memorizing: * Start with the quantity (voltage or current) that is

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

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

Test II Michael R. Gustafson II

Test II Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 224 Spring 2016 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any

More information

EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 16

EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 16 EECE 2150 Circuits and Signals Final Exam Fall 2016 Dec 16 Instructions: Write your name and section number on all pages Closed book, closed notes; Computers and cell phones are not allowed You can use

More information

Exercise 1: Capacitors

Exercise 1: Capacitors Capacitance AC 1 Fundamentals Exercise 1: Capacitors EXERCISE OBJECTIVE When you have completed this exercise, you will be able to describe the effect a capacitor has on dc and ac circuits by using measured

More information

Problem Weight Total 100

Problem Weight Total 100 EE 350 Problem Set 3 Cover Sheet Fall 2016 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: Submission deadlines: Turn in the written solutions by 4:00 pm on Tuesday September

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 224 Spring 2017 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any

More information

LAPLACE TRANSFORMATION AND APPLICATIONS. Laplace transformation It s a transformation method used for solving differential equation.

LAPLACE TRANSFORMATION AND APPLICATIONS. Laplace transformation It s a transformation method used for solving differential equation. LAPLACE TRANSFORMATION AND APPLICATIONS Laplace transformation It s a transformation method used for solving differential equation. Advantages The solution of differential equation using LT, progresses

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

EE 205 Dr. A. Zidouri. Electric Circuits II. Frequency Selective Circuits (Filters) Low Pass Filter. Lecture #36

EE 205 Dr. A. Zidouri. Electric Circuits II. Frequency Selective Circuits (Filters) Low Pass Filter. Lecture #36 EE 05 Dr. A. Zidouri Electric ircuits II Frequency Selective ircuits (Filters) ow Pass Filter ecture #36 - - EE 05 Dr. A. Zidouri The material to be covered in this lecture is as follows: o Introduction

More information

Refinements to Incremental Transistor Model

Refinements to Incremental Transistor Model Refinements to Incremental Transistor Model This section presents modifications to the incremental models that account for non-ideal transistor behavior Incremental output port resistance Incremental changes

More information

Impedance. Reactance. Capacitors

Impedance. Reactance. Capacitors Impedance Ohm's law describes the relationship between current and voltage in circuits that are in equilibrium- that is, when the current and voltage are not changing. When we have a situation where the

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

The Approximating Impedance

The Approximating Impedance Georgia Institute of Technology School of Electrical and Computer Engineering ECE 4435 Op Amp Design Laboratory Fall 005 DesignProject,Part A White Noise and Pink Noise Generator The following explains

More information

L L, R, C. Kirchhoff s rules applied to AC circuits. C Examples: Resonant circuits: series and parallel LRC. Filters: narrowband,

L L, R, C. Kirchhoff s rules applied to AC circuits. C Examples: Resonant circuits: series and parallel LRC. Filters: narrowband, Today in Physics 1: A circuits Solving circuit problems one frequency at a time. omplex impedance of,,. Kirchhoff s rules applied to A circuits. it V in Examples: esonant circuits: i series and parallel.

More information

Steady State Frequency Response Using Bode Plots

Steady State Frequency Response Using Bode Plots School of Engineering Department of Electrical and Computer Engineering 332:224 Principles of Electrical Engineering II Laboratory Experiment 3 Steady State Frequency Response Using Bode Plots 1 Introduction

More information

LCR Series Circuits. AC Theory. Introduction to LCR Series Circuits. Module. What you'll learn in Module 9. Module 9 Introduction

LCR Series Circuits. AC Theory. Introduction to LCR Series Circuits. Module. What you'll learn in Module 9. Module 9 Introduction Module 9 AC Theory LCR Series Circuits Introduction to LCR Series Circuits What you'll learn in Module 9. Module 9 Introduction Introduction to LCR Series Circuits. Section 9.1 LCR Series Circuits. Amazing

More information

Prof. Anyes Taffard. Physics 120/220. Voltage Divider Capacitor RC circuits

Prof. Anyes Taffard. Physics 120/220. Voltage Divider Capacitor RC circuits Prof. Anyes Taffard Physics 120/220 Voltage Divider Capacitor RC circuits Voltage Divider The figure is called a voltage divider. It s one of the most useful and important circuit elements we will encounter.

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

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 224 Spring Test II. Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 224 Spring 2018 Test II Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided nor received any

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 4 Digital Signal Processing Pro. Mark Fowler ote Set # Using the DFT or Spectral Analysis o Signals Reading Assignment: Sect. 7.4 o Proakis & Manolakis Ch. 6 o Porat s Book /9 Goal o Practical Spectral

More information

PHYSICS 171 UNIVERSITY PHYSICS LAB II. Experiment 6. Transient Response of An RC Circuit

PHYSICS 171 UNIVERSITY PHYSICS LAB II. Experiment 6. Transient Response of An RC Circuit PHYSICS 171 UNIVERSITY PHYSICS LAB II Experiment 6 Transient Response of An RC Circuit Equipment: Supplies: Function Generator, Dual Trace Oscilloscope.002 Microfarad, 0.1 Microfarad capacitors; 1 Kilohm,

More information

ELEC 202 Electric Circuit Analysis II Lecture 10(a) Complex Arithmetic and Rectangular/Polar Forms

ELEC 202 Electric Circuit Analysis II Lecture 10(a) Complex Arithmetic and Rectangular/Polar Forms Dr. Gregory J. Mazzaro Spring 2016 ELEC 202 Electric Circuit Analysis II Lecture 10(a) Complex Arithmetic and Rectangular/Polar Forms THE CITADEL, THE MILITARY COLLEGE OF SOUTH CAROLINA 171 Moultrie Street,

More information

2A1H Time-Frequency Analysis II Bugs/queries to HT 2011 For hints and answers visit dwm/courses/2tf

2A1H Time-Frequency Analysis II Bugs/queries to HT 2011 For hints and answers visit   dwm/courses/2tf Time-Frequency Analysis II (HT 20) 2AH 2AH Time-Frequency Analysis II Bugs/queries to david.murray@eng.ox.ac.uk HT 20 For hints and answers visit www.robots.ox.ac.uk/ dwm/courses/2tf David Murray. A periodic

More information

Time Series Analysis: 4. Digital Linear Filters. P. F. Góra

Time Series Analysis: 4. Digital Linear Filters. P. F. Góra Time Series Analysis: 4. Digital Linear Filters P. F. Góra http://th-www.if.uj.edu.pl/zfs/gora/ 2018 Linear filters Filtering in Fourier domain is very easy: multiply the DFT of the input by a transfer

More information

Problem Set 9 Solutions

Problem Set 9 Solutions Problem Set 9 Solutions EE23: Digital Signal Processing. From Figure below, we see that the DTFT of the windowed sequence approaches the actual DTFT as the window size increases. Gibb s phenomenon is absent

More information

Frequency Response and Continuous-time Fourier Series

Frequency Response and Continuous-time Fourier Series Frequency Response and Continuous-time Fourier Series Recall course objectives Main Course Objective: Fundamentals of systems/signals interaction (we d like to understand how systems transform or affect

More information

RC Circuits (32.9) Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring / 1

RC Circuits (32.9) Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring / 1 (32.9) We have only been discussing DC circuits so far. However, using a capacitor we can create an RC circuit. In this example, a capacitor is charged but the switch is open, meaning no current flows.

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

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

Problem Set 5 Solutions

Problem Set 5 Solutions University of California, Berkeley Spring 01 EE /0 Prof. A. Niknejad Problem Set 5 Solutions Please note that these are merely suggested solutions. Many of these problems can be approached in different

More information

FROM ANALOGUE TO DIGITAL

FROM ANALOGUE TO DIGITAL SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 7. Dr David Corrigan 1. Electronic and Electrical Engineering Dept. corrigad@tcd.ie www.mee.tcd.ie/ corrigad FROM ANALOGUE TO DIGITAL To digitize signals it is necessary

More information

Volterra Series. Nick Gamroth. January 2005

Volterra Series. Nick Gamroth. January 2005 Volterra Series Nick Gamroth January 2005 Abstract The following are notes on what I ve taught myself about Volterra seriesss. So it s probably all wrong. 1 Motivation Well, I m trying to model a power

More information

0 t < 0 1 t 1. u(t) =

0 t < 0 1 t 1. u(t) = A. M. Niknejad University of California, Berkeley EE 100 / 42 Lecture 13 p. 22/33 Step Response A unit step function is described by u(t) = ( 0 t < 0 1 t 1 While the waveform has an artificial jump (difficult

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

farads or 10 µf. The letter indicates the part tolerance (how close should the actual value be to the marking).

farads or 10 µf. The letter indicates the part tolerance (how close should the actual value be to the marking). p1 EE1050/60 Capacitors Lab University of Utah Electrical Engineering Department EE1050/1060 Capacitors A. Stolp, 10/4/99 rev 3/17/01 Objectives 1.) Observe charging and discharging of a capacitor. 2.)

More information

Lab Experiment 2: Performance of First order and second order systems

Lab Experiment 2: Performance of First order and second order systems Lab Experiment 2: Performance of First order and second order systems Objective: The objective of this exercise will be to study the performance characteristics of first and second order systems using

More information

Sinusoidal Response of RLC Circuits

Sinusoidal Response of RLC Circuits Sinusoidal Response of RLC Circuits Series RL circuit Series RC circuit Series RLC circuit Parallel RL circuit Parallel RC circuit R-L Series Circuit R-L Series Circuit R-L Series Circuit Instantaneous

More information

ECE 201 Fall 2009 Final Exam

ECE 201 Fall 2009 Final Exam ECE 01 Fall 009 Final Exam December 16, 009 Division 0101: Tan (11:30am) Division 001: Clark (7:30 am) Division 0301: Elliott (1:30 pm) Instructions 1. DO NOT START UNTIL TOLD TO DO SO.. Write your Name,

More information

Chapter 10: Sinusoidal Steady-State Analysis

Chapter 10: Sinusoidal Steady-State Analysis Chapter 10: Sinusoidal Steady-State Analysis 10.1 10.2 10.3 10.4 10.5 10.6 10.9 Basic Approach Nodal Analysis Mesh Analysis Superposition Theorem Source Transformation Thevenin & Norton Equivalent Circuits

More information

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance:

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance: RLC Series Circuit In this exercise you will investigate the effects of changing inductance, capacitance, resistance, and frequency on an RLC series AC circuit. We can define effective resistances for

More information

Electronics. Basics & Applications. group talk Daniel Biesinger

Electronics. Basics & Applications. group talk Daniel Biesinger Electronics Basics & Applications group talk 23.7.2010 by Daniel Biesinger 1 2 Contents Contents Basics Simple applications Equivalent circuit Impedance & Reactance More advanced applications - RC circuits

More information

09/29/2009 Reading: Hambley Chapter 5 and Appendix A

09/29/2009 Reading: Hambley Chapter 5 and Appendix A EE40 Lec 10 Complex Numbers and Phasors Prof. Nathan Cheung 09/29/2009 Reading: Hambley Chapter 5 and Appendix A Slide 1 OUTLINE Phasors as notation for Sinusoids Arithmetic with Complex Numbers Complex

More information

Revised October 6, EEL , Henry Zmuda. 2. Three-Phase Circuits 1

Revised October 6, EEL , Henry Zmuda. 2. Three-Phase Circuits 1 Three Phase Circuitsit Revised October 6, 008. Three-Phase Circuits 1 Preliminary Comments and a quick review of phasors. We live in the time domain. We also assume a causal (nonpredictive) world. Real-world

More information

Lab #4 Capacitors and Inductors. Capacitor Transient and Steady State Response

Lab #4 Capacitors and Inductors. Capacitor Transient and Steady State Response Capacitor Transient and Steady State Response Like resistors, capacitors are also basic circuit elements. Capacitors come in a seemingly endless variety of shapes and sizes, and they can all be represented

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Spring 2008 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its

More information