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...
This commit is contained in:
Andreas Lauser 2014-11-28 13:12:15 +01:00
parent 47eafa47f4
commit 0e4857e94a

View File

@ -137,6 +137,10 @@ SET_SCALAR_PROP(EclBaseProblem, EndTime, 1e100);
// not millions of trillions of years, that is...) // not millions of trillions of years, that is...)
SET_SCALAR_PROP(EclBaseProblem, InitialTimeStepSize, 1e100); 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 ... // Disable the VTK output by default for this problem ...
SET_BOOL_PROP(EclBaseProblem, EnableVtkOutput, false); SET_BOOL_PROP(EclBaseProblem, EnableVtkOutput, false);