Feb 24, 2016 #1 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????
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????
Feb 24, 2016 1 #2 testing Aerospace Joined Jul 19, 2013 Messages 127 Location US 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. Upvote 0 Downvote
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.