1.0

1.0 | 1 rating Rate this file 43 Downloads (last 30 days) File Size: 3.73 KB File ID: #19512

Admittance Bus (Y-Bus) Formation

by PRAVI

 

09 Apr 2008 (Updated 02 Apr 2009)

This program can be used for admittance bus formation for load flow analysis.

| Watch this File

File Information
Description

This program can be used for admittance bus formation for load flow analysis.

MATLAB release MATLAB 7.6 (R2008a)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (4)
27 Apr 2008 norhan2000 king

iam interested in matlap program

26 Jul 2008 jehan hussian

please send to me asolved example about ybas formation

02 Apr 2009 Duane Hanselman

Of use to the author only. Here is what the file ybusppg.m contains:
num = 14;
fb = linedata(:,1); % From bus number...
tb = linedata(:,2); % To bus number...
r = linedata(:,3); % Resistance, R...
x = linedata(:,4); % Reactance, X...
b = linedata(:,5); % Ground Admittance, B/2...
a = linedata(:,6); % Tap setting value..
z = r + i*x; % Z matrix...
y = 1./z; % To get inverse of each element...
b = i*b; % Make B imaginary...

nbus = max(max(fb),max(tb)); % no. of buses...
nbranch = length(fb); % no. of branches...
Y = zeros(nbus,nbus); % Initialise YBus...
 % Formation of the Off Diagonal Elements...
 for k=1:nbranch
     Y(fb(k),tb(k)) = Y(fb(k),tb(k))-y(k)/a(k);
     Y(tb(k),fb(k)) = Y(fb(k),tb(k));
 end
 % Formation of Diagonal Elements....
 for m =1:nbus
     for n =1:nbranch
         if fb(n) == m
             Y(m,m) = Y(m,m) + y(n)/(a(n)^2) + b(n);
         elseif tb(n) == m
             Y(m,m) = Y(m,m) + y(n) + b(n);
         end
     end
 end
 Y % Bus Admittance Matrix..

19 Sep 2009 bibha boro

thanx it helped me a lot

Please login to add a comment or rating.
Updates
21 Nov 2008

Updated for double lines

02 Apr 2009

Added linedatas..

Tag Activity for this File
Tag Applied By Date/Time
y z bus admittance impedance formation PRAVI 22 Oct 2008 09:56:57
bus Ned Gulley 21 Nov 2008 22:56:42
impedance Ned Gulley 21 Nov 2008 22:56:43
y z bus admittance impedance formation Noé Mesa Quintero 13 Apr 2009 13:16:27
impedance Noé Mesa Quintero 13 Apr 2009 13:16:33
bus Noé Mesa Quintero 13 Apr 2009 13:16:37
bus reuel49 bautista 25 Jun 2009 18:52:54
impedance reuel49 bautista 25 Jun 2009 18:52:58
y z bus admittance impedance formation reuel49 bautista 25 Jun 2009 18:53:06
impedance Davan Jaisarie 04 Nov 2009 04:27:16
what is linedata niharika agrawal 09 Aug 2011 06:42:13
y z bus admittance impedance formation ghanshyam vishwakarma 11 Jan 2012 00:25:19

Contact us at files@mathworks.com