Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / advanced / modifyMesh / cellSplitter.H
blob4eab552c154eab386024eec5927c79d7d0660021
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::cellSplitter
27 Description
28     Does pyramidal decomposition of selected cells. So all faces will become
29     base of pyramid with as top a user-supplied point (usually the cell centre)
31 SourceFiles
32     cellSplitter.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef cellSplitter_H
37 #define cellSplitter_H
39 #include "Map.H"
40 #include "edge.H"
41 #include "typeInfo.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 // Forward declaration of classes
49 class polyTopoChange;
50 class mapPolyMesh;
51 class polyMesh;
54 /*---------------------------------------------------------------------------*\
55                            Class cellSplitter Declaration
56 \*---------------------------------------------------------------------------*/
58 class cellSplitter
60     // Private data
62         //- Reference to mesh
63         const polyMesh& mesh_;
65         //- Per cell the mid point added.
66         Map<label> addedPoints_;
69     // Private Member Functions
71         //- Get patch and zone info for face
72         void getFaceInfo
73         (
74             const label faceI,
75             label& patchID,
76             label& zoneID,
77             label& zoneFlip
78         ) const;
80         //- Find the new owner (if any) of the face.
81         label newOwner
82         (
83             const label faceI,
84             const Map<labelList>& cellToCells
85         ) const;
87         //- Find the new neighbour (if any) of the face.
88         label newNeighbour
89         (
90             const label faceI,
91             const Map<labelList>& cellToCells
92         ) const;
94         //- Disallow default bitwise copy construct
95         cellSplitter(const cellSplitter&);
97         //- Disallow default bitwise assignment
98         void operator=(const cellSplitter&);
100 public:
102     //- Runtime type information
103     ClassName("cellSplitter");
105     // Constructors
107         //- Construct from mesh
108         cellSplitter(const polyMesh& mesh);
111     //- Destructor
112     ~cellSplitter();
115     // Member Functions
117         // Edit
119             //- Insert mesh changes into meshMod.
120             //  cellToMidPoint : cell to cut and position of its new midpoint
121             void setRefinement
122             (
123                 const Map<point>& cellToMidPoint,
124                 polyTopoChange& meshMod
125             );
127             //- Force recalculation of locally stored data on topological change
128             void updateMesh(const mapPolyMesh&);
131         // Access
133             //- Per cell the mid point added.
134             const Map<label>& addedPoints() const
135             {
136                 return addedPoints_;
137             }
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 } // End namespace Foam
145 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
147 #endif
149 // ************************************************************************* //