summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.22/ch1_ex_22.sce
diff options
context:
space:
mode:
Diffstat (limited to '1445/CH1/EX1.22/ch1_ex_22.sce')
-rw-r--r--1445/CH1/EX1.22/ch1_ex_22.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/1445/CH1/EX1.22/ch1_ex_22.sce b/1445/CH1/EX1.22/ch1_ex_22.sce
new file mode 100644
index 000000000..1b11450df
--- /dev/null
+++ b/1445/CH1/EX1.22/ch1_ex_22.sce
@@ -0,0 +1,28 @@
+//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
+//Example 22
+
+disp("CHAPTER 1");
+disp("EXAMPLE 22");
+
+//VARIABLE INITIALIZATION
+I1=20; //current source in Amperes
+v1=10; //voltage source in Volts
+v2=40; //voltage source in Volts
+r1=8; //in Ohms
+r2=5; //in Ohms
+r3=4; //in Ohms
+r4=12; //in Ohms
+
+//SOLUTION
+//(17)I2+(-4)I3=110.......eq (1)
+//(-1)I2+(4)I3=10.........eq (2)
+//solving the equations by matrix mehod
+A=[17 -4;-1 4];
+b=[110;10];
+x=inv(A)*b;
+I2=x(1,:); //to access the 1st element of 2X1 matrix
+I3=x(2,:); //to access the 2nd element of 2X1 matrix
+I=I3;
+disp(sprintf("By Mesh analysis, the value of I is %f A",I));
+
+//END