0% found this document useful (0 votes)
771 views

MATLAB Program For Short Circuit Analysis - EE1404 - Power System Simulation Laboratory - Source Code Solutions

The document describes a MATLAB program for performing short circuit analysis on a power system. It includes the aim, required software, theory, procedure, an example problem, and the MATLAB program code. The example problem involves determining the fault currents for various types of faults (3-phase, line-to-ground, line-to-line, double line-to-ground) on a 4-bus power system model. The MATLAB program calculates the fault levels and post-fault voltages and currents for the different fault types through symmetric and unsymmetric analysis.

Uploaded by

jayamanikandan
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
771 views

MATLAB Program For Short Circuit Analysis - EE1404 - Power System Simulation Laboratory - Source Code Solutions

The document describes a MATLAB program for performing short circuit analysis on a power system. It includes the aim, required software, theory, procedure, an example problem, and the MATLAB program code. The example problem involves determining the fault currents for various types of faults (3-phase, line-to-ground, line-to-line, double line-to-ground) on a 4-bus power system model. The MATLAB program calculates the fault levels and post-fault voltages and currents for the different fault types through symmetric and unsymmetric analysis.

Uploaded by

jayamanikandan
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

11/04/2016

MATLABProgramforShortCircuitAnalysis|EE1404PowerSystemSimulationLaboratorySourceCodeSolutions

MATLAB Program for Short Circuit Analysis | EE1404 Power System


Simulation Laboratory
Jebastin

1:37 PM

AIM:
To become familiar with modelling and analysis of power systems under faulted condition and
to compute the fault level, post-fault voltages and currents for dierent types of faults, both
symmetric and unsymmetric.

SOFTWARE REQUIRED:
MATLAB 5.3

THEORY:

http://www.sourcecodesolutions.in/2011/03/shortcircuitanalysismatlabprogram.html

1/4

11/04/2016

MATLABProgramforShortCircuitAnalysis|EE1404PowerSystemSimulationLaboratorySourceCodeSolutions

PROCEDURE:
1. Enter the command window of the MATLAB.
2. Create a new M le by selecting File - New M File
3. Type and save the program.
4. Execute the program by either pressing Tools Run.
View the results.

EXERCISE:

http://www.sourcecodesolutions.in/2011/03/shortcircuitanalysismatlabprogram.html

2/4

11/04/2016

MATLABProgramforShortCircuitAnalysis|EE1404PowerSystemSimulationLaboratorySourceCodeSolutions

The one line diagram of a simple power system is shown in gure. 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 100 MVA base is tabulated below. The
generators are running on no load at their rated voltage and rated frequency with their emfs in
phase.
Determine the fault current for the following faults.
(a) A balanced three phase fault at bus 3 through a fault impedance Zf = j0.1 per unit.
(b) A single line to ground fault at bus3 through a fault impedance Zf = j0.1 per unit.
(c) A line to line fault at bus3 through a fault impedance Zf = j0.1 per unit.
(d) A double line to ground fault at bus3 through a fault impedance Zf = j0.1 per unit.

Verify the result using MATLAB program.

PROGRAM:
zdata1 = [0 1 0 0.25
0 2 0 0.25
1 2 0 0.125
1 3 0 0.15
2 3 0 0.25];
zdata0 = [0 1 0 0.40
0 2 0 0.10
1 2 0 0.30
1 3 0 0.35
2 3 0 0.7125];
zdata2 = zdata1;
Zbus1 = zbuild(zdata1)
Zbus0 = zbuild(zdata0)
Zbus2 = Zbus1;
symfault(zdata1,Zbus1)
lgfault(zdata0, Zbus0, zdata1, Zbus1, zdata2, Zbus2)
llfault(zdata1, Zbus1, zdata2, Zbus2)
dlgfault(zdata0, Zbus0, zdata1, Zbus1, zdata2, Zbus2)

RESULT:
Finally, became familiar with modelling and analysis of power systems under faulted condition and
http://www.sourcecodesolutions.in/2011/03/shortcircuitanalysismatlabprogram.html

3/4

11/04/2016

MATLABProgramforShortCircuitAnalysis|EE1404PowerSystemSimulationLaboratorySourceCodeSolutions

to compute the fault level, post-fault voltages and currents for dierent types of faults, both
symmetric and unsymmetric.

If you still didn't nd what you're looking for, you can search this website below:
Search

http://www.sourcecodesolutions.in/2011/03/shortcircuitanalysismatlabprogram.html

4/4

You might also like