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 be09bdd commit ce57331Copy full SHA for ce57331
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