CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > CFX

Difference between structured & unstructured mesh

Register Blogs Community New Posts Updated Threads Search

Like Tree70Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 18, 2003, 22:19
Default Difference between structured & unstructured mesh
  #1
Andrew
Guest
 
Posts: n/a
Hello everybody

What's the difference between structured mesh and unstructred mesh? Thanks.

Andrew
  Reply With Quote

Old   February 23, 2003, 21:12
Default Re: Difference between structured & unstructured m
  #2
derrek
Guest
 
Posts: n/a
Andrew:

Typically a structured mesh is comprised of hex (brick)elements (quads in 2D) that follow a unifrom pattern. An unstructured mesh does not follow a unifrom pattern, usually comprised of tet elements (tris in 2D).

derrek
  Reply With Quote

Old   February 24, 2003, 09:39
Default Re: Difference between structured & unstructured m
  #3
Robin
Guest
 
Posts: n/a
Hi Andrew,

A single block structured mesh may comprise of square elements (2D) or hexahedral elements (3D) which are orthogonal in i, j space (2D) or i, j, k space (3D). Although is is also possible to have wedges (3D), triangles (2D) and pyramids (3D) in a structured mesh.

Looking at a 2D example, for simplicity, every node in a 2D structured mesh has a corresponding integer i and j index value which is unique. The physical locations of the nodes are stored in a table or are functionally related to the mesh space (ie (x,y)= f(i,j)). It is also implied then that the neigbours of node (i,j) are (i-1,j), (i+1,j), (i,j-1), (i,j+1), (i-1,j-1), and (i+1,j+1). If you are writing a CFD code, a structured mesh makes it very easy to loop through neighbours and can be efficient with memory.

A structured mesh has many coding advantages, but it may be difficult to conform a single block to a complicated shape. Code developers have got around this by allowing multiple blocks (multiblock unstructured), but this can make the internal memory strucutres more inefficient. Another way to make the mesh generation simpler, and improve code performance in other ways is to throw away the block structure and replace indices with node numbers and a connectivity table. This is known as an unstructured mesh, because it lacks the i,j,k structure.

A common misperception is that a hex mesh is strucutred and a tet mesh is unstructured. It is accurate to say that a tet mesh is unstructured, however a hex mesh can also be unstructred. The difference between a structured hex mesh and an ustructured hex mesh is simply in how the data is stored.

Regards, Robin

  Reply With Quote

Old   February 27, 2003, 20:38
Default Re: Difference between structured & unstructured m
  #4
derrek
Guest
 
Posts: n/a
Robin:

Thanks for the thorough explanation. I should have used the word "typically" a little more forcefully. I didn't mean to imply a definition of structured & unstructured.

derrek
  Reply With Quote

Old   January 3, 2012, 01:44
Default Structured HexaMesh and Unstructured Hexamesh Different
  #5
New Member
 
Jaiganesh S
Join Date: Dec 2011
Posts: 8
Rep Power: 14
Jaiganesh S is on a distinguished road
1.What is the main different between in structured hexa and unstructured hexa?
Jaiganesh S is offline   Reply With Quote

Old   January 8, 2012, 19:30
Default
  #6
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,703
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
Structured hex meshes are in a grid, so an element can be identified by and ijk coordinate. Unstructured hex meshes are, well, unstructured.
ghorrocks is offline   Reply With Quote

Old   February 2, 2012, 16:34
Default good news
  #7
Member
 
heidar jafarizadeh
Join Date: Mar 2010
Location: Iran- Tehran
Posts: 43
Rep Power: 16
heidar is on a distinguished road
hey guys
In fact a mesh is said to be structured if one can found a primitive motif which is regular in space. This implies that for instance node connectivities has a fixed pattern. But the geometry may be not constant, for instance your mesh can be deformed from place to place (for instance to match a specific boundary). The only thing you know for sure when the mesh is regular is that the node (or elements) connectivty is always the same. This may be useful for algorithm design since you always have the same pattern.
However unstructured mesh are generally more flexible, since the connectivity pattern is not fixed, at the cost of having to store the connectivity. There is no generic answer to your last question, since it depends strongly upon the application you have in mind.
__________________
Best Regards
Heidar Jafarizadeh
heidar is offline   Reply With Quote

