summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.29/ch1_ex_29.sce
diff options
context:
space:
mode:
Diffstat (limited to '1445/CH1/EX1.29/ch1_ex_29.sce')
-rw-r--r--1445/CH1/EX1.29/ch1_ex_29.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1445/CH1/EX1.29/ch1_ex_29.sce b/1445/CH1/EX1.29/ch1_ex_29.sce
new file mode 100644
index 000000000..319e202f9
--- /dev/null
+++ b/1445/CH1/EX1.29/ch1_ex_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