polyTopoChangeMap: Renamed from mapPolyMesh to clarify purpose and scope

The polyTopoChangeMap is the map specifically relating to polyMesh topological
changes generated by polyTopoChange and used to update and map mesh related
types and fields following the topo-change.
This commit is contained in:
Henry Weller
2022-03-31 22:05:37 +01:00
parent 2e6eb5f2ce
commit 3ace8f434b
352 changed files with 893 additions and 3946 deletions

View File

@ -25,7 +25,7 @@ License
#include "timeControlFunctionObject.H"
#include "polyMesh.H"
#include "mapPolyMesh.H"
#include "polyTopoChangeMap.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
@ -197,11 +197,14 @@ bool Foam::functionObjects::timeControl::read(const dictionary& dict)
}
void Foam::functionObjects::timeControl::updateMesh(const mapPolyMesh& mpm)
void Foam::functionObjects::timeControl::updateMesh
(
const polyTopoChangeMap& map
)
{
if (active())
{
foPtr_->updateMesh(mpm);
foPtr_->updateMesh(map);
}
}