Software:FEniCS Project

From HandWiki
FEniCS Project
FEniCS logo.svg
Stable release0.7.2 (November 14, 2023; 5 months ago (2023-11-14)[1]) [±]
Operating systemLinux, OS X, Unix, WSL
Available inC++, Python
TypeScientific simulation software
LicenseGNU Lesser General Public License
Websitewww.fenicsproject.org

The FEniCS Project is a collection of free and open-source software components with the common goal to enable automated solution of differential equations. The components provide scientific computing tools for working with computational meshes, finite-element variational formulations of ordinary and partial differential equations, and numerical linear algebra.[2][3]

Design and components

The FEniCS Project is designed as an umbrella project for a collection of interoperable components. The core components are[4]

caption
A schematic overview of the FEniCS components and their interplay
  • UFL (unified form language), a domain-specific language embedded in Python for specifying finite element discretizations of differential equations in terms of finite element variational forms;
  • FIAT (finite element automatic tabulator), the finite element backend of FEniCS, a Python module for generation of arbitrary order finite element basis functions on simplices;
  • FFC (fenics form compiler), a compiler for finite element variational forms taking UFL code as input and generating UFC output;
  • UFC (unified form-assembly code), a C++ interface consisting of low-level functions for evaluating and assembling finite element variational forms;
  • Instant, a Python module for inlining C and C++ code in Python;
  • DOLFIN, a C++/Python library providing data structures and algorithms for finite element meshes, automated finite element assembly, and numerical linear algebra.

DOLFIN, the computational high-performance C++ backend of FEniCS, functions as the main problem-solving environment (in both C++ and Python) and user interface. Its functionality integrates the other FEniCS components and handles communication with external libraries such as PETSc, Trilinos and Eigen for numerical linear algebra, ParMETIS and SCOTCH for mesh partitioning, and MPI and OpenMP for distributed computing.

History

The FEniCS Project was initiated in 2003 as a research collaboration between the University of Chicago and Chalmers University of Technology. The following institutions are currently, or have been, actively involved in the development of the project

Since 2019, a refactoring of the code is a work in progress.[6]

See also

References

External links