openfoam/applications/utilities/preProcessing
Mark Olesen f462a850ce ENH: added polyBoundaryMesh patchID(meshFacei) method
- this complements the whichPatch(meshFacei) method [binary search]
  and the list of patchID() by adding internal range checks.

  eg,
     Before
     ~~~~~~
     if (facei >= mesh.nInternalFaces() && facei < mesh.nFaces())
     {
         patchi = pbm.patchID()[facei - mesh.nInternalFaces()];
         ...
     }

     After
     ~~~~~
     patchi = pbm.patchID(facei);

     if (patchi >= 0)
     {
         ...
     }
2023-05-09 19:30:58 +02:00
..
applyBoundaryLayer STYLE: use calculatedType() and zeroGradientType() methods 2023-05-02 13:34:12 +02:00
boxTurb ENH: relocate graph writers to meshTools (not reqd by core OpenFOAM lib) 2022-02-21 19:53:21 +01:00
changeDictionary STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
createBoxTurb ENH: general boundBox/treeBoundBox improvements 2022-11-24 12:21:01 +00:00
createExternalCoupledPatchGeometry ENH: functionObjects: rearrange the location of phaseSystemModels function objects 2022-06-21 09:30:02 +01:00
createZeroDirectory STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
dsmcInitialise GIT: Header file updates 2019-10-31 14:48:44 +00:00
engineSwirl GIT: Header file updates 2019-10-31 14:48:44 +00:00
faceAgglomerate STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
foamUpgradeCyclics STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
mapFields STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
mapFieldsPar STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
mdInitialise STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
optimisation STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
PDR STYLE: favour include word.H instead of string.H 2023-02-27 15:41:25 +01:00
setAlphaField ENH: relocate zero_one to pTraits, allows reuse for scalar clamping 2023-02-27 15:41:25 +01:00
setExprBoundaryFields STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
setExprFields STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
setFields ENH: added polyBoundaryMesh patchID(meshFacei) method 2023-05-09 19:30:58 +02:00
setTurbulenceFields STYLE: prefer REGISTER/NO_REGISTER instead of true/false for IOobject 2023-03-10 14:16:32 +00:00
smoothSurfaceData ENH: add -verbose option to surface conversion, cleanup 2023-05-09 19:30:57 +02:00
viewFactorsGen STYLE: remove trailing space, tabs 2023-04-24 15:37:33 +02:00
wallFunctionTable ENH: use singleton method for accessing runtime selection 2021-11-05 17:21:27 +01:00