blob: ea0af2ee5dd23676ca8bd6532af44c4d1c720cb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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 = ")
|