initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / dynamicMesh / polyTopoChange / polyTopoChange / duplicatePoints.H
blob19836a557eb9b21f97c8a6d0c30ccf6863b8fcec
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::duplicatePoints
28 Description
29     Duplicate points
31 SourceFiles
32     duplicatePoints.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef duplicatePoints_H
37 #define duplicatePoints_H
39 #include "labelList.H"
40 #include "typeInfo.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 // Forward declaration of classes
48 class polyMesh;
49 class polyTopoChange;
50 class edge;
51 class face;
52 class mapPolyMesh;
53 class localPointRegion;
55 /*---------------------------------------------------------------------------*\
56                            Class duplicatePoints Declaration
57 \*---------------------------------------------------------------------------*/
59 class duplicatePoints
61     // Private data
63         //- Reference to mesh
64         const polyMesh& mesh_;
66         //- Per regionSide.pointRegion() the points created.
67         //  element 0 is the original point.
68         //  Can have empty entries if a point only has one region.
69         labelListList duplicates_;
72     // Private Member Functions
74         //- Disallow default bitwise copy construct
75         duplicatePoints(const duplicatePoints&);
77         //- Disallow default bitwise assignment
78         void operator=(const duplicatePoints&);
80 public:
82     //- Runtime type information
83     ClassName("duplicatePoints");
86     // Constructors
88         //- Construct from mesh
89         duplicatePoints(const polyMesh& mesh);
92     // Member Functions
94         // Access
96             //- Per point in regionSide.pointRegions() the points created.
97             const labelListList& duplicates() const
98             {
99                 return duplicates_;
100             }
103         // Topology changes
105             //- Play commands into polyTopoChange to duplicate points. Gets
106             //  localPointRegion structure which is per non-manifold point
107             //  the regions per point.
108             void setRefinement
109             (
110                 const localPointRegion& regionSide,
111                 polyTopoChange&
112             );
114             //- Force recalculation of locally stored data on topological change
115             void updateMesh(const mapPolyMesh&);
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 } // End namespace Foam
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 #endif
127 // ************************************************************************* //