A three-grid high-order immersed finite element method for the analysis of CAD models

Eky Febrianto,Jakub Sistek,Pavel Kus,Matija Kecman,Fehmi Cirak
DOI: https://doi.org/10.1016/j.cad.2024.103730
2024-07-05
Abstract:The automated finite element analysis of complex CAD models using boundary-fitted meshes is rife with difficulties. Immersed finite element methods are intrinsically more robust but usually less accurate. In this work, we introduce an efficient, robust, high-order immersed finite element method for complex CAD models. Our approach relies on three adaptive structured grids: a geometry grid for representing the implicit geometry, a finite element grid for discretising physical fields and a quadrature grid for evaluating the finite element integrals. The geometry grid is a sparse VDB (Volumetric Dynamic B+ tree) grid that is highly refined close to physical domain boundaries. The finite element grid consists of a forest of octree grids distributed over several processors, and the quadrature grid in each finite element cell is an octree grid constructed in a bottom-up fashion. We discretise physical fields on the finite element grid using high-order Lagrange basis functions. The resolution of the quadrature grid ensures that finite element integrals are evaluated with sufficient accuracy and that any sub-grid geometric features, like small holes or corners, are resolved up to a desired resolution. The conceptual simplicity and modularity of our approach make it possible to reuse open-source libraries, i.e. openVDB and p4est for implementing the geometry and finite element grids, respectively, and BDDCML for iteratively solving the discrete systems of equations in parallel using domain decomposition. We demonstrate the efficiency and robustness of the proposed approach by solving the Poisson equation on domains given by complex CAD models and discretised with tens of millions of degrees of freedom.
Numerical Analysis
What problem does this paper attempt to address?
The paper attempts to address the difficulties encountered in automated finite element analysis of complex CAD models. Traditional boundary-fitted mesh generation methods face numerous challenges when dealing with complex CAD models, such as gaps, overlaps, and self-intersections in parametric CAD models that need to be repaired, and small geometric details (e.g., chamfers, holes, etc.) that lead to unnecessarily large meshes, often requiring manual removal or simplification. These issues make automated finite element analysis very difficult. To solve these problems, the paper proposes an efficient, robust, and high-order immersed finite element method. The core of this method lies in the use of three adaptive structured grids: a geometric grid to represent implicit geometric shapes, a finite element grid to discretize the physical field, and an integration grid to evaluate finite element integrals. This method not only improves computational accuracy but also maintains high robustness and efficiency when dealing with complex geometries. Specifically, the paper addresses the problem through the following points: 1. **Geometric Grid**: Uses a sparse VDB (Volume Dynamic B+ tree) grid, which is highly refined in regions close to the physical domain boundary to accurately capture geometric details. 2. **Finite Element Grid**: Consists of an octree grid forest distributed across multiple processors, used to discretize the physical field. 3. **Integration Grid**: Constructs a bottom-up octree grid within each finite element cell to ensure the accuracy of finite element integrals and to resolve any sub-grid geometric features, such as small holes or corners. Through these innovations, the paper aims to provide a method capable of performing finite element analysis efficiently and accurately on complex CAD models, thereby overcoming the limitations of traditional methods.