85 lines
1.8 KiB
C++
85 lines
1.8 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;
|
|
grad(T) Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
|
|
div(rhoPhi,U) Gauss upwind;
|
|
|
|
div(U) Gauss linear;
|
|
|
|
div(phi,alpha) Gauss vanLeer;
|
|
div(phirb,alpha) Gauss linear;
|
|
|
|
div(phi,alpha.water) Gauss upwind;
|
|
|
|
div(phi,epsilon) Gauss upwind;
|
|
div(phi,k) Gauss upwind;
|
|
|
|
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
|
|
div((nuEff*dev2(T(grad(U))))) Gauss linear;
|
|
|
|
div((phi+meshPhi),p) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
oversetInterpolation
|
|
{
|
|
method inverseDistance;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
pcorr ;
|
|
p ;
|
|
}
|
|
|
|
oversetInterpolationSuppressed
|
|
{
|
|
grad(p_rgh);
|
|
surfaceIntegrate(phiHbyA);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|