diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-11-07 21:59:43 -0200 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-11-07 21:59:43 -0200 |
commit | b23a673fbe5cfd322956cdff8ef3472da8e0dbff (patch) | |
tree | 8a29fd584941228fd894050f37db876dfe0d02df /Project/PropertiesData.h | |
parent | 24808d2de827f219b683ad46744a179ae25bc859 (diff) | |
download | PSP.git-b23a673fbe5cfd322956cdff8ef3472da8e0dbff.tar.gz PSP.git-b23a673fbe5cfd322956cdff8ef3472da8e0dbff.tar.xz PSP.git-b23a673fbe5cfd322956cdff8ef3472da8e0dbff.zip |
ZIP load fully implemented
Need to save the new data
Diffstat (limited to 'Project/PropertiesData.h')
-rw-r--r-- | Project/PropertiesData.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Project/PropertiesData.h b/Project/PropertiesData.h index 3e6bbf6..1943d52 100644 --- a/Project/PropertiesData.h +++ b/Project/PropertiesData.h @@ -47,6 +47,17 @@ struct SimulationData { int controlTimeStepRatio = 10; double plotTime = 1e-2; bool useCOI = true; + + // ZIP load + bool useCompLoads = false; + double constImpedanceActive = 100.0; + double constCurrentActive = 0.0; + double constPowerActive = 0.0; + double constImpedanceReactive = 100.0; + double constCurrentReactive = 0.0; + double constPowerReactive = 0.0; + double underVoltageConstCurrent = 70.0; + double underVoltageConstPower = 70.0; }; struct GeneralData { |