Skip to content

SeisSol/Matrices

Repository files navigation

badge

SeisSol Matrices

Basis functions

We use the basis functions based on Jacobi polynomials as explained in appendix A of J. de la Puente, ‘Seismic Wave Simulation for Complex Rheologies on Unstructured Meshes’, PhD-Thesis, Ludwig-Maximilians-Universität München, Munich, 2008.

On triangles, we denote the polynomials as Φ k ( p , q ) , where k is a multiindex, based on p and q . If we use basis functions for order O , we have 1 2 × O × ( O + 1 ) basis functions.

On tetrahedrons, we denote the polynomials as Ψ k ( p , q , r ) , where l is a multiindex, based on p , q and r . If we use basis functions for order O , we have 1 6 × O × ( O + 1 ) × ( O + 2 ) basis functions.

Matrices

Discountinuos Galerkin matrices

Notation Formula SeisSol
M k l T Ψ k Ψ l d x M3
T Φ k Φ l d x M2
F k l , j T Ψ k Ψ l d x rT

Usage

Use poetry to install or use the package. In particular, consider the commands

# install
poetry install
# format files
poetry run black src
# run unit tests
poetry run coverage run -m nose2