This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/combustion/dieselFoam/aachenBomb/system/fvSchemes

78 lines
2 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2015-05-17 13:55:59 +00:00
| \\ / O peration | Version: 3.2 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
2010-10-01 09:29:30 +00:00
format binary;
class dictionary;
2010-10-01 09:29:30 +00:00
location "system";
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
ddtSchemes
{
2010-10-01 09:29:30 +00:00
default Euler;
}
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
{
2011-01-24 21:48:37 +00:00
fu vanLeer;
ft vanLeer;
hs vanLeer;
};
div((muEff*dev2(grad(U).T()))) Gauss linear;
}
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;
laplacian((rho|A(U)),p) Gauss linear corrected;
2010-10-01 09:29:30 +00:00
laplacian(rhoD,k) Gauss linear corrected;
laplacian(rhoD,epsilon) Gauss linear corrected;
}
interpolationSchemes
{
default linear;
interpolate(HbyA) linear;
}
snGradSchemes
{
default corrected;
}
fluxRequired
{
2010-10-01 09:29:30 +00:00
default no;
p;
}
// ************************************************************************* //