
5.1 Mesh description U-129
Convex Every cell must be convex and its cell centre inside the cell.
Closed Every cell must be closed, both geometrically and topologically where:
• geometrical closedness requires that when all face area vectors are oriented to
point outwards of the cell, their sum should equal the zero vector to machine
accuracy;
• topological closedness requires that all the edges in a cell are used by exactly
two faces of the cell in question.
Orthogonality For all internal faces of the mesh, we define the centre-to-centre vector
as that connecting the centres of the 2 cells that it adjoins oriented from the the
centre of the cell with smaller label to the centre of the cell with larger label. The
orthogonality constraint requires that for each internal face, the angle between the
face area vector, oriented as described above, and the centre-to-centre vector must
always be less than 90
◦
.
5.1.1.4 Boundary
A boundary is a list of patches, each of which is associated with a boundary condition.
A patch is a list of face labels which clearly must contain only boundary faces and no
internal faces. The boundary is required to be closed, i.e. the sum all boundary face area
vectors equates to zero to machine tolerance.
5.1.2 The polyMesh description
The constant directory contains a full description of the case polyMesh in a subdirectory
polyMesh. The polyMesh description is based around faces and, as already discussed,
internal cells connect 2 cells and boundary faces address a cell and a boundary patch.
Each face is therefore assigned an ‘owner’ cell and ‘neighbour’ cell so that the connectivity
across a given face can simply be described by the owner and neighbour cell labels. In
the case of boundaries, the connected cell is the owner and the neighbour is assigned the
label ‘-1’. With this in mind, the I/O specification consists of the following files:
points a list of vectors describing the cell vertices, where the first vector in the list repre-
sents vertex 0, the second vector represents vertex 1, etc.;
faces a list of faces, each face being a list of indices to vertices in the points list, where
again, the first entry in the list represents face 0, etc.;
owner a list of owner cell labels, the index of entry relating directly to the index of the
face, so that the first entry in the list is the owner label for face 0, the second entry
is the owner label for face 1, etc;
neighbour a list of neighbour cell labels;
boundary a list of patches, containing a dictionary entry for each patch, declared using
the patch name, e.g.
movingWall
{
type patch;
nFaces 20;
startFace 760;
Open∇FOAM-2.0.0