Finding Transfer Functions of Circuits Using State-Space

Size: px
Start display at page:

Download "Finding Transfer Functions of Circuits Using State-Space"

Transcription

1 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 to a circuit, x(t), was zero for t<, or The input to a circuit, x(t), is periodic and has been on for a long time. If the first case, you can use LaPlace transforms with zero initial condition. In this case dx dt sx x()=sx d 2 x dt 2 s 2 X dx() dt sx()=s 2 X In short, you can simply replace all derivatives with 's' terms. In the latter case, you can use phasor notation substituting jω for derivatives, or 's' for derivatives assuming s = jω. In either case, you ignore the initial conditions and replace derivatives with 's'. Example 1: Consider trying to find the transfer function for the following circuit: 1a) Find the transfer function from X to 1b) Find the response to x(t) =2sin(3t) 1c) Find the frequency response from X to 1d) Find the impulse response from X to X V1 V2 V3 X + - C C C C + - ou have four capacitors, meaning you will have four coupled differential equations. Given time, you could solve to find the transfer funciton. State-space is much faster, however. JSG 1 rev April 15, 29

2 1a) Find the transfer function. Step 1: eplace C with 1 Cs CsV 1 = X V 1 + V 1 Cs = V 1 + V 3 CsV 3 = V 3 + V 3 Cs V 3 and sum the current to zero. Note: Group terms and solve for the highest derivative: sv 1 = 2 C V C + 1 C X s = 1 C V C + 1 C V 3 sv 3 = 1 C + 2 C V C s 1 C V C I = C dv dt = CsV Place in matrix form s V 1 V 3 2 C 1 C = 1 C 2 C 1 C 1 C 2 C 1 C 1 C 1 C V 1 V C X = 1 V 1 V 3 Example: Let = 1k, C = 1uF, s V 1 V 3 = +[]X 1 C = V 1 V X JSG 2 rev April 15, 29

3 In SciLab: so >A = [-2,1,,;1,-2,1,;,1,-2,1;,,1,-1] A = >B = [1;;;]; >C = [,,,1]; >D = ; >S1 = syslin('c',a,b,c,d); >h = ss2tf(s1) h = D-12s D-13s s + 15s + 7s + s 1 s 4 +7s 3 +15s 2 +1s+1 X Note that this was much easier than solving four equations for four unkowns. In MATLAB >A = [-2,1,,;1,-2,1,;,1,-2,1;,,1,-1] A = >B = [1;;;]; >C = [,,,1]; >D = ; >[num,den] = ss2tf(a,b,c,d) num 1 den meeaning 1 s 4 +7s 3 +15s 2 +1s+1 X JSG 3 rev April 15, 29

4 1b) Find the response to x(t) = 2sin(3t) Let s j3 1 s 4 +7s 3 +15s 2 +1s+1 X s=j3 In SciLab or MATLAB: >s = j*3; >G1 = 1./ (s.^4 + 7*s.^3 + 15*s.^2 + 1*s + 1); > abs(g1).3531 > 18/%pi*atan(imag(G1),real(G1)) in SciLab > 18/pi*angle(G1) in MATLAB = ( )X The output is.3531 times the input, shifted by degrees y(t)=.763 sin (3t 96.9 ) 1c) Find the frequency response. Plug in s jω In SciLab: >j = sqrt(-1); >w = [-1:.1:2]'; >w = 1.^w; >s = j*w; >G1 = 1./ (s.^4 + 7*s.^3 + 15*s.^2 + 1*s + 1); >plot(w,abs(g1)) >xlabel('rad/sec'); >ylabel('gain') JSG 4 rev April 15, 29

5 Note: The gain at 3 rad/sec (part b) is just one point on this plot. The frequency response tells you a lot more. For example, if the input were less than 1 rad/sec, the ouput would be about the same as the input (the gain is one). If the input is higher than 1 rad/sec, the ouput is small, less than.1 times the input. This is a low-pass filter. 1d) Find the impulse response: 1 s 4 +7s 3 +15s 2 +1s+1 X X= 1 (x is an impulse, the LaPlace transform of an impulse is '1'. Factor -->roots([1,7,15,1,1]) A = B = C = 1 (s+1.26)(s+1)(s+23.47)(s+35.32) A s B s (s+1)(s+23.47)(s+35.32) 1 (s+1.26)(s+23.47)(s+35.32) 1 (s+1.26)(s+1)(s+35.32) C s D s = s= 1.26 = s= 1 = s= so D = 1 (s+1.26)(s+1)(s+23.47) =.977 s= s s s s y(t)=(1.4972e 1.26t e 1t e 23.47t.977e 35.32t )u(t) JSG 5 rev April 15, 29

6 Example 2: 2a) Find the transfer function from X to 2b) Find the response to x(t) =2sin(3t) 2c) Find the frequency response from X to 2d) Find the impulse response from X to Ls Ls Ls V2 V4 V6 + X - I1 I3 I5 1/Cs 1/Cs 1/Cs + - There are six energy storage elements (L,C). This means you'll be solving for an 6th-order differential equation. That's a pain by hand. State-space in MATLAB or SciLab isn't too bad, though. 2a) Find the transfer function. Convert to LaPlace (already shown above.) L Ls and C 1 Cs Write the differential equations. ou should have six coupled differential equations since there are six energy storage elements: LsI 1 = X Cs = I 1 I 3 LsI 3 = V 4 CsV 4 = I 3 I 5 LsI 5 = V 4 V 6 CsV 6 = I 5 V 6 Group and place in matrix form: JSG 6 rev April 15, 29

