netgen/python/read_meshio.py

23 lines
629 B
Python
Raw Normal View History

2022-02-13 20:31:55 +05:00
from netgen.meshing import *
def ReadViaMeshIO(filename):
import meshio
import numpy as np
# print ("reading via meshio:", filename)
m = meshio.read(filename)
pts = m.points
mesh = Mesh(dim=pts.shape[1])
2022-02-13 23:02:51 +05:00
# mesh.AddPoints ( np.asarray(pts, dtype=np.float64) ) # needed for correct little/big endian
mesh.AddPoints ( pts )
2022-02-13 20:31:55 +05:00
fd = mesh.Add (FaceDescriptor(bc=1))
for cb in m.cells:
2022-02-13 23:02:51 +05:00
# mesh.AddElements(dim=cb.dim, index=1, data=np.asarray(cb.data, dtype=np.int32), base=0)
mesh.AddElements(dim=cb.dim, index=1, data=cb.data, base=0)
2022-02-13 20:31:55 +05:00
return mesh