Old   April 2, 2014, 10:41
Default
  #8
New Member
 
Masoud
Join Date: Feb 2014
Posts: 22
Rep Power: 12
masoudmohammadian is on a distinguished road
Could you please explain it more?

regards
masoudmohammadian is offline   Reply With Quote

Old   April 2, 2014, 18:20
Default
  #9
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,703
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
This topic is covered in any CFD text book. I do not fancy retyping text books into forums.
ghorrocks is offline   Reply With Quote

Old   March 21, 2016, 11:16
Default
  #10
Member
 
Join Date: Jul 2012
Posts: 48
Rep Power: 13
Abhya is on a distinguished road
Quote:
Originally Posted by ghorrocks View Post
This topic is covered in any CFD text book. I do not fancy retyping text books into forums.
I hope you realize we dont want a retyped Text explanation...
Something like this (quoted below - post by Robin) is much better than that..I'd call that condensed understanding ... and that's what guys mean while asking such questions .. they wish to save some time and effort by learning from a well learned fellow..!
Quote:
Originally Posted by Robin
;65829
Hi Andrew,

A single block structured mesh may comprise of square elements (2D) or hexahedral elements (3D) which are orthogonal in i, j space (2D) or i, j, k space (3D). Although is is also possible to have wedges (3D), triangles (2D) and pyramids (3D) in a structured mesh.

Looking at a 2D example, for simplicity, every node in a 2D structured mesh has a corresponding integer i and j index value which is unique. The physical locations of the nodes are stored in a table or are functionally related to the mesh space (ie (x,y)= f(i,j)). It is also implied then that the neigbours of node (i,j) are (i-1,j), (i+1,j), (i,j-1), (i,j+1), (i-1,j-1), and (i+1,j+1). If you are writing a CFD code, a structured mesh makes it very easy to loop through neighbours and can be efficient with memory.

A structured mesh has many coding advantages, but it may be difficult to conform a single block to a complicated shape. Code developers have got around this by allowing multiple blocks (multiblock unstructured), but this can make the internal memory strucutres more inefficient. Another way to make the mesh generation simpler, and improve code performance in other ways is to throw away the block structure and replace indices with node numbers and a connectivity table. This is known as an unstructured mesh, because it lacks the i,j,k structure.

A common misperception is that a hex mesh is strucutred and a tet mesh is unstructured. It is accurate to say that a tet mesh is unstructured, however a hex mesh can also be unstructred. The difference between a structured hex mesh and an ustructured hex mesh is simply in how the data is stored.

Regards, Robin

Super clear explanation btw Robin
Abhya is offline   Reply With Quote

Old   March 21, 2016, 17:07
Default
  #11
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,703
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
Yes, Robin's answer was good and he should be commended for that. But vague questions like "Could you please explain it more?" really don't encourage people to write thoughtful answers as there was little thought put into the question. You will find that to get good answers you need to ask good questions - which means clearly stating what bit you don't understand and explaining what background reading/knowledge you have in the topic.
ghorrocks is offline   Reply With Quote

Old   August 10, 2017, 08:49
Default
  #12
New Member
 
majid fahim
Join Date: Jun 2017
Posts: 7
Rep Power: 8
majid fahim is on a distinguished road
download (1).jpg

download.jpg
amolrajan, benwonur, Dak and 3 others like this.
majid fahim is offline   Reply With Quote

Old   December 5, 2019, 05:36
Default Difference in Results
  #13
New Member
 
Sumanth
Join Date: Aug 2018
Location: Germany
Posts: 21
Rep Power: 7
Sumanth_094 is on a distinguished road
Hello guys,

