diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /671/CH2/EX2.29 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '671/CH2/EX2.29')
-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 |