138 lines
3.1 KiB
Text
138 lines
3.1 KiB
Text
|
/*--------------------------------*- 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;
|
||
|
}
|
||
|
|
||
|
// ************************************************************************* //
|