ENH: Tutorial updates re: PIMPLE updates

This commit is contained in:
andy
2011-04-18 11:54:59 +01:00
parent 89335fa1ce
commit f3e2afa23c
14 changed files with 212 additions and 161 deletions

View File

@ -17,57 +17,64 @@ FoamFile
solvers
{
p
{
solver GAMG;
tolerance 0;
relTol 0.01;
smoother DICGaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
maxIter 50;
};
pFinal
{
$p
tolerance 1e-6;
relTol 0;
};
"(rho|G)"
rho
{
solver PCG;
preconditioner DIC;
maxIter 200;
tolerance 1e-06;
tolerance 1e-05;
relTol 0.1;
}
rhoFinal
{
$rho;
tolerance 1e-05;
relTol 0;
};
"(Yi|hs)"
}
"(U|hs|k|omega)"
{
solver PBiCG;
preconditioner DILU;
maxIter 200;
tolerance 1e-06;
relTol 0;
};
"(U|k|omega)"
relTol 0.1;
}
"(U|hs|k|omega)Final"
{
solver smoothSolver;
smoother GaussSeidel;
maxIter 200;
$U;
tolerance 1e-06;
relTol 0;
};
}
p
{
solver GAMG;
tolerance 0;
relTol 0.1;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
pFinal
{
$p;
tolerance 1e-06;
relTol 0;
}
"(Yi|O2|N2|H2O)"
{
$hsFinal;
}
}
PISO
PIMPLE
{
nCorrectors 3;
nNonOrthogonalCorrectors 0;