diff --git a/tutorials/multiphase/settlingFoam/ras/tank3D/system/fvSolution b/tutorials/multiphase/settlingFoam/ras/tank3D/system/fvSolution
index ca936f664a11bd22741ff2d4ab7d5194c8988386..858173d556dd66290135b81d565d1521d75ff714 100644
--- a/tutorials/multiphase/settlingFoam/ras/tank3D/system/fvSolution
+++ b/tutorials/multiphase/settlingFoam/ras/tank3D/system/fvSolution
@@ -22,29 +22,27 @@ solvers
         solver          PCG;
         preconditioner  DIC;
         tolerance       1e-07;
-        relTol          0;
+        relTol          0.1;
     }
 
-    "U.*"
+    p_rghFinal
     {
-        solver          PBiCG;
-        preconditioner  DILU;
+        $p_rgh;
         tolerance       1e-07;
         relTol          0;
     }
 
-    k
+    "(U|Alpha|k|epsilon)"
     {
         solver          PBiCG;
         preconditioner  DILU;
         tolerance       1e-07;
-        relTol          0;
+        relTol          0.1;
     }
 
-    epsilon
+    "(U|Alpha|k|epsilon)Final"
     {
-        solver          PBiCG;
-        preconditioner  DILU;
+        $k;
         tolerance       1e-07;
         relTol          0;
     }
@@ -54,13 +52,12 @@ solvers
         solver          PCG;
         preconditioner  DIC;
         tolerance       1e-07;
-        relTol          0;
+        relTol          0.1;
     }
 
-    Alpha
+    rhoFinal
     {
-        solver          PBiCG;
-        preconditioner  DILU;
+        $rho;
         tolerance       1e-07;
         relTol          0;
     }
@@ -68,17 +65,9 @@ solvers
 
 PIMPLE
 {
-    momentumPredictor yes;
-    nOuterCorrectors  1;
-    nCorrectors       2;
-    nNonOrthogonalCorrectors 1;
+    nCorrectors     2;
+    nNonOrthogonalCorrectors 0;
 }
 
-relaxationFactors
-{
-    U               1;
-    k               1;
-    epsilon         1;
-}
 
 // ************************************************************************* //