54 lines
1.3 KiB
Text
54 lines
1.3 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM Extend Project: Open source CFD |
|
||
|
| \\ / O peration | Version: 1.6-ext |
|
||
|
| \\ / A nd | Web: www.extend-project.de |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
location "system";
|
||
|
object fvSolution;
|
||
|
}
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
solvers
|
||
|
{
|
||
|
p
|
||
|
{
|
||
|
solver PCG;
|
||
|
preconditioner DIC;
|
||
|
tolerance 1e-07;
|
||
|
relTol 0;
|
||
|
}
|
||
|
|
||
|
U
|
||
|
{
|
||
|
solver PBiCG;
|
||
|
preconditioner DILU;
|
||
|
tolerance 1e-06;
|
||
|
relTol 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
PISO
|
||
|
{
|
||
|
nOuterCorrectors 5;
|
||
|
nCorrectors 2;
|
||
|
nNonOrthogonalCorrectors 1;
|
||
|
ddtPhiCorr no;
|
||
|
}
|
||
|
|
||
|
relaxationFactors
|
||
|
{
|
||
|
p 0.7;
|
||
|
U 0.7;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|