sorry for reviving this almost dead Thread. I am currently performing simulations for film cooling of gas turbine blades and I have two sets of simulations performed with structured and the unstructured meshes. Since unstructured meshing is faster (atleast for me), its preferred over structured meshing but ofcourse it comes with a price and thats accuracy. I have a simulation result perfomed with a Structured mesh with a mesh density of 4.4 million nodes and to acheive 'similar' results with an unstructured mesh, I would be needing a mesh with 36 million nodes. Thats quite high and it costs a lot more computational power and time. I use ICEM CFD for meshing. Mesh study was done for both the types of mesh and 4.4mil structured mesh was already giving good results and further refinement wasn't needed. The mesh study for unstructured meshing was done keeping in mind the results of structured mesh and as I said, we needed a high density mesh.

Is there anyway in which one could bring down the computational time of this unstructured mesh without the accuracy of the result taking a hit? By that I mean acheiving a low density tetra mesh which could still deliver matching results with my structured mesh of 4.4million nodes.

Thanks a lot for your time!

Best regards,
Sumanth
Sumanth_094 is offline   Reply With Quote

Old   December 5, 2019, 05:50
Default
  #14
Senior Member
 
Gert-Jan
Join Date: Oct 2012
Location: Europe
Posts: 1,827
Rep Power: 27
Gert-Jan will become famous soon enough
Don't think that you can bring down the computational time. I assume that if it would be possible, than it would be there already .

But maybe....... you can create a mix of both worlds in ICEM by converting your tet mesh to a hex mesh, where possible. Did you ever try that?
It is an option in edit mesh. There select to convert 12 tets into 1 hex, with a quality criteria of 0.2. By lowering this value, you can let ICEM convert more tets to hex.
Since the best quality (>0.2) tet elements are in the bulk of your domain, these elements will be converted predominantly. You will end up with a transition region with the worst tets. These are located between your prisms at the wall, and hex elements in the bulk.
Gert-Jan is offline   Reply With Quote

Old   December 5, 2019, 06:24
Default
  #15
New Member
 
Sumanth
Join Date: Aug 2018
Location: Germany
Posts: 21
Rep Power: 7
Sumanth_094 is on a distinguished road
Quote:
Originally Posted by Gert-Jan View Post
Don't think that you can bring down the computational time. I assume that if it would be possible, than it would be there already .

But maybe....... you can create a mix of both worlds in ICEM by converting your tet mesh to a hex mesh, where possible. Did you ever try that?
It is an option in edit mesh. There select to convert 12 tets into 1 hex, with a quality criteria of 0.2. By lowering this value, you can let ICEM convert more tets to hex.
Since the best quality (>0.2) tet elements are in the bulk of your domain, these elements will be converted predominantly. You will end up with a transition region with the worst tets. These are located between your prisms at the wall, and hex elements in the bulk.


Thanks a lot for the super fast reply
Thats one of the options which I was considering but haven't implemented yet. I wonder how the mesh turns out to be. If its as clean as the mesh which one would achieve with blocking, that would already save me a lot of time.
I am performing that as I type this. Lets see
Thanks a lot once again!
Sumanth_094 is offline   Reply With Quote

Old   December 5, 2019, 15:43
Default
  #16
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,703
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
If there was a simple way of making a tet mesh more accurate without refining the mesh, don't you think that would be made the default process?

The simplest way of making a large tet mesh simulation run faster is to get more parallel nodes or a more powerful computer.
__________________
Note: I do not answer CFD questions by PM. CFD questions should be posted on the forum.
ghorrocks is offline   Reply With Quote

Old   December 6, 2019, 03:45
Default
  #17
New Member
 
Sumanth
Join Date: Aug 2018
Location: Germany
Posts: 21
Rep Power: 7
Sumanth_094 is on a distinguished road
Quote:
Originally Posted by ghorrocks View Post
If there was a simple way of making a tet mesh more accurate without refining the mesh, don't you think that would be made the default process?

