1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
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 the
13 Free Software Foundation; either version 2 of the License, or (at your
14 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, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 Enriched patch point map
29 Hrvoje Jasak, Wikki Ltd. All rights reserved. Copyright Hrvoje Jasak.
31 \*---------------------------------------------------------------------------*/
33 #include "enrichedPatch.H"
35 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
37 void Foam::enrichedPatch::completePointMap() const
39 if (pointMapComplete_)
41 FatalErrorIn("void enrichedPatch::completePointMap() const")
42 << "Point map already completed"
46 pointMapComplete_ = true;
48 const Map<label>& pmm = pointMergeMap();
50 // Get the mesh points for both patches. If the point has not been
51 // merged away, add it to the map
54 const labelList& masterMeshPoints = masterPatch_.meshPoints();
55 const pointField& masterLocalPoints = masterPatch_.localPoints();
57 forAll (masterMeshPoints, pointI)
61 !pmm.found(masterMeshPoints[pointI])
62 && !pointMap_.found(masterMeshPoints[pointI])
67 masterMeshPoints[pointI],
68 masterLocalPoints[pointI]
74 const labelList& slaveMeshPoints = slavePatch_.meshPoints();
75 const pointField& slaveLocalPoints = slavePatch_.localPoints();
77 forAll (slaveMeshPoints, pointI)
81 !pmm.found(slaveMeshPoints[pointI])
82 && !pointMap_.found(slaveMeshPoints[pointI])
87 slaveMeshPoints[pointI],
88 slaveLocalPoints[pointI]
95 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
98 Foam::Map<Foam::point>& Foam::enrichedPatch::pointMap()
104 const Foam::Map<Foam::point>& Foam::enrichedPatch::pointMap() const
110 // ************************************************************************* //