State Space Models The state space model represents a physical system as n first order differential equations. This form is better suited for computer.

Slides:



Advertisements
Similar presentations
Ch 7.6: Complex Eigenvalues
Advertisements

Root Locus Diagrams Professor Walter W. Olson
STATE SPACE MODELS MATLAB Tutorial.
Lect.3 Modeling in The Time Domain Basil Hamed
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.
ECE 8443 – Pattern Recognition ECE 3163 – Signals and Systems Objectives: Review Resources: Wiki: State Variables YMZ: State Variable Technique Wiki: Controllability.
CIS 540 Principles of Embedded Computation Spring Instructor: Rajeev Alur
Linear Transformations
CSE245: Computer-Aided Circuit Simulation and Verification Lecture Note 3 Model Order Reduction (1) Spring 2008 Prof. Chung-Kuan Cheng.
Ch 7.8: Repeated Eigenvalues
CSE245: Computer-Aided Circuit Simulation and Verification Lecture Notes 3 Model Order Reduction (1) Spring 2008 Prof. Chung-Kuan Cheng.
ME 746 Spring Dynamic Models Differential Equations in State-Variable Form.
example: four masses on springs
UCSD CSE 245 Notes – SPRING 2006 CSE245: Computer-Aided Circuit Simulation and Verification Lecture Notes 3 Model Order Reduction (1) Spring 2006 Prof.
Dynamical Systems Analysis II: Evaluating Stability, Eigenvalues By Peter Woolf University of Michigan Michigan Chemical Process Dynamics.
6 1 Linear Transformations. 6 2 Hopfield Network Questions.
ECE53A Introduction to Analog and Digital Circuits Lecture Notes Second-Order Analog Circuit and System.
Fundamentals of Electric Circuits Chapter 8
Modeling in the Time Domain - State-Space
5 5.1 © 2012 Pearson Education, Inc. Eigenvalues and Eigenvectors EIGENVECTORS AND EIGENVALUES.
Digital Control Systems
System State and Differential Equations Linear Systems and Signals Lecture 3 Spring 2008.
Chapter 5 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Out response, Poles, and Zeros
Differential Equations
Fundamentals of Electric Circuits Chapter 8
Autumn 2008 EEE8013 Revision lecture 1 Ordinary Differential Equations.
Sinusoidal Steady-state Analysis Complex number reviews Phasors and ordinary differential equations Complete response and sinusoidal steady-state response.
ES250: Electrical Science
Time-Domain Representations of LTI Systems
Signals and Systems 1 Lecture 8 Dr. Ali. A. Jalali September 6, 2002.
Lecture 15 Review: Energy storage and dynamic systems Basic time-varying signals Capacitors Related educational modules: –Section 2.2.
Interarea Oscillations Starrett Mini-Lecture #5. Interarea Oscillations - Linear or Nonlinear? l Mostly studied as a linear phenomenon l More evidence.
Motivation Thus far we have dealt primarily with the input/output characteristics of linear systems. State variable, or state space, representations describe.
Chapter 4 Dynamic Systems: Higher Order Processes Prof. Shi-Shang Jang National Tsing-Hua University Chemical Engineering Dept. Hsin Chu, Taiwan April,
What is the determinant of What is the determinant of
Net work analysis Dr. Sumrit Hungsasutra Text : Basic Circuit Theory, Charles A. Desoer & Kuh, McGrawHill.
Eigenvalues The eigenvalue problem is to determine the nontrivial solutions of the equation Ax= x where A is an n-by-n matrix, x is a length n column.
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.
Boyce/DiPrima 9 th ed, Ch 7.6: Complex Eigenvalues Elementary Differential Equations and Boundary Value Problems, 9 th edition, by William E. Boyce and.
1 Time-Domain Representations of LTI Systems CHAPTER 2.11 Characteristics of Systems Described by Differential and Difference Equations and Difference.
, Free vibration Eigenvalue equation EIGENVALUE EQUATION
Review. Feedback Terminology In Block diagrams, we use not the time domain variables, but their Laplace Transforms. Always denote Transforms by (s)!
Discretization of Continuous-Time State Space Models
Dr. Tamer Samy Gaafar Lec. 2 Transfer Functions & Block Diagrams.
A sinusoidal current source (independent or dependent) produces a current That varies sinusoidally with time.
Lecture - 7 First order circuits. Outline First order circuits. The Natural Response of an RL Circuit. The Natural Response of an RC Circuit. The Step.
Intelligent Robot Lab Pusan National University Intelligent Robot Lab Chapter 7. Forced Response Errors Pusan National University Intelligent Robot Laboratory.
ECE 576 – Power System Dynamics and Stability
CSE 245: Computer Aided Circuit Simulation and Verification Instructor: Prof. Chung-Kuan Cheng Winter 2003 Lecture 2: Closed Form Solutions (Linear System)
Intelligent Robot Lab Pusan National University Intelligent Robot Lab Chapter 6. TRANSIENT RESPONSE -- STABILITY Pusan National University Intelligent.
Time Domain Analysis of Linear Systems Ch2
Modeling and Simulation Dr. Mohammad Kilani
State Space Representation
Automatic Control Theory CSE 322
Lecture 15 Review: Capacitors Related educational materials:
Autonomous Cyber-Physical Systems: Dynamical Systems
Digital Control Systems (DCS)
State Space Analysis UNIT-V.
8. Stability, controllability and observability
Homework 1: Electrical System
Equivalent State Equations
Chapter 8 Second Order Circuits
§1—2 State-Variable Description The concept of state
Chapter 4. Time Response I may not have gone where I intended to go, but I think I have ended up where I needed to be. Pusan National University Intelligent.
Transfer Function and Stability of LTI Systems
Eigenvalues and Eigenvectors
Chapter 3 Modeling in the Time Domain
Chapter 6. STABILITY Good relationships nurture you. They help you find yourself and who you are. I don’t mean just relationships with boys or men. Relationships.
Presentation transcript:

