Skip to content
Snippets Groups Projects
Commit f197f954 authored by Henry's avatar Henry Committed by Andrew Heather
Browse files

tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D: Use PIMPLE rather...

tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D: Use PIMPLE rather than PISO to ensure updated fluxes are used in momentum equation
parent 9153118a
Branches
Tags
No related merge requests found
/*--------------------------------*- 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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment