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
29 Mesh representing a set of points created from polyMesh.
31 \*---------------------------------------------------------------------------*/
37 #include "MeshObject.H"
39 #include "pointBoundaryMesh.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 /*---------------------------------------------------------------------------*\
47 Class pointMesh Declaration
48 \*---------------------------------------------------------------------------*/
52 public MeshObject<polyMesh, pointMesh>,
53 public GeoMesh<polyMesh>
58 pointBoundaryMesh boundary_;
61 // Private Member Functions
63 //- Disallow default bitwise copy construct
64 pointMesh(const pointMesh&);
66 //- Disallow default bitwise assignment
67 void operator=(const pointMesh&);
70 void mapFields(const mapPolyMesh&) const;
75 // Declare name of the class and its debug switch
76 TypeName("pointMesh");
78 typedef pointMesh Mesh;
79 typedef pointBoundaryMesh BoundaryMesh;
84 //- Construct from polyMesh
87 const polyMesh& pMesh,
88 bool alwaysConstructGlobalPatch = false
94 //- Return number of points
100 //- Return number of points
101 static label size(const Mesh& mesh)
103 return mesh.GeoMesh<polyMesh>::mesh_.nPoints();
106 //- Return number of points
107 // Needed because point and elemant fields in FEM share
108 // templated patch field type(checking of patch size).
110 label nPoints() const
112 return GeoMesh<polyMesh>::mesh_.nPoints();
115 //- Return number of points
116 // Needed because point and elemant fields in FEM share
117 // templated patch field type(checking of patch size).
121 return GeoMesh<polyMesh>::mesh_.nCells();
124 //- Return reference to boundary mesh
125 const pointBoundaryMesh& boundary() const
130 //- Return parallel info
131 const globalMeshData& globalData() const
133 return GeoMesh<polyMesh>::mesh_.globalData();
136 //- Return database. For now is its polyMesh.
137 const objectRegistry& thisDb() const
139 return GeoMesh<polyMesh>::mesh_.thisDb();
145 //- Move points, returns volumes swept by faces in motion
146 virtual bool movePoints() const;
148 //- Update the mesh corresponding to given map
149 virtual bool updateMesh(const mapPolyMesh& mpm) const;
154 bool operator!=(const pointMesh& pm) const
159 bool operator==(const pointMesh& pm) const
166 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
168 } // End namespace Foam
170 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
174 // ************************************************************************* //