1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | cfMesh: A library for mesh generation
5 \\ / A nd | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6 \\/ M anipulation | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
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
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/>.
26 \*---------------------------------------------------------------------------*/
28 #include "voronoiMeshExtractor.H"
29 #include "demandDrivenData.H"
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 label voronoiMeshExtractor::sameOrientation_[6] = {3, 1, 2, 2, 3, 0};
42 label voronoiMeshExtractor::oppositeOrientation_[6] = {2, 3, 1, 0, 0, 1};
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 void voronoiMeshExtractor::clearOut()
48 deleteDemandDrivenData(pointEdgesPtr_);
49 deleteDemandDrivenData(edgesPtr_);
50 deleteDemandDrivenData(edgeTetsPtr_);
51 deleteDemandDrivenData(boundaryEdgePtr_);
54 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
56 // Construct from octree and mesh data
57 voronoiMeshExtractor::voronoiMeshExtractor
59 const meshOctree& octree,
60 const IOdictionary& meshDict,
64 tetCreator_(octree, meshDict),
69 boundaryEdgePtr_(NULL)
72 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
74 voronoiMeshExtractor::~voronoiMeshExtractor()
79 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
81 void voronoiMeshExtractor::createMesh()
83 Info << "Extracting voronoi mesh" << endl;
85 //- copy tet points into the mesh
91 polyMeshGenModifier(mesh_).reorderBoundaryFaces();
92 polyMeshGenModifier(mesh_).removeUnusedVertices();
94 Info << "Mesh has :" << nl
95 << mesh_.points().size() << " vertices " << nl
96 << mesh_.faces().size() << " faces" << nl
97 << mesh_.cells().size() << " cells" << endl;
99 Info << "Finished extracting voronoi mesh" << endl;
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 } // End namespace Foam
106 // ************************************************************************* //