From 0e4857e94a37019bf05a7777a4f93111b3f3e762 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Fri, 28 Nov 2014 13:12:15 +0100 Subject: [PATCH] ebos: increase raw tolerance of the non-linear solver to 1e-4 ECLiPSE and opm-autodiff seem to be in that range of accuracy, too. At least the number of Newton iterations per time step now matches that of autodiff quite well... --- applications/ebos/eclproblem.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/applications/ebos/eclproblem.hh b/applications/ebos/eclproblem.hh index c068d5c42..31c5df080 100644 --- a/applications/ebos/eclproblem.hh +++ b/applications/ebos/eclproblem.hh @@ -137,6 +137,10 @@ SET_SCALAR_PROP(EclBaseProblem, EndTime, 1e100); // not millions of trillions of years, that is...) SET_SCALAR_PROP(EclBaseProblem, InitialTimeStepSize, 1e100); +// increase the default raw tolerance for the newton solver to 10^-4 because this is what +// everone else seems to be doing... +SET_SCALAR_PROP(EclBaseProblem, NewtonRawTolerance, 1e-4); + // Disable the VTK output by default for this problem ... SET_BOOL_PROP(EclBaseProblem, EnableVtkOutput, false);