53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
========= |
|
||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||
|
\\ / O peration | Website: https://openfoam.org
|
||
|
\\ / A nd | Version: 10
|
||
|
\\/ M anipulation |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
location "system";
|
||
|
object fvSchemes;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
ddtSchemes
|
||
|
{
|
||
|
default Euler;
|
||
|
}
|
||
|
|
||
|
gradSchemes
|
||
|
{
|
||
|
default Gauss linear;
|
||
|
}
|
||
|
|
||
|
divSchemes
|
||
|
{
|
||
|
default none;
|
||
|
div(rhoPhi,U) bounded Gauss linearUpwind grad(U);
|
||
|
div(phi,alpha) Gauss interfaceCompression vanLeer 1;
|
||
|
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
|
||
|
//div(nonlinearStress) Gauss linear ;
|
||
|
}
|
||
|
|
||
|
laplacianSchemes
|
||
|
{
|
||
|
default Gauss linear corrected;
|
||
|
}
|
||
|
|
||
|
interpolationSchemes
|
||
|
{
|
||
|
default linear;
|
||
|
}
|
||
|
|
||
|
snGradSchemes
|
||
|
{
|
||
|
default corrected;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|