summaryrefslogtreecommitdiff
path: root/3793/CH12/EX12.3/exp_12_3.sce
blob: 72f0e1563d9a1f2f548dae376ebc7f7b542a06aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clear;
clc;
Pr=.24;
Vr=.55;
del=asind(Pr/Vr);
a=gca();
a.auto_scale="off";
a.data_bounds=[0,0.3;1.5,1];
xlabel("Voltage");
ylabel(" ReactivePower");
V=[0:.01:5];
Q=((V)^2)+(V*cosd(del));
plot(V,Q);
q=.38;
v=.95;
Qr=((220^2)*q)/60;
Vrr=v*220;
mprintf("Critical power = %.3f MVAR and Critical voltage = %.3f KV",Qr,Vrr);