You are on page 1of 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 Advertise on Source Code Solutions!

Gauss-Seidel Method | EE1404 Power


System Simulation Laboratory
[12:57 PM | 0 comments ]

Tweet

Searching for gauss seidel method c code for load flow?


1. 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

2. Looking for Gauss Seidel method c code for load w w w .InternetCorkBoard.com


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

Stay Connected With Us - Subscribe to RSS Feed


3. Looking For Gauss Seidel method c code for load w w w .MonsterMarketplace.com
flow?
Find What You Need. Look For Gauss Seidel method c code for load flow Here Now
Email address... Submit

4. Looking for Gauss Seidel method c code for load flow? w w w .Amazon.com
Spread the Word!
Find Gauss Seidel method c code for load flow at Amazon
Add this button to your blog:
Chitika | Opt out?

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


text-align:right; float:right;

AIM: 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 Gauss-
Seidel iterative algorithm. ERROR
SOFTWARE REQUIRED:
MATLAB 5.3
The requested URL
could not be
THEORY: 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: 0
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)
Sponsors
10th Results 2012 (1)
5. View the results.
Activity Diagrams (17)
AdWords (13)
EXERCISE: Aeronautical Engg
The figure shows the single line diagram of a simple 3 buses power system with generator at Syllabus (67)
bus 1.The magnitude at bus 1 is adjusted to 1.05pu. The scheduled loads at buses 2 and 3 are Anna University Results
April/May 2011 (1)
marked on the diagram. Line impedance are marked in pu. The base value is 100kVA. The line
Aptitude (19)
charging susceptances are neglected. Determine the phasor values of the voltage at the load
ASCII (5)
buses 2 and 3. Find the slack bus real and reactive power. Automobile Engg
Verify the result using MATLAB. 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) Live Traffic Feed


C++ Programs (22)
clc;
CASE Tools Lab (136)
data=[1 1 2 10-j*20
Civil Engg Syllabus (80)
2 1 3 10-j*30
Class Diagrams (17)
3 2 3 16-j*32]
Collaboration Diagrams
A visitor from Guwahati,
elements=max(data(:,1)); (17) Assam viewed "MATLAB
bus=max(max(data(:,2)),max(data(:,3))); Communication Skill and Program for Solution
Seminar (24)
y=zeros(bus,bus); Power Flow Gauss-Seidel
Component Diagrams
for p=1:bus, (16)
Method | EE1404
for q=1:elements, CSE Syllabus (32) Power System Simulation
if(data(q,2)==p|data(q,3)==p) Data Structures Lab (14) Laboratory" 0 secs ago
y(p,p)=y(p,p)+data(q,4); Database Management A visitor from Coimbatore,
Systems Lab (12)
end Tamil Nadu viewed
Deployment Diagrams
end (10)
"CS1356 Compiler Design
end Digital Lab (13) Lab Syllabus" 6 mins ago
for p=1:bus, DSP and Communications A visitor from Hyderabad,
Systems Lab (13)
for q=1:bus, Andhra Pradesh viewed
eBooks (1)
if (p~=q) "Visual C++ Program for
ECE Syllabus (62)
for r=1:elements the Implementation of
EEE Syllabus (66)
if((data(r,2)==p&data(r,3)==q)|(data(r,2)==q&data(r,3)==p))
Hospital Management
EIE Syllabus (33)
y(p,q)=-(data(r,4));
System | IT1253 -
Graphics and Multimedia
Lab (19) Software Engineering
end
HTML (75) Laboratory" 6 mins ago
end
end
IT Syllabus (84) A visitor from New Delhi,
end
Java Programming Lab Delhi viewed "C Program
(16)
for the Implementation of a
end Java Programs (25)
Single Pass Assembler |
a1=input('enter p2 in MW:'); Job Alert (3)
Make 3D Headings (1)
CS1207 - System
b1=input('enter q2 in MVAR:');
MATLAB Programs (24)
Software Laboratory" 7
a2=input('enter p3 in MW:');
Netw ork Lab (11) mins ago
b2=input('enter q3 in MVAR');
Object Diagrams (1) A visitor from Pakistan
pu=input('enter the base value in MVA');
Object Oriented viewed "Class diagram for
p2=(a1/pu); Programming Lab (26)
Online Hospital
q2=(b1/pu); OOAD Diagrams (132)
Management System |
p3=(a2/pu); OOPS Lab (26)
CS1403-CASE Tools
q3=(b2/pu); Operating Systems Lab
(42) Lab" 9 mins ago
dx1=1+j*0;
Pow er System Simulation A visitor from Colombo
dx2=1+j*0; Lab (11)
left "UML diagrams for
v1=1.05; Sequence Diagrams (17)
Student Marks Analysis
v2=1+j*0; Softw are Components
Lab (18) System | CS1403-CASE
v3=1+j*0; Tools Lab" via
Softw are Engineering
iter=0; Lab (18) 2.bp.blogspot.com 12
disp('iter v2 v3'); State Chart Diagrams (5) mins ago
while(abs(dx1)&abs(dx2)>=0.00001)&iter<7; Syllabus (514)
A visitor from Colombo
iter=iter+1; System Softw are Lab
(11) viewed "UML diagrams
g1=(((p2-j*q2)/conj(v2))+(-y(1,2)*v1)+(-y(2,3)*v3))/y(2,2); for Student Marks
Time Table Apr/May 2011
g2=(((p3-j*q3)/conj(v3))+(-y(1,3)*v1)+(-y(2,3)*g1))/y(3,3); (5) Analysis System |
dx1=g1-v2; UML Diagrams (136) CS1403-CASE Tools
dx2=g2-v3; Use Case Diagrams (18) Lab" 13 mins ago
v2=v2+dx1; Visual C++ Programs
(31) A visitor from Miraj,
v3=v3+dx2; Maharashtra viewed
Visual Programming Lab
fprintf ('%g',iter),disp([v2,v3]); (15)
Total Visitors:
end
Blog Archive

June 2012 (1)


386,620
RESULT:
June 2011 (3)
Thus the mathematical formulation of power flow model in complex
May 2011 (37)
form and a simple method of solving power flow problems of small sized system understood using Gauss- April 2011 (172)
Seidel iterative algorithm. 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

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 w w w .InternetCorkBoard.com


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

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 Network security software Business internet connection


Singles Website Links Blog 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 Home Older Post

Recent Posts Follow this Website Popular Posts


Tamil Nadu State Board SSLC | 10th Standard Pubilc Join this site UML diagrams for Library Management System |
Exam Results 2012 - 6/4/2012 w ith Google Friend Connect CS1403-CASE Tools Lab

Bank of India Recruitment 2011 for General Banking Members (11) UML diagrams for Online Railw ay Ticket Reservation
Officer - 6/3/2011 System | CS1403-CASE Tools Lab

SSB Recruitment 2011 - w w w .ssb.nic.in - Constable UML diagrams for ATM(Automated Teller Machine)
Jobs - 6/3/2011 System | CS1403-CASE Tools Lab

SBI Recruitment 2011 - 1030 PO Vacancies Online UML diagrams for Payroll Processing System | CS1403-
Apply Now - 6/3/2011 CASE Tools Lab
Already a member? Sign in
IC1005 Robotics and Automation Syllabus - 5/31/2011 UML Diagrams for Online Hospital Management System |
CS1403-CASE Tools Lab

Copyright 2010-2012 Source Code Solutions - Entries (RSS) - Comment (RSS) Design by Jebastin J | Arthemia Template by SCS

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

You might also like