Vectorized implementation of primal hybrid FEM in MATLAB

Harish Nagula Mallesham,Kamana Porwal,Jan Valdman,Sanjib Kumar Acharya
2024-01-28
Abstract:We present efficient MATLAB implementations of the lowest-order primal hybrid finite element method (FEM) for linear second-order elliptic and parabolic problems with mixed boundary conditions in two spatial dimensions. We employ the Crank-Nicolson finite difference scheme for the complete discrete setup of the parabolic problem. All the codes presented are fully vectorized using matrix-wise array operations. Numerical experiments are conducted to show the performance of the software.
Numerical Analysis
What problem does this paper attempt to address?
The main problem that this paper attempts to solve is to improve the computational efficiency of the finite element method (FEM) in MATLAB, especially for the lowest - order primal hybrid FEM for two - dimensional linear second - order elliptic and parabolic problems. Specifically, the authors solve this problem in the following aspects: 1. **Vectorized implementation**: By converting traditional for - loops into matrix operations, efficient MATLAB code is achieved. This method significantly improves the computational speed, especially when dealing with large - scale meshes. 2. **Crank - Nicolson time discretization**: For parabolic problems, the Crank - Nicolson finite - difference scheme is used for time discretization to ensure the stability and accuracy of the numerical solution. 3. **Boundary condition handling**: Mixed boundary conditions (Dirichlet and Neumann boundary conditions) are considered and are processed in detail in the vectorized implementation. 4. **Code optimization and performance evaluation**: The performance of the software is demonstrated through numerical experiments, and the running time is analyzed, proving the great advantage of the vectorized code over the non - vectorized code. ### Specific problem description This paper mainly focuses on how to efficiently implement the lowest - order primal hybrid finite element method in MATLAB to solve two - dimensional linear second - order elliptic and parabolic problems with mixed boundary conditions. Specifically, the authors have solved the following key problems: - **Inefficient for - loops**: Using for - loops for finite element assembly in traditional MATLAB code is very slow, especially when dealing with large - scale problems. To this end, the authors introduce a vectorized method of matrix operations, which greatly improves the computational efficiency. - **Time discretization**: For parabolic problems, an appropriate time discretization method needs to be selected. The authors choose the Crank - Nicolson scheme because it has high precision and stability in both time and space. - **Boundary condition handling**: How to correctly handle mixed boundary conditions in the vectorized implementation is a challenge. The authors effectively handle Dirichlet and Neumann boundary conditions by introducing the Lagrange multiplier method. - **Performance evaluation**: To verify the effectiveness of the new method, the authors conduct a large number of numerical experiments and conduct a detailed analysis of the running time at different mesh refinement levels, proving the superiority of the vectorized code. ### Main contributions - Provide an efficient MATLAB implementation, which significantly improves the computational speed through the vectorized method. - Implement Crank - Nicolson time discretization, which is suitable for parabolic problems. - Handle mixed boundary conditions to ensure the accuracy and stability of the numerical solution. - Verify the effectiveness of the method through numerical experiments and provide a detailed performance evaluation. In summary, the main objective of this paper is to improve the computational efficiency of the lowest - order primal hybrid finite element method in MATLAB through vectorized implementation and optimized algorithms, so as to better solve two - dimensional linear second - order elliptic and parabolic problems with mixed boundary conditions.