From cb1076b86f60c0785b95999a6304779bb610424c Mon Sep 17 00:00:00 2001 From: David Schneider Date: Wed, 24 Jan 2024 17:17:46 +0100 Subject: [PATCH] Use 10^-14 instead of 12 --- Adapter.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adapter.C b/Adapter.C index 151d6a1a..1aca14f3 100644 --- a/Adapter.C +++ b/Adapter.C @@ -651,7 +651,7 @@ void preciceAdapter::Adapter::adjustSolverTimeStepAndReadData() If the solver tries to use a bigger timestep, then it needs to use the same timestep as the one determined by preCICE. */ - double tolerance = 1e-12; + double tolerance = 1e-14; if (timestepPrecice_ - timestepSolverDetermined > tolerance) { // Add a bool 'subCycling = true' which is checked in the storeMeshPoints() function.