Week 15 state space rep may 25 2016 final

44
State Space Analysis Week 15 1 Professor Charlton S. Inao Control System Engineering,PE - 3032 Defence Engineering College Bishoftu, Ethiopia

Transcript of Week 15 state space rep may 25 2016 final

State Space Analysis

Week 15

1

Professor Charlton S. InaoControl System Engineering,PE -3032

Defence Engineering College Bishoftu, Ethiopia

Instructional Objectives

2

State Space Analysis Approach

3

State Space Equation

4

General State Space Representation

5

6

7

State Space Model for Dynamic System

DuCxyBuAxx

Matrices: A is state matrix; B is input matrix; C is output matrix; and D is direct transmission matrix

Vectors: x is state vector; u is input vector; and y is output vector

Note: Only apply to system that is linear and time invariant 8

Terminology/Nomenclature

9

10

11

12

State Space Block Diagram

13

Sample Illustration: Mass Damper Spring/Translational Mechanical System(Review)

14

15

Vector Matrix Form/State Space Model Standard Form

16

17

18

Block Diagram

19

20

Standard Vector Matrix Form

21

22

23

24

25

Correlation Between Transfer Function and State Space

26

Converting Transfer Function to State Space

27

28

29

30

31

32

33

34(b)

35

36

Practice problem

37

Matlab Functions

38

Using Matlab

Function: Use ss function creates state space models. For example:

01030

2510

2

1

DCBAxxx

>>A = [0 1;-5 -2];>>B = [0;3];>>C = [0 1];>>D = [0];>>sys=ss(A,B,C,D)

a = x1 x2 x1 0 1 x2 -5 -2

Matlab Outputb = u1 x1 0 x2 3

c = x1 x2 y1 0 1

d = u1 y1 0

39

40

41

42

43

44