diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-11-03 16:26:55 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-11-03 16:26:55 -0200 |
commit | 4799019fb948226daf5777d0d3ba41257dd55657 (patch) | |
tree | acc64be850536c872189d4885be51d2fc9075436 /Project/ElectricCalculation.h | |
parent | 004257e2abebbf448ba8d1fba32daae216b2c88e (diff) | |
download | PSP.git-4799019fb948226daf5777d0d3ba41257dd55657.tar.gz PSP.git-4799019fb948226daf5777d0d3ba41257dd55657.tar.xz PSP.git-4799019fb948226daf5777d0d3ba41257dd55657.zip |
Power flow validate method under implementation
Diffstat (limited to 'Project/ElectricCalculation.h')
-rw-r--r-- | Project/ElectricCalculation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Project/ElectricCalculation.h b/Project/ElectricCalculation.h index 1bb6361..16a761a 100644 --- a/Project/ElectricCalculation.h +++ b/Project/ElectricCalculation.h @@ -22,6 +22,7 @@ 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, double systemPowerBase); protected: std::vector<Bus*> m_busList; |