1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 Update the polyMesh corresponding to the given map.
27 \*---------------------------------------------------------------------------*/
30 #include "mapPolyMesh.H"
32 #include "globalMeshData.H"
33 #include "pointMesh.H"
35 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
37 void Foam::polyMesh::updateMesh(const mapPolyMesh& mpm)
39 // Update boundaryMesh (note that patches themselves already ok)
40 boundary_.updateMesh();
43 pointZones_.clearAddressing();
44 faceZones_.clearAddressing();
45 cellZones_.clearAddressing();
47 // Update parallel data
48 if (globalMeshDataPtr_)
50 globalMeshDataPtr_->updateMesh();
53 setInstance(time().timeName());
55 // Map the old motion points if present
58 // Make a copy of the original points
59 pointField oldMotionPoints = *oldPointsPtr_;
61 pointField& newMotionPoints = *oldPointsPtr_;
63 // Resize the list to new size
64 newMotionPoints.setSize(points_.size());
67 newMotionPoints.map(oldMotionPoints, mpm.pointMap());
69 // Any points created out-of-nothing get set to the current coordinate
70 // for lack of anything better.
71 forAll(mpm.pointMap(), newPointI)
73 if (mpm.pointMap()[newPointI] == -1)
75 newMotionPoints[newPointI] = points_[newPointI];
80 // Reset valid directions (could change by faces put into empty patches)
81 geometricD_ = Vector<label>::zero;
82 solutionD_ = Vector<label>::zero;
85 // Hack until proper callbacks. Below are all the polyMesh-MeshObjects.
88 if (thisDb().foundObject<pointMesh>(pointMesh::typeName))
90 const_cast<pointMesh&>
92 thisDb().lookupObject<pointMesh>
101 // ************************************************************************* //