79 lines
1.9 KiB
Text
79 lines
1.9 KiB
Text
|
/*---------------------------------------------------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.4 |
|
||
|
| \\ / A nd | Web: http://www.openfoam.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
|
||
|
root "";
|
||
|
case "";
|
||
|
instance "";
|
||
|
local "";
|
||
|
|
||
|
class dictionary;
|
||
|
object fvSchemes;
|
||
|
}
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
ddtSchemes
|
||
|
{
|
||
|
default Euler;
|
||
|
//default CoEuler phi rho 0.1;
|
||
|
}
|
||
|
|
||
|
gradSchemes
|
||
|
{
|
||
|
default Gauss linear;
|
||
|
// grad(U) cellLimited Gauss linear 1;
|
||
|
}
|
||
|
|
||
|
divSchemes
|
||
|
{
|
||
|
default none;
|
||
|
div(phi,U) Gauss upwind;
|
||
|
div(phiU,p) Gauss upwind;
|
||
|
div(phi,h) Gauss upwind;
|
||
|
div(phi,k) Gauss upwind;
|
||
|
div(phi,epsilon) Gauss upwind;
|
||
|
div(phi,R) Gauss upwind;
|
||
|
div(R) Gauss linear;
|
||
|
div((muEff*dev2(grad(U).T()))) Gauss linear;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
default none;
|
||
|
laplacian(muEff,U) Gauss linear limited 0.333;
|
||
|
laplacian((rho*(1|A(U))),pd) Gauss linear limited 0.333;
|
||
|
laplacian(alphaEff,h) Gauss linear limited 0.333;
|
||
|
laplacian(DkEff,k) Gauss linear limited 0.333;
|
||
|
laplacian(DepsilonEff,epsilon) Gauss linear limited 0.333;
|
||
|
laplacian(DREff,R) Gauss linear limited 0.333;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default limited 0.333;
|
||
|
}
|
||
|
|
||
|
fluxRequired
|
||
|
{
|
||
|
default no;
|
||
|
pd;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|