polyMeshUpdate.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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
19  for more details.
20 
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/>.
23 
24 Description
25  Update the polyMesh corresponding to the given map.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #include "polyMesh.H"
30 #include "mapPolyMesh.H"
31 #include "Time.H"
32 #include "globalMeshData.H"
33 #include "pointMesh.H"
34 #include "indexedOctree.H"
35 #include "treeDataCell.H"
36 
37 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
38 
40 {
41  if (debug)
42  {
44  << "Updating addressing and (optional) pointMesh/pointFields"
45  << endl;
46  }
47 
48  // Update boundaryMesh (note that patches themselves already ok)
49  boundary_.updateMesh();
50 
51  // Update zones
52  pointZones_.clearAddressing();
53  faceZones_.clearAddressing();
54  cellZones_.clearAddressing();
55 
56  // Remove the stored tet base points
57  tetBasePtIsPtr_.clear();
58  // Remove the cell tree
59  cellTreePtr_.clear();
60 
61  // Update parallel data
62  if (globalMeshDataPtr_.valid())
63  {
64  globalMeshDataPtr_->updateMesh();
65  }
66 
68 
69  // Map the old motion points if present
70  if (oldPointsPtr_.valid())
71  {
72  // Make a copy of the original points
73  pointField oldMotionPoints = oldPointsPtr_();
74 
75  pointField& newMotionPoints = oldPointsPtr_();
76 
77  // Resize the list to new size
78  newMotionPoints.setSize(points_.size());
79 
80  // Map the list
81  newMotionPoints.map(oldMotionPoints, mpm.pointMap());
82 
83  // Any points created out-of-nothing get set to the current coordinate
84  // for lack of anything better.
85  forAll(mpm.pointMap(), newPointi)
86  {
87  if (mpm.pointMap()[newPointi] == -1)
88  {
89  newMotionPoints[newPointi] = points_[newPointi];
90  }
91  }
92  }
93 
94  meshObject::updateMesh<polyMesh>(*this, mpm);
95  meshObject::updateMesh<pointMesh>(*this, mpm);
96 
97  // Reset valid directions (could change by faces put into empty patches)
98  geometricD_ = Zero;
99  solutionD_ = Zero;
100 
101  const_cast<Time&>(time()).functionObjects().updateMesh(mpm);
102 }
103 
104 
105 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
void clearAddressing()
Clear addressing.
Definition: ZoneMesh.C:387
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:163
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:68
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:158
virtual void updateMesh(const mapPolyMesh &mpm)
Update the mesh corresponding to given map.
word timeName
Definition: getTimeIndex.H:3
static const zero Zero
Definition: zero.H:91
void map(const UList< Type > &mapF, const labelUList &mapAddressing)
1 to 1 map from the given field
Definition: Field.C:358
void updateMesh()
Correct polyBoundaryMesh after topology update.
const Time & time() const
Return time.
const labelList & pointMap() const
Old point map.
Definition: mapPolyMesh.H:390
void setInstance(const fileName &)
Set the instance for mesh files.
Definition: polyMeshIO.C:32
void setSize(const label)
Reset size of List.
Definition: List.C:281
label newPointi
Definition: readKivaGrid.H:501
#define InfoInFunction
Report an information message using Foam::Info.