2010-05-12 13:27:55 +00:00
|
|
|
/*--------------------------------*- C++ -*----------------------------------*\
|
|
|
|
| ========= | |
|
2013-12-11 16:09:41 +00:00
|
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
2016-06-20 15:00:40 +00:00
|
|
|
| \\ / O peration | Version: 4.0 |
|
2015-05-17 13:55:59 +00:00
|
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
2010-05-12 13:27:55 +00:00
|
|
|
| \\/ M anipulation | |
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
|
|
{
|
|
|
|
version 2.0;
|
2010-10-01 09:29:30 +00:00
|
|
|
format binary;
|
2010-05-12 13:27:55 +00:00
|
|
|
class dictionary;
|
2010-10-01 09:29:30 +00:00
|
|
|
location "system";
|
2010-05-12 13:27:55 +00:00
|
|
|
object fvSchemes;
|
|
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
ddtSchemes
|
|
|
|
{
|
2010-10-01 09:29:30 +00:00
|
|
|
default Euler;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gradSchemes
|
|
|
|
{
|
|
|
|
default Gauss linear;
|
|
|
|
grad(p) Gauss linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
divSchemes
|
|
|
|
{
|
2010-10-01 09:29:30 +00:00
|
|
|
default none;
|
2011-04-28 01:08:28 +00:00
|
|
|
div(phi,rho) Gauss upwind;
|
2011-01-24 21:48:37 +00:00
|
|
|
div(phi,U) Gauss linearUpwind Gauss linear;
|
2010-10-01 09:29:30 +00:00
|
|
|
div(phiU,p) Gauss linear;
|
2011-04-28 01:08:28 +00:00
|
|
|
div(phid,p) Gauss upwind;
|
2011-01-24 21:48:37 +00:00
|
|
|
div(phi,k) Gauss upwind;
|
|
|
|
div(phi,epsilon) Gauss upwind;
|
|
|
|
div(phi,Yi_h) Gauss vanLeer;
|
2010-10-01 09:29:30 +00:00
|
|
|
div(phi,fu_ft_h) Gauss multivariateSelection
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2011-01-24 21:48:37 +00:00
|
|
|
fu vanLeer;
|
|
|
|
ft vanLeer;
|
|
|
|
hs vanLeer;
|
2010-05-12 13:27:55 +00:00
|
|
|
};
|
2016-05-08 09:28:13 +00:00
|
|
|
div((muEff*dev2(T(grad(U))))) Gauss linear;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
laplacianSchemes
|
|
|
|
{
|
2010-10-01 09:29:30 +00:00
|
|
|
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;
|
2010-05-12 13:27:55 +00:00
|
|
|
laplacian((rho|A(U)),p) Gauss linear corrected;
|
2010-10-01 09:29:30 +00:00
|
|
|
laplacian(rhoD,k) Gauss linear corrected;
|
2010-05-12 13:27:55 +00:00
|
|
|
laplacian(rhoD,epsilon) Gauss linear corrected;
|
|
|
|
}
|
|
|
|
|
|
|
|
interpolationSchemes
|
|
|
|
{
|
|
|
|
default linear;
|
|
|
|
interpolate(HbyA) linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
snGradSchemes
|
|
|
|
{
|
|
|
|
default corrected;
|
|
|
|
}
|
|
|
|
|
2016-06-21 12:50:08 +00:00
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
// ************************************************************************* //
|