使用 python 自动化 Autodesk Inventor
Posted
技术标签:
【中文标题】使用 python 自动化 Autodesk Inventor【英文标题】:Using python to automate Autodesk Inventor 【发布时间】:2018-03-01 16:05:27 【问题描述】:有没有办法在 Inventor 中使用 python 打开和控制实体模型?
我的目标是从维度数据库开始并模拟每个配置。
【问题讨论】:
【参考方案1】:这个 sn-p 是一个很好的起点:
#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
【讨论】:
以上是关于使用 python 自动化 Autodesk Inventor的主要内容,如果未能解决你的问题,请参考以下文章
使用 Python 的 Autodesk Inventor API
Autodesk Forge 设计自动化 - Inventor - failedInstructions (FailedMissingOutput)