Skip to the content.

HAZmath: A Simple Finite Element, Graph, and Solver Library


Authors: Xiaozhe *H*u (Tufts), James *A*dler (Tufts), Ludmil *Z*ikatanov (Penn State)

Contributors:


Overview: The HAZMATH Finite Element (FE) and Solver library is built from C (C99 compatible) source files and provides software components that can be used to simulate physical/social phenomena described by Partial Differential Equations (PDEs), systems of PDEs, or graphs. We have included several standard discretizations for PDEs, often used in various applications. Our examples range from simple scalar elliptic PDEs to systems of PDEs, include time-dependent and nonlinear problems, and contain methods for the solution of linear systems.

Our aim is to provide a basic tool, which can be used to tackle specific problems on demand. We do not intend to create a universal package that contains all discretizations available. HAZMATH contains the software to solve numerical models based on finite-element/volume/difference discretizations, and our team can assist in tweaking and adjusting these basic tools to meet the demands of the specific application. Thus, we aim to complement the user’s expertise and help build application-specific packages.


Components: As of early 2017, the main components of the HAZMATH FE/Graph library are:

  1. Basic FE: Low order (up to order 2) continuous FE and mixed FE discretizations for Darcy’s flow and scalar elliptic equations; Stable discretizations for Stokes and linear elasticity; Discretization for full Maxwell’s equations using Nedelec and Raviart-Thomas elements.

  2. Solvers: Unsmoothed Aggregation Algebraic Multigrid Methods (UA-AMG); Preconditioned Krylov subspace methods.

  3. HAZNICS: Collaboration with Simula; Interface with Python and use of HAZMATH solvers in applications modeled by FEniCS finite element libraries.

  4. Interfaces with External Libraries: Some routines require a direct linear solver and these depend on the SuiteSparse library (by Tim Davis, Texas A & M), which the user needs to install. We also provide an interface for using Multigraph 2.1 (by Randolph E Bank, UCSD) as a solver.


System Requirements: The library should build on any standard Linux OS or MAC OS X, using cmake (>=3.12).


Licensing: This software is a free software distributed under the MIT License. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. See further details about the MIT License at the Open Source Initiative Licenses page.

(c) 2009- by X. Hu, J. Adler, L. Zikatanov