7 I 1 V 1 C 2 I s 3 V 4 = I 5 V 6 = 1 Assume L=.1, C=.1, = 1: s I 1 I 3 V 4 I 5 V 6 = 1 L 1 C 1 L 1 L 1 C 1 C 1 L 1 L 1 C 1 I 1 I 3 V 4 I 5 V 6 +[]X I 1 I 3 V 4 I 5 V 6 I 1 I 3 V 4 I 5 V In SciLab: >A = [,-1,,,,;1,,-1,,,;,1,,-1,,;,,1,,-1,;,,,1,,-1;,,,,1,-.1] >B = [1;;;;;]; >C = [,,,,,1]; >D = ; >S2 = syslin('c',a,b,c,d); >h = ss2tf(s2) D-11s D-11s D-13s D-13s D-15s s + 6s + 4s + 5s +.1s + s 1 X 1 L X So 1 s 6 +.1s 5 +5s 4 +4s 3 +6s 2 +3s+1 X JSG 7 rev April 15, 29

8 2b) Find the response for x(t) = 2sin(3t) Plug in s = j3 >s = j*3; and find the gain: >G = 1./ (s.^6 +.1*s.^5 + 5*s.^4 + 4*s.^3 + 6*s.^2 + 3*s + 1); >abs(g) 4.14 >18/%pi*atan(imag(G),real(G)) >18/pi*angle(G) -.9 = (2.7.9 )X The output is 2.7 times the input, shifted by -.9 degrees: y(t)=4.14 sin(3t.9 ) in SciLab in MATLAB 2c) Find the frequency response: Plug in s jω >w = [-1:.1:2]'; >w = 1.^ w; >s = j*w; >G = 1./ (s.^6 +.1*s.^5 + 5*s.^4 + 4*s.^3 + 6*s.^2 + 3*s + 1); >plot(w,abs(g)) >xlabel('rad/sec'); >ylabel('gain'); Note: The gain at 3 rad/sec (part b) is just one point on this plot. The frequency response tells you a lot more. For example, if the input were 4, 12, or 18 rad/sec, you'd have a much larger output. These are called 'resonances' for the circuit: frequencies where the gain shoots up. (The exact frequencies of these resonances are hard to see JSG 8 rev April 15, 29

9 on this graph. The resonance is very close to the imaginary parts of the poles. From part b) below, the resonances are actually at {4.45, 12.47, 18.2 rad/sec} 1d) Find the impulse response. Convert to LaPlace ( δ(t) 1) and factor: --> = roots([1,.1,5,4,6,3,1]) = So i i i i i i 1 (s+.2715±j4.453)(s+.1746±j )(s+.537±j18.19) note: There really are six terms in the denominator. Each complex pole has a corresponding complex conjugate. The notation above uses ' ' as shorthand notation to say there are two poles: one at +j and a second at -j. ± Using partial fractions (only showing the +j terms: there will also be the conjugates) A s j4.453 A = B = C = B s j C s+.537+j18.19 ou can solve this in SciLab or on your calculator. In SciLab, for example, use A = ((s j4.453) G(s)) s.271 j4.453 : +complex conjugates Take a point close to this pole (not exactly on it since this will cause a divide by zero error): ->s = (2) i Evaluate G(s) -->G = 1./ (s.^6 +.1*s.^5 + 5*s.^4 + 4*s.^3 + 6*s.^2 + 3*s + 1); Multiply by (s j4.453) >A = G * (s - (2)) >abs(a) So >18/%pi*atan(imag(A),real(A)) JSG 9 rev April 15, 29

10 s j4.453 Take the inverse LaPlace transform: s j s+.537+j18.19 y(t)= (5.43e.2715t cos (4.453t ) e.1746t cos ( t ) e.537t cos (18.19t 89.7 ))u(t) +complex conjugates ecall from earlier lectures, the constant out front is twice the amplitude of each term (A, B, C). The angle for each term is minus the angle of A, B, and C. JSG 1 rev April 15, 29

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

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

Root Locus U R K. Root Locus: Find the roots of the closed-loop system for 0 < k < infinity

Root Locus U R K. Root Locus: Find the roots of the closed-loop system for 0 < k < infinity Background: Root Locus Routh Criteria tells you the range of gains that result in a stable system. It doesn't tell you how the system will behave, however. That's a problem. For example, for the following

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

