Skip to content
/ SVL Public

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

License

Notifications You must be signed in to change notification settings

SeismoVLAB/SVL

Repository files navigation

SeismoVLAB Logo

Seismo-VLAB (a.k.a SVL) is a simple, fast, and extendable C++ finite element software designed to optimize meso-scale simulations of linear and nonlinear wave-propagation and soil-structure interaction. SVL is intended not only to be used by researchers in structural and geothecnical engineering, but also in industries, laboratories, universities, etc.

What can Seismo-VLAB do?

With Seismo-VLAB you can solve:

  • Linear and nonlinear wave propagation problems in shallow crust
  • Linear and nonlinear soil-structure interaction problems
  • Standard structural-mechanics linear and nonlinear dynamic problems

Visit our gallery to see some examples of simulations using SVL.

Installing Seismo-VLAB

Installation of Seismo-VLAB on Linux/MacOS/Windows is perform in two steps:

  • The Pre-Process requires python3 and the following libraries:

    These librarires can be installed using pip3 or standard Linux and Mac repositories.

  • The Run-Process requires requires to download Eigen C++ library, MUMPS Library, and PETSc Library.

    • The Eigen C++ library can be downloaded from this website. This package needs to be unzip and its content move to /usr/include/eigen.
    • The MUMPS library can be downloaded from this website. This package needs to be unzip and compiled at /usr/include/mumps.
    • The Pestc Library can be downloaded at this website. This package needs to be unzip and compiled at /usr/include/petsc.

    Assuming the previous libraries are successfully installed, then modify the Makefile.inc file such the previous path point to the right libraries:

    EIGEN_DIR = /usr/include/eigen
    PETSC_DIR = /usr/include/petsc
    MUMPS_DIR = /usr/include/mumps

    Also, make sure that libraries such as: libscalapack-openmpi, libblacs-openmpi, liblapack, libblas, and libparmetis, libmetis, libptscotch, libptscotcherr are also installed.

    Finally, write in terminal:

    make -s DEBUG=False

A detailed explanation on how to install SVL on Windows, MacOS, and Linux can be found in this link.

License

License: GPL v3

Seismo-VLAB is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Seismo-VLAB is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details http://www.gnu.org/licenses.