meshSurfaceEdgeExtractorNonTopo.H
Go to the documentation of this file.
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.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  meshSurfaceEdgeExtractorNonTopo
26 
27 Description
28  Stores boundary faces into patches and captures edges and corners
29 
30 SourceFiles
31  meshSurfaceEdgeExtractorNonTopo.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef meshSurfaceEdgeExtractorNonTopo_H
36 #define meshSurfaceEdgeExtractorNonTopo_H
37 
38 #include "polyMeshGenModifier.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 // Forward declarations
46 class meshOctree;
47 
48 /*---------------------------------------------------------------------------*\
49  Class meshSurfaceEdgeExtractorNonTopo Declaration
50 \*---------------------------------------------------------------------------*/
51 
53 {
54  // Private data
55  //- reference to polyMeshGen
57 
58  //- reference to meshOctree
59  const meshOctree& meshOctree_;
60 
61  // Private member functions
62 
63  //- decompose faces with more than one edge at the same feature edge
65 
66  //- re-map points after edges have been extracted
67  void remapBoundaryPoints();
68 
69  //- Disallow default bitwise copy construct
71 
72  //- Disallow default bitwise assignment
74 
75 public:
76 
77  // Constructors
78 
79  //- Construct from mesh data
81  (
83  const meshOctree& octree
84  );
85 
86  // Destructor
87 
89 
90  // Member Functions
91 };
92 
93 
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 
96 } // End namespace Foam
97 
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 
100 #endif
101 
102 // ************************************************************************* //
Foam::meshSurfaceEdgeExtractorNonTopo::meshOctree_
const meshOctree & meshOctree_
reference to meshOctree
Definition: meshSurfaceEdgeExtractorNonTopo.H:58
polyMeshGenModifier.H
Foam::polyMeshGen
Definition: polyMeshGen.H:46
Foam::meshSurfaceEdgeExtractorNonTopo::mesh_
polyMeshGen & mesh_
reference to polyMeshGen
Definition: meshSurfaceEdgeExtractorNonTopo.H:55
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::meshSurfaceEdgeExtractorNonTopo
Definition: meshSurfaceEdgeExtractorNonTopo.H:51
Foam::meshSurfaceEdgeExtractorNonTopo::meshSurfaceEdgeExtractorNonTopo
meshSurfaceEdgeExtractorNonTopo(const meshSurfaceEdgeExtractorNonTopo &)
Disallow default bitwise copy construct.
Foam::meshSurfaceEdgeExtractorNonTopo::operator=
void operator=(const meshSurfaceEdgeExtractorNonTopo &)
Disallow default bitwise assignment.
Foam::meshSurfaceEdgeExtractorNonTopo::decomposeBoundaryFaces
void decomposeBoundaryFaces()
decompose faces with more than one edge at the same feature edge
Definition: meshSurfaceEdgeExtractorNonTopoDistributeFaces.C:42
Foam::meshOctree
Definition: meshOctree.H:55
meshOctree
Octree for mesh generation.
Foam::meshSurfaceEdgeExtractorNonTopo::~meshSurfaceEdgeExtractorNonTopo
~meshSurfaceEdgeExtractorNonTopo()
Definition: meshSurfaceEdgeExtractorNonTopo.C:56
Foam::meshSurfaceEdgeExtractorNonTopo::remapBoundaryPoints
void remapBoundaryPoints()
re-map points after edges have been extracted
Definition: meshSurfaceEdgeExtractorNonTopoDistributeFaces.C:47