diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-11-07 17:23:07 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-11-07 17:23:07 -0200 |
commit | b6d4815859b494cc6e5e1f1718a3b410fdd6037a (patch) | |
tree | b66acbfab636dd4606d8b893c489d76b34977749 /Project/ElectricCalculation.h | |
parent | 9919f24692c1fe9b8e11fde5c6d5c18f169b5c10 (diff) | |
download | PSP.git-b6d4815859b494cc6e5e1f1718a3b410fdd6037a.tar.gz PSP.git-b6d4815859b494cc6e5e1f1718a3b410fdd6037a.tar.xz PSP.git-b6d4815859b494cc6e5e1f1718a3b410fdd6037a.zip |
Reactive limits under implementation
Diffstat (limited to 'Project/ElectricCalculation.h')
-rw-r--r-- | Project/ElectricCalculation.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Project/ElectricCalculation.h b/Project/ElectricCalculation.h index 02a45e0..ac573cd 100644 --- a/Project/ElectricCalculation.h +++ b/Project/ElectricCalculation.h @@ -24,10 +24,10 @@ class ElectricCalculation ~ElectricCalculation(); virtual void GetElementsFromList(std::vector<Element*> elementList); virtual bool GetYBus(std::vector<std::vector<std::complex<double> > >& yBus, double systemPowerBase); - virtual void ValidateElementsPowerFlow(std::vector<std::complex<double> > voltage, - std::vector<std::complex<double> > power, - std::vector<BusType> busType, - double systemPowerBase); + virtual void UpdateElementsPowerFlow(std::vector<std::complex<double> > voltage, + std::vector<std::complex<double> > power, + std::vector<BusType> busType, + double systemPowerBase); protected: std::vector<Bus*> m_busList; |