78 lines
1.9 KiB
Text
78 lines
1.9 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 2.3.0 |
|
||
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
location "system";
|
||
|
object fvSchemes;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
|
||
|
ddtSchemes
|
||
|
{
|
||
|
default steadyState;
|
||
|
}
|
||
|
|
||
|
gradSchemes
|
||
|
{
|
||
|
default Gauss linear;
|
||
|
grad(k) cellLimited Gauss linear 1;
|
||
|
grad(omega) cellLimited Gauss linear 1;
|
||
|
grad(yPsi) leastSquares;
|
||
|
|
||
|
}
|
||
|
|
||
|
divSchemes
|
||
|
{
|
||
|
default none;
|
||
|
|
||
|
div(phi,U) bounded Gauss linearUpwind grad(U);//bounded Gauss limitedLinearV 1;
|
||
|
div((nuEff*dev(T(grad(U))))) Gauss linear;
|
||
|
div((nuEff*dev2(T(grad(U))))) Gauss linear;
|
||
|
div(phi,nuTilda) bounded Gauss upwind;//limitedLinear 1;
|
||
|
|
||
|
div(phi,k) bounded Gauss upwind;//limitedLinear 1;
|
||
|
div(phi,omega) bounded Gauss upwind;//limitedLinear 1;
|
||
|
div(phid,p) Gauss upwind;
|
||
|
div(phi,Ekp) bounded Gauss upwind;
|
||
|
div((phi|interpolate(rho)),p) Gauss upwind;
|
||
|
div(tauMC) Gauss linear;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
default Gauss linear corrected;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default corrected;
|
||
|
}
|
||
|
|
||
|
fluxRequired
|
||
|
{
|
||
|
default no;
|
||
|
p;
|
||
|
pCorr;
|
||
|
}
|
||
|
|
||
|
wallDist
|
||
|
{
|
||
|
method Poisson;
|
||
|
}
|
||
|
|
||
|
// ************************************************************************* //
|