summaryrefslogtreecommitdiff
path: root/3556/CH3/EX3.2
diff options
context:
space:
mode:
Diffstat (limited to '3556/CH3/EX3.2')
-rw-r--r--3556/CH3/EX3.2/Ex3_2.sce37
1 files changed, 37 insertions, 0 deletions
diff --git a/3556/CH3/EX3.2/Ex3_2.sce b/3556/CH3/EX3.2/Ex3_2.sce
new file mode 100644
index 000000000..4bfac0677
--- /dev/null
+++ b/3556/CH3/EX3.2/Ex3_2.sce
@@ -0,0 +1,37 @@
+clc
+// Fundamental of Electric Circuit
+// Charles K. Alexander and Matthew N.O Sadiku
+// Mc Graw Hill of New York
+// 5th Edition
+
+// Part 1 : DC Circuits
+// Chapter 3: Methods of Analysis
+// Example 3 - 2
+
+clear; clc; close;
+//
+// Given data
+A = [3.00 -2.00 -1.00;
+ -4.00 7.00 -1.00;
+ 2.00 -3.00 1.00];
+A1 = [12.00 -2.00 -1.00;
+ 0.00 7.00 -1.00;
+ 0.00 -3.00 1.00];
+A2 = [3.00 12.00 -1.00;
+ -4.00 0.00 -1.00;
+ 2.00 0.00 1.00];
+A3 = [3.00 -2.00 12.00;
+ -4.00 7.00 0.00;
+ 2.00 -3.00 0.00];
+//
+// Calculations
+// Calculations V1, V2 and V3
+V1 = det(A1)/det(A);
+V2 = det(A2)/det(A);
+V3 = det(A3)/det(A);
+//
+// Display the result
+disp("Example 3-2 Solution : ");
+printf(" \n V1 = Voltage at Node 1 = %.3f Volt",V1)
+printf(" \n V2 = Voltage at Node 2 = %.3f Volt",V2)
+printf(" \n V3 = Voltage at Node 3 = %.3f Volt",V3)