summaryrefslogtreecommitdiff
path: root/147/CH1/EX1.27/Example1_27.sce
diff options
context:
space:
mode:
Diffstat (limited to '147/CH1/EX1.27/Example1_27.sce')
-rw-r--r--147/CH1/EX1.27/Example1_27.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/147/CH1/EX1.27/Example1_27.sce b/147/CH1/EX1.27/Example1_27.sce
new file mode 100644
index 000000000..1619bf590
--- /dev/null
+++ b/147/CH1/EX1.27/Example1_27.sce
@@ -0,0 +1,16 @@
+close();
+clear;
+clc;
+R = 2; //ohm
+//Applying KVL in two loops
+//25 - 15*I1 - 10 + 3*I2 - 3*I1 = 0
+//20 - 3*I2 + 3*I1 - 2*I2 = 0
+//Solving the two equations
+A =[18 -3;-3 5];
+C = [15;20];
+B = inv(A)*C;
+I1 = B(1,1);
+I2 = B(2,1);
+//voltage across R
+Vab = R*I2; //V
+mprintf("Current through 2 ohm resistor, I2 = %d A\nVoltage across 2 ohm resistor, Vab = %d V",I2,Vab); \ No newline at end of file