summaryrefslogtreecommitdiff
path: root/1319/CH2/EX2.15
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH2/EX2.15
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 '1319/CH2/EX2.15')
-rw-r--r--1319/CH2/EX2.15/2_15.sce38
1 files changed, 38 insertions, 0 deletions
diff --git a/1319/CH2/EX2.15/2_15.sce b/1319/CH2/EX2.15/2_15.sce
new file mode 100644
index 000000000..b21544e2a
--- /dev/null
+++ b/1319/CH2/EX2.15/2_15.sce
@@ -0,0 +1,38 @@
+// To find current across 2ohm resistor using nortons theorem
+
+clc;
+clear;
+
+Zl=2; // Resistor Across AB
+
+// Voltage Sources
+V1=20;
+V2=10;
+
+//Resistances in order as seen from 20 V side exculding the resistance between A and B
+R1=2;
+R2=2;
+R3=2;
+R4=4;
+R5=4;
+
+Reff=R4*R5/(R4+R5); // Effective resistance of R4 and R5 (Parallel)
+Rt1=Reff+R3; // Effective Resistance on right side of AB
+Rt2=R1+R2; // Effective Resistance on left side of AB
+Zth=Rt1*Rt2/(Rt1+Rt2);
+
+// Using superpostion theorem
+Iab1=V1/(R1+R2); // Current supplied to AB from 20V source
+I1=V2/(R4+(R3*R5/(R3+R5)));// Current supplied from 10V source to the network
+Iab2=I1*(R5/(R3+R5)); // Current supplied to AB from 10V Source
+
+Iab=Iab1+Iab2; // Current Source
+
+I=Iab*(Zth/(Zth+Zl));
+
+printf('The current through branch AB flowing in the 2 ohm resistor = %g A\n',I)
+
+
+
+
+