Sunteți pe pagina 1din 4

6/5/13

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

MATLAB Program for Solution Power Flow


Gauss-Seidel Method | EE1404 Power
System Simulation Laboratory

Advertise on Source Code Solutions!

[12:57 PM | 0 comments ]
Tweet

Searching for gauss seidel method c code for load flow?


w w w .Answ ered-Questions.com
1. Gauss Seidel method c code for load flow
Top answers for Gauss Seidel method c code for load flow

2. Looking for Gauss Seidel method c code for load


Top answers for Gauss Seidel method c code for load flow
flow?

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?

4. Looking for Gauss Seidel method c code for load flow?

w w w .Amazon.com

Find Gauss Seidel method c code for load flow at Amazon

Stay Connected With Us - Subscribe to RSS Feed

Email address...

Submit

Spread the Word!


Add this button to your blog:

Chitika | Opt out?

text-align:right; float:right;

AIM:

<a href="http://www.sourcecodesolutions.co.cc/" title="Source Co

Do you Like Source Code Solutions?

To understand, in particular, the mathematical formulation of power flow model in complex


form and a simple method of solving power flow problems of small sized system using GaussSeidel iterative algorithm.

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.

Let your Friends know about SCS!

PROCEDURE:

1. Enter the command window of the MATLAB.


2. Create a new M file by selecting File - New M File
3. Type and save the program in the

Labels

editor Window

+2 Results 2011 (1)

4. Execute the program by either pressing Tools Run.

10th Results 2011 (1)

5. View the results.

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

10th Results 2012 (1)


Activity Diagrams (17)
AdWords (13)
Aeronautical Engg
Syllabus (67)
Anna University Results
April/May 2011 (1)
Aptitude (19)
ASCII (5)
Automobile Engg
Syllabus (65)
BioMedical Engg Syllabus
(59)

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:

Blogger Buzz (1)

%Gauss Sedial

C Programs (25)

clc;

C++ Programs (22)

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);

CASE Tools Lab (136)


Civil Engg Syllabus (80)
Class Diagrams (17)
Collaboration Diagrams
(17)
Communication Skill and
Seminar (24)

for p=1:bus,

Component Diagrams
(16)

for q=1:elements,

CSE Syllabus (32)

if(data(q,2)==p|data(q,3)==p)

Data Structures Lab (14)

y(p,p)=y(p,p)+data(q,4);

Database Management
Systems Lab (12)

end
end

Deployment Diagrams
(10)

end

Digital Lab (13)

for p=1:bus,

DSP and Communications


Systems Lab (13)

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))

EIE Syllabus (33)

y(p,q)=-(data(r,4));

Graphics and Multimedia


Lab (19)

end
end
end

HTML (75)
IT Syllabus (84)

end

Java Programming Lab


(16)

end

Java Programs (25)

a1=input('enter p2 in MW:');

Job Alert (3)

b1=input('enter q2 in MVAR:');

Make 3D Headings (1)

a2=input('enter p3 in MW:');

MATLAB Programs (24)

b2=input('enter q3 in MVAR');
pu=input('enter the base value in MVA');

Netw ork Lab (11)


Object Diagrams (1)

p2=(a1/pu);

Object Oriented
Programming Lab (26)

q2=(b1/pu);

OOAD Diagrams (132)

p3=(a2/pu);

OOPS Lab (26)

q3=(b2/pu);

Operating Systems Lab


(42)

dx1=1+j*0;
dx2=1+j*0;

Pow er System Simulation


Lab (11)

v1=1.05;

Sequence Diagrams (17)

v2=1+j*0;

Softw are Components


Lab (18)

v3=1+j*0;
iter=0;

Softw are Engineering


Lab (18)

disp('iter v2 v3');

State Chart Diagrams (5)

while(abs(dx1)&abs(dx2)>=0.00001)&iter<7;

Syllabus (514)

iter=iter+1;

System Softw are Lab


(11)

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);

Time Table Apr/May 2011


(5)

dx1=g1-v2;

UML Diagrams (136)

dx2=g2-v3;

Use Case Diagrams (18)

v2=v2+dx1;

Visual C++ Programs


(31)

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.

Live Traffic Feed

Visual Programming Lab


(15)

Blog Archive
June 2012 (1)

A visitor from Guwahati,


Assam viewed "MATLAB
Program for Solution
Power Flow Gauss-Seidel
Method | EE1404
Power System Simulation
Laboratory" 0 secs ago
A visitor from Coimbatore,
Tamil Nadu viewed
"CS1356 Compiler Design
Lab Syllabus" 6 mins ago
A visitor from Hyderabad,
Andhra Pradesh viewed
"Visual C++ Program for
the Implementation of
Hospital Management
System | IT1253 Software Engineering
Laboratory" 6 mins ago
A visitor from New Delhi,
Delhi viewed "C Program
for the Implementation of a
Single Pass Assembler |
CS1207 - System
Software Laboratory" 7
mins ago
A visitor from Pakistan
viewed "Class diagram for
Online Hospital
Management System |
CS1403-CASE Tools
Lab" 9 mins ago
A visitor from Colombo
left "UML diagrams for
Student Marks Analysis
System | CS1403-CASE
Tools Lab" via
2.bp.blogspot.com 12
mins ago
A visitor from Colombo
viewed "UML diagrams
for Student Marks
Analysis System |
CS1403-CASE Tools
Lab" 13 mins ago
A visitor from Miraj,
Maharashtra viewed
Total Visitors:

386,620

June 2011 (3)


May 2011 (37)
April 2011 (172)
March 2011 (188)
February 2011 (88)
January 2011 (249)
December 2010 (36)

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)

Share this Article


0

Still, Need Help? Type Your Keywords Here:


Search

Searching for gauss seidel method c code for load flow?


1. Health Insurance - Insuring India

w w w .InsuringIndia.com

Get hassle free online Health Insurance with Low Premiums. Also avail Tax Benefits.

2. Arrange your Love Marriage!

w w w .shaadi.com

Get Marriage Proposals Daily. Register Free to find your Life Partner.

3. Gauss Seidel method c code for load flow

w w w .Answ ered-Questions.com

Top answers for Gauss Seidel method c code for load flow

4. Looking for Gauss Seidel method c code for load


Top
answers for Gauss Seidel method c code for load flow
flow?

w w w .InternetCorkBoard.com

Chitika | Opt out?

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

Network security software


Website

Links

Blog

Business internet connection


Learn Java

Friends

0 comments
Post a Comment

Enter your comment...

Comment as: Google Account


Publish

Preview

Links to this post


Create a Link

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

Follow this Website


Join this site
w ith Google Friend Connect

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

SSB Recruitment 2011 - w w w .ssb.nic.in - Constable


Jobs - 6/3/2011

UML diagrams for ATM(Automated Teller Machine)


System | CS1403-CASE Tools Lab

SBI Recruitment 2011 - 1030 PO Vacancies Online


Apply Now - 6/3/2011

UML diagrams for Payroll Processing System | CS1403CASE Tools Lab

IC1005 Robotics and Automation Syllabus - 5/31/2011

Already a member? Sign in

Copyright 2010-2012 Source Code Solutions - Entries (RSS) - Comment (RSS)

sourcecodesonline.blogspot.in/2011/03/solution-power-flow-gauss-seidel-method.html

UML Diagrams for Online Hospital Management System |


CS1403-CASE Tools Lab

Design by Jebastin J | Arthemia Template by SCS

4/4

S-ar putea să vă placă și