OpenFOAM-4.x/tutorials/combustion/SLFMFoam/FlameD/system/fvSolution
2018-01-21 04:58:47 +09:00

79 lines
1.8 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2;
format binary;
class dictionary;
location "system";
object fvSolution;
}
solvers
{
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 0;
}
pFinal
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 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-08;
}
}
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;
}
}
// ************************************************************************* //