Skip to content

Commit

Permalink
Mantle convection demo: don't use a quadrilateral mesh (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddundo authored Dec 13, 2024
1 parent 3527ad2 commit 1e283ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/mantle_convection.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def solver(index):
# timesteps.

num_subintervals = 2
meshes = [UnitSquareMesh(32, 32, quadrilateral=True) for _ in range(num_subintervals)]
meshes = [UnitSquareMesh(32, 32) for _ in range(num_subintervals)]

dt = 1e-3
num_timesteps = 40
Expand Down

0 comments on commit 1e283ba

Please sign in to comment.