80 lines
2.0 KiB
C++
80 lines
2.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1912 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
grad(T) Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear corrected;
|
|
laplacian(diffusivity,cellDisplacement) Gauss linear corrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default corrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
pcorr ;
|
|
p ;
|
|
}
|
|
|
|
oversetInterpolation
|
|
{
|
|
// Interpolation scheme to use for overset calculation
|
|
method inverseDistance;
|
|
|
|
// The inverseDistance method uses a 'voxel' like search structure.
|
|
// Optionally specify the extent and number of divisions n.
|
|
// Note that it will allocate an array of nx*ny*nz. If not specified:
|
|
// - searchBox : local mesh bounding box
|
|
// - searchBoxDivisions : root (2D) or cube-root(3D) of number of cells
|
|
//searchBox (0 0 0)(1 1 1);
|
|
//searchBoxDivisions (100 100 1);
|
|
}
|
|
|
|
|
|
// Any additional fields that should not be interpolated
|
|
oversetInterpolationSuppresed
|
|
{
|
|
// For backwards compatibility; should not really be suppressed
|
|
grad(T);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|