#ifndef POWERFLOW_H #define POWERFLOW_H #include "ElectricCalculation.h" #include //temp #include //temp class PowerFlow : public ElectricCalculation { public: PowerFlow(std::vector elementList); ~PowerFlow(); virtual bool RunGaussSeidel(); protected: std::vector > > m_yBus; }; #endif // POWERFLOW_H