Background Knowledge Expected

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

Chapter 4 Modelling and Analysis for Process Control
4. System Response This module is concern with the response of LTI system. L.T. is used to investigate the response of first and second order systems.
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.
The Laplace Transform in Circuit Analysis
數位控制(三).
Lecture 14: Laplace Transform Properties
Chapter 3 1 Laplace Transforms 1. Standard notation in dynamics and control (shorthand notation) 2. Converts mathematics to algebraic operations 3. Advantageous.
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.
CHAPTER III LAPLACE TRANSFORM
Autumn 2008 EEE8013 Revision lecture 1 Ordinary Differential Equations.
Transfer Functions Chapter 4
SE 207: Modeling and Simulation Introduction to Laplace Transform
MESB 374 System Modeling and Analysis Inverse Laplace Transform and I/O Model.
Lecture #9 Control Engineering REVIEW SLIDES Reference: Textbook by Phillips and Habor.
Signal and Systems Prof. H. Sameti Chapter 9: Laplace Transform  Motivatio n and Definition of the (Bilateral) Laplace Transform  Examples of Laplace.
Chapter 3 mathematical Modeling of Dynamic Systems
Chapter 2 Modeling of Control Systems NUAA-Control System Engineering.
CHAPTER 4 Laplace Transform.
Laplace Transforms 1. Standard notation in dynamics and control (shorthand notation) 2. Converts mathematics to algebraic operations 3. Advantageous for.
Prepared by Mrs. Azduwin Binti Khasri
CHAPTER 4 Laplace Transform.
Chapter 6 The Laplace Transform and the Transfer Function Representation.
Mathematical Models and Block Diagrams of Systems Regulation And Control Engineering.
10. Laplace TransforM Technique
Prof. Wahied Gharieb Ali Abdelaal CSE 502: Control Systems (1) Topic# 3 Representation and Sensitivity Analysis Faculty of Engineering Computer and Systems.
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.
Lecture 5: Transfer Functions and Block Diagrams
Chapter 3 Dynamic Response The Block Diagram Block diagram is a graphical tool to visualize the model of a system and evaluate the mathematical relationships.
ES97H Biomedical Signal Processing
Using Partial Fraction Expansion
Chapter 7 The Laplace Transform
Lecture 4: The z-Transform 1. The z-transform The z-transform is used in sampled data systems just as the Laplace transform is used in continuous-time.
Dr. Tamer Samy Gaafar Lec. 2 Transfer Functions & Block Diagrams.
Inverse Laplace Transform. Laplace Transform of derivatives.
ELECTRIC CIRCUITS EIGHTH EDITION
ELECTRIC CIRCUITS EIGHTH EDITION JAMES W. NILSSON & SUSAN A. RIEDEL.
Properties of the z-Transform
Mathematical Models of Control Systems
Transfer Functions Convenient representation of a linear, dynamic model. A transfer function (TF) relates one input and one output: The following terminology.
H(s) 8.b Laplace Transform:
Lesson 12: Transfer Functions In The Laplace Domain
MESB374 System Modeling and Analysis Transfer Function Analysis
Laplace Transforms Chapter 3 Standard notation in dynamics and control
CHAPTER III LAPLACE TRANSFORM
© Dr. Elmer P. Dadios - DLSU Fellow & Professor
Chapter 6 Laplace Transform
Chapter 4 Transfer Function and Block Diagram Operations
Transfer Functions Chapter 4
Automatic Control Theory CSE 322
LECTURE 33: DIFFERENCE EQUATIONS
ME375 Handouts - Fall 2002 MESB374 Chapter8 System Modeling and Analysis Time domain Analysis Transfer Function Analysis.
Fundamentals of Electric Circuits Chapter 16
Block Diagrams A line is a signal A block is a gain A circle is a sum
UNIT II Analysis of Continuous Time signal
Final value theorem Conditions: f(t) is finite and converges
Signal and Systems Chapter 9: Laplace Transform
G1 and G2 are transfer functions and independent of the
State Space Method.
System models Time domain models
CHAPTER-6 Z-TRANSFORM.
دکتر حسين بلندي- دکتر سید مجید اسما عیل زاده
Example 1: Find the magnitude and phase angle of
Chapter 2. Mathematical Foundation
. Modeling OBJECTIVE Revision on Laplace transform
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.
Presentation transcript:

