diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-10 16:10:43 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-10 16:10:43 -0200 |
commit | 568d04c7f692e64bc29b2ca195c2de6af7fdd43a (patch) | |
tree | 5b458c70a0cb301173d1b808374a0f367813dab5 /Project/SyncMotor.h | |
parent | 7928eca406f5000aabf202fd393908b097f27449 (diff) | |
download | PSP.git-568d04c7f692e64bc29b2ca195c2de6af7fdd43a.tar.gz PSP.git-568d04c7f692e64bc29b2ca195c2de6af7fdd43a.tar.xz PSP.git-568d04c7f692e64bc29b2ca195c2de6af7fdd43a.zip |
Elements data update
Elements data update after fault calculation implemented.
Diffstat (limited to 'Project/SyncMotor.h')
-rw-r--r-- | Project/SyncMotor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Project/SyncMotor.h b/Project/SyncMotor.h index d6e9bf1..7018e5d 100644 --- a/Project/SyncMotor.h +++ b/Project/SyncMotor.h @@ -32,6 +32,9 @@ struct SyncMotorElectricalData { double groundResistance = 0.0; double groundReactance = 0.0; bool groundNeutral = true; + // p.u. fault data + std::complex<double> faultCurrent[3] = { std::complex<double>(0.0, 0.0), std::complex<double>(0.0, 0.0), + std::complex<double>(0.0, 0.0) }; // Stability bool plotSyncMachine = false; |