openfoam/tutorials/finiteArea/liquidFilmFoam/cylinder/system/faSolution
2020-06-29 17:27:54 +01:00

50 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
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;
}
//nOuterCorrectors 15;
relaxationFactors
{
h 0.5;
Us 0.5;
}
// ************************************************************************* //