MATLAB Program For Solution Power Flow Gauss-Seidel Method - EE1404 - Power System Simulation Laboratory
MATLAB Program For Solution Power Flow Gauss-Seidel Method - EE1404 - Power System Simulation Laboratory
MATLAB Program for Solution Power Flow Gauss-Seidel Method | EE1404 Power System Simulation Laboratory
Hom e
Lab Program s
Syllabus
Program s
UML Diagram s
HTML
Aptitude
Help
Search
[12:57 PM | 0 comments ]
Tweet
w w w .InternetCorkBoard.com
w w w .MonsterMarketplace.com
3. Looking For Gauss Seidel method c code for load
Find What You Need. Look For Gauss Seidel method c code for load flow Here Now
flow?
w w w .Amazon.com
Email address...
Submit
text-align:right; float:right;
AIM:
SOFTWARE REQUIRED:
MATLAB 5.3
THEORY:
ERROR
The requested URL
could not be
retrieved
The GAUSS SEIDEL method is an iterative algorithm for solving a set of non-linear load
flow equations.
PROCEDURE:
Labels
editor Window
EXERCISE:
The figure shows the single line diagram of a simple 3 buses power system with generator at
bus 1.The magnitude at bus 1 is adjusted to 1.05pu. The scheduled loads at buses 2 and 3 are
marked on the diagram. Line impedance are marked in pu. The base value is 100kVA. The line
charging susceptances are neglected. Determine the phasor values of the voltage at the load
buses 2 and 3. Find the slack bus real and reactive power.
Verify the result using MATLAB.
Sponsors
sourcecodesonline.blogspot.in/2011/03/solution-power-flow-gauss-seidel-method.html
1/4
6/5/13
MATLAB Program for Solution Power Flow Gauss-Seidel Method | EE1404 Power System Simulation Laboratory
PROGRAM:
%Gauss Sedial
C Programs (25)
clc;
data=[1 1 2 10-j*20
2 1 3 10-j*30
3 2 3 16-j*32]
elements=max(data(:,1));
bus=max(max(data(:,2)),max(data(:,3)));
y=zeros(bus,bus);
for p=1:bus,
Component Diagrams
(16)
for q=1:elements,
if(data(q,2)==p|data(q,3)==p)
y(p,p)=y(p,p)+data(q,4);
Database Management
Systems Lab (12)
end
end
Deployment Diagrams
(10)
end
for p=1:bus,
for q=1:bus,
if (p~=q)
for r=1:elements
eBooks (1)
ECE Syllabus (62)
EEE Syllabus (66)
if((data(r,2)==p&data(r,3)==q)|(data(r,2)==q&data(r,3)==p))
y(p,q)=-(data(r,4));
end
end
end
HTML (75)
IT Syllabus (84)
end
end
a1=input('enter p2 in MW:');
b1=input('enter q2 in MVAR:');
a2=input('enter p3 in MW:');
b2=input('enter q3 in MVAR');
pu=input('enter the base value in MVA');
p2=(a1/pu);
Object Oriented
Programming Lab (26)
q2=(b1/pu);
p3=(a2/pu);
q3=(b2/pu);
dx1=1+j*0;
dx2=1+j*0;
v1=1.05;
v2=1+j*0;
v3=1+j*0;
iter=0;
disp('iter v2 v3');
while(abs(dx1)&abs(dx2)>=0.00001)&iter<7;
Syllabus (514)
iter=iter+1;
g1=(((p2-j*q2)/conj(v2))+(-y(1,2)*v1)+(-y(2,3)*v3))/y(2,2);
g2=(((p3-j*q3)/conj(v3))+(-y(1,3)*v1)+(-y(2,3)*g1))/y(3,3);
dx1=g1-v2;
dx2=g2-v3;
v2=v2+dx1;
v3=v3+dx2;
fprintf ('%g',iter),disp([v2,v3]);
end
RESULT:
Thus the mathematical formulation of power flow model in complex
form and a simple method of solving power flow problems of small sized system understood using GaussSeidel iterative algorithm.
Blog Archive
June 2012 (1)
386,620
sourcecodesonline.blogspot.in/2011/03/solution-power-flow-gauss-seidel-method.html
2/4
6/5/13
MATLAB Program for Solution Power Flow Gauss-Seidel Method | EE1404 Power System Simulation Laboratory
November 2010 (76)
October 2010 (60)
September 2010 (187)
w w w .InsuringIndia.com
Get hassle free online Health Insurance with Low Premiums. Also avail Tax Benefits.
w w w .shaadi.com
Get Marriage Proposals Daily. Register Free to find your Life Partner.
w w w .Answ ered-Questions.com
Top answers for Gauss Seidel method c code for load flow
w w w .InternetCorkBoard.com
Related Posts:
,
MATLAB Program for Formation of Bus Admittance Matrices | EE1404 Power System
Simulation Laboratory
MATLAB Program for C omputation of Parameters and Modelling of Transmission Lines |
EE1404 Power System Simulation Laboratory
MATLAB Program for Economic Dispatch in Power Systems | EE1404 Power System
Simulation Laboratory
MATLAB Program for Transient and Small Signal Stability Analysis Single Machine
Infinite Bus System | EE1404 Power System Simulation Laboratory
MATLAB Application for Load Frequency Dynamics of Two Area Power Systems |
EE1404 Power System Simulation Laboratory
MATLAB Application for Load Frequency Dynamics of Single Area Power Systems |
EE1404 Power System Simulation Laboratory
MATLAB Program for Short C ircuit Analysis | EE1404 Power System Simulation
Laboratory
MATLAB Program for Solution Power Flow Newton-Raphson Method | EE1404 Power
sourcecodesonline.blogspot.in/2011/03/solution-power-flow-gauss-seidel-method.html
3/4
6/5/13
MATLAB Program for Solution Power Flow Gauss-Seidel Method | EE1404 Power System Simulation Laboratory
System Simulation Laboratory
MATLAB Program for Solution Power Flow Gauss-Seidel Method | EE1404 Power
System Simulation Laboratory
MATLAB Program for Formation of Bus Impedance Matrices | EE1404 Power System
Simulation Laboratory
Single Women
Singles
Links
Blog
Friends
0 comments
Post a Comment
Preview
Newer Post
Recent Posts
Tamil Nadu State Board SSLC | 10th Standard Pubilc
Exam Results 2012 - 6/4/2012
Bank of India Recruitment 2011 for General Banking
Officer - 6/3/2011
Home
Older Post
Members (11)
Popular Posts
UML diagrams for Library Management System |
CS1403-CASE Tools Lab
UML diagrams for Online Railw ay Ticket Reservation
System | CS1403-CASE Tools Lab
sourcecodesonline.blogspot.in/2011/03/solution-power-flow-gauss-seidel-method.html
4/4