62 lines
1.4 KiB
Text
62 lines
1.4 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.6 |
|
||
|
| \\ / 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
|
||
|
{
|
||
|
div(rho*phi,U) Gauss vanLeerV;
|
||
|
div(phi,alpha) Gauss vanLeer;
|
||
|
div(phirb,alpha) Gauss vanLeer;
|
||
|
div(phi,k) Gauss upwind;
|
||
|
div(phi,epsilon) Gauss upwind;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
default Gauss linear corrected;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default corrected;
|
||
|
}
|
||
|
|
||
|
fluxRequired
|
||
|
{
|
||
|
default no;
|
||
|
pd;
|
||
|
pcorr;
|
||
|
alpha;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|