Ex - No 7 - Lab Manual
Ex - No 7 - Lab Manual
AIM:
To become familiar with modeling and analysis of power system under faulted
condition and to compute the fault level, post fault voltages and currents for different types of
unsymmetrical faults.
OBJECTIVES:
• To conduct fault analysis on a given system using available software and obtain fault
analysis report with fault level and current at the faulted point and post-fault voltages
and currents in the network for the following faults.
a) Three phase to ground b) Line to ground
c) Line to line d) Double line to ground
• To study the variation in fault level and currents in the system when it is
interconnected to neighboring systems.
SOFTWARE REQUIRED:
MATLAB
THEORY:
The method of fault analysis explained for symmetrical fault can be extended to
unsymmetrical fault also, such as
1. Pre-fault and post-fault values are represented by super script 0 and f respectively.
2. Positive, Negative and Zero sequence voltages and currents are indicated by
subscripts +,- and 0 respectively.
3. Phase value of voltage and current are indicated by subscripts p and individually by
subscript a, b and c.
4. Subscripts following +, - and 0 represent the bus code.
SINGLE LINE-TO-GROUND FAULT:
The single line-to-ground fault is usually referred as “short circuit” fault and occurs when one
conductor falls to ground or makes contact with the neutral wire. The general representation of a
single line-to-ground fault is shown in figure 1 where F is the fault point with impedances Zf.
Figure 2 shows the sequences network diagram. Phase a is usually assumed to be the faulted
phase, this is for simplicity in the fault analysis calculations.
Figure 1 Figure 2
Since the zero-, positive-, and negative-sequence currents are equals as it can be observed in
figure . Therefore,
With the results obtained for sequence currents, the sequence voltages can be obtained from
By solving Equation
If the single line-to-ground fault occurs on phase b or c, the voltages can be found by the
relation that exists to the known phase voltage components,
as
LINE-TO-LINE FAULT:
The general representation of a line-to-line fault is shown in Figure , where F is the fault
point with impedances Zf. Figure shows the sequences network diagram. Phase b and c are
usually assumed to be the faulted phases; this is for simplicity in the fault analysis calculations
It can be noticed that
If Zf = 0,
If Zf and Zg are both equal to zero, then the positive-, negative-, and zero-sequences can be
obtained from
The resultant phase voltages from the relationship given in Equation can be expressed as
PROGRAM
clc
clear all
Z133 =input('enter the positive sequence impedance');
Z033 =input('enter the zero sequence impedance');
Z233 = input('enter the negative sequence impedance');
Zf = input('enter the fault impedance'); disp('(a)
Balanced three-phase fault at bus 3'); Ia3F =
1.0/(Z133+Zf)
disp('(b) Single line-to-ground fault at bus 3');
I03 = 1.0/(Z033 + 3*Zf + Z133 + Z233);
I012=[I03; I03; I03]; %sctm
global sctm a
=cos(2*pi/3)+j*sin(2*pi/3);
sctm = [1 1 1; 1 a^2 a; 1 a a^2]; Iabc3
= sctm*I012
disp('(c) Line-to-line fault at bus 3');
I13 = 1.0/(Z133 + Z233 + Zf);
I012 = [0; I13; -I13]; Iabc3
= sctm*I012
disp('(d) Double line-to-ground fault at bus 3');
I13 = 1/(Z133 + Z233*(Z033+3*Zf)/(Z133+Z033+3*Zf));
I23 = -(1.0 - Z133*I13)/Z133;
I03 = -(1.0 - Z133*I13)/(Z033+3*Zf);
I012 = [I03; I13; I23];
Iabc3 = sctm*I012
RESULT: