You are here
Abaqus python script: finding an element containing a given point
Fri, 2014-08-22 14:13 - sergkuznet
Hello!
I have a point with coordinates x,y,z. Is it possible to detemine from python script to which element this point belongs to?
Thank you!
»
- sergkuznet's blog
- Log in or register to post comments
- 8754 reads
Comments
First find the node, then use
First find the node, then use
31.9.4 getElements()
This method returns a tuple of element objects that share the node.
Thank a lot!
Thank a lot!
Looks like it is the only way to do it.