eraserwww
New member
- Mar 16, 2010
- 4
Helo,
I have a matrix with nodes selected [1], now I have to set in a new name (X+)[2], as described below.
[1]
tol=1.0E-9
no=[]
for i in assy.instances[Square1].nodes:
if ((i.coordinates[0] < side+tol) and (i.coordinates[0] > side-tol)):
no.append(i)
[2]
(not working)
for i in no.data[0]
assy.Set(nodes=no,name='X+')
How to set a matrix containing nodes ?
Thank you
I have a matrix with nodes selected [1], now I have to set in a new name (X+)[2], as described below.
[1]
tol=1.0E-9
no=[]
for i in assy.instances[Square1].nodes:
if ((i.coordinates[0] < side+tol) and (i.coordinates[0] > side-tol)):
no.append(i)
[2]
(not working)
for i in no.data[0]
assy.Set(nodes=no,name='X+')
How to set a matrix containing nodes ?
Thank you