-
Hello, I'm trying to follow the steps of the 3D Notched Plate where mesh size is specified and then nodes are selected for loading and boundary conditions. I have an interesting problem where depending on what size I specify in esize (for example esize(0.6) vs esize(0.5)), the node selection set returns nothing. In other words running:
returns nothing and throws an error (since mapdl.mesh.nnum[0] is empty). Is there a reason why certain esizes work and others don't? And is there a way to verify that an esize will work before putting a load and boundary condition? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @ay8tb is it possible that the mesh size was so coarse that the meshing failed with too many badly shaped elements? If you capture the mesh output like mesh_out = mapdl.vmesh(1)
print(mesh_out) what does the output listing show? Mike |
Beta Was this translation helpful? Give feedback.
Hi @ay8tb is it possible that the mesh size was so coarse that the meshing failed with too many badly shaped elements? If you capture the mesh output like
what does the output listing show?
Mike