2010-10-01 09:29:30 +00:00
|
|
|
/*--------------------------------*- C++ -*----------------------------------*\
|
|
|
|
| ========= | |
|
2013-12-11 16:09:41 +00:00
|
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
2018-05-29 07:35:20 +00:00
|
|
|
| \\ / O peration | Version: 4.1 |
|
2015-05-17 13:55:59 +00:00
|
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
2010-10-01 09:29:30 +00:00
|
|
|
| \\/ M anipulation | |
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
|
|
{
|
|
|
|
version 2.0;
|
|
|
|
format ascii;
|
|
|
|
class dictionary;
|
|
|
|
location "system";
|
|
|
|
object fvSchemes;
|
|
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
ddtSchemes
|
|
|
|
{
|
2013-10-10 09:53:19 +00:00
|
|
|
default Euler;
|
2010-10-01 09:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gradSchemes
|
|
|
|
{
|
|
|
|
default Gauss linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
divSchemes
|
|
|
|
{
|
|
|
|
default none;
|
2013-10-10 09:53:19 +00:00
|
|
|
div(phi,U) Gauss upwind;
|
|
|
|
div(phiU,p) Gauss upwind;
|
|
|
|
div(phi,k) Gauss vanLeer;
|
|
|
|
div(phiXi,Xi) Gauss vanLeer01;
|
|
|
|
div(phiXi,Su) Gauss vanLeer01;
|
|
|
|
div(phiSt,b) Gauss vanLeer01;
|
2010-10-01 09:29:30 +00:00
|
|
|
div(phi,ft_b_h_hu) Gauss multivariateSelection
|
|
|
|
{
|
2013-10-10 09:53:19 +00:00
|
|
|
ft vanLeer01;
|
|
|
|
b vanLeer01;
|
|
|
|
h vanLeer;
|
|
|
|
hu vanLeer;
|
2010-10-01 09:29:30 +00:00
|
|
|
};
|
|
|
|
div(U) Gauss linear;
|
|
|
|
div((Su*grad(b))) Gauss linear;
|
|
|
|
div((U+((Su*Xi)*grad(b)))) Gauss linear;
|
2016-05-08 08:48:57 +00:00
|
|
|
div((muEff*dev2(T(grad(U))))) Gauss linear;
|
2010-10-01 09:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
laplacianSchemes
|
|
|
|
{
|
|
|
|
default none;
|
|
|
|
laplacian(muEff,U) Gauss linear corrected;
|
|
|
|
laplacian(DkEff,k) Gauss linear corrected;
|
|
|
|
laplacian(DBEff,B) Gauss linear corrected;
|
|
|
|
laplacian((rho*(1|A(U))),p) Gauss linear corrected;
|
|
|
|
laplacian(alphaEff,b) Gauss linear corrected;
|
|
|
|
laplacian(alphaEff,ft) Gauss linear corrected;
|
|
|
|
laplacian(alphaEff,h) Gauss linear corrected;
|
|
|
|
laplacian(alphaEff,hu) Gauss linear corrected;
|
|
|
|
}
|
|
|
|
|
|
|
|
interpolationSchemes
|
|
|
|
{
|
|
|
|
default linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
snGradSchemes
|
|
|
|
{
|
|
|
|
default corrected;
|
|
|
|
}
|
|
|
|
|
2016-06-21 12:50:08 +00:00
|
|
|
|
2010-10-01 09:29:30 +00:00
|
|
|
// ************************************************************************* //
|