Skip to content

Commit

Permalink
Use 10^-14 instead of 12
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Jan 24, 2024
1 parent 33c9094 commit cb1076b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adapter.C
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit cb1076b

Please sign in to comment.