Background Knowledge Expected Elementary functions Complex numbers Common test input signals: impulse, step, ramp, acceleration, sinusoidal, exponential Differential equations Laplace transform Forward transform and its properties Inverse transform and partial fraction expansion Initial value theorem and final value theorem Use of Laplace xform to solve diff eq Matlab

System models Time domain models High order ordinary differential equation model Contains only input variables, output variables, their derivatives, and constant parameters Proper: highest output derivative order is greatest Highest order derivative of output = system order

System models Time domain models State space model: state equation + output equation State equation: a set of 1st order diff eq on state variables Output equation: output as function of state and input Linear systems:

ODE model to State space model

Transfer Function

State space model to TF A, B, C, D are matrices

Input Output System Y(s) = H(s)X(s) x(t) Output y(t) H(s) Y(s) = H(s)X(s) If the input x(t)=δ (t), the output is called the impulse response. If the input x(t)=u(t), the output is called the step response. If the input x(t)=Asin(wt), and H(s) is stable, output steady state is A|H(jw)|sin(wt+H(jw)) Poles: values of s at which TF  infinity Zeros: values of s at which TF = 0

Block Diagrams A line is a signal A block is a gain A circle is a sum Due to h.f. noise, use proper blocks: num deg ≤ den deg Try to use just horizontal or vertical lines Use additional “ ” to help e.g. x y G y = Gx + x s Σ + - s = x + z - y y z Σ + x s + + z - y

Block Diagram Algebra Series: Parallel: x y x y G1 G2 G1 G2  G1 + x y

Feedback: Proof: + e x x y G1 y  - b G2

+ G1 + G2 + -

>> s=tf('s') Transfer function: s >> G1=(s+1)/(s+2) s + 1 ----- s + 2 >> G2=5/(s+5) 5 s + 5 >> G=G1*G2 Transfer function: 5 s + 5 -------------- s^2 + 7 s + 10 >> H=G1+G2 s^2 + 11 s + 15 --------------- >> HF=feedback(G1, G2) s^2 + 6 s + 5 s^2 + 12 s + 15

>> delay1=tf(1,1,'inputdelay',0.05) Transfer function: exp(-0.05*s) * 1 >> H2=HF*delay1 s^2 + 6 s + 5 exp(-0.05*s) * --------------- s^2 + 12 s + 15 >> stepresp=H2*1/s exp(-0.05*s) * ------------------- s^3 + 12 s^2 + 15 s >> step(H2)

Quarter car suspension Series R(s) + y - R(s) + y Feedback - R(s) y

>> b=sym('b'); >> m=sym('m'); >> k=sym('k'); >> s=sym('s'); >> G1=b*s+k G1 = b*s+k >> G2=1/m*1/s*1/s G2 = 1/m/s^2 >> G=G1*G2 G = (b*s+k)/m/s^2 >> Gcl=G/(1+G) Gcl = (b*s+k)/m/s^2/(1+(b*s+k)/m/s^2) >> simplify(Gcl) ans = (b*s+k)/(m*s^2+b*s+k)

Move a block (G1) across a into all touching lines: pick-up point summation Move a block (G1) across a into all touching lines: If arrow direction changes, invert If arrow direction remains, no change in block e.g. along arrow no change along arrow x y x y G1 G2 G1 G2 no change z G3 G1 along arrow along arrow z G3

x G1 G2 x G1 G2 y y  z G3 z G3 1/G2 x G1 G2 x G1 G3 1/G3 G2 y y  z G3 z

I2 I1 - Vc U + y + - I2 - Vc U + y + - - U + y + -

- U + y - U + y U y

No pure series/parallel/feedback Needs to move a block, but which one? Find TF from U to Y: + U + + Y + - - No pure series/parallel/feedback Needs to move a block, but which one? Key: move one block to create pure series or parallel or feedback! So move either left or right.

+ U + + Y + - - + U + + Y + - - + U + Y + -

fig_03_18b

fig_03_19 Can use superposition: First set D=0, find Y due to R Then set R=0, find Y due to D Finally, add the two component to get the overall Y

fig_03_20 First set D=0, find Y due to R

Then set R=0, find Y due to D fig_03_21 G2

fig_03_19 Finally, add the two component to get the overall Y