64 lines
1.6 KiB
Text
64 lines
1.6 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
||
|
| \\ / O peration | Version: 1.6-ext |
|
||
|
| \\ / A nd | Web: www.extend-project.de |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format binary;
|
||
|
class dictionary;
|
||
|
location "system";
|
||
|
object fvSchemes;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
ddtSchemes
|
||
|
{
|
||
|
default steadyState;
|
||
|
}
|
||
|
|
||
|
gradSchemes
|
||
|
{
|
||
|
default Gauss linear;
|
||
|
grad(U) Gauss linear;
|
||
|
grad(p) Gauss linear;
|
||
|
}
|
||
|
|
||
|
divSchemes
|
||
|
{
|
||
|
div(phi,U) Gauss upwind;
|
||
|
div((nuEff*dev(grad(U).T()))) Gauss linear;
|
||
|
div(phi,epsilon) Gauss upwind;
|
||
|
div(phi,k) Gauss upwind;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
laplacian(nuEff,U) Gauss linear corrected;
|
||
|
laplacian(rAU,p) Gauss linear corrected;
|
||
|
laplacian(DepsilonEff,epsilon) Gauss linear corrected;
|
||
|
laplacian(DkEff,k) Gauss linear corrected;
|
||
|
laplacian(1,p) Gauss linear corrected;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default corrected;
|
||
|
}
|
||
|
|
||
|
fluxRequired
|
||
|
{
|
||
|
default no;
|
||
|
p ;
|
||
|
}
|
||
|
|
||
|
// ************************************************************************* //
|