summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.41
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH1/EX1.41
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 '1445/CH1/EX1.41')
-rw-r--r--1445/CH1/EX1.41/ch1_ex_41.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/1445/CH1/EX1.41/ch1_ex_41.sce b/1445/CH1/EX1.41/ch1_ex_41.sce
new file mode 100644
index 000000000..441c9075e
--- /dev/null
+++ b/1445/CH1/EX1.41/ch1_ex_41.sce
@@ -0,0 +1,30 @@
+//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
+//Example 41
+
+disp("CHAPTER 1");
+disp("EXAMPLE 41");
+
+//VARIABLE INITIALIZATION
+vs=6; //in Volts
+Is=4; //in Amperes
+r1=5; //in Ohms
+r2=2; //in Ohms
+r3=2; //in Ohms
+r=2/3; //in Ohms
+r4=3; //in Ohms
+r5=1; //in Ohms
+r6=2; //in Ohms
+
+//SOLUTION
+req1=(r2*r3)/(r2+r3);
+req2=req1+r1; //resistance across vs
+va=vs/req2;
+rth1=(req1*r1)/(req1+r1);
+I1=Is*(r2/req2); //current in 3Ω
+vb=I1*r4;
+rth2=(r4*r4)/(r4+r4); //since r4 is also 3Ω
+I=(vb-va)/(rth1+r+rth2);
+disp(sprintf("The value of the current is %d A",I));
+
+//END
+