db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
137 lines
3.1 KiB
C++
137 lines
3.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.5 |
|
|
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object fvSolution;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
solvers
|
|
{
|
|
// Solver for the rho equation
|
|
rho PCG
|
|
{
|
|
preconditioner DIC;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
// Solver for the U equation
|
|
U PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
// Solver for the p equation
|
|
p PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
G PCG
|
|
{
|
|
preconditioner DIC;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
Yi PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
CO2 PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
O2 PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
N2 PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
CH4 PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
H2 PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
H2O PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
CO PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-06;
|
|
relTol 0;
|
|
};
|
|
|
|
// Solver for the h equation
|
|
h PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
// Solver for the R equation
|
|
R PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
// Solver for the k equation
|
|
k PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
// Solver for the epsilon equation
|
|
epsilon PBiCG
|
|
{
|
|
preconditioner DILU;
|
|
tolerance 1e-05;
|
|
relTol 0;
|
|
};
|
|
}
|
|
|
|
PISO
|
|
{
|
|
// Transonic?
|
|
transonic yes;
|
|
// Number of PISO correctors
|
|
nCorrectors 2;
|
|
// Number of non-orthogonal correctors
|
|
nNonOrthogonalCorrectors 0;
|
|
// momentumPredictor?
|
|
momentumPredictor yes;
|
|
}
|
|
|
|
// ************************************************************************* //
|