CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

Mesh conversion: 6 quad faces == 1 hex volume

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 2, 2009, 07:58
Default Mesh conversion: 6 quad faces == 1 hex volume
  #1
Tiz
New Member
 
Join Date: Dec 2009
Posts: 3
Rep Power: 16
Tiz is on a distinguished road
I am trying to build a volume mesh from a surface mesh containing all the cell-faces definition.
This translates into reconstructing the faces connectivity which defines the volume elements.
I other words, I have to find out which tuple of 6 quad-faces defines a hex-cell, and write out the result in some mesh format (CGNS, Nastran, whatever).
This seems a trivial operation: the haxahedrons are there, only... I need to "fill" them.

Does anybody know an algorithm (or, even better, a free software tool) to perform efficiently this operation?
I am browsing for references, but I didn't have much luck yet.

Many thanks in advance!
Tiz is offline   Reply With Quote

Old   December 4, 2009, 23:02
Default
  #2
Super Moderator
 
Takuya OSHIMA
Join Date: Mar 2009
Location: Niigata City, Japan
Posts: 518
Blog Entries: 1
Rep Power: 20
7islands is on a distinguished road
Hi Tiz,
I am not sure if I am getting your question right, but do you think the operation you want to do is described in slides 9-11 of http://of-interfaces.sourceforge.net...1-2-open-e.pdf (create an ordered cell-points list from cell-faces and face-points lists)? If so and if you can bear with a quick and dirty code, you can download my opensource code that includes such a conversion from http://openfoamwiki.net/index.php/Co...r_for_ParaView and take a look at vtkOpenFOAMReaderPrivate::InsertCellsToGrid() in vtkNewOpenFOAMReader.cxx .

Takuya
7islands is offline   Reply With Quote

Old   December 5, 2009, 05:24
Default
  #3
Tiz
New Member
 
Join Date: Dec 2009
Posts: 3
Rep Power: 16
Tiz is on a distinguished road
Hi Takuya,

Thanks for your reply, but actually what I am trying to do is slightly different.
If I got it right, your code add to the following mesh definition hierarchy:
  1. List of vertices
  2. List of faces, defined in terms of vertex labels
  3. List of cells, defined in terms of face labels
an additional list of cells:
  • List of cells, defined in terms of vertex labels
In my case, the input to the algorithm should be only:
  1. List of vertices
  2. List of faces, defined in terms of vertex labels
and the output:
  • List of cells (face- or vertex-indexed, it does not matter)
This involves, chosen a face, looping over all the remaining faces and searching for the face set which defines a cell.

I'll try to write down some code, maybe I can handle that (at least for meshes with tet-cells only or hex-cells only).

Tiz
Tiz is offline   Reply With Quote

Old   December 5, 2009, 09:24
Default
  #4
Super Moderator
 
Takuya OSHIMA
Join Date: Mar 2009
Location: Niigata City, Japan
Posts: 518
Blog Entries: 1
Rep Power: 20
7islands is on a distinguished road
Uh, got it. Although I am by no means an expert and hence don't have a concrete solution, I generally find basic algorithms that you see almost in every programming textbook, such as sorting and binary search, are quite effective and useful for this kind of operations.

For example, if the vertex numbers of your mesh fit in 32bit integer,
  1. Take an edge of a face and create its 64bit hash by assigning the vertex numbers of both ends to either higher or lower bits of an 64bit integer so that e.g. the bigger number always comes to the lower bits.
  2. By doing the same for all edges of all faces, you can create a list of edge-faces.
  3. Sort the list using the hashes as keys. This immediately allows you to group all faces that share an edge for all edges.
  4. Take an edge of a face (a base face) again, and binary-search the sorted list to find all faces that share the edge.
  5. Do the same for the next edge of the base face.
  6. By carefully choosing two faces each of which belongs to either group 4. or 5. and which share a vertex that is not on the base face, you can see that the faces are connected.
  7. Do the same for the remaining edges of the base face in turn.
This way you can find 5 out of 6 faces and all vertices that constitutes a hexahedron. Of course this is just a quick thought thus there should be a lot more details, but I hope you get the idea.

Takuya
7islands is offline   Reply With Quote

Reply

Tags
algorithm, hex mesh, mesh generation


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[Netgen] Volume mesh instead of surface mesh phan OpenFOAM Meshing & Mesh Conversion 4 October 18, 2009 17:17
air bubble is disappear increasing time using vof xujjun CFX 9 June 9, 2009 07:59
CheckMeshbs errors ivanyao OpenFOAM Running, Solving & CFD 2 March 11, 2009 02:34
[Commercial meshers] Several problems with the mesh conversion utility when converting the meshes from Gridgen su_junwei OpenFOAM Meshing & Mesh Conversion 2 July 26, 2008 23:58
[blockMesh] Axisymmetrical mesh Rasmus Gjesing (Gjesing) OpenFOAM Meshing & Mesh Conversion 10 April 2, 2007 14:00


All times are GMT -4. The time now is 09:55.