Skip to content
Snippets Groups Projects
Commit 5b63fea6 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/use-parameters-instead-of-properties' into 'master'

[test][1p][sequential] use parameters instead of properties

See merge request !1198
parents 44c5c02f 298c8f9b
No related branches found
No related tags found
1 merge request!1198[test][1p][sequential] use parameters instead of properties
...@@ -11,3 +11,7 @@ TransmissibilityCriterion = 1 # 0 = default criterion, 1 = accumulative criterio ...@@ -11,3 +11,7 @@ TransmissibilityCriterion = 1 # 0 = default criterion, 1 = accumulative criterio
RefinementRatio = 0 RefinementRatio = 0
[LinearSolver]
GMResRestart = 80
MaxIterations = 1000;
ResidualReduction = 1e-8;
...@@ -6,3 +6,7 @@ File = ./grids/test_diffusion3d_ug1.dgf ...@@ -6,3 +6,7 @@ File = ./grids/test_diffusion3d_ug1.dgf
RefinementRatio = 0 RefinementRatio = 0
[LinearSolver]
GMResRestart = 80
MaxIterations = 1000;
ResidualReduction = 1e-8;
...@@ -80,10 +80,6 @@ SET_PROP(DiffusionTestTypeTag, FluidSystem) ...@@ -80,10 +80,6 @@ SET_PROP(DiffusionTestTypeTag, FluidSystem)
SET_TYPE_PROP(DiffusionTestTypeTag, LinearSolver, SuperLUBackend); SET_TYPE_PROP(DiffusionTestTypeTag, LinearSolver, SuperLUBackend);
#else #else
SET_TYPE_PROP(DiffusionTestTypeTag, LinearSolver, ILUnRestartedGMResBackend); SET_TYPE_PROP(DiffusionTestTypeTag, LinearSolver, ILUnRestartedGMResBackend);
SET_INT_PROP(DiffusionTestTypeTag, LinearSolverGMResRestart, 80);
SET_INT_PROP(DiffusionTestTypeTag, LinearSolverMaxIterations, 1000);
SET_SCALAR_PROP(DiffusionTestTypeTag, LinearSolverResidualReduction, 1e-8);
SET_SCALAR_PROP(DiffusionTestTypeTag, LinearSolverPreconditionerIterations, 1);
#endif #endif
// set the types for the 2PFA FV method // set the types for the 2PFA FV method
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment