openfoam/applications/utilities/mesh/manipulation/polyDualMesh
Mark Olesen 64c3e484bb STYLE: add nBoundaryFaces() method to primitiveMesh
- nBoundaryFaces() is often used and is identical to
  (nFaces() - nInternalFaces()).

- forward the mesh nInternalFaces() and nBoundaryFaces() to
  polyBoundaryMesh as nFaces() and start() respectively,
  for use when operating on a polyBoundaryMesh.

STYLE:

- use identity() function with starting offset when creating boundary maps.

     labelList map
     (
         identity(mesh.nBoundaryFaces(), mesh.nInternalFaces())
     );

  vs.

     labelList map(mesh.nBoundaryFaces());
     forAll(map, i)
     {
         map[i] = mesh.nInternalFaces() + i;
     }
2018-09-27 10:17:30 +02:00
..
Make ENH: topoSet: clear sets upon writing modified mesh. Fixes #129. 2016-11-16 14:58:46 +00:00
meshDualiser.C ENH: distinguish between face areaNormal/unitNormal in the code 2018-08-10 15:43:06 +02:00
meshDualiser.H STYLE: consistent use of '= delete' for removed constructors/assignments 2018-05-30 12:03:17 +02:00
polyDualMeshApp.C STYLE: add nBoundaryFaces() method to primitiveMesh 2018-09-27 10:17:30 +02:00