Mesh Generation Flashcards
What is mesh generation?
Dividing physical space into a large number of geometrical elements
What are the three kinds of meshes?
Surface
Volume
Surface-Volume
What are seven different types of Grids/Meshes?
- Structured Grid
- Overset Grid
- Hybrid Grid
- Unstructured Mesh
- Body-fitted Grid
- Mixed Grid
- Cartesian Grid
What are properties of structured grids?
- Each grid point connected with two neighbors
- Easy access of flow variables
- Difficult to generate for complex bodies
- Longer grid generation time
- Each grid point is uniquely defined
- Grid elements are quadrilaterals in 2D and hexahedral in 3D in
What are three basic grid topologies in 2D?
- C-grid
- H-grid
- O-grid
What are four methods for creating structured grids?
- Algebraic Grid Generation
- Conformal Transformation
- Elliptical Grid Generation
- Hyperbolic grid generation
What are the three steps of grid generation?
- Definition of surface
- Surface grid creation
- Volume grid creation
What are some important grid requirements?
- No holes between grid cells
- Grid cells do not overlap
- No abrupt changes in grid cell volume or stretching ratio
- Elements should be as regular as possible
- No large kinks in grid line
What are the properties of unstructured meshes?
- No particular ordering to grid cells
- Neighboring points cannot be directly identified, a connectivity matrix is needed
- Triangles / quadrilaterals in 2D and tetrahedral/ hexahedral/ prism / pyramid elements in 3D
- Can be created much more quickly
- Difficult to apply to turbulence models
-
What is the C- Grid?
- Grid clustering in far field
- High resolved regions in wake
What is H-grid?
- Employed in turbomachinery
- Grid clustering in far field
- Uses points least efficiently
What is O-grid?
- Poor grid quality at a sharp trailing edge
- Uses points most efficient
What are the main principles for creating structured grids?
- Constant coordinate system in the mapped surface of the body
- Governing equations are solved in the transformed cartesian domain
- Results are mapped back to the physical domain
- Governing equations also have to be transformed
What is Algebraic grid generation?
- Most basic way
- Direct description of the coordinate transformation between physical and computational domain
- Generates Structured grid
What is Conformal Transformation?
- Relates an easily constructed mesh over a simple geometry to a mesh around a general shape
- Angles are preserved in conformal transformation, so an orthogonal grid around a simple geometry will remain orthogonal around the general shape
- Restricted to two-dimensional cases
- Generated structured grid
What is elliptical grid generation?
- Elliptic PDE is solved to create grid
- Grid is solution of PDE so it has the shape of a flow field
- Grid quality can be controlled
- Create initial grid and solve Laplace equation on initial grid
- Generates structured grid
What is hyperbolic grid generation?
- Hyperbolic grids can be grown away from initial data surface with no need for multiple solutions to be obtained
- Do not require boundaries enclosing the area where the grid is created
- can often be created faster and with a higher level of control
- Generates structured grid
What are three basic approaches for generating unstructured meshes?
- Delaunay triangulation
- Advancing front methods
- Octree methods