1
abaqus用のPythonスクリプトで円に設定する必要があります。Pythonスクリプトで円を定義する方法
for j in range (45):
x=data[2*j] # Coordinate X of the center of the circle
y=data[2*j+1] # Coordinate X of the center of the circle
# r = Radius circle
print (mdb.models['Model-1'].rootAssembly.instances
['matrix-1'].edges.findAt((x+r,y,0),))
mdb.models['Model-1'].rootAssembly.Set(name='Set-%d'%(j+1), edges=
mdb.models['Model-1'].rootAssembly.instances
['matrix-1'].edges.findAt((x+r,y,0),))
今、私は私が私が助けに感謝円形
に対して設定定義することはできません
Image of the modelあなたはそれを返すように「タプルのタプル」findAt
を供給する必要が
答え、ありがとうございます。 このモードはジオメトリモード用です。カテゴリノードを定義するにはどうすればよいですか?円の周りのノードを選択しますか? – madad
ノードをメッシングした後、あなたが作成したセットで利用可能になります。 'instance-sets ['Set-xx']。nodes' – agentp
私はどのように使用するのですか? もっと説明してください – madad