diff options
Diffstat (limited to '1340/CH7/EX7.2/7_2.sce')
-rwxr-xr-x | 1340/CH7/EX7.2/7_2.sce | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/1340/CH7/EX7.2/7_2.sce b/1340/CH7/EX7.2/7_2.sce deleted file mode 100755 index 1a8421b8d..000000000 --- a/1340/CH7/EX7.2/7_2.sce +++ /dev/null @@ -1,14 +0,0 @@ -clc;
-s = %s;
-G = syslin('c',120*(s+2)/((s+3)*(s+4)));disp(G,"G(s)=");
-syms t s;
-R = laplace(5,t,s);
-E = R/(1+G);
-sse = limit(s*E,s,0);disp(sse,"Steady state error for step input:");
-R = laplace(5*t,t,s);
-E = R/(1+G);
-sse = limit(s*E,s,0);disp(sse,"Steady state error for ramp input:");
-R = laplace(5*t^2,t,s);
-E = R/(1+G);
-sse = limit(s*E,s,0);disp(sse,"Steady state error for parabola input:");
-printf("for TYPE-0 systems steady state error for ramp and parabola inputs is Infinity")
|