Renamed meshCellZones -> cellZones, meshFaceZones -> faceZones and meshPointZones -> pointZones

The prefix "mesh" was confusing and obviously relevant or helpful in
understanding the purpose or operation of these zone container classes.
This commit is contained in:
Henry Weller
2024-03-26 14:52:16 +00:00
parent 339e20c0f8
commit df6d3bf9d2
49 changed files with 219 additions and 219 deletions

View File

@ -1062,18 +1062,18 @@ int main(int argc, char *argv[])
//
//---------------------------------------------------------------------
const meshFaceZones& zones = mesh.faceZones();
const faceZones& zones = mesh.faceZones();
if (doFaceZones && zones.size() > 0)
{
mkDir(fvPath/"meshFaceZones");
mkDir(fvPath/"faceZones");
fileName patchFileName;
if (vMesh.useSubMesh())
{
patchFileName =
fvPath/"meshFaceZones"/cellSetName
fvPath/"faceZones"/cellSetName
+ "_"
+ timeDesc
+ ".plt";
@ -1081,7 +1081,7 @@ int main(int argc, char *argv[])
else
{
patchFileName =
fvPath/"meshFaceZones"/"meshFaceZones"
fvPath/"faceZones"/"faceZones"
+ "_"
+ timeDesc
+ ".plt";

View File

@ -144,7 +144,7 @@ Usage
#include "sphericalTensorIOField.H"
#include "symmTensorIOField.H"
#include "tensorIOField.H"
#include "meshFaceZones.H"
#include "faceZones.H"
#include "Cloud.H"
#include "passiveParticle.H"
#include "stringListOps.H"
@ -1074,7 +1074,7 @@ int main(int argc, char *argv[])
);
print(" surfVectorFields :", Info, svf);
const meshFaceZones& zones = mesh.faceZones();
const faceZones& zones = mesh.faceZones();
forAll(zones, zoneI)
{