You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 3.0.1 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default steadyState;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
grad(p) Gauss linear;
|
|
grad(U) cellLimited Gauss linear 1.0; //Gauss linear; //cellLimited Gauss linear 1; //Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default linear;
|
|
div(phi,U) bounded Gauss linearUpwindV grad(U); //cellLimited Gauss linear 1; //bounded Gauss upwind; //linearUpwind grad(U);; //Gauss upwind; //Gauss linearUpwind grad(U); //bounded Gauss linearUpwind grad(U);
|
|
div(phi,omega) bounded Gauss upwind; // bounded Gauss linearUpwind grad(omega);
|
|
div(phi,epsilon) bounded Gauss upwind; // bounded Gauss linearUpwind grad(omega);
|
|
div(phi,k) bounded Gauss upwind; //bounded Gauss linearUpwind grad(k);
|
|
div(phi,nuTilda) bounded Gauss upwind; //bounded Gauss linearUpwind grad(nuTilda);
|
|
div(R) Gauss linear;
|
|
div((nuEff*dev2(T(grad(U))))) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear limited 0.5; //none;
|
|
//laplacian(nuEff,U) Gauss linear corrected;
|
|
//laplacian((1|A(U)),p) Gauss linear corrected;
|
|
//laplacian(DnuTildaEff,nuTilda) Gauss linear corrected;
|
|
//laplacian(DomegaEff,omega) Gauss linear corrected;
|
|
//laplacian(DkEff,k) Gauss linear corrected;
|
|
//laplacian(1,p) Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
interpolate(U) linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default limited 0.5; //corrected; //limited 0.33
|
|
}
|
|
|
|
|
|
wallDist
|
|
{
|
|
method meshWave;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|