tetMeshExtractorOctree.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  tetMeshExtractorOctree
26 
27 Description
28  A class which extracts tet mesh out of an octree structure
29 
30 SourceFiles
31  tetMeshExtractorOctree.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef tetMeshExtractorOctree_H
36 #define tetMeshExtractorOctree_H
37 
38 #include "polyMeshGenModifier.H"
39 #include "partTet.H"
40 #include "tetCreatorOctree.H"
41 #include "VRWGraph.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class tetMeshExtractorOctree Declaration
50 \*---------------------------------------------------------------------------*/
51 
53 {
54  // Private data
55  //- create tets
57 
58  //- reference to the mesh
60 
61  // Private member functions
62  //- copy tetPoints_ into mesh
63  void createPoints();
64 
65  //- create mesh data
66  void createPolyMesh();
67 
68  // Private copy constructor
69  //- Disallow default bitwise copy construct
71 
72  //- Disallow default bitwise assignment
73  void operator= ( const tetMeshExtractorOctree& );
74 
75 public:
76 
77  // Constructors
78 
79  //- Construct from octree and mesh data
81  (
82  const meshOctree& octree,
83  const IOdictionary& meshDict,
85  );
86 
87  // Destructor
88 
90 
91 
92  // Member Functions
93  void createMesh();
94 };
95 
96 
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
98 
99 } // End namespace Foam
100 
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 
103 #endif
104 
105 // ************************************************************************* //
Foam::IOdictionary
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
VRWGraph.H
polyMeshGenModifier.H
Foam::polyMeshGen
Definition: polyMeshGen.H:46
Foam::tetMeshExtractorOctree::createPolyMesh
void createPolyMesh()
create mesh data
Definition: tetMeshExtractorOctree.C:63
tetCreatorOctree.H
Foam::tetMeshExtractorOctree
Definition: tetMeshExtractorOctree.H:51
Foam::tetMeshExtractorOctree::mesh_
polyMeshGen & mesh_
reference to the mesh
Definition: tetMeshExtractorOctree.H:58
Foam::tetMeshExtractorOctree::~tetMeshExtractorOctree
~tetMeshExtractorOctree()
Definition: tetMeshExtractorOctree.C:257
Foam::tetMeshExtractorOctree::createMesh
void createMesh()
Definition: tetMeshExtractorOctree.C:262
Foam::tetMeshExtractorOctree::createPoints
void createPoints()
copy tetPoints_ into mesh
Definition: tetMeshExtractorOctree.C:47
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::tetMeshExtractorOctree::tetCreator_
tetCreatorOctree tetCreator_
create tets
Definition: tetMeshExtractorOctree.H:55
Foam::tetMeshExtractorOctree::operator=
void operator=(const tetMeshExtractorOctree &)
Disallow default bitwise assignment.
Foam::tetMeshExtractorOctree::tetMeshExtractorOctree
tetMeshExtractorOctree(const tetMeshExtractorOctree &)
Disallow default bitwise copy construct.
Foam::meshOctree
Definition: meshOctree.H:55
Foam::tetCreatorOctree
Definition: tetCreatorOctree.H:53
partTet.H