Have user selectable scheme for calculating the geometry factors (centres, volumes, correctionvectors etc)
Better handling of high-aspect ratio cells. See e.g. #1519 (closed)
More flexibility in specialised handling of mesh types.
system/fvSchemes
has a new optional entry geometry
which selects the geometry scheme:
geometry
{
type highAspectRatio;
minAspect 10;
maxAspect 100;
}
The default (called basic
) is the normal, primitiveMesh
functionality. The additional set of geometry schemes are:
highAspectRatio
that assumes extruded cells and tries to align cell centres on either side of a face.Apart from the basic
scheme the various alternatives are still under development.
Default is identical behaviour. The run-time selection is performed at the fvSchemes level so e.g. application working on the polyMesh instead of fvMesh level (e.g. blockMesh) will not use the new structure.