Adding cfMesh-v1.0 into the repository
[foam-extend-3.2.git] / src / meshLibrary / utilities / surfaceTools / surfaceMorpherCells / surfaceMorpherCells.H
blob5c5e04b71d8941bd5c2730fc4bf173c871d9324a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh 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 3 of the License, or (at your
14     option) any later version.
16     cfMesh 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 cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     surfaceMorpherCells
27 Description
28     Changes the boundary of the mesh template, such that each boundary cell
29     has only one boundary face.
31 SourceFiles
32     surfaceMorpherCells.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef surfaceMorpherCells_H
37 #define surfaceMorpherCells_H
39 #include "polyMeshGenModifier.H"
40 #include "labelLongList.H"
41 #include "boolList.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                            Class surfaceMorpherCells Declaration
50 \*---------------------------------------------------------------------------*/
52 class surfaceMorpherCells
54     // Private data
55         //- mesh modifier
56         polyMeshGen& mesh_;
58         //- number of internal faces
59         label nIntFaces_;
60     
61         //- true for vertices which are at the boundary
62         boolList boundaryVertex_;
63     
64         //- true for cells which are at the boundary
65         List<direction> cellFlags_;
66     
67         //- new boundary faces and owner cells
68         VRWGraph newBoundaryFaces_;
69         labelLongList newBoundaryOwners_;
70         labelLongList newBoundaryPatches_;
71     
72     // Private enumerators
73         enum cellTypes
74         {
75             NONE = 0,
76             BOUNDARY = 1,
77             CHANGED = 2
78         };
80     // Private member functions
81         //- find surface vertices
82         void findBoundaryVertices();
83         
84         //- find boundary cells
85         void findBoundaryCells();
86         
87         //- remove cells with all vertices at the boundary
88         bool removeCellsWithAllVerticesAtTheBoundary();
89         
90         //- morph boundary faces
91         bool morphBoundaryFaces();
92         
93         //- morph internal faces
94         bool morphInternalFaces();
95         
96         //- replace the boundary of the mesh with the newly created one
97         void replaceMeshBoundary();
99         //- Disallow default bitwise copy construct
100         surfaceMorpherCells(const surfaceMorpherCells&);
102         //- Disallow default bitwise assignment
103         void operator=(const surfaceMorpherCells&);
105 public:
107     // Constructors
109         //- Construct from points and cell shapes
110         surfaceMorpherCells(polyMeshGen& mesh);
112     // Destructor
114         ~surfaceMorpherCells();
117     // Member Functions
119         void morphMesh();
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 #endif
131 // ************************************************************************* //