initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / meshes / pointMesh / pointMesh.H
bloba41f725c459022d507a616417b90642563ca84de
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 Class
26     Foam::pointMesh
28 Description
29     Mesh representing a set of points created from polyMesh.
31 \*---------------------------------------------------------------------------*/
33 #ifndef pointMesh_H
34 #define pointMesh_H
36 #include "GeoMesh.H"
37 #include "MeshObject.H"
38 #include "polyMesh.H"
39 #include "pointBoundaryMesh.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class pointMesh Declaration
48 \*---------------------------------------------------------------------------*/
50 class pointMesh
52     public MeshObject<polyMesh, pointMesh>,
53     public GeoMesh<polyMesh>
55     // Permanent data
57         //- Boundary mesh
58         pointBoundaryMesh boundary_;
61     // Private Member Functions
63         //- Map all fields
64         void mapFields(const mapPolyMesh&);
66         //- Disallow default bitwise copy construct
67         pointMesh(const pointMesh&);
69         //- Disallow default bitwise assignment
70         void operator=(const pointMesh&);
73 public:
75     typedef pointMesh Mesh;
76     typedef pointBoundaryMesh BoundaryMesh;
79     // Constructors
81         //- Construct from polyMesh
82         explicit pointMesh
83         (
84             const polyMesh& pMesh,
85             bool alwaysConstructGlobalPatch = false
86         );
89     // Member Functions
91         //- Return number of points
92         label size() const
93         {
94             return size(*this);
95         }
97         //- Return number of points
98         static label size(const Mesh& mesh)
99         {
100             return mesh.GeoMesh<polyMesh>::mesh_.nPoints();
101         }
103         //- Return reference to boundary mesh
104         const pointBoundaryMesh& boundary() const
105         {
106             return boundary_;
107         }
109         //- Return parallel info
110         const globalMeshData& globalData() const
111         {
112             return GeoMesh<polyMesh>::mesh_.globalData();
113         }
115         //- Return database. For now is its polyMesh.
116         const objectRegistry& thisDb() const
117         {
118             return GeoMesh<polyMesh>::mesh_.thisDb();
119         }
122         // Mesh motion
124             //- Move points, returns volumes swept by faces in motion
125             void movePoints(const pointField&);
127             //- Update the mesh corresponding to given map
128             void updateMesh(const mapPolyMesh& mpm);
131     // Member Operators
133         bool operator!=(const pointMesh& pm) const
134         {
135             return &pm != this;
136         }
138         bool operator==(const pointMesh& pm) const
139         {
140             return &pm == this;
141         }
145 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 } // End namespace Foam
149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151 #endif
153 // ************************************************************************* //