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 /2240/CH10/EX9.1 | |
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 '2240/CH10/EX9.1')
-rwxr-xr-x | 2240/CH10/EX9.1/EX9_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2240/CH10/EX9.1/EX9_1.sce b/2240/CH10/EX9.1/EX9_1.sce new file mode 100755 index 000000000..e0dbd1cca --- /dev/null +++ b/2240/CH10/EX9.1/EX9_1.sce @@ -0,0 +1,18 @@ +// Grob's Basic Electronics 11e
+// Chapter No. 09
+// Example No. 9_1
+clc; clear;
+// Apply Kirchhoff’s current law to solve for the unknown current, I3.
+
+// Given data
+
+I1 = 2.5; // Branch 1 Current=2.5 Amps
+I2 = 8; // Branch 2 Current=8 Amps
+I4 = 6; // Branch 3 Current=6 Amps
+I5 = 9; // Branch 4 Current=9 Amps
+
+// I1+I2+I3-I4-I5 = 0 Sum of all currents at node is ZERO
+// I1+I2+I3 = I4+I5 Total Incomming Current = Total Outgoing Current
+
+I3 = I4+I5-I1-I2;
+disp (I3,'The Branch 3 Current I3 in Amps')
|