OF-POSTECH-1/examples/FlameD_LagrangianCMC/system/fvSolution

71 lines
1.8 KiB
C++
Executable file

/*--------------------------------*- 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
{
rho
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 0;
}
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-8;
relTol 0.0;
}
rhoFinal
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 0;
}
pFinal
{
solver PCG;
preconditioner DIC;
tolerance 1e-8;
relTol 0.0;
}
"(U|Yi|ha|k|epsilon|mf|mfVar|Fk)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
"(U|Yi|ha|k|epsilon|mf|mfVar|Fk)Final"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
}
PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
}
// ************************************************************************* //