Mesh Compression

Total Page:16

File Type:pdf, Size:1020Kb

Mesh Compression Mesh Compression Dissertation der Fakult¨at f¨ur Informatik der Eberhard-Karls-Universit¨at zu T¨ubingen zur Erlangung des Grades eines Doktors der Naturwissenschaften (Dr. rer. nat.) vorgelegt von Dipl.-Inform. Stefan Gumhold aus Tubingen¨ Tubingen¨ 2000 Tag der m¨undlichen Qualifikation: 19.Juli 2000 Dekan: Prof. Dr. Klaus-J¨orn Lange 1. Berichterstatter: Prof. Dr.-Ing. Wolfgang Straßer 2. Berichterstatter: Prof. Jarek Rossignac iii Zusammenfassung Die Kompression von Netzen ist eine weitgef¨acherte Forschungsrichtung mit Anwen- dungen in den verschiedensten Bereichen, wie zum Beispiel im Bereich der Hand- habung extrem großer Modelle, beim Austausch von dreidimensionalem Inhaltuber ¨ das Internet, im elektronischen Handel, als anpassungsf¨ahige Repr¨asentation f¨ur Vo- lumendatens¨atze usw. In dieser Arbeit wird das Verfahren der Cut-Border Machine beschrieben. Die Cut-Border Machine kodiert Netze, indem ein Teilbereich durch das Netz w¨achst (region growing). Kodiert wird die Art und Weise, wie neue Netzele- mente dem wachsenden Teilbereich einverleibt werden. Das Verfahren der Cut-Border Machine kann sowohl auf Dreiecksnetze als auch auf Tetraedernetze angewendet wer- den. Trotz der einfachen Struktur des Verfahrens kann eine sehr hohe Kompression- srate erzielt werden. Im Falle von Tetraedernetzen erreicht die Cut-Border Machine die beste Kompressionsrate von allen bekannten Verfahren. Die einfache Struktur der Cut-Border Machine erm¨oglicht einerseits die Realisierung direkt in Hardware und ist auch als Implementierung in Software extrem schnell. Auf der anderen Seite erlaubt die Einfachheit eine theoretische Analyse des Algorithmus. Gezeigt werden konnte, dass f¨ur ebene Triangulierungen eine leicht modifizierte Version der Cut-Border Machine lineare Laufzeiten in der Zahl der Knoten erzielt und dass die komprimierte Darstellung nur linearen Speicherbedarf ben¨otigt, d.h. nicht mehr als f¨unf Bits pro Knoten. Neben der detaillierten Beschreibung der Cut-Border Machine mit mehreren Ver- besserungen und Optimierungen, enth¨alt die Arbeit eine Einf¨uhrung zu Netzen und geeigneten Datenstrukturen und entwickelt mehrere Kodierungsverfahren, die im Bere- ich der Netzkompression Anwendung finden. Eine breite Ubersicht¨ verwandter Ar- beiten gibt Einblick in des Forschungsgebiet. Weiterhin wird die Effizienz mehrerer in der Literatur beschriebener Verfahren verbessert. Insbesondere konnte die algorith- misch erzielte obere Schranke f¨ur die Kodierung ebener Triangulierungen bis auf zehn Prozent oberhalb der theoretischen unteren Schranke verbessert werden. Das ist bis jetzt das beste Resultat, das erzielt werden konnte. iv Abstract Mesh Compression is a broad research area with applications in a lot of different areas, such as the handling of very large models, the exchange of three dimensional content over the internet, electronic commerce, the flexible representation of volumetric data and so on. In this thesis the mesh compression method of the Cut-Border Machine is described. The Cut-Border Machine encodes meshes by growing a region through the mesh and encoding the way, in which the mesh elements are incorporated into the growing region. The Cut-Border Machine can be applied to triangular and tetrahedral meshes. Although the method is not too complicated, it achieves very good compression rates. In the tetrahedral case the Cut-Border Machine performs best among all known methods. The simple nature of the Cut-Border Machine allows on the one hand for a hardware implementation and performs also as software implementation extremely well. On the other hand the simplicity allows for a theoretical analysis of the Cut- Border Machine. It could be shown, that for planar triangulations a slightly modified version of the Cut-Border Machine runs in linear time in the number of vertices and that the compressed representation only consumes linear storage space, i.e. no more than five bits per vertex. Besides the detailed description of the Cut-Border Machine with several improve- ments and optimizations, the thesis gives an introduction to meshes and appropriate data structures, develops several coding techniques useful for mesh compression and gives a broad overview of related work. Furthermore the author improves the encoding efficiency of several other compression techniques. In particular could the algorithmi- cally achieved upper bound for the encoding of planar triangulations be improved to ten percent above the theoretical limit, what is the best known result up to now. Contents Preface xiii I Introduction 1 1 Basics on Meshes 5 1.1 Mesh Concept . ......................... 5 1.1.1 Point-Set Models ......................... 5 1.1.2 Surface-Based Models . ..................... 6 1.1.3 Connectivity . ......................... 7 1.1.4 Geometry . ......................... 10 1.2 Application Areas . ......................... 11 1.3 Triangular and Tetrahedral Meshes . .............. 12 1.4 Basic Relations . ......................... 13 1.5 Data Structure . ......................... 14 1.5.1 Halfedge Data Structure ..................... 15 1.5.2 Computing Halfedge Adjacencies . .............. 16 1.5.3 Handling Mesh Attributes . .............. 17 1.5.4 Tetrahedral Mesh Data Structure . .............. 18 2 Related Work 21 2.1 Mesh Compression . ......................... 22 2.1.1 Acceleration of Rendering . .............. 22 2.1.2 Single Resolution Mesh Compression .............. 23 2.1.3 Graph Encoding Theory Related Results . ....... 25 2.1.4 Tetrahedral Mesh Compression . .............. 26 2.2 Mesh Simplification . ......................... 26 2.3 Progressive Mesh Compression . ..................... 27 2.4 Remeshing ................................ 28 3 Coding Techniques 31 3.1 Huffman Coding . ......................... 31 3.2 Arithmetic Coding . ......................... 32 v vi CONTENTS 3.2.1 Index Coding . .......................... 34 3.2.2 Flag Encoding .......................... 34 3.2.3 Adaptive Arithmetic Coding ................... 34 3.2.4 Sparse Flag Coding . ................... 35 3.3 Variable Length Coding .......................... 36 II Triangle Mesh Compression 39 4 Bounds on Triangle Mesh Compression 43 4.1 Planar Triangulations . .......................... 43 4.2 Planar Triangulations with Holes . ................... 44 4.3 Non Planar Triangle Meshes . ................... 45 5 The Cut-Border Machine 47 5.1 Cut-Border Operations & Compressed Representation . ........ 48 5.2 Implementation . .......................... 52 5.2.1 Cut-Border Data Structure . ................... 52 5.2.2 Compression Algorithm . ................... 53 5.2.3 Decompression Algorithm . ................... 55 5.2.4 The Models . .......................... 57 5.2.5 Traverse Order and Cut-Border Size ............... 57 5.2.6 Performance . .......................... 61 5.3 Extensions ................................. 62 5.3.1 Non Orientable Triangle Meshes . ............... 62 5.3.2 Corner Attributes . ................... 63 6 Optimized Cut-Border Machine 65 6.1 Arithmetic Coding . .......................... 65 6.1.1 Adaptive Frequencies . ................... 65 6.1.2 Conditional Probabilities . ................... 66 6.2 Optimized Border Encoding . ................... 67 6.3 Linear Time Cut-Border Data Structure . ............... 69 6.4 Linear Space Limit for Planar Triangulations . ........ 73 6.4.1 Upper Bound on Index Coding . ............... 73 6.4.2 Coding of Operation Symbols . ............... 77 7 Edgebreaker 81 7.1 From the Cut-Border Machine to the Edgebreaker . ........ 81 7.2 Spirale Reversi Edgebreaker Decoding . ............... 82 7.3 Towards Optimal Planar Triangulation Coding . ........ 83 7.3.1 3.557 Bits per Vertex Encoding of Edgebreaker String . 83 7.3.2 Using More Constraints for 3.552 Bits per Vertex Encoding . 86 CONTENTS vii 8 Conclusion & Directions for Future Work 89 III Tetrahedral Mesh Compression 93 9 Introduction to Tetrahedral Meshes 95 9.1 Basic Definitions and Notations ..................... 95 9.2 Basic Equations and Approximations . .............. 97 10 Generalization of the Cut-Border Machine 99 10.1 From Triangular to Tetrahedral Cut-Border Machine Compression . 99 10.2 Cut-Border Operations and Situations . ..............100 10.3 Compressed Representation . .....................102 10.4 Traversal Order . .........................103 10.5 Mesh Border Encoding . .........................104 10.6 Cut-Border Data Structure . .....................104 10.7 Results . ................................107 11 Encoding Mesh Attributes 109 11.1 Vertex Locations . .........................109 11.2 Scalar and Vector Valued Attributes . ..............111 12 Other Compression Methods 113 12.1 Grow & Fold Compression . .....................113 12.1.1 Growing the Spanning Tree . ..............113 12.1.2 Folding the Spanning Tree . ..............114 12.1.3 Results . .........................115 12.2 Implant Sprays . .........................115 12.2.1 Split Vertices Specification . ..............115 12.2.2 Skirt Encoding . .........................116 12.2.3 Implementation & Results . ..............116 12.2.4 Improved Implant Sprays Encoding . ..............117 12.3 Progressive Simplicial Complexes . ..............119 13 Conclusion & Directions for Future Work 123 viii CONTENTS List of Figures 1.1 Meshes with border and non manifold spots . .............. 6 1.2 Subdivision of torus into four patches . .............. 7 1.3 Non orientable meshes . ......................... 9 1.4 Mesh relations . ......................... 15 1.5 Halfedge
Recommended publications
  • Compression and Streaming of Polygon Meshes
    Compression and Streaming of Polygon Meshes by Martin Isenburg A dissertation submitted to the faculty of the University of North Carolina at Chapel Hill in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Department of Computer Science. Chapel Hill 2005 Approved by: Jack Snoeyink, Advisor Craig Gotsman, Reader Peter Lindstrom, Reader Dinesh Manocha, Committee Member Ming Lin, Committee Member ii iii ABSTRACT MARTIN ISENBURG: Compression and Streaming of Polygon Meshes (Under the direction of Jack Snoeyink) Polygon meshes provide a simple way to represent three-dimensional surfaces and are the de-facto standard for interactive visualization of geometric models. Storing large polygon meshes in standard indexed formats results in files of substantial size. Such formats allow listing vertices and polygons in any order so that not only the mesh is stored but also the particular ordering of its elements. Mesh compression rearranges vertices and polygons into an order that allows more compact coding of the incidence between vertices and predictive compression of their positions. Previous schemes were designed for triangle meshes and polygonal faces were triangulated prior to compression. I show that polygon models can be encoded more compactly by avoiding the initial triangulation step. I describe two compression schemes that achieve better compression by encoding meshes directly in their polygonal representation. I demonstrate that the same holds true for volume meshes by extending one scheme to hexahedral meshes. Nowadays scientists create polygonal meshes of incredible size. Ironically, com- pression schemes are not capable|at least not on common desktop PCs|to deal with giga-byte size meshes that need compression the most.
    [Show full text]
  • Topological Issues in Hexahedral Meshing
    Topological Issues in Hexahedral Meshing David Eppstein Univ. of California, Irvine Dept. of Information and Computer Science Topological issues in hexahedral meshing D. Eppstein, UC Irvine, ATMCS 2001 Outline I. What is meshing? Problem statement — Types of mesh — Quality issues — Duality II. What can we mesh? Necessary conditions — Sufficient conditions for topological mesh — Geometric existence problem — bicuboid III. How well can we mesh? Mesh complexity — Provable quality IV. How can we make our meshes better? Point placement — topological changes — flipping — flip graph connectivity — bicuboid revisited Topological issues in hexahedral meshing D. Eppstein, UC Irvine, ATMCS 2001 I. What is Meshing? Given an input domain (manifold with boundary or possibly non-manifold geometry) Partition it into simple cells (triangles, quadrilaterals, tetrahedra, cuboids) Essential preprocessing step for finite element method (numerical solution of differential equations e.g. airflow) Other applications e.g. computer graphics Topological issues in hexahedral meshing D. Eppstein, UC Irvine, ATMCS 2001 Triangle mesh of Lake Superior [Ruppert] Topological issues in hexahedral meshing D. Eppstein, UC Irvine, ATMCS 2001 Quadrilateral mesh of an irregular polygon (all quadrilaterals kite-shaped) Topological issues in hexahedral meshing D. Eppstein, UC Irvine, ATMCS 2001 Triangle mesh on three-dimensional surface [Chew] Topological issues in hexahedral meshing D. Eppstein, UC Irvine, ATMCS 2001 Tetrahedral mesh of a cube Topological issues in hexahedral
    [Show full text]
  • A Frontal Delaunay Quad Mesh Generator Using the L Norm
    INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN ENGINEERING Int. J. Numer. Meth. Engng 2010; 00:1{6 Prepared using nmeauth.cls [Version: 2002/09/18 v2.02] A frontal Delaunay quad mesh generator using the L1 norm J.-F. Remacle1, F. Henrotte1, T. Carrier-Baudouin1, E. B´echet2, E. Marchandise1, C. Geuzaine3 and T. Mouton2 1 Universit´ecatholique de Louvain, Institute of Mechanics, Materials and Civil Engineering (iMMC), B^atimentEuler, Avenue Georges Lema^ıtre 4, 1348 Louvain-la-Neuve, Belgium 2 Universit´ede Li`ege, LTAS, Li`ege,Belgium 3 Universit´ede Li`ege, Department of Electrical Engineering and Computer Science, Montefiore Institute B28, Grande Traverse 10, 4000 Li`ege,Belgium SUMMARY In a recent paper [1], a new indirect method to generate all-quad meshes has been developed. It takes advantage of a well known algorithm of the graph theory, namely the Blossom algorithm, which computes in polynomial time the minimum cost perfect matching in a graph. In this paper, we describe a method that allow to build triangular meshes that are better suited for recombination into quadrangles. This is done by using the infinity norm to compute distances in the meshing process. The alignment of the elements in the frontal Delaunay procedure is controlled by a cross field defined on the domain. Meshes constructed this way have their points aligned with the cross field directions and their triangles are almost right everywhere. Then, recombination with the Blossom-based approach yields quadrilateral meshes of excellent quality. Copyright c 2010 John Wiley & Sons, Ltd. key words: quadrilateral meshing; surface remeshing; graph theory; optimization; perfect matching 1.
    [Show full text]
  • Computational Meshing for CFD Simulations
    Chapter 6 Computational Meshing for CFD Simulations Andreas Lintermann1 The original article is available under https://10.1007/978-981-15-6716-2_6 Abstract In computational fluid dynamics modelling, small cells or elements are created to fill the volume to simulate the flow in. They constitute a mesh where each cell represents a discrete space that represents the flow locally. Mathematical equations that represent the flow physics are then applied to each cell of the mesh. Generating a high quality mesh is extremely important to obtain reliable solutions and to guarantee numerical stability. This chapter begins with a basic introduction to a typical workflow and guidelines for generating high quality meshes, and concludes with some more advanced topics, i.e., how to generate meshes in parallel, a discussion on mesh quality, and examples on the application of lattice-Boltzmann methods to simulate flow without any turbulence modelling on highly-resolved meshes. 6.1 Introduction The segmented airway region from CT/MRI scans provides surface boundary informa- tion (see Chapter 5). The internal space, where inhaled air or particles pass through, is an enclosed volume formed by the surface boundaries. In computational fluid dynamics CFD modelling, small cells or elements are created to fill this volume. They constitute a mesh and thereby discretise the space. The mathematical equations that represent the flow physics (Chapter 6, and 7) are then applied to each cell of the mesh. The end result is the ability to store time-dependent flow properties such as pressure, velocity, or temperature in each individual cell. 1A. Lintermann Forschungszentrum Jülich GmbH email:[email protected] 85 86 CHAPTER 6.
    [Show full text]
  • A Laplacian for Nonmanifold Triangle Meshes
    Eurographics Symposium on Geometry Processing 2020 Volume 39 (2020), Number 5 Q. Huang and A. Jacobson (Guest Editors) A Laplacian for Nonmanifold Triangle Meshes Nicholas Sharp and Keenan Crane Carnegie Mellon University Abstract We describe a discrete Laplacian suitable for any triangle mesh, including those that are nonmanifold or nonorientable (with or without boundary). Our Laplacian is a robust drop-in replacement for the usual cotan matrix, and is guaranteed to have nonnegative edge weights on both interior and boundary edges, even for extremely poor-quality meshes. The key idea is to build what we call a “tufted cover” over the input domain, which has nonmanifold vertices but manifold edges. Since all edges are manifold, we can flip to an intrinsic Delaunay triangulation; our Laplacian is then the cotan Laplacian of this new triangulation. This construction also provides a high-quality point cloud Laplacian, via a nonmanifold triangulation of the point set. We validate our Laplacian on a variety of challenging examples (including all models from Thingi10k), and a variety of standard tasks including geodesic distance computation, surface deformation, parameterization, and computing minimal surfaces. CCS Concepts • Mathematics of computing ! Discretization; Partial differential equations; 1. Introduction Discrete Laplacians. For triangle meshes, the de facto standard is the cotan Laplacian (Section 3.3), equivalent to the usual linear finite The Laplacian D measures the degree to which a given function element stiffness matrix. This operator is very sparse, easy to build, u deviates from its mean value in each local neighborhood; it and generally works well for unstructured meshes with irregular hence characterizes a wide variety of phenomena such as the dif- vertex distributions.
    [Show full text]
  • Mesh Models of Images, Their Generation, and Their Application in Image Scaling
    Mesh Models of Images, Their Generation, and Their Application in Image Scaling by Ali Mostafavian B.Sc., Iran University of Science and Technology, 2007 M.Sc., Sharif University of Technology, 2009 A Dissertation Submitted in Partial Fulfillment of the Requirements for the Degree of DOCTOR OF PHILOSOPHY in the Department of Electrical and Computer Engineering c Ali Mostafavian, 2019 University of Victoria All rights reserved. This dissertation may not be reproduced in whole or in part, by photocopying or other means, without the permission of the author. ii Mesh Models of Images, Their Generation, and Their Application in Image Scaling by Ali Mostafavian B.Sc., Iran University of Science and Technology, 2007 M.Sc., Sharif University of Technology, 2009 Supervisory Committee Dr. Michael D. Adams, Supervisor (Department of Electrical and Computer Engineering) Dr. Pan Agathoklis, Departmental Member (Department of Electrical and Computer Engineering) Dr. Venkatesh Srinivasan, Outside Member (Department of Computer Science) iii ABSTRACT Triangle-mesh modeling, as one of the approaches for representing images based on nonuniform sampling, has become quite popular and beneficial in many applications. In this thesis, image representation using triangle-mesh models and its application in image scaling are studied. Consequently, two new methods, namely, the SEMMG and MIS methods are proposed, where each solves a different problem. In particular, the SEMMG method is proposed to address the problem of image representation by producing effective mesh models that are used for representing grayscale images, by minimizing squared error. The MIS method is proposed to address the image- scaling problem for grayscale images that are approximately piecewise-smooth, using triangle-mesh models.
    [Show full text]
  • Mesh Generation
    Mesh Generation Pierre Alliez Inria Sophia Antipolis - Mediterranee 2D Delaunay Refinement 2D Triangle Mesh Generation Input: . PSLG C (planar straight line graph) . Domain bounded by edges of C Output: . triangle mesh T of such that . vertices of C are vertices of T . edges of C are union of edges in T . triangles of T inside have controlled size and quality Key Idea . Break bad elements by inserting circumcenters (Voronoi vertices) [Chew, Ruppert, Shewchuk,...] “bad” in terms of size or shape Basic Notions C: PSLG describing the constraints T: Triangulation to be refined Respect of the PSLG . Edges a C are split until constrained subedges are edges of T . Constrained subedges are required to be Gabriel edges . An edge of a triangulation is a Gabriel edge if its smallest circumcirle encloses no vertex of T . An edge e is encroached by point p if the smallest circumcirle of e encloses p. Refinement Algorithm C: PSLG bounding the domain to be meshed. T: Delaunay triangulation of the current set of vertices T|: T Constrained subedges: subedges of edges of C Initialise with T = Delaunay triangulation of vertices of C Refine until no rule apply . Rule 1 if there is an encroached constrained subedge e insert c = midpoint(e) in T (refine-edge) . Rule 2 if there is a bad facet f in T| c = circumcenter(f) if c encroaches a constrained subedge e refine-edge(e). else insert(c) in T 2D Delaunay Refinement PSLG Background Constrained Delaunay Triangulation Delaunay Edge An edge is said to be a Delaunay edge, if it is inscribed in an empty circle
    [Show full text]
  • Generation of Unstructured Hexahedron-Dominated Conforming Mesh Using Two-Boundary Marching Method
    Generation of Unstructured Hexahedron-Dominated Conforming Mesh Using Two-Boundary Marching Method Thomas Wey NASA Glenn Research Center, OH 44135 Abstract A grid-based all-hexahedron mesh generation method has been modified to create hybrid meshes by merging surface marching grids and inside out grid-based meshes via an advancing front method. It results in a hexahedron-dominated conforming mesh. The surface marching grid is especially suitable for viscous flow calculation. 1. Introduction The cell-centered based finite volume methods have been wildly used in the finite-rate chemistry and particle microphysics flow solvers. It is well known that the most time consuming computation for those flow solvers is resided on the source terms of the species and particle transport equations. A tetrahedral mesh usually increases the element count 4 to 10 fold over a hexahedral mesh for the similar number of vertices in the domain. Thus better efficiency can be achieved by using a hexahedral mesh, since it is directly proportional to the number of elements and the number of species. Also hexahedron provides directional sizing without losing accuracy. For example, a very thin hexahedron close to the surface of a turbine blade performs far better than thin tetrahedron especially if the temperature is the major concerned. The ever-present economic reason to use a hexahedral mesh for the post-combustor trace chemistry simulation and particulate evolution has prompted the effort to develop efficient methods to generate the conforming or overset hexahedral meshes. Therefore automatically generated all-hexahedron conforming element meshing has become the emerging thrust of mesh generation research [1].
    [Show full text]
  • Mesh Generation for Voxel -Based Objects
    Graduate Theses, Dissertations, and Problem Reports 2005 Mesh generation for voxel -based objects Hanzhou Zhang West Virginia University Follow this and additional works at: https://researchrepository.wvu.edu/etd Recommended Citation Zhang, Hanzhou, "Mesh generation for voxel -based objects" (2005). Graduate Theses, Dissertations, and Problem Reports. 2676. https://researchrepository.wvu.edu/etd/2676 This Dissertation is protected by copyright and/or related rights. It has been brought to you by the The Research Repository @ WVU with permission from the rights-holder(s). You are free to use this Dissertation in any way that is permitted by the copyright and related rights legislation that applies to your use. For other uses you must obtain permission from the rights-holder(s) directly, unless additional rights are indicated by a Creative Commons license in the record and/ or on the work itself. This Dissertation has been accepted for inclusion in WVU Graduate Theses, Dissertations, and Problem Reports collection by an authorized administrator of The Research Repository @ WVU. For more information, please contact [email protected]. Mesh Generation for Voxel-Based Objects Hanzhou Zhang Dissertation submitted to the College of Engineering and Mineral Resources at West Virginia University in partial ful¯llment of the requirements for the degree of Doctor of Philosophy in Mechanical Engineering Dr. Andrei V. Smirnov, Chair Dr. Ismail Celik Dr. Victor H. Mucino Dr. Ibrahim Yavuz Dr. Frances L.Van Scoy Department of Mechanical and Aerospace Engineering Morgantown, West Virginia 2005 ABSTRACT Mesh Generation for Voxel-Based Objects Hanzhou Zhang A new physically-based approach to unstructured mesh generation via Monte-Carlo simulation is proposed.
    [Show full text]
  • A Program Family Approach to Developing Mesh Generators a Program Family Approach to Developing Mesh Generators
    A PROGRAM FAMILY APPROACH TO DEVELOPING MESH GENERATORS A PROGRAM FAMILY APPROACH TO DEVELOPING MESH GENERATORS By FANGCAO, B.Sc A Thesis Submitted to the School of Graduate Studies in Partial Fulfillment of the Requirements for the Degree Master of Applied Science McMaster University © Fang Cao, April 2006 MASTER OF APPLIED SCIENCE (2006 April) McMaster University (Software Engineering) Hamilton, Ontario TITLE: A Program Family Approach to Developing Mesh Generators AUTHOR: Fang Cao, B.Sc (University of Ottawa) SUPERVISORS: Dr. Spencer Smith NUMBER OF PAGES: vii, 211 Acknowledgement First of all, I would like to thank my supervisor, Dr. Spencer Smith, for his suggestions, guidance, and motivation during my pursuit of the Master degree. Without his encourage­ ment and support, this work would not have come to an existence. For that I'm eternally grateful for his help. I also want to express my sincere gratitude to my family, especially my parents and my girlfriend Sandy. They have been such a blessing in my life and given me constant support and encouragement. Abstract This thesis presents a systematic approach for rapid development of a program family of special-purpose 2D structured mesh generators, where a mesh is a discretization of a geo­ metric domain into small simple shapes, such as triangles or quadrilaterals. Mesh gener­ ators are commonly used to produce the input files for finite element and other numerical analysis programs that solve partial differential equations. Despite the existence of many general-purpose mesh generators, there is a lack of re­ search attention on the design of special-purpose generators suitable for small and spe­ cific meshing problems.
    [Show full text]
  • Grouper: a Compact, Streamable Triangle Mesh Data Structure
    IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL. 19, NO. X, XXXXXXX 2013 1 Grouper: A Compact, Streamable Triangle Mesh Data Structure Mark Luffel, Topraj Gurung, Peter Lindstrom, Senior Member, IEEE, and Jarek Rossignac Abstract—We present Grouper: an all-in-one compact file format, random-access data structure, and streamable representation for large triangle meshes. Similarly to the recently published SQuad representation, Grouper represents the geometry and connectivity of a mesh by grouping vertices and triangles into fixed-size records, most of which store two adjacent triangles and a shared vertex. Unlike SQuad, however, Grouper interleaves geometry with connectivity and uses a new connectivity representation to ensure that vertices and triangles can be stored in a coherent order that enables memory-efficient sequential stream processing. We present a linear-time construction algorithm that allows streaming out Grouper meshes using a small memory footprint while preserving the initial ordering of vertices. As a part of this construction, we show how the problem of assigning vertices and triangles to groups reduces to a well-known NP-hard optimization problem, and present a simple yet effective heuristic solution that performs well in practice. Our array-based Grouper representation also doubles as a triangle mesh data structure that allows direct access to vertices and triangles. Storing only about two integer references per triangle—i.e., less than the three vertex references stored with each triangle in a conventional indexed mesh format—Grouper answers both incidence and adjacency queries in amortized constant time. Our compact representation enables data-parallel processing on multicore computers, instant partitioning and fast transmission for distributed processing, as well as efficient out-of-core access.
    [Show full text]
  • R. Garimella, M. Shashkov and P. Knupp, Triangular and Quadrilateral Surface Mesh Quality Optimization Using Local
    Triangular and Quadrilateral Surface Mesh Quality Optimization Using Local Parametrization (LA-UR-02-7190) Rao V. Garimella a, Mikhail J. Shashkov a, Patrick M. Knupp b aMS B284, Los Alamos National Laboratory, Los Alamos, NM 87545. bMS 0847, Sandia National Laboratories, Albuquerque, NM 87185. Abstract A procedure is presented to improve the quality of surface meshes while maintain- ing the essential characteristics of the discrete surface. The surface characteristics are preserved by repositioning mesh vertices in a series of element-based local para- metric spaces such that the vertices remain on the original discrete surface. The movement of the mesh vertices is driven by a non-linear numerical optimization process. Two optimization approaches are described, one which improves the qual- ity of elements as much as possible and the other which improves element quality but also keeps the new mesh as close as possible to the original mesh. Key words: Unstructured surface mesh, triangles, quadrilaterals, numerical optimization, element quality, Jacobian condition number, Reference Jacobian Matrices 1 Introduction Improvement of mesh quality is a very important problem for mesh generation and numerical simulation. The quality of a surface mesh heavily influences the ability of mesh generation algorithms to generate good quality solid meshes. Since surface meshes define external and internal boundaries of computational domains where boundary conditions are imposed, they also influence the ac- curacy of numerical simulations. Email addresses: [email protected] (Rao V. Garimella), [email protected] (Mikhail J. Shashkov), [email protected] (Patrick M. Knupp). Preprint submitted to Elsevier Science 18 November 2002 Many researchers have investigated the issue of improving the quality (element shape and mesh gradation) of triangular, quadrilateral and mixed meshes in the plane [1–6].
    [Show full text]