![]() |
deltaFlow
|
Declaration of functions and classes for constructing the bus admittance matrix ($$ Y_{bus} $$) in power system analysis. More...
#include <Eigen/Dense>

Go to the source code of this file.
Functions | |
| Eigen::MatrixXcd | computeAdmittanceMatrix (const BusData &busData, const BranchData &branchData) |
| Computes the complex bus admittance matrix ($$ Y_{bus} $$). | |
Declaration of functions and classes for constructing the bus admittance matrix ($$ Y_{bus} $$) in power system analysis.
This header provides the interface for computing the admittance matrix using bus and branch data. The admittance matrix $$ Y_{bus} $$ is a fundamental element in load flow studies, relating bus currents $$ I $$ and bus voltages $$ V $$ via the equation:
$$ I = Y_{bus} V $$
where:
Definition in file Admittance.H.
| Eigen::MatrixXcd computeAdmittanceMatrix | ( | const BusData & | busData, |
| const BranchData & | branchData | ||
| ) |
Computes the complex bus admittance matrix ($$ Y_{bus} $$).
This function generates the bus admittance matrix, which is essential in solving power flow equations in electrical networks. The admittance matrix is computed using the provided bus and branch data.
| busData | Data representing the buses in the network. |
| branchData | Data representing the branches (lines/transformers) in the network. |
Definition at line 32 of file Admittance.C.
References BranchData::B, BusData::Bs, BranchData::From, BusData::Gs, BusData::ID, LOG_ERROR, BranchData::R, BranchData::tapRatio, BranchData::To, and BranchData::X.
