PPL Logo
Finite Element Framework (FEM)

The FEM framework makes it easy to write adaptive parallel programs based on the Finite Element Method. Programs can be written in Fortran90, C, or C++.

FEM is no longer under development, but it has been replaced by the ParFUM framework, which supports additional features such as incremental mesh modification and full adjacency tables.

Simple Structural Mesh

Using the FEM framework also allows you to take advantage of all the features of CHARM++, including run-time load balancing, performance monitoring and visualization, and checkpoint/restart, with no additional effort.

A parallel FEM application written using the FEM framework closely resembles a sequential program. The difference is that in the FEM framework, the user's main subroutine operates on one of the many "chunks" of the unstructured mesh. These chunks are created from the serial mesh using, for example, the Metis graph partitioning library.

The only other calls needed by an FEM framework program are to:

  • Register data fields that need to be communicated between chunks (for example, nodal attributes)
  • Trigger an "update" of these shared data fields across processors (for example, to share nodal forces before a position update)
  • Reduce a value across the machine (for example, to check convergence criteria or global energy)

The framework allows you to easily visualize the results of an ongoing simulation. See the NetFEM page for details.

The framework currently targets explicit codes; although some implicit solvers, such as the conjugate gradient method, can also be applied. We are working to add better support for parallel implicit solvers.
 

Software
The FEM framework has been integrated into the Charm++/Converse distribution. Please download the source distribution and install the FEM framework by specifying the target "FEM" to the Charm++ build command. (For details, see the README file in the source distribution.) Also, see the FEM Manual. [postscript] [PDF] [html]
People
Papers
  • 00-01    Milind A. Bhandarkar and L. V. Kale,  A Parallel Framework for Explicit FEM,  Proceedings of the International Conference on High Performance Computing (HiPC 2000), Lecture Notes in Computer Science, Vol 1970, Eds: M. Valero and V. K. Prasanna and S. Vajpeyam, Springer Verlag, December 2000, pp. 385-395.
  • 98-09    L. V. Kale,  Programming Languages for CSE: the state of the art,  IEEE Computational Science and Engineering
Related Links

This page maintained by Isaac Dooley. Back to the PPL Research Page