Skip to content

Commit 36667ef

Browse files
committed
minor fix in tutorial 7
1 parent c55d729 commit 36667ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tutorials/tutorial7/tutorial-7-cffd.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@
407407
},
408408
{
409409
"cell_type": "code",
410-
"execution_count": 7,
410+
"execution_count": null,
411411
"metadata": {
412412
"execution": {
413413
"iopub.execute_input": "2025-11-12T11:13:12.991856Z",
@@ -427,7 +427,7 @@
427427
" subprocess.check_call([sys.executable, \"-m\", \"pip\", \"install\", \"meshio\"])\n",
428428
" import meshio\n",
429429
"\n",
430-
"mesh = meshio.read(\"../../tests/test_datasets/Stanford_Bunny.stl\")\n",
430+
"mesh = meshio.read(\"../tests/test_datasets/Stanford_Bunny.stl\")\n",
431431
"points = mesh.points\n",
432432
"faces = mesh.cells_dict[\"triangle\"]"
433433
]

tutorials/tutorial7/tutorial-7-cffd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def mesh_points(num_pts=2000):
104104
subprocess.check_call([sys.executable, "-m", "pip", "install", "meshio"])
105105
import meshio
106106

107-
mesh = meshio.read("../../tests/test_datasets/Stanford_Bunny.stl")
107+
mesh = meshio.read("../tests/test_datasets/Stanford_Bunny.stl")
108108
points = mesh.points
109109
faces = mesh.cells_dict["triangle"]
110110
points = points - np.min(points) + 0.1

0 commit comments

Comments
 (0)