Question
solve it simply by using Matlab first find cloosed loop transfer function second find zeros, poles and gain
Y(s) 0 U(s) 2 4 0.2
0 0
Add a comment Improve this question Transcribed image text
Answer #1

clear
clc
close all

s = tf('s');

%definig each block's TF
G1 = 4*(1+0*s); %approximating 4
G2 = 2/((s+1)*(s+8));
G3 = 1/s;
G4 = 0.2*(1+0*s); %approximating 0.2

%definig inputs and outputs for each block
G1.InputName = 'r'; G1.OutputName = 'eg1';
G2.InputName = 'e'; G2.OutputName = 'ym';
G3.InputName = 'ym';G3.OutputName = 'y';
G4.InputName = 'ym';G4.OutputName = 'eg4';

%summing points
sum1 = sumblk('r','u','y'); % r = u + y
sum2 = sumblk('e','eg1','eg4','+-'); % e = eg1 - eg4

%connecting the blocks to relate input u with output y
closedLoopTF = connect(G1,G2,G4,G3,sum1,sum2,'u','y');
  
%obtaining zeros z, poles p and gain k
[z,p,k] = zpkdata(closedLoopTF,'v')
  
  
  

Empty matrix: 0-by-l -7.7898 -1.7854 0.5752

COMMENT DOWN FOR ANY QUERY RELATED TO THIS ANSWER,

IF YOU'RE SATISFIED, GIVE A THUMBS UP
~yc~

Add a comment
Know the answer?
Add Answer to:
solve it simply by using Matlab first find cloosed loop transfer function second find zeros, poles and gain Y(s) 0 U(s) 2 4 0.2 Y(s) 0 U(s) 2 4 0.2
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT