OpenFOAM-4.x/tutorials/combustion/NOxFoam_thermal/system/fvSolution
2018-01-25 22:19:52 +09:00

51 lines
1.2 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.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
NO
{
solver smoothSolver;
smoother GaussSeidel;
tolerance 0;
relTol 0.1;
maxIter 20;
}
}
SIMPLE
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
rhoMin 0.1;
rhoMax 1.5;
}
relaxationFactors
{
fields
{
}
equations
{
".*" 0.7;
}
}
// ************************************************************************* //