75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 3.2 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
div(phi,U) Gauss limitedLinear 1;
|
|
div(phi,k) Gauss limitedLinear 1;
|
|
flux(phi,ft) Gauss limitedLinear01 1;
|
|
div(phi,ft_b_h) Gauss multivariateSelection
|
|
{
|
|
fu limitedLinear01 1;
|
|
ft limitedLinear01 1;
|
|
hs limitedLinear 1;
|
|
};
|
|
div((muEff*dev2(grad(U).T()))) Gauss linear;
|
|
div(phiU,p) Gauss linear;
|
|
div(Ji,Ii_h) Gauss upwind;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default none;
|
|
laplacian(muEff,U) Gauss linear corrected;
|
|
laplacian(DkEff,k) Gauss linear corrected;
|
|
laplacian(DBEff,B) Gauss linear corrected;
|
|
laplacian(alphaEff,hs) Gauss linear uncorrected;
|
|
laplacian(alphaEff,fu) Gauss linear uncorrected;
|
|
laplacian(alphaEff,ft) Gauss linear uncorrected;
|
|
laplacian((((rho*(1|A(U)))*rho)*gh)) Gauss linear uncorrected;
|
|
laplacian(interpolate((rho*(1|A(U)))),p) Gauss linear uncorrected;
|
|
laplacian(gammaRad,G) Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
p;
|
|
}
|
|
|
|
// ************************************************************************* //
|