Solve Problem 3.8 using Matlab††††† . Also calculate % voltage regulation and η at full load and 0.8 pf lagging.
Solve Problem 3.8 using Matlab††††† . Also calculate % voltage regulation and η at full load and 0.8 pf lagging.
Steps for computing circuit model parameters, voltage regulation and Efficiency at full load for a Transformer using MATLAB.
Open-Circuit Test The equivalent circuit as seen on open-circuit test is given in Fig. 3.23(b).
Applied voltage =V1 (rated) Current drawn = 10
Power input =I0
Y0=V1I0, Gi=V12P0
Bm=Y02−Gi2
Short-Circuit Test The equivalent circuit as seen during short-circuit test is drawn in Fig. 3.23(b).
Applied voltage =Vsc (a fraction of rated value)
Current drawn =Isc (nearly full load value)
Power input =Psc=Pc (copper loss)
Z=IscVsc, R=(Isc)2Psc
X=Z2−R2
Voltage Regulation
% voltage regulation =rated secondary voltage at full load and specified pfvoltage drop×100
or, VR=V2I(Rcosϕ±Xsinϕ)×100; + for lagging pf;
– for leading pf
where
I = secondary current
R = equivalent resistance referred to secondary
X = equivalent reactance referred to secondary
ϕ = power factor angle
Efficiency at full load
Efficiency at full load =Full load output+Core loss+Copper loss at full loadFull load output× 100=P+Pi+PcP×100
MATLAB PROGRAM
P=50000;
V1=2200;
V2=110;
V0=110;
I0=10;
P0=400;
Y0=I0./V0
Gi=P0./(V0^2)
Bm=sqrt (Y0^2-Gi^2)
Vsc=90;
Isc=20.5;
Psc=808;
Z=Vsc./Isc
R=Psc./Isc^2)
X=sqrt (Z^2-R^2)
TR=2200/110;
Gi_HV=Gi./(TR^2)
Bm_HV=Bm./(TR^2)
R_LV=R./(TR^2)
X _LV=X./(TR^2)
I2=P./V2
pf=0.8;
Th=acos(pf)
dV=I2.*(R_LV.*cos(Th)+X_LV.*sin(Th))
VR=(dV./V2)*100
Pi=P0
Pc=Psc
EFF_Full_load=(P*100)./(P+Pi+Pc)
y0 =
0.0909
Gi =
0.0331
Bm =
0.0847
Z =
4.3902
R =
1.9227
X =
3.9468
Gi_HV =
8.2645e-005
Bm_HV =
2.1171e-004
R_LV =
0.0048
X_LV =
0.0099
I2 =
454.5455
Th =
0.6435
dV =
4.4389
VR =
4.0354
Pi =
400
Pc =
808
EFF_Full_load =
97.6410
Note For manual solution, refer solved Problem 3.3 of the Authors’ book [76]
††††† For detailed write-up on MATLAB, the reader is encouraged to read Appendix G of the authors’ book “Modern Power System Analysis”, 3rd ed. Tata McGraw-Hill, New Delhi, 2003.