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/reactingFoam/ras/counterFlowFlame2D/system/fvSchemes

66 lines
1.8 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.1 |
2015-05-17 13:55:59 +00:00
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
2010-09-23 13:04:10 +00:00
format binary;
class dictionary;
2010-09-23 13:04:10 +00:00
location "system";
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
ddtSchemes
{
2010-09-23 13:04:10 +00:00
default Euler;
}
gradSchemes
{
default Gauss linear;
2010-09-23 13:04:10 +00:00
grad(p) Gauss linear;
}
divSchemes
{
default none;
2010-09-23 13:04:10 +00:00
div(phi,U) Gauss limitedLinearV 1;
2010-09-23 13:04:10 +00:00
div(phi,Yi_h) Gauss limitedLinear01 1;
div(phi,hs) Gauss limitedLinear 1;
div(phiU,p) Gauss limitedLinear 1;
2010-09-23 13:04:10 +00:00
div(phid,p) Gauss limitedLinear 1;
div(phi,epsilon) Gauss limitedLinear 1;
div(phi,k) Gauss limitedLinear 1;
div((muEff*dev2(T(grad(U))))) Gauss linear;
}
laplacianSchemes
{
2010-09-23 13:04:10 +00:00
default Gauss linear uncorrected;
laplacian(muEff,U) Gauss linear uncorrected;
laplacian(mut,U) Gauss linear uncorrected;
laplacian(DkEff,k) Gauss linear uncorrected;
laplacian(DepsilonEff,epsilon) Gauss linear uncorrected;
laplacian((rho*(1|A(U))),p) Gauss linear uncorrected;
laplacian(alphaEff,hs) Gauss linear uncorrected;
}
interpolationSchemes
{
default linear;
}
snGradSchemes
{
2010-09-23 13:04:10 +00:00
default uncorrected;
}
2016-06-21 12:50:08 +00:00
// ************************************************************************* //