Seismo-VLAB  1.3
An Open-Source Finite Element Software for Meso-Scale Simulations
Solver

The LinearSystem class creates an abstract object that solves a system of equations. The analysis class is designed to:

  • Be simple to be interfaced with external solvers
  • Provide with \(\textbf{K}_{\textrm{eff}}\), and \(\textrm{F}_{\textrm{eff}}\) that comes from the Integrator.

The main member function in LinearSystem are:

This abstract class control if a direct/iterative method of solution will be employed for solving the linear system. As a rule of thumb, Direct Solvers are recommended for small to medium size model ( \(\leq 500 000\) degree-of-freedom) using parallel computing. These solvers work even better if the Cholesky decomposition is computed once, situation that occurs in linear problems, while Iterative Solvers such as Conjugate Gradient will be available in future. Iterative solvers are recommended for large problems ( \(\gg 500 000\) degree-of-freedom) using parallel computing. These solvers trade accuracy for speed, thus for nonlinear problem the tolerance must be small. More information regarding the derived solver classes can be found at:

REFERENCE:

  • Forde, B. W. R., Foschi, R. O., & Stiemer, S. F. (1990). "Object-oriented finite element analysis". Computers & Structures, 34(3), 355–374.
  • Mackie, R. I. (1992). "Object oriented programming of the finite element method". International Journal for Numerical Methods in Engineering, 35(2), 425–436.