This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/mesh/cfMesh/cartesianMesh/ship5415Octree/system/fvSchemes

61 lines
1.4 KiB
Text
Raw Normal View History

2014-11-09 00:10:28 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2015-05-15 13:57:39 +00:00
| \\ / F ield | cfMesh: A library for mesh generation |
2014-11-09 00:10:28 +00:00
| \\ / O peration | |
2015-05-15 13:57:39 +00:00
| \\ / A nd | Author: Franjo Juretic |
2014-11-09 00:10:28 +00:00
| \\/ M anipulation | E-mail: franjo.juretic@c-fields.com |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
ddtSchemes
{
default Euler;
}
divSchemes
{
default Gauss linear;
div(phi,U) Gauss limitedLinearV 1;
}
gradSchemes
{
default Gauss linear;
grad(U) Gauss linear;
grad(p) Gauss linear;
}
interpolationSchemes
{
default linear;
interpolate(HbyA) linear;
interpolate(U) linear;
interpolate(p) linear;
}
laplacianSchemes
{
default Gauss linear corrected;
laplacian(1|A(U),p) Gauss linear corrected;
laplacian(nu,U) Gauss linear corrected;
}
snGradSchemes
{
default corrected;
sngrad(U) corrected;
sngrad(p) corrected;
}
// ************************************************************************* //