Dear All,
Thanks for your time and help.
I am analyzing two parts and they are at a distance/gap and they will come into contact once load being applied.
How can I use contact elements in this scenario?
Any help is greatly appreciated.
Thanks,
Hello all,
Good morning. Thanks for all your time.
May I know any option available in Abaqus to suppress edges so that they are not participate in meshing.
Any help is greatly appreciated.
Thanks,
Hello All,
Thanks for your time and help.
Does ABAQUS offers a seamless connection between tetrahedral and hexahedral elements within a single model like ANSYS?
Thanks,
Hello All,
Thanks for your time and help.
Please see the below error while running a script.
SystemError: input() may not be called from Abaqus/CAE CLI
Is there any other option to use input() function.
Any help is greatly appreciated.
Thanks,
Hello All,
Thanks for your time and help.
I would like to write a python script to get the maximum stress element number from odb.
Any help is appreciated.
Thanks
You are welcome!
In addition to the method what FEA way mentioned,
Method-1: Shell to solid coupling.
Method-2: You can buried one row of shell elements inside the solid elements to avoid the additional DOF at the junction.
Thanks!
Hi,
I am not sure weather I understood correctly or not.
Could you try using Tools-->query--->element---->pick the solid element
It should show in the message area at the bottom.
Otherwise, create a copy mesh part as a orphan mesh. I think you can see the assigned element there.
Thanks,
Thanks FEA way,
I was able to resolve the above mentioned error.
But had difficulty in getting all the parts name from the model.
My goal here is to list all the parts names.
Please see the script below and error while executing it.
TypeError: 'Part' object does not support item assignment...
Hello All,
Thank you all for your time and help.
When I am extracting part names from Part dictionary and getting this error.
ERROR: 'Part' object has no attribute 'keys'
Can anyone share how to resolve it. Any help is appreciated.
Thanks
Hello All,
Thank you for your time.
I would like to know the center point co-ordinates of circular arc/surface.
Is anybody know the python script for finding it?
Any help is greatly appreciated.
Regards,
Thank you both for your valuable suggestions.
Started working on it and struck in the middle. Can you look into this when you get chance.
import part
all_edges=mdb.models['Model-1'].parts['Part-1'].edges
nol=len(all_edges)
for i in range(0,nol):
print all_edges[0].getSize()
###its giving all...
Yes Mustaine3. Thank you so much. Really appreciated.
I have one more question regarding selecting edges based on their length.
working on big assembly,want to select the edges less than the 0.25" edge length.
I am trying to find them using below python script.
import part...