79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 3.0 |
|
|
| \\ / A nd | Web: http://www.extend-project.de |
|
|
| \\/ 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 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;
|
|
div(phi,ft_b_h_hu) Gauss multivariateSelection
|
|
{
|
|
ft vanLeer01;
|
|
b vanLeer01;
|
|
h vanLeer;
|
|
hu vanLeer;
|
|
};
|
|
div(U) Gauss linear;
|
|
div((Su*grad(b))) Gauss linear;
|
|
div((U+((Su*Xi)*grad(b)))) Gauss linear;
|
|
div((muEff*dev2(grad(U).T()))) Gauss linear;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
p ;
|
|
}
|
|
|
|
// ************************************************************************* //
|