FrontISTR is an open-source large-scale parallel finite element method structural analysis software. It provides analysis capabilities necessary for industrial and academic practical work, including nonlinear deformation stress, eigenvalue, frequency response, and heat conduction analyses with material nonlinearity, large deformation, and contact. The license is MIT License.
- Official Website: https://www.frontistr.com
- Official Documentation: https://manual.frontistr.com/en/ (English) / https://manual.frontistr.com/ja/ (Japanese)
- Large-scale Parallel: MPI (distributed memory) + OpenMP (shared memory)
- Analysis Types
- Static analysis, dynamic analysis (implicit/explicit methods)
- Large deformation, contact, nonlinear materials (elastoplastic, hyperelastic, creep, viscoelastic, etc.)
- Eigenvalue analysis
- Frequency response analysis
- Heat conduction analysis (steady-state/transient)
- Solvers: CG / BiCGSTAB / GMRES / GPBiCG / Direct methods (MUMPS / MKL PARDISO)
- Preconditioners: SSOR / ILU(0) / AMG (Trilinos-ML), etc.
- Element Library: 1st/2nd order solid (TET/PRISM/HEX), plane (triangular/quadrilateral), beam, shell, truss elements, etc.
- Visualization: Compatible with ParaView and other tools
- Compilers: C/C++/Fortran90 (GCC / Clang / Intel oneAPI, etc.)
- Required Libraries for Parallel Computing
- MPI (Open MPI / MPICH, etc.)
- METIS (domain decomposition)
- Optional Libraries
- BLAS/LAPACK (used in some features. OpenBLAS/MKL, etc.)
- MUMPS (parallel direct solver) + ScaLAPACK (required for MUMPS)
- Trilinos-ML (AMG preconditioning)
- Intel MKL (parallel direct solver with MKL PARDISO)
mkdir build && cd build
cmake ..
make -j$(nproc)Single Domain (Thread Parallel)
# In the directory where input files are located
fistr1Domain Decomposition (MPI Parallel)
hecmw_part1 # Mesh partitioning
mpirun -n 4 fistr1 # Execute with 4 parallel processes- ParaView (VTK file)
- REVOCAP_PrePost (mesh generation, preprocessing, execution integration)
- FreeCAD FEM_FrontISTR (FrontISTR Workbench): https://github.com/FrontISTR/FEM_FrontISTR
Download site:
https://www.frontistr.com/download/
- Issues and Merge Requests (MR) are accepted on the GitLab side.
- When proposing changes, please refer to
CONTRIBUTING.mdand various templates (issues, MR).
- Main software: MIT License (see
License.txtin the repository) - Integration libraries (METIS/MUMPS/Trilinos-ML/MKL, etc.) follow their respective licenses.
FrontISTR is continuously developed by a development community (FrontISTR Commons) consisting of universities, research institutions, and companies. We appreciate the support from related research and development projects (innovative simulation software, etc.).
The porting to the GPU was carried out with the support of the Information Technology Center, the University of Tokyo.