Dear,
I believe I followed all the procedures written in the posts above, but I am not able to generate the .xdmf file
note: I made the mesh in Gmsh version 4.8.3 on macOS.
Follow the code below and also the file .geo:
import meshio
msh = meshio.read("two_cantilever.msh")
for key in msh.cell_data_dict["gmsh:physical"].keys():
if key == "triangle":
triangle_data = msh.cell_data_dict["gmsh:physical"][key]
elif key == "tetra":
tetra_data = msh.cell_data_dict["gmsh:physical"][key]
for cell in msh.cells:
if cell.type == "tetra":
tetra_cells = cell.data
elif cell.type == "triangle":
triangle_cells = cell.data
tetra_mesh = meshio.Mesh(points=msh.points, cells={"tetra": tetra_cells},
cell_data={"Volume":[tetra_data]})
triangle_mesh =meshio.Mesh(points=msh.points,
cells=[("triangle", triangle_cells)],
cell_data={"Boundary":[triangle_data]})
meshio.write("mesh.xdmf", tetra_mesh)
meshio.write("mf.xdmf", triangle_mesh)
See the error:
File "/Users/xyz/Desktop/Topopt_final/3dmodel/gmsh_to_xdmf.py", line 66, in <module>
tetra_mesh = meshio.Mesh(points=msh.points, cells={"tetra": tetra_cells},
File "/Users/xyz/anaconda3/envs/fenics2/lib/python3.8/site-packages/meshio/_mesh.py", line 77, in __init__
raise ValueError(
ValueError: Incompatible cell data. Cell block 0 has length 214, but corresponding cell data Volume item has length 66420.
two_cantilever.geo:
// Gmsh project created on Wed Apr 28 09:20:18 2021
SetFactory("OpenCASCADE");
//+
Box(1) = {0, 0, 0, 3, 0.01, 1};
//+
Box(2) = {-2, -0.03, 0, 3, 0.01, 1};
//+
Cylinder(3) = {0.5, -0.04, 0.25, 0, 0.05, 0, 0.05, 2*Pi};
//+
Cylinder(4) = {0.5, -0.04, 0.75, 0, 0.05, 0, 0.05, 2*Pi};
//+
Physical Surface(1) = {2};
//+
Physical Surface(2) = {7};
//+
Physical Surface(3) = {13};
//+
Physical Surface(4) = {16};
//+
Physical Volume(31) = {1};
//+
Physical Volume(32) = {2};
//+
Physical Volume(33) = {4};
//+
Physical Volume(34) = {3};
For my code I need to apply boundary considerations on the extreme faces of the plates and on the outer faces of the cylinders.
Edit .: The .msh file was larger than the size allowed here. Follow the file link:
can anybody help me? @dokken