You are on page 1of 6

Experiment 7

American International University- Bangladesh


Department of Electrical and Electronic Engineering
EEE1234: Power Systems Analysis Laboratory

Title:

Symmetrical Fault Analysis using MATLAB Software

Introduction:

To become familiar with modeling and analysis of power system under faulted condition and to
compute the fault current, post fault voltage and fault current through the branches for a symmetrical
fault in a small power system and also study the effect of neighboring system.

1. To observe the effect of ‘α’ variation over symmetrical fault current.

2. To carryout fault analysis for symmetrical faults in small systems using the Thevenin’s
equivalent circuit in the sequences and phase domains at the faulted bus but without the use
of software.

3. To conduct fault analysis on a given system using software available and obtain fault
analysis report with fault level and current at the faulted point and post-fault voltages and
currents in the network for symmetrical faults.

Theory and Methodology:

Short circuits and other abnormal conditions often occur on a power system. Short circuits are usually
called “faults” by power system engineers. Some defects, other than short circuits are also termed as
faults. Faults are caused either by insulation failures or by conducting path failures. The failure of
insulation results in short circuits which are very harmful as they may damage some equipment of the
power system. Most of the faults in transmission and distribution lines are caused by over voltages
due to lightning or switching surges, or by external conducting objects falling on overhead lines.
Overvoltage due to lightning or switching surges cause flashover on the surface of insulators resulting
in short circuits. Short circuits are also caused by tree branches or other conducting objects falling on
the overhead lines. The fault impedance being low, the fault currents are relatively high. The fault
currents being excessive, they damage the faulty equipment and the supply installation. Also, the
system voltage may reduce to a low level, windings and bus bars may suffer mechanical damage due
to high magnetic forces during faults and the individual generators in a power station or group of
generators in different power stations may lose synchronism.

Fault Classifications

The types of fault commonly occurring in practice are as follows:

(a) Three-phase faults or symmetrical faults: If a line condition occurs in which all three phases are
shorted together, either by something falling on the phase conductors, an equipment failure, or all
three lines falling to the ground, it is called a three-phase fault. These are relatively rare,
accounting for only about 5% of all transmission line faults.

(b) Line to ground: Line to ground faults are caused by a transmission line touching the ground.
Wind, ice loading, or an accident such as a tree limb falling on a line can cause a line to ground
fault. This category accounts for about 70% of all transmission line short circuit faults.

(c) Line to line: These faults are normally caused by high winds blowing one line into another, or by
a line breaking and falling on a line below it. These account for about 15% of transmission faults.

© Dept. of EEE, Faculty of Engineering, American International University-Bangladesh (AIUB) 1


(d) Double line to ground: This category is caused by the same things that cause single line to ground
faults, except two lines are involved instead of one. These account for about 10% of transmission
line faults.

The symmetrical fault occurs when all the three conductors of a three-phase line are brought together
simultaneously into a short–circuit condition as shown in Figure 1.This type of fault gives rise to
symmetrical currents i.e. equal fault currents with 1200 displacement. Because of balanced nature of
fault, only one phase needs to be considered in calculations since condition in the other two phases
will also be similar. A three-phase short circuit occurs rarely but it is most severe type of fault
involving largest currents. For this reason, the balanced short-circuit calculations are performed to
determine these large currents to be used to determine the rating of the circuit breakers.

Figure 1: Balanced or Symmetrical Fault

In this experiment, the symmetrical short-circuit analysis is performed. The symmetrical fault can be
analyzed on single phase basis using reactance diagram. Once the per unit reactance diagram is
formed for fault condition, the current and voltages in the various parts of the system can be
determined by any of the following methods:

1. Kirchoff’s laws
2. Thevnin’s theorem
3. By forming the Bus impedance matrix.

Here only by using Thevnin’s theorem we will do the symmetrical fault analysis. The fault current
that flows depends on the equivalent Thevenin voltage, and the equivalent impedance at the fault
terminals and the fault impedance, as illustrated in Figure 2.

ZTH
H
VTH
I FAULT = Zf
Z TH + Z f
VTH

Figure 2 : Simple equivalent circuit for fault current calculation

Pre-Lab Homework:

Students must study related theories and problems related to symmetrical 3ph fault. Solve the
mathematical problem and present results to the instructor before start of the experiment.

© Dept. of EEE, Faculty of Engineering, American International University-Bangladesh (AIUB) 2


Software Requirement:

The software, ‘MATLAB’ is used in this experiment to study the symmetrical fault.

Mathematical Problem With Solution:

The Motor is drawing 40 MW at 0.8 pf. Leading with terminal voltage of 10.95 kV. Calculate the
Fault current during 3 phase short circuit.

Experimental Procedure:

The experiment will be conducted into two parts:


Part 1:
By using the PSAsoft lab package the effect of ‘α’ variation over symmetrical fault current will be
observed.
Procedure:
1. Click on the PSAsoftlab.exe icon.
2. Click on Experiment 7.
3. A window like the following figure will open.

4. Insert the values of the power system parameters:


Vp-p = 220 V
Frequency = 50 Hz
Line resistance = 4.1Ω
Line reactance = 0.25 Ω
Operating time = 0.25 s

© Dept. of EEE, Faculty of Engineering, American International University-Bangladesh (AIUB) 3


5. After inserting the values click on the symmetrical fault current button.
6. The waveform like the following figure will appear.

7. Vary the ‘α’ value and see its effect over fault current.

