What does this warning mean? It does not stop the run, but gets printed.
Warning:
GetTetsLocal not implemented for el with 74 nodes
I am trying to sample points over the gfu and mesh using something like this:
`for i, x in enumerate(x_pts):
for j, y in enumerate(y_pts):
for k, z in enumerate(z_pts):
point = mesh(x, y, z)
try:
#print(point)
u = gfu(point)
sample_disps.append(u)
uxs.append(u[0])
uys.append(u[1])
uzs.append(u[2])
except Exception as e:
# if point not in mesh, displacements are zero
u = (0, 0, 0)
sample_disps.append(u)
uxs.append(u[0])
uys.append(u[1])
uzs.append(u[2])
#print(f"Point {[x, y, z]} is not in the mesh, disp: {u}")
void_points.append([x, y, z])`
Should I be worried that this will affect the solution?