Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

Internal Sets

Status
Not open for further replies.

cranisch

Mechanical
Joined
Jan 25, 2007
Messages
25
Location
DE
Hello!
I would like to have access to an internal node set in Abaqus Viewer with the Abaqus script language. Does anyone know to do it?
 
additional remark:
I guess there must a possibilty to get to it, because the GUI can do it without having neither the input file nor the cae file. I guess there could be some workaround way by interpreting the defintions that created the internal node sets, e.g. contact/interaction. But I don't know how I can get to the interaction definitions in the ODB file. Any information about that?
 
it doesn't seem like you can get to the internal sets in the odb using python... but, i agree, it must be possible if viewer can get them?

i know you can access the contact pairs if you import the odb into a new cae model (file.. import.. model.. from the menus) but i don't see how to do that with python either.

any chance that the surfaces in your contact pairs are named? then you could access the nodes this way:
odb.rootAssembly.surfaces[surface_name].nodes
or
odb.rootAssembly.instances[instance_name].surfaces[surface_name].nodes
depending on if it's an instance or assembly surface...

 
No, unfortunately the surfaces have not been explicitly named. If I had done so, it would be quite nice to do. I agree with that.
It seems as if Simulia does not give to the user all the possibilities that are available with Python here (at least in the documentation) and that are implemented in the GUI.

I mean it should be possible to access the interaction definitions?!
 
can't do that...companies secret

but do you have some suggestions?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top