56 lines
1.4 KiB
Text
56 lines
1.4 KiB
Text
|
/*--------------------------------*- 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;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|