Inverse Laplace Transform. Laplace Transform of derivatives.

Slides:



Advertisements
Similar presentations
H(s) x(t)y(t) 8.b Laplace Transform: Y(s)=X(s) H(s) The Laplace transform can be used in the solution of ordinary linear differential equations. Let’s.
Advertisements

Leo Lam © Signals and Systems EE235. Today’s menu Leo Lam © Laplace Transform.
Leo Lam © Signals and Systems EE235. Leo Lam © Futile Q: What did the monserous voltage source say to the chunk of wire? A: "YOUR.
Leo Lam © Signals and Systems EE235. Today’s menu Leo Lam © Almost done! Laplace Transform.
Lecture 141 EEE 302 Electrical Networks II Dr. Keith E. Holbert Summer 2001.
Chapter 7 Laplace Transforms. Applications of Laplace Transform notes Easier than solving differential equations –Used to describe system behavior –We.
Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first.
Laplace Transforms 1. Standard notation in dynamics and control (shorthand notation) 2. Converts mathematics to algebraic operations 3. Advantageous for.
Lecture 14: Laplace Transform Properties
Bogazici University Dept. Of ME. Laplace Transforms Very useful in the analysis and design of LTI systems. Operations of differentiation and integration.
Professor Walter W. Olson Department of Mechanical, Industrial and Manufacturing Engineering University of Toledo Loop Transfer Function Real Imaginary.
Leo Lam © Signals and Systems EE235 Lecture 31.
5.7 Impulse Functions In some applications, it is necessary to deal with phenomena of an impulsive nature—for example, voltages or forces of large magnitude.
THE LAPLACE TRANSFORM LEARNING GOALS Definition The transform maps a function of time into a function of a complex variable Two important singularity functions.
SE 207: Modeling and Simulation Introduction to Laplace Transform
MESB 374 System Modeling and Analysis Inverse Laplace Transform and I/O Model.
Signal and Systems Prof. H. Sameti Chapter 9: Laplace Transform  Motivatio n and Definition of the (Bilateral) Laplace Transform  Examples of Laplace.
Ch. 9 Application to Control. 9.1 Introduction to Control Consider a causal linear time-invariant system with input x(t) and output y(t). Y(s) = Gp(s)X(s)
Chapter 2 Modeling of Control Systems NUAA-Control System Engineering.
Laplace Transforms 1. Standard notation in dynamics and control (shorthand notation) 2. Converts mathematics to algebraic operations 3. Advantageous for.
Introduction to Laplace Transforms. Definition of the Laplace Transform  Some functions may not have Laplace transforms but we do not use them in circuit.
CHAPTER 4 Laplace Transform.
(e.g., deviation variables!)
Laplace Transforms 1. Standard notation in dynamics and control (shorthand notation) 2. Converts mathematics to algebraic operations 3. Advantageous for.
Rational Transforms Consider the problem of finding the inverse Laplace transform for: where {ai} and {bi} are real numbers, and M and N are positive.
CHAPTER 4 Laplace Transform.
Signal and Systems Prof. H. Sameti Chapter 9: Laplace Transform  Motivatio n and Definition of the (Bilateral) Laplace Transform  Examples of Laplace.
Background Review Elementary functions Complex numbers
Mathematical Models and Block Diagrams of Systems Regulation And Control Engineering.
10. Laplace TransforM Technique
THE LAPLACE TRANSFORM LEARNING GOALS Definition
ME375 Handouts - Fall 2002 MESB 374 System Modeling and Analysis Laplace Transform and Its Applications.
MESB374 Chapter8 System Modeling and Analysis Time domain Analysis Transfer Function Analysis.
Using Partial Fraction Expansion
Signal and System I Analysis and characterization of the LTI system using the Laplace transform Causal ROC associate with a causal system is a right-half.
Lecture 12: First-Order Systems
Chapter 7 The Laplace Transform
Meiling chensignals & systems1 Lecture #06 Laplace Transform.
Lecture 2: The Laplace Transform Laplace transform definition Laplace transform properties Relation between time and Laplace domains Initial and Final.
DYNAMIC BEHAVIOR OF PROCESSES :
University of Warwick: AMR Summer School 4 th -6 th July, 2016 Structural Identifiability Analysis Dr Mike Chappell, School of Engineering, University.
EE4262: Digital and Non-Linear Control
H(s) 8.b Laplace Transform:
Lecture 25 Outline: LTI Systems: Causality, Stability, Feedback
Laplace Transforms Chapter 3 Standard notation in dynamics and control
© Dr. Elmer P. Dadios - DLSU Fellow & Professor
Translation Theorems and Derivatives of a Transform
Chap2. Modeling in the Frequency Domain
자동제어 3강: 라플라스 역변환 강의실 : 산107 담당교수 : 고경철(기계공학부) 사무실 : 산학협력관 105B
Background Knowledge Expected
Transfer Functions.
Lecture 3: Solving Diff Eqs with the Laplace Transform
Laplace Transform Properties
Final value theorem Conditions: f(t) is finite and converges
Signal and Systems Chapter 9: Laplace Transform
Research Methods in Acoustics Lecture 9: Laplace Transform and z-Transform Jonas Braasch.
Signals and Systems EE235 Lecture 31 Leo Lam ©
System models Time domain models
Example 1: Find the magnitude and phase angle of
9.0 Laplace Transform 9.1 General Principles of Laplace Transform
8. Solution of Linear Differential Equations: f(t): Input,
Signals and Systems EE235 Lecture 31 Leo Lam ©
Chapter 2. Mathematical Foundation
8. Solution of Linear Differential Equations: f(t): Input,
8. Solution of Linear Differential Equations: f(t): Input,
CHAPTER 4 Laplace Transform. EMT Signal Analysis.
Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first.
Laplace Transforms Important analytical method for solving linear ordinary differential equations. - Application to nonlinear ODEs? Must linearize first.
Loop Transfer Function
Presentation transcript:

