From b306118b2683cf6f264b5f1617c3e0e62a6c9042 Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Tue, 1 Nov 2016 19:36:24 -0200 Subject: Power flow (gs) under implementation --- Project/PowerFlow.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Project/PowerFlow.h (limited to 'Project/PowerFlow.h') diff --git a/Project/PowerFlow.h b/Project/PowerFlow.h new file mode 100644 index 0000000..76b17e4 --- /dev/null +++ b/Project/PowerFlow.h @@ -0,0 +1,20 @@ +#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 -- cgit