Superposition (take 3)

Superposition (take 3) Superposition (take 3) Previously, we looked at how to analyze an AC to DC converter and a Buck converter. To solve these circuits, we changed the problem so that the input contained A DC signal, and An

More information

Control Systems I. Lecture 6: Poles and Zeros. Readings: Emilio Frazzoli. Institute for Dynamic Systems and Control D-MAVT ETH Zürich

Control Systems I. Lecture 6: Poles and Zeros. Readings: Emilio Frazzoli. Institute for Dynamic Systems and Control D-MAVT ETH Zürich Control Systems I Lecture 6: Poles and Zeros Readings: Emilio Frazzoli Institute for Dynamic Systems and Control D-MAVT ETH Zürich October 27, 2017 E. Frazzoli (ETH) Lecture 6: Control Systems I 27/10/2017

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

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.004 Dynamics and Control II Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 8 I * * Massachusetts

More information

ENGIN 211, Engineering Math. Laplace Transforms

ENGIN 211, Engineering Math. Laplace Transforms ENGIN 211, Engineering Math Laplace Transforms 1 Why Laplace Transform? Laplace transform converts a function in the time domain to its frequency domain. It is a powerful, systematic method in solving

More information

Chapter 6: The Laplace Transform. Chih-Wei Liu

Chapter 6: The Laplace Transform. Chih-Wei Liu Chapter 6: The Laplace Transform Chih-Wei Liu Outline Introduction The Laplace Transform The Unilateral Laplace Transform Properties of the Unilateral Laplace Transform Inversion of the Unilateral Laplace

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

Fourier Transform. Find the Fourier series for a periodic waveform Determine the output of a filter when the input is a periodic function

Fourier Transform. Find the Fourier series for a periodic waveform Determine the output of a filter when the input is a periodic function Objectives: Be able to Fourier Transform Find the Fourier series for a periodic waveform Determine the output of a filter when the input is a periodic function Filters with a Single Sinusoidal Input: Suppose

More information

INC 341 Feedback Control Systems: Lecture 2 Transfer Function of Dynamic Systems I Asst. Prof. Dr.-Ing. Sudchai Boonto

INC 341 Feedback Control Systems: Lecture 2 Transfer Function of Dynamic Systems I Asst. Prof. Dr.-Ing. Sudchai Boonto INC 341 Feedback Control Systems: Lecture 2 Transfer Function of Dynamic Systems I Asst. Prof. Dr.-Ing. Sudchai Boonto Department of Control Systems and Instrumentation Engineering King Mongkut s University

More information

Time Response Analysis (Part II)

Time Response Analysis (Part II) Time Response Analysis (Part II). A critically damped, continuous-time, second order system, when sampled, will have (in Z domain) (a) A simple pole (b) Double pole on real axis (c) Double pole on imaginary

More information

STABILITY ANALYSIS. Asystemmaybe stable, neutrallyormarginallystable, or unstable. This can be illustrated using cones: Stable Neutral Unstable

STABILITY ANALYSIS. Asystemmaybe stable, neutrallyormarginallystable, or unstable. This can be illustrated using cones: Stable Neutral Unstable ECE4510/5510: Feedback Control Systems. 5 1 STABILITY ANALYSIS 5.1: Bounded-input bounded-output (BIBO) stability Asystemmaybe stable, neutrallyormarginallystable, or unstable. This can be illustrated

More information

Time Response of Systems

Time Response of Systems Chapter 0 Time Response of Systems 0. Some Standard Time Responses Let us try to get some impulse time responses just by inspection: Poles F (s) f(t) s-plane Time response p =0 s p =0,p 2 =0 s 2 t p =

More information

CHEE 319 Tutorial 3 Solutions. 1. Using partial fraction expansions, find the causal function f whose Laplace transform. F (s) F (s) = C 1 s + C 2

CHEE 319 Tutorial 3 Solutions. 1. Using partial fraction expansions, find the causal function f whose Laplace transform. F (s) F (s) = C 1 s + C 2 CHEE 39 Tutorial 3 Solutions. Using partial fraction expansions, find the causal function f whose Laplace transform is given by: F (s) 0 f(t)e st dt (.) F (s) = s(s+) ; Solution: Note that the polynomial

More information

Advanced Analog Building Blocks. Prof. Dr. Peter Fischer, Dr. Wei Shen, Dr. Albert Comerma, Dr. Johannes Schemmel, etc

Advanced Analog Building Blocks. Prof. Dr. Peter Fischer, Dr. Wei Shen, Dr. Albert Comerma, Dr. Johannes Schemmel, etc Advanced Analog Building Blocks Prof. Dr. Peter Fischer, Dr. Wei Shen, Dr. Albert Comerma, Dr. Johannes Schemmel, etc 1 Topics 1. S domain and Laplace Transform Zeros and Poles 2. Basic and Advanced current

