diff options
Diffstat (limited to '257/CH5/EX5.10/example_5_10.sce')
-rw-r--r-- | 257/CH5/EX5.10/example_5_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/257/CH5/EX5.10/example_5_10.sce b/257/CH5/EX5.10/example_5_10.sce new file mode 100644 index 000000000..ea0af2ee5 --- /dev/null +++ b/257/CH5/EX5.10/example_5_10.sce @@ -0,0 +1,12 @@ +syms H G1 G2 G3
+
+//separating the two paths we get 1+1=2 in parallel combinations
+
+//shifting take off point after 2*G3 and then after 2*G2*G3
+
+a=(2*G2*G3)/(1+(2*G2*G3*H/(2*G3)))
+b=a/(1+(H*a))
+c=G1*b
+Y=c/(1+(c*(1/(2*G2*G3))))
+
+disp(Y,"C/R = ")
|