summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.29
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1445/CH1/EX1.29
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1445/CH1/EX1.29')
-rw-r--r--1445/CH1/EX1.29/Ex1_29.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1445/CH1/EX1.29/Ex1_29.sce b/1445/CH1/EX1.29/Ex1_29.sce
new file mode 100644
index 000000000..319e202f9
--- /dev/null
+++ b/1445/CH1/EX1.29/Ex1_29.sce
@@ -0,0 +1,25 @@
+//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
+//Example 29
+
+disp("CHAPTER 1");
+disp("EXAMPLE 29");
+
+//VARIABLE INITIALIZATION
+I=5; //current source in Amperes
+v=100; //voltage source in Volts
+r1=20; //in Ohms
+r2=10; //in Ohms
+r3=20; //in Ohms
+
+//SOLUTION
+
+//activating current source
+I1=(I*r1)/(r1+r2); //by current divider law
+
+//activating voltage source
+I2=-(v/(r1+r2));
+
+I_tot=I1+I2;
+disp(sprintf("By Superposition Theorem, the value of I is %d A",I_tot));
+
+//END