summaryrefslogtreecommitdiff
path: root/Working_Examples/154/CH9/EX9.8
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/154/CH9/EX9.8')
-rwxr-xr-xWorking_Examples/154/CH9/EX9.8/ch9_8.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/Working_Examples/154/CH9/EX9.8/ch9_8.sce b/Working_Examples/154/CH9/EX9.8/ch9_8.sce
new file mode 100755
index 0000000..d9c67e9
--- /dev/null
+++ b/Working_Examples/154/CH9/EX9.8/ch9_8.sce
@@ -0,0 +1,18 @@
+clc
+disp("Example 9.8")
+printf("\n")
+
+s=%s ;
+
+//From figure 9.13
+disp("Z(s)=(2.5+((5*s/3)*(20/s))/(5*s/3+20/s))")
+//On solving
+z1=poly([12 8 1],'s','coeff')
+z2=poly([12 0 1],'s','coeff')
+Z=2.5*(z1/z2)
+disp(Z,"Z(s)")
+//H(s)=I(s)/Z(s)
+//Let I(s)=1 the H(s)=1/Z(s)
+H=(1/2.5)*(z2/z1)
+disp(H,"H(s)")
+