Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nice_guy

    Python make set from reference points

    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')
  2. nice_guy

    Python make set from reference points

    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...
  3. nice_guy

    Commands for selecting entities by location

    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...
Back
Top