Abaqus script measure/calculate surface area
问题 Is there a way to measure/calculate the surface area of a generated model with abaqus ? I'm familiar with Tools -> Query... -> Mass properties in abaqus CAE or the scripting version: from abaqus import * prop=mdb.models['Model'].rootAssembly.getMassProperties() However, I cannot find an equal command for surface area. Appreciate the help! 回答1: The function getArea() returns the surface area of a set of faces. For example: a = mdb.models['Model-1'].rootAssembly a.getArea(a.instances['Part-1-1'