diff options
Diffstat (limited to 'Project/PowerFlow.h')
-rw-r--r-- | Project/PowerFlow.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Project/PowerFlow.h b/Project/PowerFlow.h new file mode 100644 index 0000000..1e5c621 --- /dev/null +++ b/Project/PowerFlow.h @@ -0,0 +1,27 @@ +#ifndef POWERFLOW_H +#define POWERFLOW_H + +#include "ElectricCalculation.h" + +#include <wx/string.h> +#include <wx/intl.h> //_() +#include <wx/log.h> //temp + +class PowerFlow : public ElectricCalculation +{ + public: + PowerFlow(std::vector<Element*> elementList); + ~PowerFlow(); + virtual bool RunGaussSeidel(double systemPowerBase = 100e6, + int maxIteration = 5000, + double error = 1e-6, + double initAngle = 0.0, + double accFactor = 1.0); + + virtual wxString GetErrorMessage() { return m_errorMsg; } + protected: + std::vector<std::vector<std::complex<double> > > m_yBus; + wxString m_errorMsg = ""; +}; + +#endif // POWERFLOW_H |