我试图在 Ansys 中插入位移的表格数据,如下所示:
SlMn = ExtAPI.SelectionManager
SlMn.ClearSelection()
Sel = SlMn.CreateSelectionInfo(SelectionTypeEnum.GeometryEntities)
disp=DataModel.AnalysisList[0].AddDisplacement()
Sel.Ids=[25] # ID 25 is an edge
disp.Location=Sel
disp.XComponent.Output.DefinitionType=VariableDefinitionType.Discrete
disp.YComponent.Output.DefinitionType=VariableDefinitionType.Discrete
disp.ZComponent.Output.DefinitionType=VariableDefinitionType.Discrete
disp.YComponent.Inputs=[Quantity('0 [sec]'),Quantity('0.1[sec]'),Quantity('0.2 [sec]'),Quantity('1[sec]')]
我收到此错误:
无法分配给“字段”类型的只读属性输入
我使用的是 ANSYS ACT 开发人员指南中为力规定的相同语法。如果我可以在表格中手动输入值,表格数据如何成为只读?
我的代码有什么问题吗?另外,我尝试了树子方法(disp=Model.Analyses[0].Children[5])。这给出了同样的错误。