103 lines
2.3 KiB
Text
103 lines
2.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;
|
||
|
object fvSolution;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
solvers
|
||
|
{
|
||
|
p_rgh
|
||
|
{
|
||
|
solver PCG;
|
||
|
preconditioner DIC;
|
||
|
|
||
|
minIter 0;
|
||
|
maxIter 1000;
|
||
|
tolerance 1e-25;
|
||
|
relTol 0.01;
|
||
|
};
|
||
|
|
||
|
U
|
||
|
{
|
||
|
solver PBiCG;
|
||
|
preconditioner DILU;
|
||
|
|
||
|
minIter 1;
|
||
|
maxIter 1000;
|
||
|
tolerance 1e-25;
|
||
|
relTol 0.01;
|
||
|
};
|
||
|
|
||
|
T+T
|
||
|
{
|
||
|
solver BiCG;
|
||
|
preconditioner Cholesky;
|
||
|
|
||
|
minIter 0;
|
||
|
maxIter 1000;
|
||
|
tolerance 1e-25;
|
||
|
relTol 0.1;
|
||
|
};
|
||
|
|
||
|
G
|
||
|
{
|
||
|
solver PCG;
|
||
|
preconditioner DIC;
|
||
|
|
||
|
minIter 1;
|
||
|
maxIter 1000;
|
||
|
tolerance 1e-25;
|
||
|
relTol 0.1;
|
||
|
};
|
||
|
|
||
|
epsilon
|
||
|
{
|
||
|
solver PBiCG;
|
||
|
preconditioner DILU;
|
||
|
|
||
|
minIter 1;
|
||
|
maxIter 100;
|
||
|
tolerance 1e-25;
|
||
|
relTol 0.01;
|
||
|
};
|
||
|
|
||
|
k
|
||
|
{
|
||
|
solver PBiCG;
|
||
|
preconditioner DILU;
|
||
|
|
||
|
minIter 1;
|
||
|
maxIter 100;
|
||
|
tolerance 1e-25;
|
||
|
relTol 0.01;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
SIMPLE
|
||
|
{
|
||
|
nNonOrthogonalCorrectors 0;
|
||
|
p_rghRefCell 0;
|
||
|
p_rghRefValue 0;
|
||
|
}
|
||
|
|
||
|
relaxationFactors
|
||
|
{
|
||
|
p_rgh 0.7;
|
||
|
U 0.3;
|
||
|
T 0.5;
|
||
|
k 0.6;
|
||
|
epsilon 0.6;
|
||
|
}
|
||
|
|
||
|
// ************************************************************************* //
|