71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.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,alpha.air) Gauss vanLeer;
|
|
div(phir,alpha.air) Gauss vanLeer;
|
|
|
|
"div\(alphaPhi.*,U.*\)" Gauss limitedLinearV 1;
|
|
"div\(phi.*,U.*\)" Gauss limitedLinearV 1;
|
|
"div\(phi.*,.*rho.*\)" Gauss linear;
|
|
|
|
"div\(alphaPhi.*,(h|e).*\)" Gauss limitedLinear 1;
|
|
"div\(alphaPhi.*,(K.*|p)\)" Gauss limitedLinear 1;
|
|
|
|
"div\(alphaPhi.*,(k|epsilon).*\)" Gauss limitedLinear 1;
|
|
"div\(phim,(k|epsilon)m\)" Gauss limitedLinear 1;
|
|
|
|
"div\(\(\(alpha.*nuEff.*\)*dev2\(T\(grad\(U.*\)\)\)\)\)" Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear uncorrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default uncorrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
p ;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|