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/solidMechanics/icoFsiElasticNonLinULSolidFoam/HronTurekFsi/fluid/system/fvSolution

82 lines
2.1 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
2012-09-11 15:42:55 +00:00
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2016-06-20 15:00:40 +00:00
| \\ / O peration | Version: 4.0 |
2015-05-17 13:55:59 +00:00
| \\ / A nd | Web: http://www.foam-extend.org |
2012-09-11 15:42:55 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
2012-09-11 15:42:55 +00:00
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p
{
solver GAMG;
tolerance 1e-06;
relTol 0;
minIter 1;
maxIter 1000;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
scaleCorrection true;
directSolveCoarsest false;
cacheAgglomeration true;
nCellsInCoarsestLevel 20;
agglomerator faceAreaPair;
mergeLevels 1;
2017-08-11 19:22:17 +00:00
}
cellMotionU
{
solver GAMG;
tolerance 1e-6;
relTol 1e-3;
minIter 1;
maxIter 1000;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
scaleCorrection true;
directSolveCoarsest false;
cacheAgglomeration true;
2012-09-11 15:42:55 +00:00
nCellsInCoarsestLevel 20;
agglomerator faceAreaPair;
mergeLevels 1;
2017-08-11 19:22:17 +00:00
}
2012-09-11 15:42:55 +00:00
U
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
preconditioner DILU;
tolerance 1e-06;
relTol 0;
2017-08-11 19:22:17 +00:00
}
2012-09-11 15:42:55 +00:00
}
PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 1;
nOuterCorrectors 50;
ddtPhiCorr no;
}
2016-06-21 12:50:08 +00:00
2012-09-11 15:42:55 +00:00
// ************************************************************************* //