1 outline of this talk part of the survey presentation from steve owen (owen imr’05)...

74
1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) – Terminology & overview of mesh generation – Algorithms based on triangulation and tetrahedralization Qianqian Fan’s iso2mesh package (ISBI’09 paper) – Mesh generation work-flow – Surface mesh extraction, using CGAL calgsurf function (CGAL: Computational Geometry Algorithms Library) – Volume mesh generation; two options • CGAL mesh generation TetGen developed by Si and Gaertner (IMR’2005).

Upload: sabina-armstrong

Post on 11-Jan-2016

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

1

Outline of this talk

• Part of the survey presentation from Steve Owen (Owen IMR’05)– Terminology & overview of mesh generation – Algorithms based on triangulation and

tetrahedralization

• Qianqian Fan’s iso2mesh package (ISBI’09 paper)– Mesh generation work-flow – Surface mesh extraction, using CGAL calgsurf

function (CGAL: Computational Geometry Algorithms Library)

– Volume mesh generation; two options• CGAL mesh generation • TetGen developed by Si and Gaertner (IMR’2005).

Page 2: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

2

Steve Owen

An Introduction to Mesh Generation AlgorithmsAn Introduction to Mesh Generation Algorithms

Sandia is a multiprogram laboratory operated by Sandia Corporation, a Lockheed Martin Company, for the United States Department of Energy’s National Nuclear Security Administration under contract DE-AC04-94AL85000.

Page 3: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

3

Overview

• The Simulation Process• Geometry Basics• The Mesh Generation

Process• Meshing Algorithms

– Tri/Tet Methods– Quad/Hex Methods– Hybrid Methods– Surface Meshing

• Algorithm Characteristics

Page 4: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

4

Geometry

vertices: x,y,z location

Page 5: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

5

Geometry

vertices: x,y,z location

curves: bounded by two vertices

Page 6: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

6

Geometry

vertices: x,y,z location

surfaces: closed set of curves

curves: bounded by two vertices

Page 7: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

7

Geometry

vertices: x,y,z location

surfaces: closed set of curves

volumes: closed set of surfaces

curves: bounded by two vertices

Page 8: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

8

Geometry

body: collection of volumes

vertices: x,y,z location

surfaces: closed set of curves

volumes: closed set of surfaces

curves: bounded by two vertices

Page 9: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

9

Geometry

body: collection of volumes

vertices: x,y,z location

volumes: closed set of surfaces

surfaces: closed set of curves

loops: ordered set of curves on surface

curves: bounded by two vertices

Page 10: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

10

Geometry

body: collection of volumes

vertices: x,y,z location

volumes: closed set of surfaces

loops: ordered set of curves on surface

surfaces: closed set of curves (loops)

coedges: orientation of curve w.r.t. loop

curves: bounded by two vertices

Page 11: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

11

Geometry

body: collection of volumes

vertices: x,y,z location

volumes: closed set of surfaces (shells)

surfaces: closed set of curves (loops)

loops: ordered set of curves on surface

coedges: orientation of curve w.r.t. loop

shell: oriented set of surfaces comprising a volume

curves: bounded by two vertices

Page 12: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

12

Geometry

body: collection of volumes

vertices: x,y,z location

volumes: closed set of surfaces (shells)

surfaces: closed set of curves (loops)

loops: ordered set of curves on surface

coedges: orientation of curve w.r.t. loop

shell: oriented set of surfaces comprising a volume

curves: bounded by two vertices

Page 13: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

13

Geometry

body: collection of volumes

vertices: x,y,z location

volumes: closed set of surfaces (shells)

surfaces: closed set of curves (loops)

loops: ordered set of curves on surface

coedges: orientation of curve w.r.t. loop

shell: oriented set of surfaces comprising a volume

coface: oriented surface w.r.t. shell

curves: bounded by two vertices

Page 14: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

14

Mesh Generation Process

Mesh Vertices

Mesh Curves

Verify/correct for sizing criteria on

curves

Set up sizing function for

surface

Mesh surface

Set up sizing function for

