Formulation and calculation of Y- bus matrix of a given system using MATLAB software.
Experiment: Formulation and calculation of Y- bus matrix of a given system using MATLAB software.
The Y-bus matrix is a matrix representation of the admittance values of a power system. It is used in power flow analysis to solve for voltage magnitudes and phase angles at each bus in the system. MATLAB software provides a powerful tool to create and calculate the Y-bus matrix of a given power system.
The Y-bus matrix is a square matrix whose size is equal to the number of buses in the system. The diagonal elements of the matrix represent the self-admittance of each bus, while the off-diagonal elements represent the mutual admittance between buses.
The formulation of the Y-bus matrix involves the following steps:
Calculate the admittance value for each transmission line, transformer, and shunt capacitor in the system.
Determine the direction of each transmission line, which is usually defined by the direction of the current flowing into the bus with the lower bus number.
Calculate the off-diagonal elements of the Y-bus matrix, which represent the mutual admittance between buses. The off-diagonal elements are calculated using the formula:
Y_ij = -(1/Z_ij) * exp(-j*theta_ij)
where Z_ij is the impedance of the transmission line between buses i and j, and theta_ij is the phase angle difference between the voltage at bus i and j.
Calculate the diagonal elements of the Y-bus matrix, which represent the self-admittance of each bus. The diagonal elements are calculated using the formula:
Y_ii = sum(Y_ij) + Y_s
where Y_ij is the mutual admittance between buses i and j, and Y_s is the admittance of any shunt capacitors connected to bus i.
Once the Y-bus matrix is formulated, MATLAB software can be used to calculate the voltage magnitudes and phase angles at each bus using the power flow equations. This allows engineers to analyze and optimize the performance of the power system.
PROGRAM:
%formation
of Y Bus Matrix%
clear all,
z12=input('enter
impedance for line12=');
z13=input('enter
impedance for line13=');
z23=input('enter
impedance for line23=');
y12=1/z12;
y23=1/z23;
y13=1/z13;
y21=y12;
y32=y23;
y31=y13;
y11=y12+y13;
y22=y12+y23;
y33=y13+y23;
ybus=[y11 -y12
-y13; -y21 y22 -y23; -y31 -y32 y33]
INPUT:
enter impedance for
line12=0.25+1i
enter impedance for
line13=0.2+0.8i
enter impedance for line23=0.2+0.8i
RESULT:
ybus =
0.5294 - 2.1176i -0.2353 + 0.9412i -0.2941 + 1.1765i
-0.2353 + 0.9412i 0.5294 - 2.1176i -0.2941 + 1.1765i
-0.2941 + 1.1765i -0.2941 + 1.1765i 0.5882 - 2.3529i
Conclusion: Thus, we have Studied the calculation of Y- bus matrix of a given system using MATLAB software.
Comments
Post a Comment
thanks for comment