openfoam/tutorials/settlingFoam/dahl/system/fvSolution
2008-04-15 18:56:58 +01:00

73 lines
1.7 KiB
Plaintext

/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root "";
case "";
instance "";
local "";
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p PCG
{
preconditioner DIC;
tolerance 1e-07;
relTol 0;
};
U PBiCG
{
preconditioner DILU;
tolerance 1e-07;
relTol 0;
};
k PBiCG
{
preconditioner DILU;
tolerance 1e-07;
relTol 0;
};
epsilon PBiCG
{
preconditioner DILU;
tolerance 1e-07;
relTol 0;
};
rho PCG
{
preconditioner DIC;
tolerance 1e-07;
relTol 0;
};
Alpha PBiCG
{
preconditioner DILU;
tolerance 1e-07;
relTol 0;
};
}
PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
}
// ************************************************************************* //