From bbac10d2758dbefc4afa2322f23d2d25f69f1b51 Mon Sep 17 00:00:00 2001 From: Sergio Ferraris <sergio@alex.opencfd.co.uk> Date: Mon, 10 Jun 2013 15:17:38 +0100 Subject: [PATCH] ENH: Adding timeStamp check for distributedTrySurfaceMaesh. It needs to be timeStamp (read on local processors) --- .../distributedTriSurfaceMesh.C | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C b/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C index 7c80bd1a569..78693eec11f 100644 --- a/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C +++ b/src/parallel/distributed/distributedTriSurfaceMesh/distributedTriSurfaceMesh.C @@ -74,6 +74,26 @@ const Foam::NamedEnum<Foam::distributedTriSurfaceMesh::distributionType, 3> // Read my additional data from the dictionary bool Foam::distributedTriSurfaceMesh::read() { + + if + ( + Pstream::parRun() + && + ( + regIOobject::fileModificationChecking == timeStampMaster + || regIOobject::fileModificationChecking == inotifyMaster + ) + ) + { + FatalErrorIn("Foam::distributedTriSurfaceMesh::read()") + << " distributedTriSurfaceMesh is being constructed\n" + << " using 'timeStampMaster' or 'inotifyMaster.'\n" + << " Modify the entry fileModificationChecking\n" + << " in the etc/controlDict.\n" + << " Use 'timeStamp' instead." + << exit(FatalError); + } + // Get bb of all domains. procBb_.setSize(Pstream::nProcs()); -- GitLab