Question 3.14: Consider the transformer with data given in Example 3.7. (a)...

Consider the transformer with data given in Example 3.7.
(a) With full-load on the LV side at rated voltage, calculate the excitation voltage on the HV side. The load power factor is (i) 0.8 lagging, (ii) 0.8 leading. What is the voltage regulation of the transformer in each case?
(b) The transformer supplies full-load current at 0.8 lagging power factor with 2000 V on the HV side. Find the voltage at the load terminals and the operating efficiency.

The Blue Check Mark means that this solution has been answered and checked by an expert. This guarantees that the final answer is accurate.
Learn more on how we answer questions.

(a) The HV side equivalent circuit of Fig. 3.26(a) will be used.

V_{L}=200V,                        l_{L}=\frac{200\times 1000}{200} =100A

V'_{L}=2000V,                            l'_{L}=10A

Now                         V_{H}=V'_{L}l'_{L}(R_{H} \cos \phi \pm X_{H} \sin \phi ):               R_{H}= 30 \Omega

X_{H}= 5.2 \Omega

(i)            \cos \phi =0.8 lagging, \sin \phi =0.6

V_{H} =2000+ 10(3 \times 0.8 + 5.2 \times 0.6) = 2055.2 V

Voltage regulation =\frac{2055.2-2000}{2000} \times 100= 2.76 \%

(ii)            \cos \phi =0.8 leading, \sin \phi =0.6

V_{H} =2000+ 10(3 \times 0.8 – 5.2 \times 0.6) = 1992.8 V

Voltage regulation =\frac{1992.8-2000}{2000} \times 100= -0.36 \%

(b)     l_{L(full-load)} =100A, 0.8 lagging pf

V'_{L}= V'_{H}-l'_{L}(R_{H} \cos \phi +X_{H} \sin \phi ) =2000 -10(3\times 0.8 +5.2 \times 0.6) =1944.8 V

or                               V_{L}=194.48 V

Efficiency

Output, P_{0}=V_{L}l_{L} \cos\phi

= 194.48 \times 100 \times 0.8 = 15558.4 W

 

P_{LOSS}= P_{i}+P_{c}

 

P_{i}=120W(Ex. 3.7)

 

P_{c}=(10)^{2}\times 3=300W

 

P_{LOSS}=420W

 

\eta =1-\frac{420}{15558.4 \times 420} =97.38 \%

Example 3.14 is solved by writing the following MATLAB code

fig 3 26 a
The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

clc

clear

S=20*1000;

V1=200;

V2=2000;

I1=S/V1;

I2=S/V2;

RH=3;

XH=5.2;

Cosine-phi=0.8;

Sin-phi=0.6;

VH=V2+I2*(RH*cosine-phi+XH*sin-phi)

Vreg=(VH-V2)*100/V2

%% case2

VH=V2+I2*(RH*cosine-phi-XH*sin-phi)

Vreg=(VH-V2)*100/V2

Il=100;

Vll=V2-I2*(RH*cosine-phi+XH*sin-phi);

Vl=Vll/10

Ploss=120+10*10*3;

Pop=Vl*Il*cosine-phi;

eff=(1-(Ploss/(Ploss+Pop)))*100

 

Answer:

VH = 2.0552e+003

Vreg = 2.7600

VH = 1.9928e+003

Vreg = –0.3600

Vl = 194.4800

eff = 97.3715

Related Answered Questions