volume

Mesh volume

Smooth/Cleanup surface mesh

Verify Quality

Verify Quality

Smooth/Cleanup volume mesh

For each surface

For each volume

The Mesh Generation Process

Apply Manual Sizing, Match

Intervals

Page 15: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

15

Meshing Algorithms

• Structured mesh • all interior nodes of the mesh have an equal number of adjacent elements. • Typically quad or hexahedral meshes.

• Unstructured mesh• allow any number of elements to meet at a single node.• Triangle and tetrahedral meshes are commonly thought (though quadrilateral and hexahedral meshes can also be unstructured)

Page 16: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

16

Meshing Algorithms

Page 17: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

17

Tri/Tet Methods

http://www.simulog.fr/mesh/gener2.htm

OctreeAdvancing FrontDelaunay

http://www.ansys.com

Page 18: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

18

Octree/Quadtree

•Define initial bounding box (root of quadtree)•Recursively break into 4 leaves per root to resolve geometry (until the desired resolution is reached)•Find intersections of leaves with geometry boundary•Mesh each leaf using corners, side nodes and intersections with geometry•Delete Outside•(Yerry and Shephard, 84), (Shepherd and Georges, 91)

Page 19: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

19

Octree/Quadtree

QMG, Cornell University

Page 20: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

20

Octree/Quadtree

QMG, Cornell University

Page 21: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

21

Advancing Front

A B

C

•Begin with boundary mesh - define as initial front•For each edge (face) on front, locate ideal node C based on front AB

Page 22: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

22

Advancing Front

A B

Cr

•Determine if any other nodes on current front are within search radius r of ideal location C (Choose D instead of C)

D

Page 23: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

23

Advancing Front

•Book-Keeping: New front edges added and deleted from front as triangles are formed•Continue until no front edges remain on front

D

Page 24: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

24

Advancing Front

•Book-Keeping: New front edges added and deleted from front as triangles are formed•Continue until no front edges remain on front

Page 25: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

25

Advancing Front

•Book-Keeping: New front edges added and deleted from front as triangles are formed•Continue until no front edges remain on front

Page 26: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

26

Advancing Front

•Book-Keeping: New front edges added and deleted from front as triangles are formed•Continue until no front edges remain on front

Page 27: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

27

Advancing Front

A

B

C

•Where multiple choices are available, use best quality (closest shape to equilateral)•Reject any that would intersect existing front•Reject any inverted triangles (|AB X AC| > 0)•(Lohner,88;96)(Lo,91)

r

Page 28: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

28

Advancing Front

Ansys, Inc.www.ansys.com

Page 29: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

29

Delaunay

TriangleJonathon Shewchukhttp://www-2.cs.cmu.edu/~quake/triangle.html

Tetmesh-GHS3DINRIA, Francehttp://www.simulog.fr/tetmesh/

Page 30: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

30

Delaunay

circumcircle

Empty Circle (Sphere) Property: No other vertex is contained within the circumcircle (circumsphere) of any triangle (tetrahedron)

Page 31: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

31

Delaunay Triangulation: Obeys empty-circle (sphere) property

Delaunay

Page 32: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

32

Non-Delaunay Triangulation

Delaunay

Page 33: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

33

Lawson Algorithm•Locate triangle containing X•Subdivide triangle•Recursively check adjoining triangles to ensure empty-circle property. Swap diagonal if needed•(Lawson,77)

X

Given a Delaunay Triangulation of n nodes, How do I insert node n+1 ?

Delaunay

Page 34: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

34

X

Lawson Algorithm•Locate triangle containing X•Subdivide triangle•Recursively check adjoining triangles to ensure empty-circle property. Swap diagonal if needed•(Lawson,77)

Delaunay

Page 35: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

35

Bowyer-Watson Algorithm•Locate triangle that contains the point•Search for all triangles whose circumcircle contain the point (d<r)•Delete the triangles (creating a void in the mesh)•Form new triangles from the new point and the void boundary•(Watson,81)

X

r cd

Given a Delaunay Triangulation of n nodes, How do I insert node n+1 ?

