I would like to extract the element id of SSP-BRICK elements from nodes ID or coordinates. Could you help me with this?
The nodes data are saved in the following format:
Code: Select all
node_data = {
'Node ID': [node.id for node in NODES],
'X Coordinate': [node.x for node in NODES],
'Y Coordinate': [node.y for node in NODES],
'Z Coordinate': [node.z for node in NODES]
}
Konstantinos