Files
OpenFOAM-12/tutorials/solidDisplacement/beamEndLoad/system/fvSolution
2024-07-06 16:02:47 +01:00

38 lines
968 B
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
D
{
solver GAMG;
smoother GaussSeidel;
tolerance 1e-10;
relTol 0.99;
nCellsInCoarsestLevel 6;
}
}
PIMPLE
{
compactNormalStress no;
accelerationFactor 1.9; // Lower for higher Poisson ratio
}
// ************************************************************************* //