OF-POSTECH-1/examples/FlameD_SLFM/system/fvSolution
2017-08-03 22:15:03 +09:00

82 lines
1.8 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.7.1 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-8;
relTol 0.0;
}
pFinal
{
solver PCG;
preconditioner DIC;
tolerance 1e-8;
relTol 0.0;
}
"(U|Yi|h|k|epsilon|mf|mfVar)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
"(U|Yi|h|k|epsilon|mf|mfVar)Final"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
}
SIMPLE
{
nNonOrthogonalCorrectors 0;
rhoMin 0.01;
rhoMax 3;
residualControl
{
k 1e-8;
}
}
relaxationFactors
{
fields
{
p 0.3;
rho 1;
}
equations
{
U 0.3;
mf 0.3;
mfVar 0.3;
k 0.3;
epsilon 0.3;
".*" 0.7;
}
}
// ************************************************************************* //