openfoam/applications/utilities/mesh/conversion
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
..
ansysToFoam ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
ccm ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
cfx4ToFoam ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
datToFoam STYLE: consistency in using argList::addArgument, argList::addOption 2017-11-22 12:54:28 +01:00
fireToFoam ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
fluent3DMeshToFoam STYLE: use edgeHashes include 2018-08-08 23:54:27 +02:00
fluentMeshToFoam STYLE: add nBoundaryFaces() method to primitiveMesh 2018-09-27 10:17:30 +02:00
foamMeshToFluent STYLE: remove spacing around forAll macros and template '> >' closing 2018-07-06 11:03:28 +02:00
foamToFireMesh ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
foamToStarMesh ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
foamToSurface ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
gambitToFoam ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
gmshToFoam ENH: distinguish between face areaNormal/unitNormal in the code 2018-08-10 15:43:06 +02:00
ideasUnvToFoam ENH: add missing Hash function for List/UList (issue #966) 2018-08-08 23:54:27 +02:00
kivaToFoam ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
mshToFoam ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
netgenNeutralToFoam ENH: distinguish between face areaNormal/unitNormal in the code 2018-08-10 15:43:06 +02:00
plot3dToFoam ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
star4ToFoam ENH: change argList get<> and getList<> from read<>, readList<> 2018-08-09 11:27:36 +02:00
tetgenToFoam ENH: tag some options as 'advanced' (only shown with -help-full) 2018-07-31 11:54:15 +02:00
vtkUnstructuredToFoam ENH: remove reliance on the Xfer class (issue #639) 2018-03-05 13:28:53 +01:00
writeMeshObj ENH: ignore -noFunctionObjects option when disabled 2018-08-08 09:44:28 +02:00