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/incompressible/icoDyMFoam/mixer2D/system/fvSolution

74 lines
1.7 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2015-05-17 13:55:59 +00:00
| \\ / O peration | Version: 3.2 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
2010-11-24 20:48:09 +00:00
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
2010-10-13 11:38:34 +00:00
pcorr
{
2010-10-13 11:38:34 +00:00
solver BiCGStab;
preconditioner DILU;
minIter 0;
maxIter 1000;
tolerance 1e-02;
relTol 0;
};
2010-10-13 11:38:34 +00:00
p
{
2010-10-13 11:38:34 +00:00
solver CG;
preconditioner Cholesky;
minIter 0;
maxIter 1000;
2010-10-13 11:38:34 +00:00
tolerance 1e-07;
relTol 0.0;
};
2010-10-13 11:38:34 +00:00
pFinal
{
2010-10-13 11:38:34 +00:00
solver CG;
preconditioner Cholesky;
minIter 0;
maxIter 1000;
2010-10-13 11:38:34 +00:00
tolerance 1e-07;
relTol 0;
};
2010-10-13 11:38:34 +00:00
U
{
2010-10-13 11:38:34 +00:00
solver BiCGStab;
preconditioner DILU;
minIter 0;
maxIter 1000;
2010-10-13 11:38:34 +00:00
tolerance 1e-07;
relTol 0;
};
}
PISO
{
nCorrectors 4;
nNonOrthogonalCorrectors 0;
pRefCell 0;
pRefValue 0;
}
// ************************************************************************* //