59 lines
1.5 KiB
C++
59 lines
1.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 4.1 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object fvSolution;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
solvers
|
|
{
|
|
D
|
|
{
|
|
solver GAMG;
|
|
tolerance 1e-06;
|
|
relTol 0.9;
|
|
|
|
smoother GaussSeidel;
|
|
|
|
cacheAgglomeration false;
|
|
|
|
nCellsInCoarsestLevel 20;
|
|
|
|
agglomerator faceAreaPair;
|
|
mergeLevels 2;
|
|
}
|
|
T
|
|
{
|
|
solver GAMG;
|
|
tolerance 1e-06;
|
|
relTol 0.9;
|
|
|
|
smoother GaussSeidel;
|
|
|
|
cacheAgglomeration false;
|
|
|
|
nCellsInCoarsestLevel 20;
|
|
|
|
agglomerator faceAreaPair;
|
|
mergeLevels 2;
|
|
}
|
|
}
|
|
|
|
stressAnalysis
|
|
{
|
|
compactNormalStress yes;
|
|
nCorrectors 1;
|
|
D 1e-06;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|