Load Flow Analysis of IEEE 5 Bus System
Load Flow Analysis of IEEE 5 Bus System
It converts impedances to admittances and obtains the bus admittance matrix.
Solution:
Power Flow Programs:
lfgauss MTLAB Function:
This program obtains the power flow solution by the Gauss-
Seidel method and requires the files named busdata and linedata.
Loads and generation are converted to per unit quantities on the base MVA selected.
Solution:
Power Flow Programs:
busout MTLAB Function:
This program produces the bus output result in a tabulated form.
The bus output result includes the voltage magnitude and angle, real and
reactive power of generators and loads and the shunt capacitor/reactor Mvar.
Total generation and total load are also included as outlined in the example case.
Solution:
Power Flow Programs:
lineflow MTLAB Function:
This program prepares the line output data.
It is designed to display the active and reactive power flow entering
the line terminals and line losses as well as the net power at each bus.
The total real and reactive losses in the system are also included.
The output of this portion is also shown in the sample case.
Solution:
Newton Raphson Power Flow Programs:
Data Preparation:
In order to perform a power flow analysis by the Gauss-seidel method
in the MATLAB environment, the following variables must be defined:
Power system base MVA, Power mismatch accuracy,
Acceleration factor, and Maximum number of iterations.
The name (in lowercase letters) reserved for these variables are basemava,
accuracy, accel, and maxiter iteratively. Typical values are as follows:
basemava=100; accuracy = 0.001;
accel = 1.8; maxiter = 80
The initial step in the preparation of input file is the numbering of each bus.
Solution:
Newton Raphson Power Flow Programs:
In addition, the following data files are required.
Bus Data File – busdata:
The format for the bus is shown to facilitate the required data for each case in a
single row. The information required must be included in a matrix called busdata.
Column 1 is the bus number.
Column 2 contains the bus code.
Column 3 and 4 are voltage magnitude in per unit and phase angles in degrees.
Column 5 and 6 are load MW and Mvar.
Column 7 through 10 are MW and Mvar, minimum Mvar and maximum Mvar of
generation in that order. The last column is the injected Mvar of shunt capactiors.
Solution:
Newton Raphson Power Flow Programs:
Bus Data File – busdata:
The bus code entered in column 2 is used for identifying load, voltage controlled
and slack buses as outlined below:
1 = This code is used for slack bus. The only necessary information for this bus
is the voltage magnitude and its phase angle.
0 = This code is used for load buses. The loads are entered positive in MW & Mvars.
2 = This code is used for the voltage controlled buses. For this bus, voltage
magnitude, real power generation in megawatts, and the minimum and maximum
limits of the megavar demand must be specified.
Solution:
Newton Raphson Power Flow Programs:
Line Data File – linedata:
Lines are identified by the node-pair method. The information required must be
incuded in a matrix called linedata.
The last column is for the transformer tap setting for lines, 1 must be entered in
this column.
THANK YOU VERY MUCH