diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2018-07-14 09:04:40 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2018-07-14 09:04:40 -0300 |
commit | 73e934c17098281ffccd214f7517cd0f6ce03ab6 (patch) | |
tree | 8138eb23f888d151c475aca68c5701ce2c574282 /Project/Electromechanical.cpp | |
parent | 7ddd1d26ad13ad23f520dff08485ef2794d5958b (diff) | |
download | PSP.git-73e934c17098281ffccd214f7517cd0f6ce03ab6.tar.gz PSP.git-73e934c17098281ffccd214f7517cd0f6ce03ab6.tar.xz PSP.git-73e934c17098281ffccd214f7517cd0f6ce03ab6.zip |
fault and control system implementation error fixed
Diffstat (limited to 'Project/Electromechanical.cpp')
-rw-r--r-- | Project/Electromechanical.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/Electromechanical.cpp b/Project/Electromechanical.cpp index ea8b1bb..d140215 100644 --- a/Project/Electromechanical.cpp +++ b/Project/Electromechanical.cpp @@ -73,7 +73,7 @@ bool Electromechanical::RunStabilityCalculation() SetSyncMachinesModel(); // Calculate the admittance matrix with the synchronous machines. - if(!GetYBus(m_yBus, m_powerSystemBase, POSITIVE_SEQ, false, true)) { + if(!GetYBus(m_yBus, m_powerSystemBase, POSITIVE_SEQ, false, true, true)) { m_errorMsg = _("It was not possible to build the admittance matrix."); return false; } |