Set a requirement for step response, like settling time, overshoot and static error of output

倖福魔咒の 提交于 2019-12-13 04:45:27

问题


I'm trying to find the step response of the system below in picture and I need to find settling time, overshoot and static error of output. How can I find them? Is what I programmed correct?

Matlab code :

A=[0,1,0,0;0,-42.44,212.24,0;0,0,0,1;0,0,0,-42.44];
B=[0;106.12;0;78.6];
C=[1,0,0,0;0,1,0,0;0,0,1,0;0,0,0,1];
D=0;
sys = ss(A, B, C, D)
t=0:0.1:10;
figure;
step(sys,t,'r')

The system

来源:https://stackoverflow.com/questions/56327093/set-a-requirement-for-step-response-like-settling-time-overshoot-and-static-er

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!