From a81d13c2270f6adc89f8cbdf041983ee373dea4d Mon Sep 17 00:00:00 2001 From: Alf Birger Rustad Date: Mon, 24 Sep 2018 14:22:19 +0200 Subject: [PATCH 1/2] Increase default number of iterations for linear solver from 150 to 200 --- opm/autodiff/NewtonIterationBlackoilInterleaved.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/autodiff/NewtonIterationBlackoilInterleaved.hpp b/opm/autodiff/NewtonIterationBlackoilInterleaved.hpp index c265e3ad9..28777d74c 100644 --- a/opm/autodiff/NewtonIterationBlackoilInterleaved.hpp +++ b/opm/autodiff/NewtonIterationBlackoilInterleaved.hpp @@ -57,7 +57,7 @@ NEW_PROP_TAG(UseCpr); SET_SCALAR_PROP(FlowIstlSolverParams, LinearSolverReduction, 1e-2); SET_SCALAR_PROP(FlowIstlSolverParams, IluRelaxation, 0.9); -SET_INT_PROP(FlowIstlSolverParams, LinearSolverMaxIter, 150); +SET_INT_PROP(FlowIstlSolverParams, LinearSolverMaxIter, 200); SET_INT_PROP(FlowIstlSolverParams, LinearSolverRestart, 40); SET_INT_PROP(FlowIstlSolverParams, FlowLinearSolverVerbosity, 0); SET_INT_PROP(FlowIstlSolverParams, IluFillinLevel, 0); From dad7f72599dcbcb8848bb3727fda7b9e605c4b40 Mon Sep 17 00:00:00 2001 From: Alf Birger Rustad Date: Mon, 24 Sep 2018 14:28:28 +0200 Subject: [PATCH 2/2] Increase default number of non-linear iterations for 10 to 20 --- opm/autodiff/NonlinearSolverEbos.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/autodiff/NonlinearSolverEbos.hpp b/opm/autodiff/NonlinearSolverEbos.hpp index 4cd5e545a..e9aba8b2e 100644 --- a/opm/autodiff/NonlinearSolverEbos.hpp +++ b/opm/autodiff/NonlinearSolverEbos.hpp @@ -45,7 +45,7 @@ NEW_PROP_TAG(FlowNewtonMinIterations); NEW_PROP_TAG(NewtonRelaxationType); SET_SCALAR_PROP(FlowNonLinearSolver, NewtonMaxRelax, 0.5); -SET_INT_PROP(FlowNonLinearSolver, FlowNewtonMaxIterations, 10); +SET_INT_PROP(FlowNonLinearSolver, FlowNewtonMaxIterations, 20); SET_INT_PROP(FlowNonLinearSolver, FlowNewtonMinIterations, 1); SET_STRING_PROP(FlowNonLinearSolver, NewtonRelaxationType, "dampen");