blob: 9ed4f1f8e0b048aec755e8d902658b68c4a9e5b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc;
E1=3300; // rated phase voltage of primary of a three phase transformer
v=360; // voltage injected in open delta h v winding to circulate full load current
vph=v/3; // voltage across each phase
P=300; // rated KVA of transformer
Pph=P/3; // KVA per phase
Iph=(Pph*1000)/E1; // per phase current
z=vph/Iph;
printf('Per Phase leakage impedance is %f ohms\n',z);
zb=E1/Iph; // base impedance
zpu=z/zb;
printf('leakage impedance per phase in per unit system is %f p.u',zpu);
|