diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-11-02 23:11:44 -0200 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-11-02 23:11:44 -0200 |
commit | 004257e2abebbf448ba8d1fba32daae216b2c88e (patch) | |
tree | 592ff32b18911e32ece4a7008d119627e856bd68 /Project/ElectricCalculation.h | |
parent | b306118b2683cf6f264b5f1617c3e0e62a6c9042 (diff) | |
download | PSP.git-004257e2abebbf448ba8d1fba32daae216b2c88e.tar.gz PSP.git-004257e2abebbf448ba8d1fba32daae216b2c88e.tar.xz PSP.git-004257e2abebbf448ba8d1fba32daae216b2c88e.zip |
Gauss-Seidel implemented
Diffstat (limited to 'Project/ElectricCalculation.h')
-rw-r--r-- | Project/ElectricCalculation.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Project/ElectricCalculation.h b/Project/ElectricCalculation.h index 5339199..1bb6361 100644 --- a/Project/ElectricCalculation.h +++ b/Project/ElectricCalculation.h @@ -4,16 +4,16 @@ #include <vector> #include <complex> -class Element; -class Bus; -class Capacitor; -class IndMotor; -class Inductor; -class Line; -class Load; -class SyncGenerator; -class SyncMotor; -class Transformer; +#include "Element.h" +#include "Bus.h" +#include "Capacitor.h" +#include "IndMotor.h" +#include "Inductor.h" +#include "Line.h" +#include "Load.h" +#include "SyncGenerator.h" +#include "SyncMotor.h" +#include "Transformer.h" class ElectricCalculation { |