diff --git a/fig8.py b/fig8.py index 83db290b..abd64466 100644 --- a/fig8.py +++ b/fig8.py @@ -1,7 +1,7 @@ import spyro import firedrake as fire import math -import ipdb +# import ipdb def test_eikonal_values_fig8(): @@ -9,10 +9,9 @@ def test_eikonal_values_fig8(): dictionary["options"] = { # Simplexes: triangles or tetrahedra (T) or quadrilaterals (Q) "cell_type": "T", - # Options: lumped, equispaced or DG. Default is lumped "method":"MLT" + "variant": "lumped", # Options: lumped, equispaced or DG. Default is lumped "method":"MLT" # (MLT/spectral_quadrilateral/DG_triangle/DG_quadrilateral) # You can either specify a cell_type+variant or a method - "variant": "equispaced", # accepted_variants = ["lumped", "equispaced", "DG"] "degree": 4, # p order "dimension": 2, # dimension diff --git a/setup.py b/setup.py index 5dcf58d5..b1dea093 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,10 @@ setup( name="spyro", - version="0.9.0", + version="0.9.1", license="LGPL v3", description="Wave modeling with the finite element method", - author="Keith J. Roberts, Alexandre F. G. Olender, Eduardo Moscatelli de Souza, Daiane I. Dolci, Thiago Dias dos Santos, Lucas Franceschini", + author="Keith J. Roberts, Alexandre F. G. Olender, Ruben Andres Salas, Eduardo Moscatelli de Souza, Daiane I. Dolci, Thiago Dias dos Santos, Lucas Franceschini", url="https://github.com/NDF-Poli-USP/spyro", packages=find_packages(), install_requires=[ diff --git a/spyro/domains/space.py b/spyro/domains/space.py index 9b6f618e..1744dc75 100644 --- a/spyro/domains/space.py +++ b/spyro/domains/space.py @@ -23,7 +23,7 @@ def FE_method(mesh, method, degree, dim=1): if method == "mass_lumped_triangle": element = FiniteElement( - "KMV", mesh.ufl_cell(), degree=degree, variant="KMV" + "KMV", mesh.ufl_cell(), degree=degree, ) elif method == "spectral_quadrilateral": element = FiniteElement(