summaryrefslogtreecommitdiff
path: root/1760/CH2/EX2.83/EX2_83.sce
blob: a8651b2ac1079e1076ee6d85f6771e661b954133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
                         //EXAMPLE 2-83    PG NO-117-118
V=125+%i*0;
I1=5+%i*0;
I2=1.2+%i*1.964;
Z2=V/I2;
disp('iv)   IMPEDANCE (Z2) is  in polar form  =  '+string (Z2) +' ohm ');
R=28.26;
XC=46.43;
F=50;
C=1/[2*%pi*F*XC];
disp('iv)   CAPACITOR (C) is  in polar form  =  '+string (C) +' F ');
I=I1+I2;
disp('iv)   CURRENT (I) is  in polar form  =  '+string (I) +' A ');
S=V*I;
disp('i)  Apparent Power (S) is    in  polar form  =  '+string (S) +'  VA ');
P=S*0.953;
disp('i) Active Power (P) is  in polar form   =  '+string (P) +'  W ');
Q=S*0.302;
disp('i) Reactive Power (Q) is   in  polar form  =  '+string (Q) +'  Var ');