Eng-Tips is the largest forum for Engineering Professionals on the Internet.

Members share and learn making Eng-Tips Forums the best source of engineering information on the Internet!

  • Congratulations dmapguru on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

ABAQUS: Command to calculate the area of a face ? 1

Status
Not open for further replies.

CADlalala

Aerospace
Joined
Apr 3, 2014
Messages
43
Location
GB
So, the subject is self-descriptive. How can I calculate the area of a face? What python command should I use?

p=mdb.models['Model-1'].parts['Part-0']
pfaces=p.faces
area of each face????
 
Per the Scripting Reference guide section 7.5.7, the face object should have a getSize() method. If you have multiple faces, you'll want to iterate over each face.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top