You are on page 1of 2

PROBLEM STATEMENT:A 3-phase 3 winding transformer is rated under as

Primary= 132 KV,30 MVA


Secondary=11KV ,20MVA
Tertiary=6.6KV,10MVA
The result of short circuit test are under:
1) Secondary s.c., tertiary o.c.,primary excited X=7%
2) secondary o.c.,tertiary s.c., primary excited X=9%
3) tertiary s.c.,primary o.c.,secondary excited

X=4%

FIND X1,X2,X3 and neglect the resistances


MATLAB PROGRAM:mva=input('enter base mva');
kvp=input('enter the base voltage of primary');
x1=input('reactance of primary');
kvs=input('enter the base voltage of secondary');
x2=input('ractance of secondary');
kvt=input('enter the base voltage of tirtiary');
x3=input('reactance of tirtiary');
display('but from equivalent diagram we found that');
display('X1+X2=0.07 ; X2+X3=0.06 ; X3+X1=0.09')
A=[1 1 0;1 0 1;0 1 1];
B=[0.07;0.09;0.06];
X=inv(A)*B;
display('VALUES OF X1;X2 AND X3 ARE AS FOLLOWS');
X1=X(1,:)
X2=X(2,:)
X3=X(3,:)

MATLAB OUTPUT:-

EXP3
enter base mva30
enter the base voltage of primary132
reactance of primary0.07
enter the base voltage of secondary11
ractance of secondary0.09
enter the base voltage of tirtiary6.6
reactance of tirtiary0.06
but from equivalent diagram we found that
X1+X2=0.07 ; X2+X3=0.06 ; X3+X1=0.09
VALUES OF X1;X2 AND X3 ARE AS FOLLOWS

X1 =

0.0500

X2 =

0.0200

X3 =

0.0400

You might also like