Delaunay

Page 36: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

36

X

Bowyer-Watson Algorithm•Locate triangle that contains the point•Search for all triangles whose circumcircle contain the point (d<r)•Delete the triangles (creating a void in the mesh)•Form new triangles from the new point and the void boundary•(Watson,81)

Given a Delaunay Triangulation of n nodes, How do I insert node n+1 ?

Delaunay

Page 37: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

37

•Begin with Bounding Triangles (or Tetrahedra)

Delaunay

Page 38: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

38

Delaunay

•Insert boundary nodes using Delaunay method (Lawson or Bowyer-Watson)

Page 39: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

39

Delaunay

•Insert boundary nodes using Delaunay method (Lawson or Bowyer-Watson)

Page 40: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

40

Delaunay

•Insert boundary nodes using Delaunay method (Lawson or Bowyer-Watson)

Page 41: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

41

Delaunay

•Insert boundary nodes using Delaunay method (Lawson or Bowyer-Watson)

Page 42: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

42

Delaunay

•Insert boundary nodes using Delaunay method (Lawson or Bowyer-Watson)

Page 43: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

43

Delaunay

•Recover boundary•Delete outside triangles•Insert internal nodes

Page 44: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

44

Delaunay

Node Insertion

Grid Based•Nodes introduced based on a regular lattice•Lattice could be rectangular, triangular, quadtree, etc…•Outside nodes ignored

h

Page 45: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

45

Delaunay

Node Insertion

Grid Based•Nodes introduced based on a regular lattice•Lattice could be rectangular, triangular, quadtree, etc…•Outside nodes ignored

Page 46: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

46

Delaunay

Node Insertion

Centroid•Nodes introduced at triangle centroids•Continues until edge length, hl

Page 47: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

47

Delaunay

Node Insertion

Centroid•Nodes introduced at triangle centroids•Continues until edge length, hl

l

Page 48: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

48

Delaunay

Node Insertion

