65 lines
1.4 KiB
Text
65 lines
1.4 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: dev |
|
||
|
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
object fvSchemes;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
ddtSchemes
|
||
|
{
|
||
|
default Euler;
|
||
|
}
|
||
|
|
||
|
gradSchemes
|
||
|
{
|
||
|
default Gauss linear;
|
||
|
}
|
||
|
|
||
|
divSchemes
|
||
|
{
|
||
|
div(rho*phi,U) Gauss upwind; //linear;
|
||
|
|
||
|
div(phi,alpha) Gauss vanLeer;
|
||
|
div(phirb,alpha) Gauss interfaceCompression 1.0;
|
||
|
|
||
|
div(phi,pd) Gauss upwind; //vanLeer; //linear;
|
||
|
|
||
|
div(phi,k) Gauss vanLeer;
|
||
|
|
||
|
div((nuEff*dev(grad(U).T()))) Gauss linear;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
default Gauss linear uncorrected;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default uncorrected;
|
||
|
}
|
||
|
|
||
|
fluxRequired
|
||
|
{
|
||
|
default no;
|
||
|
pd;
|
||
|
pcorr;
|
||
|
gamma;
|
||
|
}
|
||
|
|
||
|
// ************************************************************************* //
|