From f197f9545f7aca3415ad5322ab7841e181c9291e Mon Sep 17 00:00:00 2001
From: Henry <Henry>
Date: Thu, 17 Jul 2014 11:30:02 +0100
Subject: [PATCH] tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D: Use
 PIMPLE rather than PISO to ensure updated fluxes are used in momentum
 equation

---
 .../pimpleDyMFoam/mixerVesselAMI2D/system/fvSolution   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/fvSolution b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/fvSolution
index 5a55fb8fafa..6fd5687db28 100644
--- a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/fvSolution
+++ b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/fvSolution
@@ -1,7 +1,7 @@
 /*--------------------------------*- C++ -*----------------------------------*\
 | =========                 |                                                 |
 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
-|  \\    /   O peration     | Version:  2.3.0                                 |
+|  \\    /   O peration     | Version:  2.3.x                                 |
 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
 |    \\/     M anipulation  |                                                 |
 \*---------------------------------------------------------------------------*/
@@ -51,7 +51,7 @@ solvers
         solver          smoothSolver;
         smoother        GaussSeidel;
         tolerance       1e-05;
-        relTol          0.1;
+        relTol          0.01;
     }
 
     UFinal
@@ -72,9 +72,9 @@ solvers
 
 PIMPLE
 {
-    correctPhi          no;
-    nOuterCorrectors    1;
-    nCorrectors         2;
+    correctPhi          yes;
+    nOuterCorrectors    2;
+    nCorrectors         1;
     nNonOrthogonalCorrectors 0;
 
     pRefCell            0;
-- 
GitLab