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

93 lines
2.1 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
{
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|h|k|epsilon|mf|mfVar|Fk|Qi|Qh)"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
"(U|Yi|h|k|epsilon|mf|mfVar|Fk|Qi|Qh)Final"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0;
}
}
SIMPLE
{
nNonOrthogonalCorrectors 0;
rhoMin 0.01;
rhoMax 3;
residualControl
{
k 1e-5;
}
}
relaxationFactors
{
fields
{
p 0.3;
rho 1;
}
equations
{
U 0.7;
h 0.7;
".*" 0.7;
}
}
// ************************************************************************* //