Experiment-4 Aim
Experiment-4 Aim
AIM:
To perform the following for the given system of figure whose data is given below
a) Load flow using MATLAB command for GS method
1 - - 1.06+j0
3 10 -20 1.04+j0
4 -40 -5 1+j0
APPARATUS : MATLAB
THEORY :
Gauss Seidel method is developed based on the Gauss method. It is an iterative method used for
solving set of nonlinear algebraic equations. The method makes use of an initial guess for value of
voltage, to obtain a calculated value of a particular variable. The initial guess value is replaced by
a calculated value. The process is then repeated until the iteration solution converges. The
convergence is quite sensitive to the starting values assumed. But this method suffers from poor
convergence characteristics.
Using Kirchhoff current law, it is assumed that the current injected into bus i is positive, then the
real and the reactive powers supply into the buses, such as generator buses, and have
a positive value. The real and the reactive powers flowing away from the buses, such as load
buses and have a negative values. Pi and Qi are solved which gives
The power flow equation is usually expressed in terms of the bus admittance matrix, using the
diagonal elements of the bus admittance and the non-diagonal elements of the matrix, becomes,
And
The admittance to the ground of line charging susceptance and other fixed admittance to ground
are included into the diagonal element of the matrix.
MATLAB CODE:
basemva=100;
accuracy=0.001;
accel=1.0;
maxiter=100000;
busdata=[1 1 1.06 0 0 0 0 0 0 0 0
2 0 1.0 0 20 10 0 0 0 0 0
3 2 1.04 0 50 20 60 0 -10 100 0
4 0 1.0 0 40 5 0 0 0 0 0];
linedata=[1 2 0.02 0.08 0.01 1
1 3 0.06 0.24 0.03 1
2 3 0.04 0.16 0.025 1
2 4 0.04 0.16 0.025 1
3 4 0.01 0.04 0.015 1];
lfybus
lfgauss
busout
lineflow
OUTPUT:
>> gauss_seidal_exp4
No. of Iterations = 22
>>
Result
Load flow analysis has been studied using Gauss Siedel method.