0

How do I select the surfaces on part in Abaqus? I have tried:

tubePart.surface(faces = tubePart.faces[4:8],name = 'innerFaces')

but it keeps saying part object has no attribute surface.

DᴀʀᴛʜVᴀᴅᴇʀ
  • 7,681
  • 17
  • 73
  • 127

1 Answers1

1

Ideally, you should create a new surface by calling Surface() function (not surface()), i.e.

tubePart.Surface(...)

Secondly, there must be side1Faces instead of faces (thanks to agentp for comment). Thus, the final peace of code should look like this:

tubePart.Surface(side1Faces = tubePart.faces[4:8],name = 'innerFaces')
nikolay-pv
  • 76
  • 3