State Space Models The state space model represents a physical system as n first order differential equations. This form is better suited for computer simulation than an nth order input- output differential equation.

RLC serial network – second order system Select two state variables, State Space Model

RLC serial network – second order system Derivation of first state Equation,

State Space Model RLC serial network – second order system Derivation of second state Equation,

State equation in Matrix form, State Space Model

RLC serial network – second order system Output Equation,

State Space Model RLC serial network – second order system Output Equation in Matrix form,

State Space Models

Create state-space model - MATLAB >> a = [ ; ]; >> b = [1 -1;0 2]; >> c = [ ]; >> sys = ss(a,b,c,0); sys = ss(a,b,c,d) creates a state-space model object representing the continuous-time state-space model

Impulse response plot of dynamic system >> impulse(sys) impulse calculates the unit impulse response of a dynamic system model. impulse(sys) plots the impulse response of the dynamic system model sys. For state-space models, impulse assumes initial state values are zero. Plot the impulse response of the second-order state- space model

Left plot → impulse response of the first input channel Right plot → impulse response of the second input channel. Store the impulse response data in MATLAB arrays by >> [y,t] = impulse(sys) Impulse response plot of dynamic system

Step response plot of dynamic system step calculates the step response of a dynamic system. For the state space case, zero initial state is assumed. step(sys) plots the step response of an arbitrary dynamic system model sys. >> step(sys)

Step response plot of dynamic system Left plot → impulse response of the first input channel Right plot → impulse response of the second input channel.

Stability and Eigenvalues What do eigenvalues of system matrix tell us about stability? Eigenvalues tell us the exponential part of the solution of the differential equation system Three possible values for an eigenvalue 1) Positive value: system will increase exponentially 2) Negative value: system will decay exponentially 3) Imaginary value: system will oscillate If real component of at least one eigenvalue is positive, then the system is unstable

Stability and Eigenvalues EigenvalueEffect on system when disturbed Positive realDriven away from steady-state value Negative realDriven back to stead-state value 0Remains at position to which it was disturbed Complex, positive real Oscillates around steady-state value with increasing amplitude Complex, negative real Oscilate around steady-state value with decreasing amplitude ImaginaryOscillates around ss value with constant amplitude

Eigenvalue - MATLAB Stability? E = eig(X) is a vector containing the eigenvalues of a square matrix X [V,D] = eig(X) produces a diagonal matrix D of eigenvalues and matrix V whose columns are corresponding eigenvectors

Problem An RLC network is shown in figure. Define the state variable as :- X 1 = i 1, X 2 = i 2, X 3 = V c Let voltage across capacitor, V c is the output from the network. Input of the system is V a and V b Determine the state space representation of the RLC network in matrix form?

18 solution State variables and their derivatives

19 solution The derivatives equations for energy storage elements

20 solution For loop (1) ; For loop (2) ;

21 solution For current i C ; Substituting equation (4), (5) and (6) into equation (1), (2) and (3) yields

22 solution Substituting equation (4), (5) and (6) into equation (1), (2) and (3) yields

23 solution Substituting equation (4), (5) and (6) into equation (1), (2) and (3) yields

24 solution Rewrite equation (7), (8) and (9) in state space representation matrix form