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/mixerGgi/system/fvSolution

77 lines
1.8 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.3 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
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;
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;
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;
tolerance 1e-07;
relTol 0;
};
}
2010-10-13 11:38:34 +00:00
PISO
{
nCorrectors 4;
nNonOrthogonalCorrectors 1;
pRefCell 0;
pRefValue 0;
}
// ************************************************************************* //