summaryrefslogtreecommitdiff
path: root/257/CH6/EX6.18/example6_18.sce
diff options
context:
space:
mode:
Diffstat (limited to '257/CH6/EX6.18/example6_18.sce')
-rw-r--r--257/CH6/EX6.18/example6_18.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/257/CH6/EX6.18/example6_18.sce b/257/CH6/EX6.18/example6_18.sce
new file mode 100644
index 000000000..df442e946
--- /dev/null
+++ b/257/CH6/EX6.18/example6_18.sce
@@ -0,0 +1,17 @@
+syms G1 G2 G3 H1 H2;
+
+T1=G1*G2;
+T2=G3*G2;
+
+L1=-G1*H2*G2;
+L2=-G3*H2*G2;
+L3=-G2*H1;
+
+delta=1-(L1+L2+L3)
+del1=1;
+del2=1;
+
+TF=(T1*del1 + T2*del2)/delta ;
+disp(TF,"C/R = ")
+
+