Files
openfoam/tutorials/compressible/sonicDyMFoam/movingCone/system/fvSolution
2015-12-09 15:03:05 +00:00

95 lines
2.0 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-06;
relTol 0.01;
}
pFinal
{
$p;
relTol 0;
}
pcorr
{
solver PCG;
preconditioner DIC;
tolerance 1e-2;
relTol 0;
}
"rho.*"
{
solver diagonal;
tolerance 1e-05;
relTol 0;
}
"(U|h|e|R|k|epsilon|omega)"
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-05;
relTol 0.1;
}
"(U|h|e|R|k|epsilon|omega)Final"
{
$U;
relTol 0;
}
cellMotionUx
{
solver PCG;
preconditioner DIC;
tolerance 1e-08;
relTol 0;
}
}
PIMPLE
{
momentumPredictor yes;
correctPhi yes;
nOuterCorrectors 2;
nCorrectors 2;
transonic yes;
nNonOrthogonalCorrectors 0;
rhoMin 0.1;
rhoMax 100.0;
}
relaxationFactors
{
equations
{
".*" 1;
}
}
// ************************************************************************* //