82 lines
1.9 KiB
C++
82 lines
1.9 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2312 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
div(rhoPhi,U) Gauss upwind;
|
|
|
|
div(phi,alpha) Gauss vanLeer;
|
|
div(phirb,alpha) Gauss linear;
|
|
|
|
div(phi,k) Gauss limitedLinear 1;
|
|
div(phi,epsilon) Gauss limitedLinear 1;
|
|
div(phi,R) Gauss limitedLinear 1;
|
|
div(R) Gauss linear;
|
|
div(phi,nuTilda) Gauss limitedLinear 1;
|
|
div((nuEff*dev(T(grad(U))))) Gauss linear;
|
|
div((nuEff*dev2(T(grad(U))))) Gauss linear;
|
|
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
oversetInterpolation
|
|
{
|
|
method inverseDistance;
|
|
searchBox (0 0 0)(0.1 0.1 0.1);
|
|
searchBoxDivisions (100 100 1);
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
pcorr ;
|
|
p_rgh ;
|
|
}
|
|
|
|
oversetInterpolationSuppressed
|
|
{
|
|
grad(p_rgh);
|
|
surfaceIntegrate(phiHbyA);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|