More information

Basic Procedures for Common Problems

Basic Procedures for Common Problems Basic Procedures for Common Problems ECHE 550, Fall 2002 Steady State Multivariable Modeling and Control 1 Determine what variables are available to manipulate (inputs, u) and what variables are available

More information

20.6. Transfer Functions. Introduction. Prerequisites. Learning Outcomes

20.6. Transfer Functions. Introduction. Prerequisites. Learning Outcomes Transfer Functions 2.6 Introduction In this Section we introduce the concept of a transfer function and then use this to obtain a Laplace transform model of a linear engineering system. (A linear engineering

More information

JUST THE MATHS UNIT NUMBER LAPLACE TRANSFORMS 3 (Differential equations) A.J.Hobson

JUST THE MATHS UNIT NUMBER LAPLACE TRANSFORMS 3 (Differential equations) A.J.Hobson JUST THE MATHS UNIT NUMBER 16.3 LAPLACE TRANSFORMS 3 (Differential equations) by A.J.Hobson 16.3.1 Examples of solving differential equations 16.3.2 The general solution of a differential equation 16.3.3

More information

Unit 2: Modeling in the Frequency Domain Part 2: The Laplace Transform. The Laplace Transform. The need for Laplace

Unit 2: Modeling in the Frequency Domain Part 2: The Laplace Transform. The Laplace Transform. The need for Laplace Unit : Modeling in the Frequency Domain Part : Engineering 81: Control Systems I Faculty of Engineering & Applied Science Memorial University of Newfoundland January 1, 010 1 Pair Table Unit, Part : Unit,

More information

Outline. Classical Control. Lecture 2

Outline. Classical Control. Lecture 2 Outline Outline Outline Review of Material from Lecture 2 New Stuff - Outline Review of Lecture System Performance Effect of Poles Review of Material from Lecture System Performance Effect of Poles 2 New

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

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

9.5 The Transfer Function

9.5 The Transfer Function Lecture Notes on Control Systems/D. Ghose/2012 0 9.5 The Transfer Function Consider the n-th order linear, time-invariant dynamical system. dy a 0 y + a 1 dt + a d 2 y 2 dt + + a d n y 2 n dt b du 0u +

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

Lecture 16 FREQUENCY RESPONSE OF SIMPLE CIRCUITS

Lecture 16 FREQUENCY RESPONSE OF SIMPLE CIRCUITS Lecture 6 FREQUENCY RESPONSE OF SIMPLE CIRCUITS Ray DeCarlo School of ECE Purdue University West Lafayette, IN 47907-285 decarlo@ecn.purdue.edu EE-202, Frequency Response p 2 R. A. DeCarlo I. WHAT IS FREQUENCY

More information

ECE 3793 Matlab Project 3 Solution

ECE 3793 Matlab Project 3 Solution ECE 3793 Matlab Project 3 Solution Spring 27 Dr. Havlicek. (a) In text problem 9.22(d), we are given X(s) = s + 2 s 2 + 7s + 2 4 < Re {s} < 3. The following Matlab statements determine the partial fraction

More information

Lecture 7: Laplace Transform and Its Applications Dr.-Ing. Sudchai Boonto

Lecture 7: Laplace Transform and Its Applications Dr.-Ing. Sudchai Boonto Dr-Ing Sudchai Boonto Department of Control System and Instrumentation Engineering King Mongkut s Unniversity of Technology Thonburi Thailand Outline Motivation The Laplace Transform The Laplace Transform

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

Using MATLB for stability analysis in Controls engineering Cyrus Hagigat Ph.D., PE College of Engineering University of Toledo, Toledo, Ohio

Using MATLB for stability analysis in Controls engineering Cyrus Hagigat Ph.D., PE College of Engineering University of Toledo, Toledo, Ohio Using MATLB for stability analysis in Controls engineering Cyrus Hagigat Ph.D., PE College of Engineering University of Toledo, Toledo, Ohio Abstract Analyses of control systems require solution of differential

More information

e st f (t) dt = e st tf(t) dt = L {t f(t)} s

e st f (t) dt = e st tf(t) dt = L {t f(t)} s Additional operational properties How to find the Laplace transform of a function f (t) that is multiplied by a monomial t n, the transform of a special type of integral, and the transform of a periodic

More information

EE102 Homework 2, 3, and 4 Solutions

EE102 Homework 2, 3, and 4 Solutions EE12 Prof. S. Boyd EE12 Homework 2, 3, and 4 Solutions 7. Some convolution systems. Consider a convolution system, y(t) = + u(t τ)h(τ) dτ, where h is a function called the kernel or impulse response of

More information

Chapter 3 : Linear Differential Eqn. Chapter 3 : Linear Differential Eqn.

Chapter 3 : Linear Differential Eqn. Chapter 3 : Linear Differential Eqn. 1.0 Introduction Linear differential equations is all about to find the total solution y(t), where : y(t) = homogeneous solution [ y h (t) ] + particular solution y p (t) General form of differential equation

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

6.003 Homework #10 Solutions

6.003 Homework #10 Solutions 6.3 Homework # Solutions Problems. DT Fourier Series Determine the Fourier Series coefficients for each of the following DT signals, which are periodic in N = 8. x [n] / n x [n] n x 3 [n] n x 4 [n] / n

More information

Module 4. Related web links and videos. 1. FT and ZT

Module 4. Related web links and videos. 1.  FT and ZT Module 4 Laplace transforms, ROC, rational systems, Z transform, properties of LT and ZT, rational functions, system properties from ROC, inverse transforms Related web links and videos Sl no Web link

More information

Frequency Response of Linear Time Invariant Systems

Frequency Response of Linear Time Invariant Systems ME 328, Spring 203, Prof. Rajamani, University of Minnesota Frequency Response of Linear Time Invariant Systems Complex Numbers: Recall that every complex number has a magnitude and a phase. Example: z

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

STABILITY. Have looked at modeling dynamic systems using differential equations. and used the Laplace transform to help find step and impulse

STABILITY. Have looked at modeling dynamic systems using differential equations. and used the Laplace transform to help find step and impulse SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 4. Dr David Corrigan 1. Electronic and Electrical Engineering Dept. corrigad@tcd.ie www.sigmedia.tv STABILITY Have looked at modeling dynamic systems using differential

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

The Laplace Transform

The Laplace Transform The Laplace Transform Generalizing the Fourier Transform The CTFT expresses a time-domain signal as a linear combination of complex sinusoids of the form e jωt. In the generalization of the CTFT to the

More information

One-Sided Laplace Transform and Differential Equations

One-Sided Laplace Transform and Differential Equations One-Sided Laplace Transform and Differential Equations As in the dcrete-time case, the one-sided transform allows us to take initial conditions into account. Preliminaries The one-sided Laplace transform

More information

Linear Systems Theory

Linear Systems Theory ME 3253 Linear Systems Theory Review Class Overview and Introduction 1. How to build dynamic system model for physical system? 2. How to analyze the dynamic system? -- Time domain -- Frequency domain (Laplace

More information

MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox

MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox Laplace Transform and the Symbolic Math Toolbox 1 MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox In this laboratory session we will learn how to 1. Use the Symbolic Math Toolbox 2.

More information

Math 307 Lecture 19. Laplace Transforms of Discontinuous Functions. W.R. Casper. Department of Mathematics University of Washington.

Math 307 Lecture 19. Laplace Transforms of Discontinuous Functions. W.R. Casper. Department of Mathematics University of Washington. Math 307 Lecture 19 Laplace Transforms of Discontinuous Functions W.R. Casper Department of Mathematics University of Washington November 26, 2014 Today! Last time: Step Functions This time: Laplace Transforms

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

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

MATH 2250 Final Exam Solutions

MATH 2250 Final Exam Solutions MATH 225 Final Exam Solutions Tuesday, April 29, 28, 6: 8:PM Write your name and ID number at the top of this page. Show all your work. You may refer to one double-sided sheet of notes during the exam

More information

EE Experiment 11 The Laplace Transform and Control System Characteristics

EE Experiment 11 The Laplace Transform and Control System Characteristics EE216:11 1 EE 216 - Experiment 11 The Laplace Transform and Control System Characteristics Objectives: To illustrate computer usage in determining inverse Laplace transforms. Also to determine useful signal

More information

Lecture Notes for Math 251: ODE and PDE. Lecture 22: 6.5 Dirac Delta and Laplace Transforms

Lecture Notes for Math 251: ODE and PDE. Lecture 22: 6.5 Dirac Delta and Laplace Transforms Lecture Notes for Math : ODE and PDE. Lecture : 6. Dirac Delta and Laplace Transforms Shawn D. Ryan Spring 0 Dirac Delta and the Laplace Transform Last Time: We studied differential equations with discontinuous

More information

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Dynamic Response

Raktim Bhattacharya. . AERO 422: Active Controls for Aerospace Vehicles. Dynamic Response .. AERO 422: Active Controls for Aerospace Vehicles Dynamic Response Raktim Bhattacharya Laboratory For Uncertainty Quantification Aerospace Engineering, Texas A&M University. . Previous Class...........

More information

E2.5 Signals & Linear Systems. Tutorial Sheet 1 Introduction to Signals & Systems (Lectures 1 & 2)

E2.5 Signals & Linear Systems. Tutorial Sheet 1 Introduction to Signals & Systems (Lectures 1 & 2) E.5 Signals & Linear Systems Tutorial Sheet 1 Introduction to Signals & Systems (Lectures 1 & ) 1. Sketch each of the following continuous-time signals, specify if the signal is periodic/non-periodic,

More information

The Laplace Transform

The Laplace Transform The Laplace Transform Syllabus ECE 316, Spring 2015 Final Grades Homework (6 problems per week): 25% Exams (midterm and final): 50% (25:25) Random Quiz: 25% Textbook M. Roberts, Signals and Systems, 2nd

More information

Taking the Laplace transform of the both sides and assuming that all initial conditions are zero,

Taking the Laplace transform of the both sides and assuming that all initial conditions are zero, The transfer function Let s begin with a general nth-order, linear, time-invariant differential equation, d n a n dt nc(t)... a d dt c(t) a 0c(t) d m = b m dt mr(t)... a d dt r(t) b 0r(t) () where c(t)

More information

EE Homework 12 - Solutions. 1. The transfer function of the system is given to be H(s) = s j j

EE Homework 12 - Solutions. 1. The transfer function of the system is given to be H(s) = s j j EE3054 - Homework 2 - Solutions. The transfer function of the system is given to be H(s) = s 2 +3s+3. Decomposing into partial fractions, H(s) = 0.5774j s +.5 0.866j + 0.5774j s +.5 + 0.866j. () (a) The

More information

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM. COURSE: ECE 3084A (Prof. Michaels)

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM. COURSE: ECE 3084A (Prof. Michaels) GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM DATE: 30-Apr-14 COURSE: ECE 3084A (Prof. Michaels) NAME: STUDENT #: LAST, FIRST Write your name on the front page

More information

12/20/2017. Lectures on Signals & systems Engineering. Designed and Presented by Dr. Ayman Elshenawy Elsefy

12/20/2017. Lectures on Signals & systems Engineering. Designed and Presented by Dr. Ayman Elshenawy Elsefy //7 ectures on Signals & systems Engineering Designed and Presented by Dr. Ayman Elshenawy Elsefy Dept. of Systems & Computer Eng. Al-Azhar University Email : eaymanelshenawy@yahoo.com aplace Transform

More information

ECE 314 Signals and Systems Fall 2012

ECE 314 Signals and Systems Fall 2012 ECE 31 ignals and ystems Fall 01 olutions to Homework 5 Problem.51 Determine the impulse response of the system described by y(n) = x(n) + ax(n k). Replace x by δ to obtain the impulse response: h(n) =

More information

Circuit Analysis Using Fourier and Laplace Transforms

Circuit Analysis Using Fourier and Laplace Transforms EE2015: Electrical Circuits and Networks Nagendra Krishnapura https://wwweeiitmacin/ nagendra/ Department of Electrical Engineering Indian Institute of Technology, Madras Chennai, 600036, India July-November

More information

Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho Tel: Fax:

Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho Tel: Fax: Control Systems Engineering (Chapter 2. Modeling in the Frequency Domain) Prof. Kwang-Chun Ho kwangho@hansung.ac.kr Tel: 02-760-4253 Fax:02-760-4435 Overview Review on Laplace transform Learn about transfer

More information

MATHEMATICAL MODELING OF CONTROL SYSTEMS

MATHEMATICAL MODELING OF CONTROL SYSTEMS 1 MATHEMATICAL MODELING OF CONTROL SYSTEMS Sep-14 Dr. Mohammed Morsy Outline Introduction Transfer function and impulse response function Laplace Transform Review Automatic control systems Signal Flow

More information

Introduction & Laplace Transforms Lectures 1 & 2

Introduction & Laplace Transforms Lectures 1 & 2 Introduction & Lectures 1 & 2, Professor Department of Electrical and Computer Engineering Colorado State University Fall 2016 Control System Definition of a Control System Group of components that collectively

More information

Poles and Zeros and Transfer Functions

Poles and Zeros and Transfer Functions Poles and Zeros and Transfer Functions Transfer Function: Considerations: Factorization: A transfer function is defined as the ratio of the Laplace transform of the output to the input with all initial

More information

10 Transfer Matrix Models

10 Transfer Matrix Models MIT EECS 6.241 (FALL 26) LECTURE NOTES BY A. MEGRETSKI 1 Transfer Matrix Models So far, transfer matrices were introduced for finite order state space LTI models, in which case they serve as an important

More information

Control Systems I. Lecture 7: Feedback and the Root Locus method. Readings: Jacopo Tani. Institute for Dynamic Systems and Control D-MAVT ETH Zürich

Control Systems I. Lecture 7: Feedback and the Root Locus method. Readings: Jacopo Tani. Institute for Dynamic Systems and Control D-MAVT ETH Zürich Control Systems I Lecture 7: Feedback and the Root Locus method Readings: Jacopo Tani Institute for Dynamic Systems and Control D-MAVT ETH Zürich November 2, 2018 J. Tani, E. Frazzoli (ETH) Lecture 7:

More information

ECE 3793 Matlab Project 3

ECE 3793 Matlab Project 3 ECE 3793 Matlab Project 3 Spring 2017 Dr. Havlicek DUE: 04/25/2017, 11:59 PM What to Turn In: Make one file that contains your solution for this assignment. It can be an MS WORD file or a PDF file. Make

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

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

LTI Systems (Continuous & Discrete) - Basics

LTI Systems (Continuous & Discrete) - Basics LTI Systems (Continuous & Discrete) - Basics 1. A system with an input x(t) and output y(t) is described by the relation: y(t) = t. x(t). This system is (a) linear and time-invariant (b) linear and time-varying

More information

Problem Set 3: Solution Due on Mon. 7 th Oct. in class. Fall 2013

Problem Set 3: Solution Due on Mon. 7 th Oct. in class. Fall 2013 EE 56: Digital Control Systems Problem Set 3: Solution Due on Mon 7 th Oct in class Fall 23 Problem For the causal LTI system described by the difference equation y k + 2 y k = x k, () (a) By first finding

More information

S&S S&S S&S. Signals and Systems (18-396) Spring Semester, Department of Electrical and Computer Engineering

S&S S&S S&S. Signals and Systems (18-396) Spring Semester, Department of Electrical and Computer Engineering S&S S&S S&S Signals Systems (-96) Spring Semester, 2009 Department of Electrical Computer Engineering SOLUTION OF DIFFERENTIAL AND DIFFERENCE EQUATIONS Note: These notes summarize the comments from the

More information

School of Engineering Faculty of Built Environment, Engineering, Technology & Design

School of Engineering Faculty of Built Environment, Engineering, Technology & Design Module Name and Code : ENG60803 Real Time Instrumentation Semester and Year : Semester 5/6, Year 3 Lecture Number/ Week : Lecture 3, Week 3 Learning Outcome (s) : LO5 Module Co-ordinator/Tutor : Dr. Phang

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

EE Homework 13 - Solutions

EE Homework 13 - Solutions EE3054 - Homework 3 - Solutions. (a) The Laplace transform of e t u(t) is s+. The pole of the Laplace transform is at which lies in the left half plane. Hence, the Fourier transform is simply the Laplace

More information

Transfer func+ons, block diagram algebra, and Bode plots. by Ania- Ariadna Bae+ca CDS Caltech 11/05/15

Transfer func+ons, block diagram algebra, and Bode plots. by Ania- Ariadna Bae+ca CDS Caltech 11/05/15 Transfer func+ons, block diagram algebra, and Bode plots by Ania- Ariadna Bae+ca CDS Caltech 11/05/15 Going back and forth between the +me and the frequency domain (1) Transfer func+ons exist only for

More information

Notes for ECE-320. Winter by R. Throne

Notes for ECE-320. Winter by R. Throne Notes for ECE-3 Winter 4-5 by R. Throne Contents Table of Laplace Transforms 5 Laplace Transform Review 6. Poles and Zeros.................................... 6. Proper and Strictly Proper Transfer Functions...................

More information

27. The pole diagram and the Laplace transform

27. The pole diagram and the Laplace transform 124 27. The pole diagram and the Laplace transform When working with the Laplace transform, it is best to think of the variable s in F (s) as ranging over the complex numbers. In the first section below

More information

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang

CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION. Professor Dae Ryook Yang CHBE320 LECTURE V LAPLACE TRANSFORM AND TRANSFER FUNCTION Professor Dae Ryook Yang Spring 2018 Dept. of Chemical and Biological Engineering 5-1 Road Map of the Lecture V Laplace Transform and Transfer

More information

Laplace Transform Part 1: Introduction (I&N Chap 13)

Laplace Transform Part 1: Introduction (I&N Chap 13) Laplace Transform Part 1: Introduction (I&N Chap 13) Definition of the L.T. L.T. of Singularity Functions L.T. Pairs Properties of the L.T. Inverse L.T. Convolution IVT(initial value theorem) & FVT (final

More information

/ \ ( )-----/\/\/\/ \ / In Lecture 3 we offered this as an example of a first order LTI system.

/ \ ( )-----/\/\/\/ \ / In Lecture 3 we offered this as an example of a first order LTI system. 18.03 Class 17, March 12, 2010 Linearity and time invariance [1] RLC [2] Superposition III [3] Time invariance [4] Review of solution methods [1] We've spent a lot of time with mx" + bx' + cx = q(t). There

More information

Recursive, Infinite Impulse Response (IIR) Digital Filters:

Recursive, Infinite Impulse Response (IIR) Digital Filters: Recursive, Infinite Impulse Response (IIR) Digital Filters: Filters defined by Laplace Domain transfer functions (analog devices) can be easily converted to Z domain transfer functions (digital, sampled

More information

Process Control & Instrumentation (CH 3040)

Process Control & Instrumentation (CH 3040) First-order systems Process Control & Instrumentation (CH 3040) Arun K. Tangirala Department of Chemical Engineering, IIT Madras January - April 010 Lectures: Mon, Tue, Wed, Fri Extra class: Thu A first-order

More information

CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION

CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION Objectives Students should be able to: Draw the bode plots for first order and second order system. Determine the stability through the bode plots.

More information

ECE 3620: Laplace Transforms: Chapter 3:

ECE 3620: Laplace Transforms: Chapter 3: ECE 3620: Laplace Transforms: Chapter 3: 3.1-3.4 Prof. K. Chandra ECE, UMASS Lowell September 21, 2016 1 Analysis of LTI Systems in the Frequency Domain Thus far we have understood the relationship between

More information

we get y 2 5y = x + e x + C: From the initial condition y(0) = 1, we get 1 5 = 0+1+C; so that C = 5. Completing the square to solve y 2 5y = x + e x 5

we get y 2 5y = x + e x + C: From the initial condition y(0) = 1, we get 1 5 = 0+1+C; so that C = 5. Completing the square to solve y 2 5y = x + e x 5 Math 24 Final Exam Solution 17 December 1999 1. Find the general solution to the differential equation ty 0 +2y = sin t. Solution: Rewriting the equation in the form (for t 6= 0),we find that y 0 + 2 t

More information

( 1) EE 313 Linear Signals & Systems (Fall 2018) Solution Set for Homework #10 on Laplace Transforms

( 1) EE 313 Linear Signals & Systems (Fall 2018) Solution Set for Homework #10 on Laplace Transforms EE 33 Linear Signal & Sytem (Fall 08) Solution Set for Homework #0 on Laplace Tranform By: Mr. Houhang Salimian & Prof. Brian L. Evan Problem. a) xt () = ut () ut ( ) From lecture Lut { ()} = and { } t

More information

Lecture 8 ELE 301: Signals and Systems

Lecture 8 ELE 301: Signals and Systems Lecture 8 ELE 30: Signals and Systems Prof. Paul Cuff Princeton University Fall 20-2 Cuff (Lecture 7) ELE 30: Signals and Systems Fall 20-2 / 37 Properties of the Fourier Transform Properties of the Fourier

More information

LABORATORY INSTRUCTION MANUAL CONTROL SYSTEM I LAB EE 593

LABORATORY INSTRUCTION MANUAL CONTROL SYSTEM I LAB EE 593 LABORATORY INSTRUCTION MANUAL CONTROL SYSTEM I LAB EE 593 ELECTRICAL ENGINEERING DEPARTMENT JIS COLLEGE OF ENGINEERING (AN AUTONOMOUS INSTITUTE) KALYANI, NADIA CONTROL SYSTEM I LAB. MANUAL EE 593 EXPERIMENT

More information

Math 308 Exam II Practice Problems

Math 308 Exam II Practice Problems Math 38 Exam II Practice Problems This review should not be used as your sole source for preparation for the exam. You should also re-work all examples given in lecture and all suggested homework problems..

More information

Math 266 Midterm Exam 2

Math 266 Midterm Exam 2 Math 266 Midterm Exam 2 March 2st 26 Name: Ground Rules. Calculator is NOT allowed. 2. Show your work for every problem unless otherwise stated (partial credits are available). 3. You may use one 4-by-6

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

Section 6.5 Impulse Functions

Section 6.5 Impulse Functions Section 6.5 Impulse Functions Key terms/ideas: Unit impulse function (technically a generalized function or distribution ) Dirac delta function Laplace transform of the Dirac delta function IVPs with forcing

More information

Definition of the Laplace transform. 0 x(t)e st dt

Definition of the Laplace transform. 0 x(t)e st dt Definition of the Laplace transform Bilateral Laplace Transform: X(s) = x(t)e st dt Unilateral (or one-sided) Laplace Transform: X(s) = 0 x(t)e st dt ECE352 1 Definition of the Laplace transform (cont.)

More information

Meeting Design Specs using Root Locus

Meeting Design Specs using Root Locus Meeting Design Specs using Root Locus So far, we have Lead compensators which cancel a pole and move it left, speeding up the root locus. PID compensators which add a zero at s=0 and add zero, one, or

More information

Series RC and RL Time Domain Solutions

Series RC and RL Time Domain Solutions ECE2205: Circuits and Systems I 6 1 Series RC and RL Time Domain Solutions In the last chapter, we saw that capacitors and inductors had element relations that are differential equations: i c (t) = C d

More information

20.3. Further Laplace Transforms. Introduction. Prerequisites. Learning Outcomes

20.3. Further Laplace Transforms. Introduction. Prerequisites. Learning Outcomes Further Laplace Transforms 2.3 Introduction In this Section we introduce the second shift theorem which simplifies the determination of Laplace and inverse Laplace transforms in some complicated cases.

More information

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM. COURSE: ECE 3084A (Prof. Michaels)

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM. COURSE: ECE 3084A (Prof. Michaels) GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM DATE: 09-Dec-13 COURSE: ECE 3084A (Prof. Michaels) NAME: STUDENT #: LAST, FIRST Write your name on the front page

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