ENH: Updated tutorials

This commit is contained in:
andy
2011-04-15 16:46:35 +01:00
parent 717db62583
commit 154761a3a1
55 changed files with 369 additions and 314 deletions

View File

@ -17,7 +17,15 @@ FoamFile
solvers
{
"(rho|U|k|omega)"
rho
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0.1;
}
rhoFinal
{
solver PBiCG;
preconditioner DILU;
@ -25,6 +33,7 @@ solvers
relTol 0;
}
p
{
solver GAMG;
@ -45,16 +54,36 @@ solvers
tolerance 1e-08;
relTol 0;
}
"(k|omega)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0.1;
}
UFinal
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
}
PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 1;
}
SIMPLE
PIMPLE
{
nCorrectors 3;
nNonOrthogonalCorrectors 0;
}