summaryrefslogtreecommitdiff
path: root/671/CH8/EX8.26/8_26.sce
blob: d3ceb2a7e49bc997e0433f1557b087246a5df9e2 (plain)
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
P=1000000
v1=11000
v2=230
f=50
Vsc=310
Psc=5210

Isc=P/v1
Z=Vsc/Isc
R=Psc/Isc/Isc
X=sqrt(Z*Z-R*R)

pf=1
theta=acos(pf)
Vd=Isc*(R*cos(theta)+X*sin(theta))
VR=Vd/v1*100
V1=v1+Vd
disp(VR,V1)

pf=0.8
theta=acos(pf)
Vd=Isc*(R*cos(theta)+X*sin(theta))
VR=Vd/v1*100
V1=v1+Vd
disp(VR,V1)

pf=0.8
theta=acos(pf)
Vd=Isc*(R*cos(theta)-X*sin(theta))    //calculation mistake in the book at this point
VR=Vd/v1*100
V1=v1+Vd
disp(VR,V1)