From 5fe427ab2d7af83050cb63271fddba7d592a5c71 Mon Sep 17 00:00:00 2001 From: iasonmanolas Date: Fri, 21 Jan 2022 14:10:00 +0200 Subject: [PATCH] decreased the percentage of external forces required for a drm simulation to converge to 1e-8 from 1e-5 --- drmsimulationmodel.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drmsimulationmodel.hpp b/drmsimulationmodel.hpp index 660e29b..e8484ae 100755 --- a/drmsimulationmodel.hpp +++ b/drmsimulationmodel.hpp @@ -46,7 +46,7 @@ public: // int desiredGradualExternalLoadsSteps{1}; double gamma{0.8}; double totalResidualForcesNormThreshold{1e-8}; - double totalExternalForcesNormPercentageTermination{1e-5}; + double totalExternalForcesNormPercentageTermination{1e-8}; std::optional maxDRMIterations; std::optional debugModeStep; std::optional totalTranslationalKineticEnergyThreshold;