Circumcenter (“Guaranteed Quality”)•Nodes introduced at triangle circumcenters•Order of insertion based on minimum angle of any triangle•Continues until minimum angle > predefined minimum

)30( (Chew,Ruppert,Shewchuk)

Page 49: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

49

Delaunay

Circumcenter (“Guaranteed Quality”)•Nodes introduced at triangle circumcenters•Order of insertion based on minimum angle of any triangle•Continues until minimum angle > predefined minimum )30(

Node Insertion (Chew,Ruppert,Shewchuk)

Page 50: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

50

Delaunay

Advancing Front•“Front” structure maintained throughout•Nodes introduced at ideal location from current front edge

Node Insertion

A B

C

(Marcum,95)

Page 51: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

51

Delaunay

Advancing Front•“Front” structure maintained throughout•Nodes introduced at ideal location from current front edge

Node Insertion(Marcum,95)

Page 52: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

52

Delaunay

Voronoi-Segment•Nodes introduced at midpoint of segment connecting the circumcircle centers of two adjacent triangles

Node Insertion(Rebay,93)

Page 53: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

53

Delaunay

Voronoi-Segment•Nodes introduced at midpoint of segment connecting the circumcircle centers of two adjacent triangles

Node Insertion(Rebay,93)

Page 54: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

54

Delaunay

Edges•Nodes introduced at along existing edges at l=h•Check to ensure nodes on nearby edges are not too close

Node Insertion

h

h

h

(George,91)

Page 55: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

55

Delaunay

Edges•Nodes introduced at along existing edges at l=h•Check to ensure nodes on nearby edges are not too close

Node Insertion(George,91)

Page 56: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

56

Delaunay

Boundary Constrained

Boundary Intersection•Nodes and edges introduced where Delaunay edges intersect boundary

Page 57: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

57

Delaunay

Boundary Constrained

Boundary Intersection•Nodes and edges introduced where Delaunay edges intersect boundary

Page 58: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

58

Delaunay

Boundary Constrained

Local Swapping•Edges swapped between adjacent pairs of triangles until boundary is maintained

Page 59: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

59

Delaunay

Boundary Constrained

Local Swapping•Edges swapped between adjacent pairs of triangles until boundary is maintained

Page 60: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

60

Delaunay

Boundary Constrained

Local Swapping•Edges swapped between adjacent pairs of triangles until boundary is maintained

Page 61: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

61

Delaunay

Boundary Constrained

Local Swapping•Edges swapped between adjacent pairs of triangles until boundary is maintained

Page 62: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

62

Boundary Constrained

Local Swapping•Edges swapped between adjacent pairs of triangles until boundary is maintained

(George,91)(Owen,99)

Page 63: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

63

DELAUNAY IN 3D

Page 64: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

64

DELAUNAY: INSERT A POINT

Page 65: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

66

Qianqian Fan’s iso2mesh package

Page 66: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

67

Iso2mesh: major components

• Surface mesh extraction (function name: vol2mesh)• provide by CGAL

• 3D mesh generation (function name: surf2mesh)• provided by CGAL

• 3D mesh generation (function name: tetgen) • provided by Si and Gaertner; published in IMR’05• uses constrained Delaunary tetrahedral

• other routines • surface mesh repairing• surface smoothing• sub-region labeling and hole specification

Page 67: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

68

Surface mesh extraction

Page 68: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

69

Major surface mesh generators

• Afont:an advancing-front triangulation algorithm that makes use of a guidance field to determine triangle sizing that is adaptive to the curvature of the input surface, but also maintains smooth gradation to prevent poor quality triangles from being created.

• Marching Cubes: the algorithm proceeds through the scalar field, taking eight neighbor locations at the corners of each cube within the base mesh, and determining the triangles needed to represent the part of the isosurface that passes through each cube. The individual triangles are fused into the desired surface.

• Macet• Dual Contouring • CGAL: surface mesh generation technique based on

Delaunay triangulation to build triangulated surfaces that are topologically equivalent and geometrically close to the original surface

Page 69: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

70

Surface mesh extraction in CGAL (function name: vol2mesh)

• The meshing algorithm is based on the notion of the restricted Delaunay triangulation. – Basically the algorithm computes a set of sample points on

the surface, and extract an interpolating surface mesh from the three dimensional triangulation of these sample points.

– Points are iteratively added to the sample, as in a Delaunay refinement process, until some size and shape criteria on the elements of the surface mesh are satisfied.

• The size and shape criteria guide the behavior of the refinement process and control its termination.

• Meshing Criteria, Guarantees and Variations– The guarantees on the output mesh depend on the mesh

criteria. Theoretical guarantees are given in [BO05]. – First, the meshing algorithm is proved to terminate if the

lower bound on facets angles is not bigger than 30 degrees. – Second…

Page 70: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

71

3D volumetric mesh generation (function name: surf2mesh)

Page 71: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

72

Major Tetrahedral (volume) mesh generators

• TetGen: corresponds to a suite of techniques to generate different tetrahedral meshes from three-dimensional point sets or domains with piecewise linear boundaries.

• Uses Constrained Delaunay Tetrahedralization (CDT) (based on the incremental edge flipping algorithm) from the isosurface mesh.

• NetGen: NetGen is an automatic 3D advancing-front tetrahedral mesh generator that accepts input from constructive solid geometry (CSG) or boundary representations (BRep) from the STL file format.

• CAMAL:…

Page 72: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

73

•3D mesh generation (function name: surf2mesh)

• Boundary and subdivision surfaces are either smooth or piecewise smooth surfaces, formed with planar or curved surface patches.

• The meshing engine used in this mesh generator is based on Delaunay refinement [Che93, Rup95, She98b].

• It uses the notion of restricted Delaunay triangulation to approximate 1-dimensional curve segments and surface patches [BO05].

Page 73: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

74

3D mesh generation (function name: tetgen)

Page 74: 1 Outline of this talk Part of the survey presentation from Steve Owen (Owen IMR’05) –Terminology & overview of mesh generation –Algorithms based on triangulation

75

Iso2mesh: other routines