summaryrefslogtreecommitdiffstats
path: root/Project/PowerFlow.h
blob: 76b17e4191fab24f5e0f24c0579a5d61778f57e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef POWERFLOW_H
#define POWERFLOW_H

#include "ElectricCalculation.h"

#include <wx/string.h>//temp
#include <wx/log.h>//temp

class PowerFlow : public ElectricCalculation
{
   public:
    PowerFlow(std::vector<Element*> elementList);
    ~PowerFlow();
    virtual bool RunGaussSeidel();

   protected:
    std::vector<std::vector<std::complex<double> > > m_yBus;
};

#endif  // POWERFLOW_H