import ansa from ansa import base from ansa import constants #In the following example a set named 'new set' is created and filled def main(): m = list() for i in range(1,10): ent = base.GetEntity(constants.NASTRAN, "GRID", i) m.append(ent) set = base.CreateEntity(constants.NASTRAN, "SET", {'Name': 'new set'}) base.AddToSet(set, m) #use base.AddToSet(set, m, as_excluded=True) #to add them as excluded entities ...or... def main(): set = base.CreateEntity(constants.NASTRAN, "SET", {'Name': 'new set'}) for i in range(1,10): base.AddToSet(set, base.GetEntity(constants.NASTRAN, 'GRID', i))
时间: 2024-01-13 10:02:15 浏览: 182
前处理器ANSA
这段代码使用了 ANSA 软件的 Python API,用于从一个 NASTRAN 文件中读取 GRID 实体,并将其添加到一个名为 'new set' 的集合中。可以通过调用 base.CreateEntity() 方法来创建一个新的集合实体,然后使用 base.AddToSet() 方法将 GRID 实体添加到集合中。如果需要将这些实体添加为排除实体,则可以使用 base.AddToSet(set, m, as_excluded=True) 方法。
阅读全文