blob: cd4b7de768860f303f28a4678a3ea1bc52053ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//example-3.16 pg no-186
W1=5920;
W2=2610;
P=8530;
tanQ=(1.732*(W2-W1))/(W1+W2);
cosQ=0.83;
P.F=cosQ;
disp('i) tanQ = '+string (tanQ)+' ');
disp('ii) POWER FACTOR = '+string (P.F)+' ');
|