summaryrefslogtreecommitdiff
path: root/620/CH10/EX10.8.b/example10_8b.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /620/CH10/EX10.8.b/example10_8b.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '620/CH10/EX10.8.b/example10_8b.sce')
-rw-r--r--620/CH10/EX10.8.b/example10_8b.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/620/CH10/EX10.8.b/example10_8b.sce b/620/CH10/EX10.8.b/example10_8b.sce
new file mode 100644
index 000000000..a9c2c13db
--- /dev/null
+++ b/620/CH10/EX10.8.b/example10_8b.sce
@@ -0,0 +1,14 @@
+v1=10;
+v2=20;
+r1=10^3;
+r2=2*10^3;
+r3=3*10^3;
+r4=4*10^3;
+r5=5*10^3;
+v=v1*r2/(r1+r2);
+r=r3+r1*r2/(r1+r2);
+v5=(v2-v)*r5/(r5+r);
+vth=v2-v5;
+rth=r*r5/(r+r5);
+i=vth/(rth+r4);
+disp("the current (in mA) in R4 is"); disp(i*10^3); \ No newline at end of file