Thanks!
Problem solved.. so I'll share it here anyway.
refPoints1=[0]*size
j=0
for i in range(start,end,interval):
refPoints1[j]=(mdb.models['Model-1'].rootAssembly.referencePoints[i])
j+=1
mdb.models['Model-1'].rootAssembly.Set(referencePoints=refPoints1, name='mySet')
Hi everyone,
I have some reference point which are defined in my model.
Now I want to produce a set which contains some of those reference point in it and I want to automate this procedure by looping it.
When I look at the recording of the python commands used to do build that set it looks like...
Hi all,
I'm fairly new to Abaqus.
For the sake of automating tedious operations of selecting entities i'm looking for a way to make automatic selection of nodes/faces/edges by either location and/or it's size.
I'd like to run few command lines to do things like for example:
pick all nodes...