ENH: Corrected tutorial run-error

This commit is contained in:
andy
2011-04-15 17:02:49 +01:00
parent 72cc3202ca
commit f3b394f5af

View File

@ -22,29 +22,27 @@ solvers
solver PCG; solver PCG;
preconditioner DIC; preconditioner DIC;
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0.1;
} }
"U.*" p_rghFinal
{ {
solver PBiCG; $p_rgh;
preconditioner DILU;
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0;
} }
k "(U|Alpha|k|epsilon)"
{ {
solver PBiCG; solver PBiCG;
preconditioner DILU; preconditioner DILU;
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0.1;
} }
epsilon "(U|Alpha|k|epsilon)Final"
{ {
solver PBiCG; $k;
preconditioner DILU;
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0;
} }
@ -54,13 +52,12 @@ solvers
solver PCG; solver PCG;
preconditioner DIC; preconditioner DIC;
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0.1;
} }
Alpha rhoFinal
{ {
solver PBiCG; $rho;
preconditioner DILU;
tolerance 1e-07; tolerance 1e-07;
relTol 0; relTol 0;
} }
@ -68,17 +65,9 @@ solvers
PIMPLE PIMPLE
{ {
momentumPredictor yes;
nOuterCorrectors 1;
nCorrectors 2; nCorrectors 2;
nNonOrthogonalCorrectors 1; nNonOrthogonalCorrectors 0;
} }
relaxationFactors
{
U 1;
k 1;
epsilon 1;
}
// ************************************************************************* // // ************************************************************************* //