








Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
this is for control systems which is useful for electrical engineering student
Typology: Lecture notes
1 / 14
This page cannot be seen from the preview
Don't miss anything!









1
Transfer Function Model Using Zeros, Poles and Gain
(ZPK model)
This transfer function can be stored into the
Zeros=-3;
Poles= [-1 -2];
sys=zpk(Zeros,Poles,K)
To check your entry you can use the command
printsys as shown below:
printsys(num,den);
1 2
1
We can find poles with the help of following
MATLAB command.
poles = roots(den)
We can find Zeros with the help of following
MATLAB command
zeros = roots(num)
4 10
3 5
2
2
s s
s s
G ( s )
Series Blocks
**2
num1 = [1 0];
den1 = [9 17];
num2 = 9*[1 3];
den2 = [2 9 27];
[num12, den12] = series (num1,den1,num2,den2);
printsys(num12,den12);
num1 = [1 0];
den1 = [9 17];
num2 = 9*[1 3];
den2 = [2 9 27];
num12 =conv(num1,num2);
den12 = conv(,den1,den2);
printsys(num12,den12);
Contd… Series Blocks
**2
Closed-Loop Transfer Function (Unity Feedback)
num = 9;
den = [1 5];
[numcl, dencl] = cloop(num, den,-1);
printsys(numcl,dencl)
using cloop command.
Closed-loop transfer function
um1 = 1;
en1 = [1 1];
um2 = 2;
en2 = [1 0];
umcl,dencl] = feedback(num1,den1,num2,den2,-1);
intsys(numcl,dencl)
simplify the canonical form.
( )
( )
3
7 1
s s
s 10
2 1
1
( s )
2 1
1
( s )