diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-05-22 20:17:41 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-05-22 20:17:41 -0300 |
commit | f995850b38916b38718b84f4b82948479a81855a (patch) | |
tree | db1f4f79f2d47383451869ce214dc416b0174dac /Project/PowerFlow.cpp | |
parent | 30181ca0ae73f5f7f1856ac289db8fcf849c9a84 (diff) | |
download | PSP.git-f995850b38916b38718b84f4b82948479a81855a.tar.gz PSP.git-f995850b38916b38718b84f4b82948479a81855a.tar.xz PSP.git-f995850b38916b38718b84f4b82948479a81855a.zip |
Events implemented
Effects on adimittance matrix and elements:
->Fault on bus;
->Generation/Load switching;
->Branch switching.
Diffstat (limited to 'Project/PowerFlow.cpp')
-rw-r--r-- | Project/PowerFlow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/PowerFlow.cpp b/Project/PowerFlow.cpp index bfee2af..fe59067 100644 --- a/Project/PowerFlow.cpp +++ b/Project/PowerFlow.cpp @@ -39,7 +39,7 @@ bool PowerFlow::RunGaussSeidel(double systemPowerBase, int busNumber = 0; for(auto itb = m_busList.begin(); itb != m_busList.end(); itb++) { Bus* bus = *itb; - BusElectricalData data = bus->GetEletricalData(); + BusElectricalData data = bus->GetElectricalData(); // Fill the bus type if(data.slackBus) busType.push_back(BUS_SLACK); |