Fix tutorials: coupled/conjugateHeatFoam/conjugateCavity: fix Allrun file
[OpenFOAM-1.6-ext.git] / src / meshTools / sets / topoSets / pointSet.C
blob18de2c832770cd0973a9be88fa95bf34969cf6de
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
19     for more details.
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
25 \*---------------------------------------------------------------------------*/
27 #include "pointSet.H"
28 #include "mapPolyMesh.H"
29 #include "polyMesh.H"
30 #include "syncTools.H"
32 #include "addToRunTimeSelectionTable.H"
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 namespace Foam
39 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
41 defineTypeNameAndDebug(pointSet, 0);
43 addToRunTimeSelectionTable(topoSet, pointSet, word);
44 addToRunTimeSelectionTable(topoSet, pointSet, size);
45 addToRunTimeSelectionTable(topoSet, pointSet, set);
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 pointSet::pointSet(const IOobject& obj)
52     topoSet(obj, typeName)
56 pointSet::pointSet
58     const polyMesh& mesh,
59     const word& name,
60     readOption r,
61     writeOption w
64     topoSet(mesh, typeName, name, r, w)
66     check(mesh.nPoints());
70 pointSet::pointSet
72     const polyMesh& mesh,
73     const word& name,
74     const label size,
75     writeOption w
78     topoSet(mesh, name, size, w)
82 pointSet::pointSet
84     const polyMesh& mesh,
85     const word& name,
86     const topoSet& set,
87     writeOption w
90     topoSet(mesh, name, set, w)
94 pointSet::pointSet
96     const polyMesh& mesh,
97     const word& name,
98     const labelHashSet& set,
99     writeOption w
102     topoSet(mesh, name, set, w)
106 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
108 pointSet::~pointSet()
112 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
114 void pointSet::sync(const polyMesh& mesh)
116     // Convert to boolList
118     boolList contents(mesh.nPoints(), false);
120     forAllConstIter(pointSet, *this, iter)
121     {
122         contents[iter.key()] = true;
123     }
124     syncTools::syncPointList
125     (
126         mesh,
127         contents,
128         orEqOp<bool>(),
129         false,          // null value
130         false           // no separation
131     );
133     // Convert back to labelHashSet
135     labelHashSet newContents(size());
137     forAll(contents, pointI)
138     {
139         if (contents[pointI])
140         {
141             newContents.insert(pointI);
142         }
143     }
145     transfer(newContents);
149 label pointSet::maxSize(const polyMesh& mesh) const
151     return mesh.nPoints();
155 void pointSet::updateMesh(const mapPolyMesh& morphMap)
157     updateLabels(morphMap.reversePointMap());
161 void pointSet::writeDebug
163     Ostream& os,
164     const primitiveMesh& mesh,
165     const label maxLen
166 ) const
168     topoSet::writeDebug(os, mesh.points(), maxLen);
171 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
173 } // End namespace Foam
175 // ************************************************************************* //