使用python自动化Autodesk Inventor

时间:2017-09-20 14:24:25

标签: python python-2.7 autodesk autodesk-inventor

有没有办法使用python在Inventor中打开和控制实体模型?

我的目标是从维度数据库开始并模拟每个配置。

1 个答案:

答案 0 :(得分:0)

这个片段是一个很好的起点:

#Open Inventor
invApp = win32com.client.Dispatch("Inventor.Application")

#Make inventor visible
invApp.Visible = True

#Set file names of template
Part_FileName_BaseIPT = 'C:\\Base.ipt'

#Open the base model
oPartDoc=invApp.Documents.Open(Part_FileName_BaseIPT)

#Collect parameters
oParams = oPartDoc.ComponentDefinition.Parameters

#Set Angularity        
oParams.Item("Name").Expression = *Value*

#Update document
oPartDoc.Update()

#Save new version
oPartDoc.Save