functionObjects: Clean up and completion of hooks

This commit is contained in:
Will Bainbridge
2022-08-04 15:55:09 +01:00
parent 3ce205e2b3
commit b0d2002e72
19 changed files with 372 additions and 485 deletions

View File

@ -880,4 +880,16 @@ void Foam::functionObjectList::mapMesh(const polyMeshMap& map)
}
void Foam::functionObjectList::distribute(const polyDistributionMap& map)
{
if (execution_)
{
forAll(*this, oi)
{
operator[](oi).distribute(map);
}
}
}
// ************************************************************************* //