diff options
Diffstat (limited to '671/CH2/EX2.29/2_29.sce')
-rwxr-xr-x | 671/CH2/EX2.29/2_29.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/671/CH2/EX2.29/2_29.sce b/671/CH2/EX2.29/2_29.sce new file mode 100755 index 000000000..723a5725c --- /dev/null +++ b/671/CH2/EX2.29/2_29.sce @@ -0,0 +1,16 @@ +function p=parallel(r1,r2)
+ p=r1*r2/(r1+r2)
+endfunction
+
+//as seen from ab
+Vth1=30*60/(30+60)
+Rth1=parallel(30,60)
+
+//as seen from cd
+Vth2=80*40/(40+60)
+Rth2=parallel(40,60)
+
+Vnet=60+Vth1-Vth2
+Rnet=Rth1+Rth2
+
+disp(Rnet,Vnet)
\ No newline at end of file |