summaryrefslogtreecommitdiff
path: root/1340/CH7/EX7.3/7_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1340/CH7/EX7.3/7_3.sce')
-rwxr-xr-x1340/CH7/EX7.3/7_3.sce14
1 files changed, 0 insertions, 14 deletions
diff --git a/1340/CH7/EX7.3/7_3.sce b/1340/CH7/EX7.3/7_3.sce
deleted file mode 100755
index b4293222e..000000000
--- a/1340/CH7/EX7.3/7_3.sce
+++ /dev/null
@@ -1,14 +0,0 @@
-clc;
-s = %s;
-G = syslin('c',100*((s+2)*(s+6))/(s*(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-1 systems steady state error for parabola inputs is Infinity")