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/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution

122 lines
2.7 KiB
Text
Raw Normal View History

2010-11-24 23:08:12 +00:00
/*--------------------------------*- 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 |
2010-11-24 23:08:12 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
rho
{
solver PCG
preconditioner DIC;
tolerance 1e-8;
relTol 0;
};
p
{
solver GAMG;
tolerance 1e-8;
relTol 0.01;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
pFinal
{
solver GAMG;
tolerance 1e-8;
relTol 0;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
};
U
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
2010-11-24 23:08:12 +00:00
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
h
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
2010-11-24 23:08:12 +00:00
preconditioner DILU;
tolerance 1e-08;
relTol 0.1;
};
hFinal
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
2010-11-24 23:08:12 +00:00
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
k
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
2010-11-24 23:08:12 +00:00
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
epsilon
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
2010-11-24 23:08:12 +00:00
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
R
{
2016-06-04 19:23:34 +00:00
solver BiCGStab;
2010-11-24 23:08:12 +00:00
preconditioner DILU;
tolerance 1e-08;
relTol 0;
};
}
PISO
{
momentumPredictor off;
nOuterCorrectors 1;
nCorrectors 2;
nNonOrthogonalCorrectors 1;
pRefPoint (-0.081 -0.0257 8.01);
pRefValue 1e5;
}
PIMPLE
{
momentumPredictor on;
nCorrectors 2;
nNonOrthogonalCorrectors 0;
}
relaxationFactors
{
// h 0.9;
// U 0.9;
}
// ************************************************************************* //