ENH: Updated LTSReactingParcelFoam tutorials

This commit is contained in:
andy
2011-03-25 14:35:50 +00:00
parent 3bb159794f
commit 28cd7fc92f
7 changed files with 68 additions and 49 deletions

View File

@ -51,8 +51,6 @@ maxCo 0.5;
maxDeltaT 1;
alphaTauSpecie 1e10;
alphaTauTemp 0.005;
// ************************************************************************* //

View File

@ -17,7 +17,7 @@ FoamFile
ddtSchemes
{
default localEuler invTauFlow;
default localEuler invTau;
}
gradSchemes

View File

@ -24,6 +24,13 @@ solvers
tolerance 0;
relTol 0.1;
}
rhoFinal
{
solver PCG;
preconditioner DIC;
tolerance 1e-4;
relTol 0;
}
p
{
solver GAMG;
@ -44,6 +51,14 @@ solvers
maxIter 50;
};
pFinal
{
$p;
tolerance 1e-4;
relTol 0;
};
"(U|Yi|hs|k|epsilon)"
{
solver smoothSolver;
@ -51,9 +66,17 @@ solvers
tolerance 0;
relTol 0.1;
}
"(U|Yi|hs|k|epsilon)Final"
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 1e-4;
relTol 0;
}
}
PISO
PIMPLE
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
@ -64,8 +87,8 @@ PISO
additional
{
eWork true;
hWork true;
pressureWork true;
pressureWorkTimeDerivative true;
solveSpecies true;
}