polyMesh: Added zone construction order comments

This commit is contained in:
Henry Weller
2024-04-02 21:11:21 +01:00
parent ab4b177af1
commit bfda07b7ed

View File

@ -244,7 +244,7 @@ Foam::polyMesh::polyMesh(const IOobject& io)
),
meshSubDir,
*this,
IOobject::NO_READ,
IOobject::NO_READ, // Delay reading
IOobject::NO_WRITE
),
*this
@ -262,7 +262,7 @@ Foam::polyMesh::polyMesh(const IOobject& io)
),
meshSubDir,
*this,
IOobject::NO_READ,
IOobject::NO_READ, // Delay reading
IOobject::NO_WRITE
),
*this
@ -280,7 +280,7 @@ Foam::polyMesh::polyMesh(const IOobject& io)
),
meshSubDir,
*this,
IOobject::NO_READ,
IOobject::NO_READ, // Delay reading
IOobject::NO_WRITE
),
*this
@ -341,6 +341,7 @@ Foam::polyMesh::polyMesh(const IOobject& io)
// Initialise demand-driven data
calcDirections();
// Read the zones now that the mesh geometry is available to construct them
pointZones_.readIfPresent();
faceZones_.readIfPresent();
cellZones_.readIfPresent();