diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-10-04 21:06:20 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-10-04 21:06:20 -0300 |
commit | c7c1963fae6f88a55b3f7e4a3f9ea17e964d23d2 (patch) | |
tree | a80e1233afd61d642a49e16a2b6939862bf3c79e /Project/Electromechanical.h | |
parent | 3cd92c1acb9a6fed1067b49cb079e96d98ac35fa (diff) | |
download | PSP.git-c7c1963fae6f88a55b3f7e4a3f9ea17e964d23d2.tar.gz PSP.git-c7c1963fae6f88a55b3f7e4a3f9ea17e964d23d2.tar.xz PSP.git-c7c1963fae6f88a55b3f7e4a3f9ea17e964d23d2.zip |
Saturation fixed in q axis
Diffstat (limited to 'Project/Electromechanical.h')
-rw-r--r-- | Project/Electromechanical.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/Electromechanical.h b/Project/Electromechanical.h index 3dd239a..cbbb600 100644 --- a/Project/Electromechanical.h +++ b/Project/Electromechanical.h @@ -110,7 +110,7 @@ class Electromechanical : public ElectricCalculation double m_ctrlTimeStepMultiplier = 0.1; double m_tolerance = 1e-8; int m_maxIterations = 100; - double m_saturationTolerance = 1e-4; + double m_saturationTolerance = 1e-8; std::vector<double> m_eventTimeList; std::vector<bool> m_eventOccurrenceList; |