Skip to content

Commit

Permalink
fix: complete example
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed Feb 8, 2024
1 parent a6bfb91 commit cb5bdba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/create_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
data, bb = load_claudius()

model = GeologicalModel(bb[0, :], bb[1, :])
model.data = data
model.create_and_add_foliation("strati", interpolator="PLI", nelements=1e4)

mesh = MeshFactory.create_mesh(model.bounding_box, order=1, n_elements=1e4)

mesh.
mesh = MeshFactory.create_mesh(model.bounding_box, order=2, n_elements=1e4)

0 comments on commit cb5bdba

Please sign in to comment.