I’m trying to run the tutorial here
https://jorgensd.github.io/dolfinx-tutorial/chapter3/subdomains.html
on a modified docker – dolfinx/lab:latest
with the amendments
RUN apt update
RUN apt install -y python3-sympy
RUN apt install h5utils libhdf5-mpich-dev -y
ENV HDF5_MPI="ON"
ENV CC=mpicc
ENV HDF5_DIR="/usr/lib/x86_64-linux-gnu/hdf5/mpich/"
RUN pip3 uninstall h5py meshio -y
RUN pip3 install --force-reinstall --no-cache-dir --no-binary=h5py h5py meshio[all]
if I run this
import meshio
from dolfinx.fem import (Constant, dirichletbc, Function, FunctionSpace, assemble_scalar,
form, locate_dofs_geometrical, locate_dofs_topological)
def create_mesh(mesh, cell_type, prune_z=False):
cells = mesh.get_cells_type(cell_type)
cell_data = mesh.get_cell_data("gmsh:physical", cell_type)
points = mesh.points[:,:2] if prune_z else mesh.points
out_mesh = meshio.Mesh(points=points, cells={cell_type: cells}, cell_data={"name_to_read[cell_data]})
return out_mesh
from mpi4py import MPI
proc = MPI.COMM_WORLD.rank
if proc == 0:
# Read in mesh
msh = meshio.read("mesh.msh")
# Create and save one file for the mesh, and one file for the facets
triangle_mesh = create_mesh(msh, "triangle", prune_z=True)
line_mesh = create_mesh(msh, "line", prune_z=True)
meshio.write("mesh.xdmf", triangle_mesh)
meshio.write("mt.xdmf", line_mesh)
python crashes with
WARNING:py.warnings:/usr/local/lib/python3.10/dist-packages/h5py/init.py:36: UserWarning: h5py is running against HDF5 1.12.2 when it was built against 1.10.7, this may cause problems
_warn(("h5py is running against HDF5 {0} when it was built against {1}, "
If I comment out the dolfinx.fem import it runs fine. If I run it twice (in jupyter) first with import commented out and then with the import it also runs fine.
Regards
Torben