89 lines
2.2 KiB
Text
89 lines
2.2 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.6.x |
|
||
|
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
object fvSolution;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
solvers
|
||
|
{
|
||
|
p
|
||
|
{
|
||
|
solver GAMG;
|
||
|
tolerance 1e-7;
|
||
|
relTol 0.01;
|
||
|
smoother GaussSeidel;
|
||
|
nPreSweeps 0;
|
||
|
nPostSweeps 2;
|
||
|
cacheAgglomeration on;
|
||
|
agglomerator faceAreaPair;
|
||
|
nCellsInCoarsestLevel 10;
|
||
|
mergeLevels 1;
|
||
|
}
|
||
|
|
||
|
pFinal
|
||
|
{
|
||
|
solver GAMG;
|
||
|
tolerance 1e-7;
|
||
|
relTol 0;
|
||
|
smoother GaussSeidel;
|
||
|
nPreSweeps 0;
|
||
|
nPostSweeps 2;
|
||
|
cacheAgglomeration on;
|
||
|
agglomerator faceAreaPair;
|
||
|
nCellsInCoarsestLevel 10;
|
||
|
mergeLevels 1;
|
||
|
}
|
||
|
|
||
|
"(U|k|omega)"
|
||
|
{
|
||
|
solver PBiCG;
|
||
|
preconditioner DILU;
|
||
|
tolerance 1e-06;
|
||
|
relTol 0;
|
||
|
}
|
||
|
|
||
|
cellDisplacement
|
||
|
{
|
||
|
solver GAMG;
|
||
|
tolerance 1e-5;
|
||
|
relTol 0;
|
||
|
smoother GaussSeidel;
|
||
|
cacheAgglomeration true;
|
||
|
nCellsInCoarsestLevel 10;
|
||
|
agglomerator faceAreaPair;
|
||
|
mergeLevels 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
PIMPLE
|
||
|
{
|
||
|
nOuterCorrectors 2;
|
||
|
nCorrectors 1;
|
||
|
nNonOrthogonalCorrectors 0;
|
||
|
}
|
||
|
|
||
|
relaxationFactors
|
||
|
{
|
||
|
p 0.3;
|
||
|
U 0.7;
|
||
|
k 0.7;
|
||
|
omega 0.7;
|
||
|
}
|
||
|
|
||
|
cache
|
||
|
{
|
||
|
grad(U);
|
||
|
}
|
||
|
|
||
|
// ************************************************************************* //
|