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 MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Abacus RSG Scripting (Python)

Status
Not open for further replies.

Fadeel

Mechanical
Joined
Aug 24, 2018
Messages
2
Location
US
I'm doing python abaqus scripting. I'm trying to make unit cells by the following code:

SingleInstances_List=M.rootAssembly.instances.keys()
SingleInstances_Tuple=list(SingleInstances_List)
mdb.models['Model-1'].rootAssembly.InstanceFromBooleanMerge(name='Part-2', instances=([[SingleInstances_List]
for n in range(len(SingleInstances_List))], ), mergeNodes=ALL,
nodeMergingTolerance=0.1, domain=MESH, originalInstances=SUPPRESS)

I got the following error:
"ipc_connection_Broken" and exit the abaqus?
could anyone help?
Thanks
 
I think I see already some mistakes in your code.
But first of all - post the code with the code-tags, so that format is not gone.

Code:
for i in x:
[indent]print i[/indent]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top