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.
2 parents 803b318 + ce57331 commit 48bd3efCopy full SHA for 48bd3ef
turtleFSI/monolithic.py
@@ -64,8 +64,8 @@
64
65
# Save mesh, domains, and boundaries for post-processing
66
if restart_folder is None:
67
- mesh_path = results_folder.joinpath("Mesh", "mesh.h5")
68
- with HDF5File(mesh.mpi_comm(), mesh_path.__str__(), "w") as hdf:
+ h5_mesh_path = results_folder.joinpath("Mesh", "mesh.h5")
+ with HDF5File(mesh.mpi_comm(), h5_mesh_path.__str__(), "w") as hdf:
69
hdf.write(mesh, "/mesh")
70
hdf.write(boundaries, "/boundaries")
71
hdf.write(domains, "/domains")
0 commit comments