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/deprecatedTutorials/solidEquilibriumDisplacementFoam/beamEndLoad/system/fvSolution

58 lines
1.4 KiB
Text
Raw Normal View History

2012-09-11 15:42:55 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
| \\ / O peration | Version: 1.6-ext |
| \\ / A nd | Web: www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
D GAMG
2012-09-11 15:42:55 +00:00
{
tolerance 1e-06;
relTol 0.99;
2012-09-11 15:42:55 +00:00
smoother GaussSeidel;
cacheAgglomeration true;
2012-09-11 15:42:55 +00:00
nCellsInCoarsestLevel 6;
agglomerator faceAreaPair;
mergeLevels 1;
};
Dcorr GAMG
{
tolerance 1e-06;
relTol 0.99;
smoother GaussSeidel;
cacheAgglomeration true;
nCellsInCoarsestLevel 6;
agglomerator faceAreaPair;
mergeLevels 1;
};
2012-09-11 15:42:55 +00:00
}
stressAnalysis
2012-09-11 15:42:55 +00:00
{
nCorrectors 1;
D 1e-10;
accelerationFactor 2;
2012-09-11 15:42:55 +00:00
}
2012-09-11 15:42:55 +00:00
// ************************************************************************* //