Inverse Laplace Transform

Laplace Transform of derivatives

Laplace Transform applications y”+9y=0, y(0)=0, y’(0)=2 L(y”)=s 2 Y(s)-sy(0)-y’(0)= s 2 Y(s)-2 L(y)=Y(s) (s 2 +9)Y(s)=2 Y(s)=2/ (s 2 +9) y(t)=(2/3) sin 3t

Matlab s=sym('s'); (F=2/(s^2+9) F = 2/(s^2+9) >> f=ilaplace(F) f = 2/9*9^(1/2)*sin(9^(1/2)*t) >> simplify(f) ans = 2/3*sin(3*t)

Laplace Transform y”+2y’+5y=0, y(0)=2, y’(0)=-4 L(y”)=s 2 Y(s)-sy(0)-y’(0)= s 2 Y(s)-2s+4 L(y’)=sY(s)-y(0)=sY(s)-2 L(y)=Y(s) (s 2 +2s+5)Y(s)=2s Y(s)=2s/ (s 2 +2s+5)=2(s+1)/[(s+1) ]- 2/[(s+1) ] y(t)= e -t (2cos 2t –sin 2t)

Matlab >> F=2*s/(s^2+2*s+5) F = 2*s/(s^2+2*s+5) >> f=ilaplace(F) f = 2*exp(-t)*cos(2*t)-exp(-t)*sin(2*t)

ODE to State space

Y”+2 y’+ y=0, y(0)= 1, y’(0)= -2 >> A=[0 1;-1 -2]; B=[0;1]; C=[1 0]; D=0; >> x0=[1;-2]; >> t=sym('t'); >> y=C*expm(A*t)*x0 y = exp(-t)-t*exp(-t) Y”+2 y’+ y=f(t)=u(t), y(0)= 2, y’(0)= 3 >>s=sym('s'); Fs = 1/s; Gs = 1/(s^2+2*s+1) >>x0=[2;3]; >> y=C*expm(A*t)*x0 + ilaplace(Gs*Fs) y = 2*exp(-t)+5*t*exp(-t)+1-exp(-t)*(t+1)

Partial Fraction

Partial fraction; repeated factor

But No FUN

Partial fraction; exercise

>> [r p k]=residue(n,d) r = 1 2 p = 1 0 k = [] >> d=[1 -1 0] d = >> n=[3 -2] n = /(s-1) + 2/s Matlab

>> n=[1 9 -9] n = >> d=[ ] d = >> [r p k]=residue(n,d) r = p = k = [] 1.5/(s-3)- 1.5/(s+3)+1/s Matlab

>> n=[11 -14] n = >> d=[ ] d = >> [r p k]=residue(n,d) r = p = k = [] 2/(s-2)- 3/(s+2)+1/(s-1) Matlab

>> b=[1 2 1] b = >> a=[1 0] a = 1 0 >> [r p k]=residue(a,b) r = 1 p = k = [] 1/(s+1)- 1/(s+1) 2 Matlab

>> Y=(s^4-7*s^3+13*s^2+4*s-12)/s^2/(s-3)/(s^2-3*s+2) Transfer function: s^4 - 7 s^ s^2 + 4 s s^5 - 6 s^ s^3 - 6 s^2 >> [n,d]=tfdata(Y,'v') n = d = >> [r,p,k]=residue(n,d) r = p = k = [ ]

Initial value theorem Conditions: f(t) is continuous except finite jump at t=0 or F(s) is proper: num deg <= den deg

Final value theorem Conditions: f(t) is finite and converges or every pole of sF(s) has real part < 0

Examples

>> s=sym('s') s = s >> F=(s+1)/(s+2)/(s+3) F = (s+1)/(s+2)/(s+3) >> f=ilaplace(F) f = -exp(-2*t)+2*exp(-3*t) f(0)=1, f(inf)=0

Examples

Transfer Function

Example

A, B, C, D are matrices

Input Output System Input Output System: –If the input x(t) is unit impulse, x(t)=δ (t), the output is called the impulse response. – If the input x(t) is unit step, x(t)=u(t), the output is called the step response. Input  (t),u(t) Output y(t) System

X(s) H(s) Y(s)

Frequency Response Frequency Response: Given T.F. H(s) H(s)

Example Works only if H(s) is stable

Poles and zeros Poles: values of s at which TF  infinity –Most time, poles = roots of denominator –When there are common factors in numerator and denominator, cancel them first Zeros: values of s at which TF = 0 –Finite zeros: roots of numerator –Number of zeros at infinity: n-m, n= den deg and m = num deg Totally n poles and n zeros n is called the order of the system n – m the relative order

Example Order: n = 4 = den deg m= num deg = 1 Relative order = n-m = 3 4 poles at: 0, 0, -4, -6 One finite zero at -1 3 zeros at infinity

Stability System is BIBO stable if any bounded input generates bounded output Simple criteria: –After common factor cancellation –All poles have strictly negative real parts

Example G1 is not BIBO stable G2 and G3 are

Example

example

>> s=sym('s'); >> Y=1/(s^2+3*s+2)/s*exp(-2*s) Y = 1/(s^2+3*s+2)/s*exp(-2*s) >> ilaplace(Y) ans = 1/2*heaviside(t-2)*(1+exp(-2*t+4)-2*exp(2-t))

2.7

2.8c