72 lines
2 KiB
C++
72 lines
2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 4.1 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format binary;
|
|
class dictionary;
|
|
location "system";
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
grad(p) Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
div(phi,rho) Gauss upwind;
|
|
div(phi,U) Gauss linearUpwind Gauss linear;
|
|
div(phiU,p) Gauss linear;
|
|
div(phid,p) Gauss upwind;
|
|
div(phi,k) Gauss upwind;
|
|
div(phi,epsilon) Gauss upwind;
|
|
div(phi,Yi_h) Gauss vanLeer;
|
|
div(phi,fu_ft_h) Gauss multivariateSelection
|
|
{
|
|
fu vanLeer;
|
|
ft vanLeer;
|
|
hs vanLeer;
|
|
};
|
|
div((muEff*dev2(T(grad(U))))) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear corrected;
|
|
laplacian(muEff,U) Gauss linear corrected;
|
|
laplacian(muEff,ft) Gauss linear corrected;
|
|
laplacian(muEff,fu) Gauss linear corrected;
|
|
laplacian(((alphah*mut)+alpha),hs) Gauss linear corrected;
|
|
laplacian((rho|A(U)),p) Gauss linear corrected;
|
|
laplacian(rhoD,k) Gauss linear corrected;
|
|
laplacian(rhoD,epsilon) Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
interpolate(HbyA) linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|