70 lines
1.7 KiB
C++
70 lines
1.7 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,k) Gauss upwind;
|
|
div(phi,epsilon) Gauss upwind;
|
|
div(devRhoReff) Gauss linear;
|
|
div((devRhoReff&U)) Gauss linear;
|
|
|
|
div((muEff*dev2(grad(U).T()))) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default none;
|
|
laplacian(muEff,U) Gauss linear limited 0.5;
|
|
laplacian(DkEff,k) Gauss linear limited 0.5;
|
|
laplacian(DepsilonEff,epsilon) Gauss linear limited 0.5;
|
|
laplacian(alphaEff,e) Gauss linear limited 0.5;
|
|
laplacian(alphaEff,h) Gauss linear limited 0.5;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
}
|
|
|
|
relaxationFactors
|
|
{
|
|
k 0.7;
|
|
epsilon 0.7;
|
|
}
|
|
|
|
// ************************************************************************* //
|