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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//CHAPTER 3- THREE-PHASE A.C. CIRCUITS
//Example 11
clc;
disp("CHAPTER 3");
disp("EXAMPLE 11");
//SOLUTION
function power_sum=p1(phi);
power_sum=20*cos(phi); //power_sum=p1+p2=20*cos(phi) and in KiloWatts
endfunction;
function power_diff=p2(phi);
power_diff=(20*sin(phi))/sqrt(3); //power_diff=p1-p2=(20*sin(phi))/sqrt(3) and in KiloWatts
endfunction;
//solution (a): when phi=0
power_sum=20*cos(0); //eq(i)
power_diff=(20*sin(0))/sqrt(3); //eq(ii)
//solving eq(i) and eq(ii) to get values of p1 and p2
A=[1 1;1 -1];
b=[power_sum;power_diff];
x=inv(A)*b;
x1=x(1,:); //to access the 1st row of 2X1 matrix
x2=x(2,:); //to access the 2nd row of 2X1 matrix
disp("Solution (a)");
disp(sprintf("P1 + P2 = %d kW",power_sum));
disp(sprintf("P1 - P2 = %d kW",power_diff));
disp(sprintf("The two wattmeter readings are %d kW and %d kW",x1,x2));
//solution (b): when phi=30 or %pi/6 (lagging)
power_sum=20*cos(%pi/6);
power_diff=(20*sin(%pi/6))/sqrt(3);
A=[1 1;1 -1];
b=[power_sum;power_diff];
x=inv(A)*b;
x1=x(1,:);
x2=x(2,:);
disp("Solution (b)");
disp(sprintf("P1 + P2 = %f kW",power_sum));
disp(sprintf("P1 - P2 = %f kW",power_diff));
disp(sprintf("The two wattmeter readings are %f kW and %f kW",x1,x2));
//solution (c): when phi=60 or %pi/3
power_sum=20*cos(%pi/3);
power_diff=(20*sin(-(%pi/3)))/sqrt(3); //leading
A=[1 1;1 -1];
b=[power_sum;power_diff];
x=inv(A)*b;
x1=x(1,:);
x2=x(2,:);
disp("Solution (c)");
disp(sprintf("P1 + P2 = %f kW",power_sum));
disp(sprintf("P1 - P2 = %f kW",power_diff));
disp(sprintf("The two wattmeter readings are %f kW and %f kW",x1,x2));
//solution (d): when phi=90 or %pi/2
power_sum=20*cos(%pi/2);
power_diff=(20*sin(%pi/2))/sqrt(3); //leading
A=[1 1;1 -1];
b=[power_sum;power_diff];
x=inv(A)*b;
x1=x(1,:);
x2=x(2,:);
disp("Solution (d)");
disp(sprintf("P1 + P2 = %f kW",power_sum));
disp(sprintf("P1 - P2 = %f kW",power_diff));
disp(sprintf("The two wattmeter readings are %f kW and %f kW",x1,x2));
//END
|