68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 2.3.0 |
|
||
|
| \\ / 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;
|
||
|
grad(p) Gauss linear;
|
||
|
grad(U) Gauss linear;
|
||
|
}
|
||
|
|
||
|
divSchemes
|
||
|
{
|
||
|
default none;
|
||
|
|
||
|
div(alphaPhic,U) bounded Gauss linearUpwind grad(U);
|
||
|
div(((alpha*nuEff)*dev2(T(grad(U))))) Gauss linear;
|
||
|
div(phiGByA,kinematicCloud:alpha) Gauss linear;
|
||
|
div(((alpha*nuEff)*dev2(T(grad(U))))) Gauss linear;
|
||
|
div(alphaPhic,k) bounded Gauss upwind;
|
||
|
div(alphaPhic,epsilon) bounded Gauss upwind;
|
||
|
div(alphaPhic,omega) bounded Gauss upwind;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
default Gauss linear limited 0.333;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
interpolate(U) linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default limited 0.333;
|
||
|
}
|
||
|
|
||
|
fluxRequired
|
||
|
{
|
||
|
default no;
|
||
|
p ;
|
||
|
kinematicCloud:alpha;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|