Hi,
I know how to merge Box, thanks to Alawvahr. For example:
box_1 = Box(Point(0.0, 0.0, 0.0), Point(1.0, 1.0, 1.0))
box_2 = Box(Point(1.0, 1.0, 1.0), Point(2.0, 0.0, 0.0))
box_tot = box_1 + box_2
mesh_tot = generate_mesh (box_tot, 32)
I would like to know if there is a similar syntax for BoxMesh ? I do have too much cells with generate_mesh (i have to merge thousands of box)
Any help would be much appreciated
Regards,