62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 4.0 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
div(phia,Ua) Gauss limitedLinearV 1;
|
|
div(phib,Ub) Gauss limitedLinearV 1;
|
|
div(phib,k) Gauss limitedLinear 1;
|
|
div(phib,epsilon) Gauss limitedLinear 1;
|
|
div(phi,alpha) Gauss limitedLinear01 1;
|
|
div(phir,alpha) Gauss limitedLinear01 1;
|
|
div(phi,Theta) Gauss limitedLinear 1;
|
|
div(Rca) Gauss linear;
|
|
div(Rcb) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default none;
|
|
laplacian(nuEffa,Ua) Gauss linear corrected;
|
|
laplacian(nuEffb,Ub) Gauss linear corrected;
|
|
laplacian((rho*(1|A(U))),p) Gauss linear corrected;
|
|
laplacian(alphaPpMag,alpha) Gauss linear corrected;
|
|
laplacian((alphaEps*nuEffb),epsilon) Gauss linear corrected;
|
|
laplacian((alphak*nuEffb),k) Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
// ************************************************************************* //
|