aa248 Chapter 5 / Transient and Steady-State Response AnalysesSolution.The closed-loop transfer function isMATLAB Program 5–24 produces the unit-acceleration response. The resulting response, together
with the unit-acceleration input, is shown in Figure 5–63.C(s)
R(s)=
2
s^2 +s+ 2MATLAB Program 5–24
num = [2];
den = [1 1 2];
t = 0:0.2:10;
r = 0.5*t.^2;
y = lsim(num,den,r,t);
plot(t,r,'-',t,y,'o',t,y,'-')
grid
title('Unit-Acceleration Response')
xlabel('t Sec')
ylabel('Input and Output')
text(2.1,27.5,'Unit-Acceleration Input')
text(7.2,7.5,'Output')
Unit-Acceleration Responset Sec012345678910Input and Output50010
515202530354045Unit-Acceleration InputOuputFigure 5–63
Response to unit-
acceleration input.A–5–15. Consider the system defined byC(s)
R(s)=
1
s^2 + 2 zs+ 1Openmirrors.com