Hi
I found a solution to my problem. It is:
print('\nChoosing faces stored in a set and --> getting the associated cell IDs and making a set containing those cells.')
cellsIDs = []
for face in part01.sets['Set-1'].faces:
cellsIDs.append(face.getCells()[0])
print('cell IDs are: ' +...
Hi
I am trying to make a set of cells that are associated to one or more faces and save them in a set using python scripting for Abaqus CAE, but I cannot make it work. I have created and example that shows what I am trying to do and where it fails. Can anyone help in identifying what I should be...