75 lines
2.0 KiB
C++
75 lines
2.0 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(alphaPhi1,U1) Gauss limitedLinearV 1;
|
|
div(alphaPhi2,U2) Gauss limitedLinearV 1;
|
|
div(phi1,U1) Gauss limitedLinearV 1;
|
|
div(phi2,U2) Gauss limitedLinearV 1;
|
|
div(alphaPhi1,T1) Gauss limitedLinear 1;
|
|
div(alphaPhi2,T2) Gauss limitedLinear 1;
|
|
div(alphaPhi2,k) Gauss limitedLinear 1;
|
|
div(alphaPhi2,epsilon) Gauss limitedLinear 1;
|
|
div(phi,alpha1) Gauss limitedLinear01 1;
|
|
div(phir,alpha1) Gauss limitedLinear01 1;
|
|
div(phi,Theta) Gauss limitedLinear 1;
|
|
div((alpha1*Rc1)) Gauss linear;
|
|
div((alpha2*Rc2)) Gauss linear;
|
|
div(phid1,p) Gauss upwind;
|
|
div(phid2,p) Gauss upwind;
|
|
div(phi1,K1) Gauss limitedLinearV 1;
|
|
div(phi2,K2) Gauss limitedLinearV 1;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear uncorrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default uncorrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
p ;
|
|
alpha1 ;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|