mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
47eafa47f4
commit
0e4857e94a
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user