The simplest way of making a large tet mesh simulation run faster is to get more parallel nodes or a more powerful computer.
Well, I aint just referring to the process of refinement. I was working with ANSA for the last 7-8 months and have resumed again with ICEM. ANSA offered a wide range of meshing algorithms to obtain an unstructured mesh (ICEM also has a couple of them, I know) but I aint an experienced ANSA user and I never thought about doing a structured vs unstructured comparison with that either.
As of now, I use Robust octree to get a surface mesh in ICEM and then use delaunay for the volume meshing and then proceed with prisms.

I wanted to know if the meshing algorithm/procedure has got any role to play here too. I never did that study myself but before proceeding down that road, I wanted to know if anyone here actually tried doing that.

Also, running a 36M mesh isn't a problem since the simualtions are run on a cluster and I have the result in less than a days time but trying to optimize is always good, or?

Btw, thanks for your time Glenn. Your replies have helped me learn a lot and I find your inputs always valuable!
Sumanth_094 is offline   Reply With Quote

Old   December 6, 2019, 04:43
Default
  #18
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,703
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
Also note the effect of the mesh depends on what you are modelling. If you are modelling a single phase low Re flow then you can use meshes of terrible quality and they will still work fine. But if your simulation has shock waves, multiphase (especially free surface with surface tension) or other complex physics your mesh quality requirements increase drastically. So there is not a universal answer to your question.

Also keep in mind that for commercial use - time is money. So if a simple tet mesh with little geometry modification gets you results which are good enough (even if it takes a big cluster to run it); that may be better than paying for a CFD expert to spend hours and hours cleaning up the geometry so you can use a higher quality mesh strategy. So keep meshing effort to what the simulation requires.
__________________
Note: I do not answer CFD questions by PM. CFD questions should be posted on the forum.
ghorrocks is offline   Reply With Quote

Old   December 6, 2019, 04:59
Default
  #19
New Member
 
Sumanth
Join Date: Aug 2018
Location: Germany
Posts: 21
Rep Power: 7
Sumanth_094 is on a distinguished road
I am dealing with the former. The physics behind my model isn't that complicated. Its a single phase flow. But its crazy that even after so much refinement of my tetra mesh, some details still werent captured like in Hex. But now, I understand the difference also a bit better

Also, you are absolutely right on that part. Time is indeed more precious. I am doing this for my thesis and I had more freedom to explore some of the options and this question just popped up few days ago in my mind and I thought I would dig into it more during my free time
Sumanth_094 is offline   Reply With Quote

Old   December 6, 2019, 05:12
Default
  #20
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,703
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
Have a look in the documentation on the numerical approach. The solver forms control volumes around the nodes, which means for tet meshes the control volumes are polygonal. If you use a structured mesh the control volumes are also hexes, and that makes the control volumes have less faces (so less fluxes to keep track of, less memory) and the control volume faces can potentially be closer to perpendicular which helps reduce numerical diffusion. Hope that gives you some clues for some things to research on this topic.
srsel6, Sumanth_094 and aero_head like this.
__________________
Note: I do not answer CFD questions by PM. CFD questions should be posted on the forum.
ghorrocks is offline   Reply With Quote

Reply


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
Gambit problems Althea FLUENT 22 January 4, 2017 03:19
[Gmsh] 2D Mesh Generation Tutorial for GMSH aeroslacker OpenFOAM Meshing & Mesh Conversion 12 January 19, 2012 03:52
[ICEM] Unstructure Meshing Around Imported Plot3D Structured Mesh ICEM kawamatt2 ANSYS Meshing & Geometry 17 December 20, 2011 11:45
Icemcfd 11: Loss of mesh from surface mesh option? Joe CFX 2 March 26, 2007 18:10
Mesh Mignard FLUENT 2 March 22, 2000 05:12


All times are GMT -4. The time now is 03:12.