Unsymmetrical Fault Analysis
Unsymmetrical Fault Analysis
Unsymmetrical Fault Analysis
BATCH 2
SUBMITTED BY
09E607-09E612
Thoery:
Single-Line-to-Ground Fault:
Let a 1LG fault has occurred at node k of a network. The faulted segment is then as shown in Fig. 8.2
where it is assumed that phase-a has touched the ground through an impedance Zf . Since
(1.1) the system is unloaded before the occurrence of the fault we have
(1.2)
Also the phase-a voltage at the fault point is given by
From (1.1) we can write
(1.3)
(1.4)
Solving (1.3) we get
This implies that the three sequence currents are in series for the 1LG fault. Let us denote the
zero, positive and negative sequence Thevenin impedance at the faulted point as Z kk0 , Z kk1 and
Z kk2 respectively. Also since the Thevenin voltage at the faulted phase is Vf we get three that
are sequence circuits We can then write
(1.5)
(1.6)
Then from (1.4) and (1.5) we can write
(1.7)
We get from (1.7)
Line-to-Line Fault
The faulted segment for an L-L fault is shown where it is assumed that the fault has occurred at node
k of the network. In this the phases b and c got shorted through the impedance Zf . Since the
(1.8)
system is unloaded before the occurrence of the fault we have
(1.9)
Also since phases b and c are shorted we have
(1.10)
Therefore from (1.8) and (1.9) we have
(1.11)
Therefore no zero sequence current is injected into the network at bus k and hence the zero
sequence remains a dead network for an L-L fault. The positive and negative sequence currents
are negative of each other.
(1.12)
we get the following expression for the voltage at the faulted point
(1.13)
Again
(1.14)
Moreover since I fa0 = I fb0 = 0 and I fa1 = - I fb2 , we can write
(1.15)
Therefore combining (8.12) - (8.14) we get
(1.16)
(1.17)
condition as (1.8) for the phase-a current. Therefore
(1.18)
(1.19)
Therefore
(1.20)
(1.21)
(1.22)
Substituting (1.18) and (1.20) in (1.21) and rearranging we get
(1.23)
(1.24)
The Thevenin equivalent circuit for 2LG fault is shown in Fig From this figure we get
(1.25)
The zero and negative sequence currents can be obtained using the current divider principle as
(1.26)
PROBLEM:
The one line diagram of a simple power system is shown in figure .the neutral of each generator is
grounded through a current limiting reactor of 0.25/3 per unit on a 100MVA base. The system data
expressed in per unit on a common 100MVA base is tabulated below .the generators are running on
no load at their rated voltage and frequency with their emfs in phase.Find the result MVA and fault
current for 1.LG fault @ bus 2.LLG fault @ bus 3 3.LL fault @ bus 3
ITEM
Base MVA
G1
G2
T1
T2
L12
L13
L23
100
100
100
100
100
100
100
Voltage
rating
20kV
20kV
20/220kV
20/220kV
220kV
220kV
220kV
Solution:
Positive sequence bus impedance matrix is
0.15
0.15
0.10
0.10
0.125
0.15
0.25
0.15
0.15
0.10
0.10
0.125
0.15
0.25
0.05
0.05
0.10
0.10
0.30
0.35
0.7125
end
end
for ii=1:1:nb-1
for jj=ii+1:1:nb i0=(V(jj,1)V(ii,1))/z0(ii,jj); i1=(V(jj,2)V(ii,2))/z1(ii,jj); i2=(V(jj,3)V(ii,3))/z2(ii,jj);
i012=[i0;i1;i2];
iabc=m*[i0;i1;i2];
fprintf('Line Fault Current between bus %g and %g: ',ii,jj);
disp(iabc);
end
end
end
if (type==2)
ik0=0;
ik1=e/(zbus1(k,k)+zbus2(k,k)+zf);
ik2=-ik1;
ikabc=m*[ik0;ik1;ik2];
ikf=a*a*ik1+a*ik2;
disp('Phase Current is :')
disp(ikabc);
disp('Fault Current Ikf is:');
disp(ikf);
for ii=1:1:nb v0=zbus0(ii,k)*ik0; v1=ezbus1(ii,k)*ik1; v2=zbus2(ii,k)*ik2;
v012=[v0;v1;v2];
vabc=m*[v0;v1;v2];
end
end
for ii=1:1:nb-1
for jj=ii+1:1:nb
i0=0;
i1=(V(jj,2)-V(ii,2))/z1(ii,jj);
i2=(V(jj,3)-V(ii,3))/z2(ii,jj);
i012=[i0;i1;i2];
iabc=m*[i0;i1;i2];
end
end
if (type==3) z11=zbus2(k,k)*(zbus0(k,k)
+3*zf); z22=zbus2(k,k)+zbus0(k,k)
+3*zf; ik1=e/(zbus1(k,k)+(z11/z22));
ik2=-(e-(zbus1(k,k)*ik1))/zbus2(k,k);
ik0=-(e-(zbus1(k,k)*ik1))/(zbus0(k,k)+3*zf);
ikabc=m*[ik0;ik1;ik2];
ikf=3*ik0;
disp('Phase Current is :')
disp(ikabc);
end
end
for ii=1:1:nb-1
for jj=ii+1:1:nb i0=(V(jj,1)V(ii,1))/z0(ii,jj); i1=(V(jj,2)V(ii,2))/z1(ii,jj); i2=(V(jj,3)V(ii,3))/z2(ii,jj);
i012=[i0;i1;i2];
iabc=m*[i0;i1;i2];
end
end if(type>3||
type<1)
end
disp('Invalid Input');
Inputs
enter the number of bus3
Enter the Fault type 1Line to Ground Fault 2Line to Line Fault
Output
Phase Current is :
0 - 2.7523i
0.0000 + 0.0000i
0.0000 + 0.0000i
Fault Current Ikf is:
0 - 2.7523i
Phase Fault Voltage at Bus 1: 0.6330
-0.5092 - 0.8660i
-0.5092 + 0.8660i
Phase Fault Voltage at Bus 2: 0.7202
-0.4495 - 0.8660i
-0.4495 + 0.8660i
Phase Fault Voltage at Bus 3: 0.2752
-0.6193 - 0.8660i
-0.6193 + 0.8660i
Line Fault Current between bus 1 and 2:
0 - 0.3761i
-0.0000 - 0.1560i
0.0000 - 0.1560i
Line Fault Current between bus 1 and 3:
0 + 1.6514i
-0.0000 + 0.0000i
0.0000 + 0.0000i
Line Fault Current between bus 2 and 3:
-0.0000 - 0.0000i
-0.0000 - 0.0000i
Inputs
enter the number of bus3
Enter the Fault type 1Line to Ground Fault 2Line to Line Fault
0 + 1.1009i
2
Enter the fault impedance0.1j
Enter the Faulted Bus Number3
Output
Phase Current is :
0
-3.2075 + 0.0000i
3.2075 - 0.0000i
Fault Current Ikf is:
-3.2075 + 0.0000i
Phase Fault Voltage at Bus 1: 1.0000
-0.5000 - 0.4491i
-0.5000 + 0.4491i
Phase Fault Voltage at Bus 2: 1.0000
-0.5000 - 0.4811i
-0.5000 + 0.4811i
Phase Fault Voltage at Bus 3: 1.0000
-0.5000 - 0.1604i
-0.5000 + 0.1604i
Line Fault Current between bus 1 and 2:
0 + 0.0000i
-0.2566 - 0.0000i
0.2566 - 0.0000i
Line Fault Current between bus 1 and 3:
0 + 0.0000i
1.9245 - 0.0000i
-1.9245 + 0.0000i
Line Fault Current between bus 2 and 3:
1.2830 - 0.0000i
-1.2830 + 0.0000i
Inputs
enter the number of bus3
0 + 0.0000i
Output
Phase Current is :
0 + 0.0000i
-3.9365 + 0.9868i
3.9365 + 0.9868i
Fault Current If is:
0 + 1.9737i
0 + 0.1118i
-0.3149 + 0.1908i
0.3149 + 0.1908i
Line Fault Current between bus 1 and 3:
2.3619 - 0.5921i
-2.3619 - 0.5921i
0 - 0.0000i
0 - 0.0000i