This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/rhoTurbTwinParcelFoam/simplifiedSiwek/system/fvSolution

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;
}
// ************************************************************************* //