Part 2:
In this part a simulink model of a power system network like figure will be developed to verify the
simulation value of the fault current with the calculated value of previous section.
Procedure:
1. Launch the program by double-clicking on the matlab.exe icon on the desktop.
2. Save the file in the name of “symmetrical fault analysis” or by any preferred name.
3. Follow the sequence to get all the components to construct the power system network as
shown in figure.
Tools – Library Browser – Simscape – Simpower system

Fig: Simulink model

4. Click on each model and do the settings.


5. Get a powergui blockset by following the procedure as mentioned in step 3.
6. Run the simulation by pressing the play button on the menu bar.
7. If there is no error the simulation will run or else an error message box will be displayed.
8. Observe the fault current on the scope and cross check the value with the calculated value.

© Dept. of EEE, Faculty of Engineering, American International University-Bangladesh (AIUB) 4


MATLAB codes:
clear all
close all
clc

% Ratings
%[X,Y] = pol2cart(pi*2/3,1);
%a = X+Y*j;

a = 1*exp(j*pi*2/3);
alpha_mat = [1 1 1; 1 a^2 a; 1 a a^2];

% Generator Rating
generator_apparent_power = 100e6;
generator_voltage = 13.8e3;
generator_positive_subtransient_reactance = 0.15j;
generator_negative_subtransient_reactance = 0.17j;
generator_zero_subtransient_reactance = 0.05j;

% Transformer-1 Rating
transformer_apparent_power = 100e6;
turns_ratio_1 = 13.8/138;
transformer_1_reactance = 0.1j;

%Transmission line
transmission_reactance_pos_neg = 20j;
transmission_reactance_zero = 60j;

% Transformer-2 Rating
transformer_apparent_power = 100e6;
turns_ratio_2 = 138/13.8;
transformer_2_reactance = 0.1j;

% Motor Rating
motor_apparent_power = 100e6;
motor_voltage = 13.8e3;
motor_positive_subtransient_reactance = 0.2j;
motor_negative_subtransient_reactance = 0.21j;
motor_zero_subtransient_reactance = 0.1j;
current_limitting_reactance = 0.05j;

% Base values
base_apparent_power = 100e6;
base_voltage_1 = 13.8e3;
base_voltage_2 = 138e3;
base_voltage_3 = 13.8e3;
base_impedance_1 = base_voltage_1^2/base_apparent_power;
base_impedance_2 = base_voltage_2^2/base_apparent_power;
base_impedance_3 = base_voltage_3^2/base_apparent_power;
base_current_1 = base_apparent_power/base_voltage_1/sqrt(3);
base_current_2 = base_apparent_power/base_voltage_2/sqrt(3);
base_current_3 = base_apparent_power/base_voltage_3/sqrt(3);

% Base values
line_impedance_per_unit_positive =
transmission_reactance_pos_neg/base_impedance_2;
line_impedance_per_unit_zero =
transmission_reactance_zero/base_impedance_2;

%positive sequence voltage source


positive_seq_voltage_source = 1.05*exp(j*0);
positive_sequence_motor_terminal = 1.05*exp(j*0);

© Dept. of EEE, Faculty of Engineering, American International University-Bangladesh (AIUB) 5


% Thevenin impedance values

% Positie sequence
z_positive =
(generator_positive_subtransient_reactance+transformer_1_reactance+line_imp
edance_per_unit_positive+transformer_2_reactance)*(motor_positive_subtransi
ent_reactance)/(generator_positive_subtransient_reactance+transformer_1_rea
ctance+line_impedance_per_unit_positive+transformer_2_reactance+motor_posit
ive_subtransient_reactance);

% line to line fault


Ia1_line_to_line = positive_seq_voltage_source/(z_positive+z_negative);
Ia2_line_to_line = -Ia1_line_to_line;
Ia0_line_to_line = 0;
I_phase_ltl = alpha_mat*[Ia0_line_to_line; Ia1_line_to_line;
Ia2_line_to_line]*base_current_1;
%Ia_phase_ltl = Ia_phase_ltl.*[base_current_1; base_current_1;
base_current_1]
voltage_sequence_matrix_ltl = [0; positive_seq_voltage_source; 0] -
[z_zero 0 0; 0 z_positive 0; 0 0 z_negative]*[Ia0_line_to_line;
Ia1_line_to_line; Ia2_line_to_line];
v0_ltl = voltage_sequence_matrix_ltl(1);
v1_ltl = voltage_sequence_matrix_ltl(2);
v2_ltl = voltage_sequence_matrix_ltl(3);
voltage_phase_matrix_ltl = alpha_mat*voltage_sequence_matrix_ltl;

voltage_sequence_matrix_dltg = [v0_dltg; v1_dltg; v2_dltg];


voltage_phase_matrix_ltl = alpha_mat*voltage_sequence_matrix_dltg;
I_phase_dltg = alpha_mat*[Ia0_double_line_to_ground;
Ia1_double_line_to_ground; Ia2_double_line_to_ground];
I_phase_dltg = I_phase_dltg*base_current_1;
I_neutral_dltg = I_phase_dltg(2)+I_phase_dltg(3);

Simulation With Result:

The simulation results are as follows:

Discussion and Conclusion:

1. What can you conclude from this experiment?


2. What software are you using?
3. What is the effect of ‘α’ variation over symmetrical fault current?
4. Suggest methods to limit the fault current during fault.
5. How do you determine the rating of circuit breakers based on symmetrical fault study?

Reference(s):

[1] I J Nagrath, D P Lothari, “Modern Power System Analysi”s, Second Edition, Tata McGraw-Hill

Publishing Company Limited.

[2] Introduction to MATLAB by Rudra Pratap

[3] MATLAB User Manual by Mathworks

© Dept. of EEE, Faculty of Engineering, American International University-Bangladesh (AIUB) 6

You might also like