mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-15 20:41:56 -06:00
ebos: increase the maximum number of Newton iterations to 14
10 is a bit too little: the first time step of SPE9_CP now needs 13 iterations to converge. (before the transmissibility change of the previous commit it was 8 iterations IIRC.)
This commit is contained in:
parent
09cbc253f5
commit
f818c8a2ec
@ -167,9 +167,9 @@ SET_SCALAR_PROP(EclBaseProblem, NewtonRawTolerance, 1e-4);
|
||||
// thus abort the futile attempt early.
|
||||
SET_SCALAR_PROP(EclBaseProblem, NewtonMaxError, 0.1);
|
||||
|
||||
// set the maximum number of Newton iterations to 10 because the likelyhood that a time
|
||||
// step succeeds at more than 10 Newton iteration is rather small
|
||||
SET_INT_PROP(EclBaseProblem, NewtonMaxIterations, 10);
|
||||
// set the maximum number of Newton iterations to 14 because the likelyhood that a time
|
||||
// step succeeds at more than 14 Newton iteration is rather small
|
||||
SET_INT_PROP(EclBaseProblem, NewtonMaxIterations, 14);
|
||||
|
||||
// also, reduce the target for the "optimum" number of Newton iterations to 6. Note that
|
||||
// this is only relevant if the time step is reduced from the report step size for some
|
||||
|
Loading…
Reference in New Issue
Block a user