Libceed User Manual Release 0.9.0

Total Page:16

File Type:pdf, Size:1020Kb

Libceed User Manual Release 0.9.0 libCEED User Manual Release 0.9.0 Ahmad Abdelfattah Valeria Barra Natalie Beams Jed Brown Jean-Sylvain Camier Veselin Dobrev Yohann Dudouit Leila Ghaffari Tzanio Kolev David Medina Will Pazner Thilina Ratnayaka Jeremy L. Thompson Stan Tomov Oct 01, 2021 Contents 1 Introduction 4 2 Getting Started 6 2.1 Building ................................................. 6 2.2 Additional Language Interfaces .................................... 7 2.3 Testing .................................................. 7 2.4 Backends ................................................. 8 2.5 Examples ................................................. 9 2.6 Benchmarks ............................................... 11 2.7 Install ................................................... 11 2.7.1 pkg-config ............................................ 12 2.8 Contact .................................................. 12 2.9 How to Cite ............................................... 12 2.10 Copyright ................................................ 13 3 Interface Concepts 13 3.1 Theoretical Framework ......................................... 13 3.2 Finite Element Operator Decomposition ............................... 14 3.2.1 Terminology and Notation ................................... 15 3.2.2 Partial Assembly ........................................ 19 3.2.3 Parallel Decomposition .................................... 20 1 3.3 API Description ............................................. 20 3.4 Gallery of QFunctions ......................................... 26 3.5 Interface Principles and Evolution .................................. 27 4 Examples 28 4.1 Common notation ............................................ 28 4.2 Standalone libCEED .......................................... 28 4.2.1 Ex1-Volume ........................................... 28 4.2.2 Ex2-Surface ........................................... 29 4.3 CEED Bakeoff Problems ........................................ 29 4.3.1 Mass Operator ......................................... 30 4.3.2 Laplace’s Operator ....................................... 31 4.4 PETSc demos and BPs ......................................... 31 4.4.1 Area ............................................... 31 4.4.1.1 Cube .......................................... 31 4.4.1.2 Sphere ......................................... 32 4.4.2 Bakeoff problems and generalizations ............................ 34 4.4.2.1 Bakeoff problems on the cubed-sphere ...................... 34 4.4.3 Multigrid ............................................ 35 4.5 Compressible Navier-Stokes mini-app ................................ 35 4.5.1 Running the mini-app ..................................... 36 4.5.2 The Navier-Stokes equations ................................. 39 4.5.3 Advection ............................................ 42 4.5.4 Isentropic Vortex ........................................ 43 4.5.5 Density Current ......................................... 43 4.6 Solid mechanics mini-app ....................................... 43 4.6.1 Running the mini-app ..................................... 44 4.6.1.1 On algebraic solvers ................................. 46 4.6.1.2 Nondimensionalization ............................... 47 4.6.1.3 Diagnostic Quantities ................................ 47 4.6.2 Linear Elasticity ......................................... 48 4.6.2.1 Constitutive modeling ............................... 48 4.6.3 Hyperelasticity at Small Strain ................................ 49 4.6.3.1 Newton linearization ................................ 49 4.6.4 Hyperelasticity at Finite Strain ................................ 50 4.6.4.1 Constitutive modeling ............................... 50 4.6.4.2 Weak form ...................................... 52 4.6.4.3 Newton linearization ................................ 53 4.6.5 Hyperelasticity in current configuration ........................... 55 4.6.5.1 Push forward, then linearize ............................ 55 4.6.5.2 Linearize, then push forward ............................ 57 4.6.5.3 Jacobian representation ............................... 58 5 Julia, Python, and Rust Interfaces 58 6 API Documentation 58 6.1 Public API ................................................ 58 6.1.1 Ceed ............................................... 58 6.1.1.1 Base library resources ................................ 58 6.1.2 CeedVector ........................................... 64 6.1.2.1 Basic vector operations ............................... 64 6.1.3 CeedElemRestriction ...................................... 69 6.1.3.1 Expressing element decomposition and degrees of freedom over a mesh .. 69 6.1.4 CeedBasis ............................................ 75 2 6.1.4.1 Discrete element bases and quadrature ...................... 75 6.1.5 CeedQFunction ......................................... 83 6.1.5.1 Resolution/space-independent weak forms and quadrature-based operations 83 6.1.6 CeedOperator .......................................... 90 6.1.6.1 Discrete operators on user vectors ......................... 90 6.2 Backend API ............................................... 99 6.2.1 Ceed ............................................... 99 6.2.2 CeedVector ........................................... 104 6.2.3 CeedElemRestriction ...................................... 105 6.2.4 CeedBasis ............................................ 107 6.2.5 CeedQFunction ......................................... 111 6.2.6 CeedOperator .......................................... 114 6.3 Internal Functions ............................................ 116 6.3.1 Ceed ............................................... 116 6.3.2 CeedVector ........................................... 116 6.3.3 CeedElemRestriction ...................................... 116 6.3.4 CeedBasis ............................................ 116 6.3.5 CeedQFunction ......................................... 118 6.3.6 CeedOperator .......................................... 119 7 Floating Point Precision 123 7.1 Language-specific notes ........................................ 124 8 Developer Notes 124 8.1 Style Guide ................................................ 124 8.2 Clang-tidy ................................................ 124 8.3 Header Files ............................................... 125 8.4 Shape ................................................... 125 8.5 restrict semantics .......................................... 126 8.6 Internal Layouts ............................................. 126 8.7 Backend Inheritance .......................................... 126 9 libCEED: How to Contribute 127 9.1 Developer’s Certificate of Origin 1.1 ................................. 127 9.2 Authorship ................................................ 128 10 libCEED Code of Conduct 128 10.1 Our Pledge ................................................ 128 10.2 Our Standards .............................................. 128 10.3 Enforcement Responsibilities ..................................... 129 10.4 Scope ................................................... 129 10.5 Enforcement ............................................... 129 10.6 Enforcement Guidelines ........................................ 129 10.6.1 1. Correction .......................................... 129 10.6.2 2. Warning ............................................ 130 10.6.3 3. Temporary Ban ........................................ 130 10.6.4 4. Permanent Ban ........................................ 130 10.7 Attribution ................................................ 130 11 Changes/Release Notes 130 11.1 Current main branch .......................................... 131 11.1.1 Interface changes ........................................ 131 11.1.2 New features .......................................... 131 11.1.3 Maintainability ......................................... 131 11.2 v0.9 (Jul 6, 2021) ............................................. 131 3 11.2.1 Interface changes ........................................ 131 11.2.2 New features .......................................... 131 11.2.3 Performance improvements .................................. 132 11.2.4 Examples ............................................ 132 11.2.5 Deprecated backends ...................................... 132 11.3 v0.8 (Mar 31, 2021) ........................................... 132 11.3.1 Interface changes ........................................ 132 11.3.2 New features .......................................... 132 11.3.3 Performance improvements .................................. 132 11.3.4 Examples ............................................ 132 11.4 v0.7 (Sep 29, 2020) ............................................ 133 11.4.1 Interface changes ........................................ 133 11.4.2 New features .......................................... 133 11.4.3 Performance improvements .................................. 134 11.4.4 Examples ............................................ 134 11.4.5 Deprecated backends ...................................... 134 11.5 v0.6 (Mar 29, 2020) ........................................... 134 11.5.1 New features .......................................... 134 11.5.2 Performance Improvements .................................. 135 11.5.3 Interface changes ........................................ 135 11.5.4 Examples ............................................ 135 11.6 v0.5 (Sep 18, 2019) ............................................ 136 11.7 v0.4 (Apr 1, 2019) ............................................ 137
Recommended publications
  • Arxiv:1911.09220V2 [Cs.MS] 13 Jul 2020
    MFEM: A MODULAR FINITE ELEMENT METHODS LIBRARY ROBERT ANDERSON, JULIAN ANDREJ, ANDREW BARKER, JAMIE BRAMWELL, JEAN- SYLVAIN CAMIER, JAKUB CERVENY, VESELIN DOBREV, YOHANN DUDOUIT, AARON FISHER, TZANIO KOLEV, WILL PAZNER, MARK STOWELL, VLADIMIR TOMOV Lawrence Livermore National Laboratory, Livermore, USA IDO AKKERMAN Delft University of Technology, Netherlands JOHANN DAHM IBM Research { Almaden, Almaden, USA DAVID MEDINA Occalytics, LLC, Houston, USA STEFANO ZAMPINI King Abdullah University of Science and Technology, Thuwal, Saudi Arabia Abstract. MFEM is an open-source, lightweight, flexible and scalable C++ library for modular finite element methods that features arbitrary high-order finite element meshes and spaces, support for a wide variety of dis- cretization approaches and emphasis on usability, portability, and high-performance computing efficiency. MFEM's goal is to provide application scientists with access to cutting-edge algorithms for high-order finite element mesh- ing, discretizations and linear solvers, while enabling researchers to quickly and easily develop and test new algorithms in very general, fully unstructured, high-order, parallel and GPU-accelerated settings. In this paper we describe the underlying algorithms and finite element abstractions provided by MFEM, discuss the software implementation, and illustrate various applications of the library. arXiv:1911.09220v2 [cs.MS] 13 Jul 2020 1. Introduction The Finite Element Method (FEM) is a powerful discretization technique that uses general unstructured grids to approximate the solutions of many partial differential equations (PDEs). It has been exhaustively studied, both theoretically and in practice, in the past several decades [1, 2, 3, 4, 5, 6, 7, 8]. MFEM is an open-source, lightweight, modular and scalable software library for finite elements, featuring arbitrary high-order finite element meshes and spaces, support for a wide variety of discretization approaches and emphasis on usability, portability, and high-performance computing (HPC) efficiency [9].
    [Show full text]
  • MFEM: a Modular Finite Element Methods Library
    MFEM: A Modular Finite Element Methods Library Robert Anderson1, Andrew Barker1, Jamie Bramwell1, Jakub Cerveny2, Johann Dahm3, Veselin Dobrev1,YohannDudouit1, Aaron Fisher1,TzanioKolev1,MarkStowell1,and Vladimir Tomov1 1Lawrence Livermore National Laboratory 2University of West Bohemia 3IBM Research July 2, 2018 Abstract MFEM is a free, lightweight, flexible and scalable C++ library for modular finite element methods that features arbitrary high-order finite element meshes and spaces, support for a wide variety of discretization approaches and emphasis on usability, portability, and high-performance computing efficiency. Its mission is to provide application scientists with access to cutting-edge algorithms for high-order finite element meshing, discretizations and linear solvers. MFEM also enables researchers to quickly and easily develop and test new algorithms in very general, fully unstructured, high-order, parallel settings. In this paper we describe the underlying algorithms and finite element abstractions provided by MFEM, discuss the software implementation, and illustrate various applications of the library. Contents 1 Introduction 3 2 Overview of the Finite Element Method 4 3Meshes 9 3.1 Conforming Meshes . 10 3.2 Non-Conforming Meshes . 11 3.3 NURBS Meshes . 12 3.4 Parallel Meshes . 12 3.5 Supported Input and Output Formats . 13 1 4 Finite Element Spaces 13 4.1 FiniteElements....................................... 14 4.2 DiscretedeRhamComplex ................................ 16 4.3 High-OrderSpaces ..................................... 17 4.4 Visualization . 18 5 Finite Element Operators 18 5.1 DiscretizationMethods................................... 18 5.2 FiniteElementLinearSystems . 19 5.3 Operator Decomposition . 23 5.4 High-Order Partial Assembly . 25 6 High-Performance Computing 27 6.1 Parallel Meshes, Spaces, and Operators . 27 6.2 Scalable Linear Solvers .
    [Show full text]
  • FELICITY: a MATLAB/C++ TOOLBOX for DEVELOPING FINITE ELEMENT METHODS and SIMULATION MODELING\Ast
    SIAM J. SCI.COMPUT. \bigcircc 2018 Society for Industrial and Applied Mathematics Vol. 40, No. 2, pp. C234{C257 FELICITY: A MATLAB/C++ TOOLBOX FOR DEVELOPING FINITE ELEMENT METHODS AND SIMULATION MODELING\ast SHAWN W. WALKERy Abstract. This paper describes a MATLAB/C++ finite element toolbox, called FELICITY, for simulating various types of systems of partial differential equations (e.g., coupled elliptic/parabolic problems) using the finite element method. It uses MATLAB in an object-oriented way for high-level manipulation of data structures in finite element codes, while utilizing a domain-specific language (DSL) and code generation to automate low-level tasks such as matrix assembly (via the MATLAB mex interface). We describe the fundamental functionality of the toolbox's MATLAB interface, such as using higher order Lagrange (simplicial) meshes, defining finite element spaces, allocating degrees- of-freedom, assembling discrete bilinear and linear forms, and interpolation over meshes. Moreover, we describe in-depth how automatic code generation is implemented in FELICITY. Two example problems and their implementation are provided to demonstrate the ability of FELICITY to solve coupled problems with interacting subdomains of different co-dimension. Future improvements are also discussed. Key words. finite elements, coupled systems, geometric flows, code generation, MATLAB, open source software AMS subject \bfc \bfl \bfa \bfs \bfifi\bfc\bfa\bft\bfo\bfn. 68N30, 65N30, 65M60, 68N19, 68N20 DOI. 10.1137/17M1128745 1. Introduction. The development of numerical methods to solve partial dif- ferential equations (PDEs) continues to advance to address new domain areas and problems of increasing complexity. With this, the number of software packages has increased to address the needs for researching new methods and simulating large prob- lems.
    [Show full text]
  • Mofem: an Open Source, Parallel Finite Element Library
    MoFEM: An open source, parallel finite element library Kaczmarczyk, Ł., Ullah, Z., Lewandowski, K., Meng, X., Zhou, X-Y., Athanasiadis, I., Nguyen, H., Chalons- Mouriesse, C-A., Richardson, E. J., Miur, E., Shvarts, A. G., Wakeni, M., & Pearce, C. J. (2020). MoFEM: An open source, parallel finite element library. The Journal of Open Source Software, 5(45). https://doi.org/doi.org/10.21105/joss.01441 Published in: The Journal of Open Source Software Document Version: Publisher's PDF, also known as Version of record Queen's University Belfast - Research Portal: Link to publication record in Queen's University Belfast Research Portal Publisher rights © 2020 The Authors. This is an open access article published under a Creative Commons Attribution License (https://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution and reproduction in any medium, provided the author and source are cited. General rights Copyright for the publications made accessible via the Queen's University Belfast Research Portal is retained by the author(s) and / or other copyright owners and it is a condition of accessing these publications that users recognise and abide by the legal requirements associated with these rights. Take down policy The Research Portal is Queen's institutional repository that provides access to Queen's research output. Every effort has been made to ensure that content in the Research Portal does not infringe any person's rights, or applicable UK laws. If you discover content in the Research Portal that you believe breaches copyright or violates any law, please contact [email protected]. Download date:06.
    [Show full text]
  • Overview of Research in the Scidac Center for Simulation of Fusion Relevant RF Actuators P
    Overview of Research in the SciDAC Center for Simulation of Fusion Relevant RF Actuators P. T. Bonoli and D. L. Green on behalf of the RF-SciDAC Team 60th Annual Meeting of the APS Division of Plasma Physics November 5–9, 2018 Portland, Oregon Poster BP11.00071 RF-SciDAC : Center for Simulation of Fusion Relevant RF Actuators http://rfscidac4.org Abstract An overview is given of research which has the goal of developing a predictive simulation capability of the self-consistent interaction of RF power with the scrape-off layer (SOL), including the effects of plasma sheaths, ponderomotive forces near an antenna, and turbulence and transport. This will make it possible to answer critical questions related to how RF power modifies properties of the SOL, and how, in turn, the SOL affects the propagation and absorption of RF waves. Targeted problems include the impact of high power RF systems on plasma facing materials, including high-Z impurity sputtering and transport induced by large RF-induced sheath potentials, localized thermal loads, and antenna damage. In order to address the high geometric fidelity required to describe the 3D magnetic field and 3D solid geometry of the RF launching structures and the surrounding vacuum vessel the open-source scalable Modular Finite Element Framework (MFEM) is being utilized. The Parallel Unstructured Mesh Infrastructure (PUMI) is also being used in order to move to global solution domains, which are presently precluded by existing meshing approaches. *Work supported by US DoE contract numbers DE-SC0018090, DE-SC0018319, DE- SC0018275, FWP 3ERAT952, FWP 2017-LLNL-SCW1619, and Work Proposal 3203.
    [Show full text]
  • Improved Support for Parallel Adaptive Simulation in CEED WBS 2.2.6.06, Milestone CEED-MS29
    ECP Milestone Report Improved Support for Parallel Adaptive Simulation in CEED WBS 2.2.6.06, Milestone CEED-MS29 Mark Shephard Valeria Barra Jed Brown Jean-Sylvain Camier Veselin Dobrev Yohan Dudouit Paul Fischer Tzanio Kolev David Medina Misun Min Cameron Smith Morteza H. Siboni Jeremy Thompson Tim Warburton July 12, 2019 DOCUMENT AVAILABILITY Reports produced after January 1, 1996, are generally available free via US Department of Energy (DOE) SciTech Connect. Website http://www.osti.gov/scitech/ Reports produced before January 1, 1996, may be purchased by members of the public from the following source: National Technical Information Service 5285 Port Royal Road Springfield, VA 22161 Telephone 703-605-6000 (1-800-553-6847) TDD 703-487-4639 Fax 703-605-6900 E-mail [email protected] Website http://www.ntis.gov/help/ordermethods.aspx Reports are available to DOE employees, DOE contractors, Energy Technology Data Exchange representatives, and International Nuclear Information System representatives from the following source: Office of Scientific and Technical Information PO Box 62 Oak Ridge, TN 37831 Telephone 865-576-8401 Fax 865-576-5728 E-mail [email protected] Website http://www.osti.gov/contact.html This report was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor any agency thereof, nor any of their employees, makes any warranty, express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately owned rights.
    [Show full text]
  • Femengine: Finite Element Method C++ Code Based on Functional And
    2019 Ivannikov Ispras Open Conference (ISPRAS) FEMEngine: finite element method C++ code based on functional and template metaprogramming Alexey Gurin∗, Alexey Baykin∗, Timofey Polyansky‡, Anton Krivtsov§¶ ∗Laboratory of Digital and Intelligent Hydrocarbon Production Systems Lavrentyev’s Institute of Hydrodynamics of the SB RAS, Novosibirsk, Russia Email: [email protected] ‡Department of Physics Novosibirsk State University, Novosibirsk, Russia §Higher School of Theoretical Mechanics Peter the Great St. Petersburg Polytechnic University (SPbPU), St. Petersburg, Russia ¶Laboratory ”Discrete models in mechanics” Institute for Problems in Mechanical Engineering, St. Petersburg, Russia acheived by the metaprogramming technique. The FEniCS Abstract—The paper discusses the problems of a finite element method programming. Modern C++ functional programming and Form Compiler, written in Python as a part of the FEniCS template metaprogramming approach to finite element analysis Project, generates and compile an efficient C++ code for a is presented. This approach simplifies the implementation of matrix assembly on the fly. This form of metaprogramming is an effective assembly of the stiffness matrix for a problem universal, but very difficult to implement and maintain. defined by a weak form. This method is tested by a solution During the last decade, the C++ language has been of the Poisson equation on an unstructured 3D tetrahedral mesh using FEM C++ library FEMEngine developed by authors. The greatly improved. Three new standards are introduced: C++11, function which calculates the matrix is generated by higher order C++14, C++17. The ability to program in a functional functions during the compilation stage. The performance of the paradigm has been added and the template metaprogramming computation is analyzed by studying of a disassembled code and technique has been simplified.
    [Show full text]
  • Mathfest 2018
    Abstracts of Papers Presented at MathFest 2018 Denver, CO August 1 – 4, 2018 Published and Distributed by The Mathematical Association of America Contents Invited Addresses 1 Earle Raymond Hedrick Lecture Series by Gigliola Staffilani . 1 Nonlinear Dispersive Equations and the Beautiful Mathematics That Comes with Them Lecture 1: Thursday, August 2, 11:00–11:50 AM, Plaza Ballroom A, B, & C, Plaza Building Lecture 2: Friday, August 3, 10:30–11:20 AM, Plaza Ballroom A, B, & C, Plaza Building Lecture 3: Saturday, August 4, 10:00–10:50 AM, Plaza Ballroom A, B, & C, Plaza Building . 1 AMS-MAA Joint Invited Address . 1 Gravity’s Action on Light: A Mathematical Journey by Arlie Petters Thursday, August 2, 10:00–10:50 AM, Plaza Ballroom A, B, & C, Plaza Building . 1 MAA Invited Address . 1 Inclusion-exclusion in Mathematics: Who Stays in, Who Falls out, Why It Happens, and What We Should Do About It by Eugenia Cheng Friday, August 3, 11:30–12:20 AM, Plaza Ballroom A, B, & C, Plaza Building . 1 Snow Business: Scientific Computing in the Movies and Beyond by Joseph Teran Saturday, August 4, 11:00–11:50 AM, Plaza Ballroom A, B, & C, Plaza Building . 1 Mathematical Medicine: Modeling Disease and Treatment by Lisette de Pillis Thursday, August 2, 9:00–9:50 AM, Plaza Ballroom A, B, & C, Plaza Building . 2 MAA James R.C. Leitzel Lecture . 2 The Relationship between Culture and the Learning of Mathematics by Talitha Washington Saturday, August 4, 9:00–9:50 AM, Plaza Ballroom A, B, & C, Plaza Building .
    [Show full text]
  • The Diet Experience Eddy Caron
    Contribution to the management of large scale platforms: the Diet experience Eddy Caron To cite this version: Eddy Caron. Contribution to the management of large scale platforms: the Diet experience. Net- working and Internet Architecture [cs.NI]. Ecole normale supérieure de lyon - ENS LYON, 2010. tel-00629060 HAL Id: tel-00629060 https://tel.archives-ouvertes.fr/tel-00629060 Submitted on 5 Oct 2011 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. HABILITATION A DIRIGER DES RECHERCHES présentée par Eddy Caron pour obtenir l’habilitation à diriger des recherches de l’École Normale Supérieure de Lyon spécialité : Informatique Contribution to the management of large scale platforms: the Diet experience Date de soutenance: 6 octobre 2010 Composition du Jury : Rapporteurs : Dick H. J. Epema (Technische Universiteit Delft) : Thierry Priol (INRIA. IRISA. Rennes) : Pierre Sens (INRIA. LIP6. Paris) Examinateurs : Vincent Breton (CNRS. LPC. Clermont Ferrand) : Franck Cappello (INRIA. Urbana Champaign University) : Olivier Richard (IMAG. Grenoble) Directeur : Frédéric Desprez (INRIA. ENS-Lyon) Habilitation préparée au sein du Laboratoire de l’Informatique du Parallélisme (LIP) À Cléa et Teo. Remerciements Je commencerai ces remerciements par un reproche à tout ceux qui avant moi se sont retrouvés devant cette tâche.
    [Show full text]
  • An Isogeometric Analysis Approach for Coupled Multi-Field Problems at Large Strain Lei Zhang
    An isogeometric analysis approach for coupled multi-field problems at large strain Lei Zhang To cite this version: Lei Zhang. An isogeometric analysis approach for coupled multi-field problems at large strain. Solid mechanics [physics.class-ph]. Ecole Centrale Marseille, 2016. English. NNT : 2016ECDM0012. tel- 01525035 HAL Id: tel-01525035 https://tel.archives-ouvertes.fr/tel-01525035 Submitted on 19 May 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. ECOLE CENTRALE MARSEILLE THÈSE Pour obtenir le grade de DOCTEUR DE L’ECOLE CENTRALE MARSEILLE Par LEI ZHANG le 5 décembre 2016 SUR UNE APPROCHE ISOGEOMETRIQUE POUR PROBLEMES MULTI-CHAMPS COUPLES EN GRANDES TRANSFORMATIONS JURY Rapporteur: Thomas Elguedj, INSA de Lyon Rapporteur: Jean-Claude Léon, ENSE3 - Grenoble-INP Examinateur: Salim Bouabdallah, Altair Engineering Examinateur: Marc Médale, Polytech’ Marseille Directeur de thèse: Dominique Eyheramendy, Centrale Marseille II Acknowledgements This dissertation has been written from 2013 to 2016 during my time as Phd student in the equip of material and structure of LMA (Laboratoire de Mécanique et d’Acoustique), Marseille, France. I would like to thank sincerely Prof. Dominique Eyheramendy for giving me the opportunity to work with him, and for his helpful and patient guidance as my doctoral supervisor.
    [Show full text]
  • The Dune Framework: Basic Concepts and Recent Developments
    The Dune Framework: Basic Concepts and Recent Developments Peter Bastiana, Markus Blattb, Andreas Dednerc, Nils-Arne Dreierd, Christian Engwerd, Ren´eFritzed, Carsten Gr¨asere, Christoph Gr¨uninger, Dominic Kempfa, Robert Kl¨ofkornf, Mario Ohlbergerd, Oliver Sanderg aHeidelberg University bDr. Blatt HPC-Simulation-Software & Services cUniversity of Warwick dApplied Mathematics: Institute of Analysis and Numerics, University of M¨unster eFreie Universit¨atBerlin fNORCE Norwegian Research Centre AS gTechnische Universit¨atDresden Abstract This paper presents the basic concepts and the module structure of the Dis- tributed and Unified Numerics Environment and reflects on recent developments and general changes that happened since the release of the first Dune version in 2007 and the main papers describing that state [1, 2]. This discussion is accompanied with a description of various advanced features, such as coupling of domains and cut cells, grid modifications such as adaptation and moving domains, high order discretizations and node level performance, non-smooth multigrid methods, and multiscale methods. A brief discussion on current and future development directions of the framework concludes the paper. 1. Introduction The Distributed and Unified Numerics Environment Dune1 [1, 2] is a free and open source software framework for the grid-based numerical solution of partial differential equations (PDEs) that has been developed for more than 15 years as a collaborative effort of several universities and research institutes. arXiv:1909.13672v3 [cs.MS] 22 Jun 2020 In its name, the term \distributed" refers to distributed development as well as distributed computing. The enormous importance of numerical methods for PDEs in applications has lead to the development of a large number of general (i.e.
    [Show full text]
  • Unstructured Meshing Technologies
    Unstructured Meshing Technologies Presented to ATPESC 2020 Participants Aaron Fisher (LLNL) & Mark Shephard (RPI) Date 08/04/2020 ATPESC Numerical Software Track Finite elements are a good foundation for large-scale simulations on current and future architectures ▪ Backed by well-developed theory. ▪ Naturally support unstructured and curvilinear grids. ▪ High-order finite elements on high-order meshes • Increased accuracy for smooth problems • Sub-element modeling for problems with shocks • Bridge unstructured/structured grids Non-conforming mesh refinement • Bridge sparse/dense linear algebra on high-order curved meshes • FLOPs/bytes increase with the order ▪ Demonstrated match for compressible shock hydrodynamics (BLAST). ▪ Applicable to variety of physics (DeRham complex). “nodes” “edges” “faces” “zones” High-order High-order High-order High-order 8th order Lagrangian hydro simulation kinematics MHD rad. diff. thermodynamics of a shock triple-point interaction 2 ATPESC 2020, July 26 – August 7, 2020 Modular Finite Element Methods (MFEM) MFEM is an open-source C++ library for scalable FE research and fast application prototyping ▪ Triangular, quadrilateral, tetrahedral and hexahedral; volume and surface meshes ▪ Arbitrary order curvilinear mesh elements ▪ Arbitrary-order H1, H(curl), H(div)- and L2 elements Linear, quadratic and cubic finite element spaces on curved meshes ▪ Local conforming and non-conforming refinement ▪ NURBS geometries and discretizations ▪ Bilinear/linear forms for variety of methods (Galerkin, DG, DPG, Isogeometric,
    [Show full text]