You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my code. The program read an .inp file generated by Abaqus, and then transform the mesh into .mesh format. But when load the mesh by Patcher, it failed.
`
import taichi as ti
import meshtaichi_patcher as Patcher
import meshio
`
import taichi as ti
import meshtaichi_patcher as Patcher
import meshio
ti.init(arch=ti.cpu,kernel_profiler=True)
if name == 'main':
mesh = meshio.read("Job-1.inp")
mesh.write("LBeam.mesh")
# print(mesh.points)
# print(mesh.cells)
# print(mesh.cells_dict)
mesh = meshio.read("LBeam.mesh")
mesh = Patcher.load_mesh("LBeam.mesh", relations=["CV"])
`
Here is the error
The text was updated successfully, but these errors were encountered: