ENH: propeller: use smoothSolver on transported quantities

This commit is contained in:
mattijs
2014-01-22 11:27:17 +00:00
parent c00f506ef9
commit 1dc9207000

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / O peration | Version: 2.2.2 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -46,15 +46,15 @@ solvers
"(U|k|epsilon)"
{
solver smoothSolver;
smoother GaussSeidel;
smoother symGaussSeidel;
tolerance 1e-6;
relTol 0.1;
}
"(U|k|epsilon)Final"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-6;
relTol 0;
}