0% found this document useful (0 votes)
17 views2 pages

Exp-11 State Model

The document describes an experiment to determine the state space model of two given transfer functions. It provides the objective, software used, numerical values of the transfer functions, syntax, commands, results and precautions for the experiment.

Uploaded by

Swaroop Mallick
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views2 pages

Exp-11 State Model

The document describes an experiment to determine the state space model of two given transfer functions. It provides the objective, software used, numerical values of the transfer functions, syntax, commands, results and precautions for the experiment.

Uploaded by

Swaroop Mallick
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

UIT, ALLAHABAD DEPARTMENT OF ELECTRICAL ENGINEERING

EXPERIMENT NO-11

STATE SPACE MODEL OF A TRANSFER FUNCTION

1.1 Objective 1.2 Software Used 1.3 Numerical 1.4 Syntax 1.5 Command 1.6 Result 1.7 Precautions

1.1 OBJECTIVE: Determination of state space model of a given transfer functions.

1.2 SOFTWARE USED:

S.NO. SOFTWARE USED SPECIFICATION


1. MATLAB 7.9.0(R2009b)
2. MICROSOFT OFFICE WORD 2007

1.3 NUMERICAL:
Y (s ) 2 s 2 +5 s +2
= 2
(i) U (s ) s + s+1
Y (s ) 24 s 2 +96 s+72
= 4
(ii) U (s ) s +19 s + 98 s +176 s+288
3 2

1.4 SYNTAX:

sys = tf(num,den)
[A,B,C,D] =tf2ss(num,den)

1.5 COMMAND:

>> num1 = [2 5 2];


>> den1 = [1 1 1];
>> sys = tf(num1,den1)
>> [A, B, C, D]=tf2ss(num1,den1)
>> num2 = [24 96 72];
>> den2 = [1 19 98 176 288];
>> sys = tf(num2,den2)
>> [A, B, C, D] = tf2ss(num2,den2)

1.6 RESULTS:

(i)
Transfer function :
2 s^2 + 5 s + 2
---------------
s^2 + s + 1

Exp-11(NEE-353) Page 23
UIT, ALLAHABAD DEPARTMENT OF ELECTRICAL ENGINEERING

[−1 −1
A= 1 0 ] B=
[]
1
0 C = [3 0] D = [ 2]

(ii) Transfer function:


24 s^2 + 96 s + 72
-----------------------------------
s^4 + 19 s^3 + 98 s^2 + 176 s + 288

[ ]
−19 −98 −176 −288
1 0 0 0
0 1 0 0
A=
0 0 1 0

[]
1
0
0
B=
0

C = [0 24 96 72 ]

D = [ 0]

1.7 PRECAUTION:

 Command should be written correctly.


 Appropriate syntax should be used.

Exp-11(NEE-353) Page 24

You might also like