We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f1bf4 commit 3f336acCopy full SHA for 3f336ac
benchmarks/linear-elastic-plate-with-hole/FEniCS/create_mesh.py
@@ -14,8 +14,8 @@ def create_mesh(parameter_file, mesh_file):
14
parameters = json.load(f)
15
print(parameters)
16
17
- # Read configuratino from parameters instead of the filename
18
- configuratino = parameters["configuration"]
+ # Read configuration from parameters instead of the filename
+ configuration = parameters["configuration"]
19
20
length = (
21
ureg.Quantity(parameters["length"]["value"], parameters["length"]["unit"])
@@ -38,7 +38,7 @@ def create_mesh(parameter_file, mesh_file):
38
"""
39
40
gmsh.initialize()
41
- gmsh.model.add(configuratino)
+ gmsh.model.add(configuration)
42
43
element_size = (
44
ureg.Quantity(
0 commit comments