Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Community
integration-cfmesh
Commits
d38bc54c
Commit
d38bc54c
authored
Jun 08, 2015
by
Franjo
Browse files
Locking of boundary layer vertices in the polyhedral meshing workflow
parent
55563b5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
meshLibrary/voronoiMesh/voronoiMeshGenerator/voronoiMeshGenerator.C
View file @
d38bc54c
...
...
@@ -73,16 +73,12 @@ void voronoiMeshGenerator::createVoronoiMesh()
void
voronoiMeshGenerator
::
surfacePreparation
()
{
//- removes unnecessary cells and morph the boundary
//- such that there is only one boundary face per cell
//- It also checks topology of cells after morphing is performed
do
{
surfaceMorpherCells
*
cmPtr
=
new
surfaceMorpherCells
(
mesh_
);
cmPtr
->
morphMesh
();
deleteDemandDrivenData
(
cmPtr
);
}
while
(
topologicalCleaner
(
mesh_
).
cleanTopology
()
);
//- removes unnecessary cells and morphs the boundary
//- such that there exists only one boundary face per cell
surfaceMorpherCells
*
cmPtr
=
new
surfaceMorpherCells
(
mesh_
);
cmPtr
->
morphMesh
();
deleteDemandDrivenData
(
cmPtr
);
# ifdef DEBUG
mesh_
.
write
();
...
...
@@ -149,16 +145,6 @@ void voronoiMeshGenerator::optimiseMeshSurface()
# endif
}
void
voronoiMeshGenerator
::
decomposeConcaveCells
()
{
//decomposeCellsNearConcaveEdges dm(mesh_);
# ifdef DEBUG
mesh_
.
write
();
//::exit(EXIT_FAILURE);
# endif
}
void
voronoiMeshGenerator
::
generateBoudaryLayers
()
{
boundaryLayers
bl
(
mesh_
);
...
...
meshLibrary/voronoiMesh/voronoiMeshGenerator/voronoiMeshGenerator.H
View file @
d38bc54c
...
...
@@ -99,9 +99,6 @@ class voronoiMeshGenerator
//- optimise surface mesh
void
optimiseMeshSurface
();
//- decompose concave cells
void
decomposeConcaveCells
();
//- add boundary layers
void
generateBoudaryLayers
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment