You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
2.6 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p
{
solver GAMG;
tolerance 1e-08;
relTol 0.01;
smoother DICGaussSeidel; //GaussSeidel
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
U
{
solver smoothSolver;
smoother DILUGaussSeidel;
nSweeps 2;
tolerance 1e-08;
relTol 0.01;
}
k
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0.01;
}
epsilon
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0.1;
}
omega
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0.01;
}
R
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0.1;
}
nuTilda
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-07;
relTol 0.1;
}
"pcorr.*"
{
$p;
tolerance 1e-2;
relTol 0;
}
}
/*SIMPLE
{
nNonOrthogonalCorrectors 3;
}*/
PIMPLE
//SIMPLE
{
nOuterCorrectors 2;
nCorrectors 2;
nNonOrthogonalCorrectors 3;
//consistent yes;
}
/*relaxationFactors
{
equations
{
".*" 0.7;
"U.*" 0.9;
}
}*/
relaxationFactors
{
p 0.3;
U 0.3;
k 0.3;
epsilon 0.3;
omega 0.3;
R 0.5;
nuTilda 0.5;
}
// ************************************************************************* //