Lab 3 control engineering
Lab 3 control engineering
(Lab)
Lab # 3
Some Basic Concepts
Linearly independent
Let , , and are chosen as state variables, but =5+4 ,then is not linearly
independent of and , since knowledge of the values of and will yield the
value of . Variables and their successive derivatives are linearly
independent.
Properties of a Linear System:
Superposition:
It means that the output response of a system to the sum of inputs is the
sum of the responses to the individual inputs.
Homogeneity:
It means, multiplication of an input by a scalar yields a response that is
multiplied by the same scalar.
Conversion of TF to SS
There is no direct State Space solution in
MATLAB so we need to convert transfer function
to State Space.
Transfer Function:
Num=[24]
Den=[1 9 26 24]
Code:
‘TF to SS Conversion’
[A,B,C,D]=tf2ss(Num,Den)
Conversion of SS to TF
Code:
[Num,Den]=ss2tf(A,B,C,D)
E= tf(Num,Den)