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";