openfoam/tutorials/finiteArea/liquidFilmFoam/cylinder/system/finite-area/faSolution

55 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2312 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object faSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
Us
{
solver PBiCGStab;
preconditioner DILU;
tolerance 1e-07;
relTol 0.01;
}
h
{
solver PBiCGStab;
preconditioner DILU;
tolerance 1e-07;
relTol 0.01;
}
}
solution
{
iterations 15;
}
relaxationFactors
{
h 0.5;
Us 0.5;
}
cache
{
grad(h);
grad(Us);
}
// ************************************************************************* //