summaryrefslogtreecommitdiff
path: root/3760/CH9/EX9.7/ExB_7.sce
blob: be6d3d08de9a67f5d997b344b6c29ce68ebd8aa2 (plain)
1
2
3
4
5
6
7
8
clc;
w1=2000; // reading of wattmeter 1 under no load
w2=-400; // reading of wattmeter 2 under no load, since the connections are reversed that is why negative sign
theta=atand((sqrt(3)*(w1-w2))/(w1+w2));
pl=w1+w2;
pf=cosd(theta);
printf('No load losses are %f W\n',pl);
printf('No load power factor is %f lagging',pf);