reduced-foam-extend-coheren.../tutorials/lid-driven-cavity-3D/system/fvSolution
2023-09-21 17:05:56 +02:00

55 lines
1.4 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 fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p
{
solver PCG;
preconditioner DIC;
tolerance 0;
relTol 0;
maxIter 116;
}
pFinal
{
$p;
relTol 0;
}
U
{
solver PBiCGStab;
preconditioner DILU;
tolerance 0;
relTol 0;
maxIter 0;
}
}
PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
momentumPredictor no;
pRefCell 0;
pRefValue 0;
}
// ************************************************************************* //