Skip to content

Commit 3f336ac

Browse files
committed
fix typo
1 parent 75f1bf4 commit 3f336ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmarks/linear-elastic-plate-with-hole/FEniCS/create_mesh.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ def create_mesh(parameter_file, mesh_file):
1414
parameters = json.load(f)
1515
print(parameters)
1616

17-
# Read configuratino from parameters instead of the filename
18-
configuratino = parameters["configuration"]
17+
# Read configuration from parameters instead of the filename
18+
configuration = parameters["configuration"]
1919

2020
length = (
2121
ureg.Quantity(parameters["length"]["value"], parameters["length"]["unit"])
@@ -38,7 +38,7 @@ def create_mesh(parameter_file, mesh_file):
3838
"""
3939

4040
gmsh.initialize()
41-
gmsh.model.add(configuratino)
41+
gmsh.model.add(configuration)
4242

4343
element_size = (
4444
ureg.Quantity(

0 commit comments

Comments
 (0)