blob: 4bfac067744ca4612ec39844f4d7d298143b6171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)
|