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/pUCoupledFoam/cavity/system/fvSolution

92 lines
2 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2014-06-01 11:15:18 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.1 |
2015-05-17 13:55:59 +00:00
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
Up
{
solver BiCGStab;
preconditioner Cholesky;
tolerance 1e-09;
relTol 0.0;
minIter 1;
maxIter 500;
}
2014-05-28 23:40:07 +00:00
// Up
// {
// solver AMG;
// cycle V-cycle;
// coarseningType AAMG;
// norm componentNorm;
// normComponent 0;
// nPreSweeps 4;
// nPostSweeps 4;
// groupSize 2;
// minCoarseEqns 4;
// nMaxLevels 10;
// scale on;
// fineSmoother ILU;
// coarseSmoother k ILU;
2014-05-28 23:40:07 +00:00
// minIter 0;
// maxIter 100;
// tolerance 1e-7;
// relTol 0.01;
// }
// Segregated
p
{
solver CG;
preconditioner DIC;
tolerance 1e-06;
relTol 0;
}
U
{
solver BiCGStab;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}
blockSolver
{
2015-04-23 12:55:27 +00:00
convergence 1e-6;
pRefCell 0;
pRefValue 0;
}
2015-04-23 15:44:55 +00:00
fieldBounds
{
U 500;
p -5e4 5e4;
}
2014-05-28 23:40:07 +00:00
relaxationFactors
{
U 0.999;
}
2016-06-21 12:50:08 +00:00
// ************************************************************************* //