summaryrefslogtreecommitdiff
path: root/257/CH6/EX6.8
diff options
context:
space:
mode:
Diffstat (limited to '257/CH6/EX6.8')
-rw-r--r--257/CH6/EX6.8/example6_8.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/257/CH6/EX6.8/example6_8.sce b/257/CH6/EX6.8/example6_8.sce
new file mode 100644
index 000000000..8e44a943c
--- /dev/null
+++ b/257/CH6/EX6.8/example6_8.sce
@@ -0,0 +1,16 @@
+syms G1 G2 G3 G4 G5 G6 G7 G8;
+
+T1=G1*G8*G7*G5*G6;
+T2=G1*G2*G3*G4*G8;
+
+L1=-G6*H5;
+L2=-G3*H3;
+
+delta=1-(L1+L2)+(L1*L2)
+del1=1-L2;
+del2=1-L1;
+
+TF=(T1*del1 + T2*del2)/delta ;
+disp(TF,"C/R = ")
+
+