Hi
Hi
my calculations are finesh so I split the screen in two part on of for model compressed and the other part for the curve that I have drawn . now i want create a connection between the two half cad when the model is compress I see the point on the curve
thank you in advance
Hello
I need to divide my python program into two parts, and I need to use lists from the first part in the second part. How can I do that?
thank you in advance
Hello
How I can automate this part for a vector that contains n node?
xy0 = XYDataFromHistory(odb=odb,
outputVariableName='Reaction force: RF3 at Node 1 in NSET NODE_BOUNDARY',
steps=('Static_definition', ), suppressQuery=True) # read results from nodes Forces
xy1 =...
Hello
How can I define a region through edges such as edge[0],edge[3],edge[4].....
On the other hand the number of these edges is variable according to the case
for example i make this :
region = p.SetFromElementLabels(elementLabels=edges11, name='Wire_cubic_cell1')
p =...
Hi,
On an abaqus interface I have two solids a foam and a plane, I will apply on the foam a compression so that it compresses on the interface of the plane, the problem I had was that when i applicate the compression the foam passes through the plane.
any solution please!!!
Hi;
I want to modify the coordinates of some nodes, so I wrote the following program on python. The program runs but I display no result on Abaqus.
mesh_nodes=mdb.models['Model-1'].rootAssembly.instances['Part-1-1'].nodes
tolerance = 1.0e-6
for node in mesh_nodes:
x = node.coordinates[0]...
salut,
Après la création de mon model je vais le coupé,après ce coupage je veux changer les coordonnées des nœuds inférieurs pour obtenir une rugosité,comment je peux faire ça en scripting python abaqus.
Merci d'avance.
Hi,
I have 4 vectors that contains edges, I want to create for each vector a set to apply a section.
The program with which I created the vectors is below:
edges1=[]
edges2=[]
edges3=[]
edges4=[]
for edge in p.edges:
i=edge.index
if i %(36)==0 or i %(36)==1 or i %(36)==34 or i % (36) == 35...
Hi everyone,
I am trying to select nodes based on their coordinate and then to put them in a nodeset but I get "Feature creation failed" error message when I run the following python code:
mesh_nodes=mdb.models['name'].rootAssembly.instances['name'].nodes
selected_nodes=[]
for node in...
Hi,
I have a model consisting of n beams, each beam is divided into 36 elements, I want to apply for each part of the beam a section how I can do this with a python script?
Hi,
I need to create a vector of nodes such that the choice of the nodes is done in the following way each node that has a known z1 it is added to the vector.
can you help me please !!!
Hi,
i have this error :'TypeError:coords,found float,expecting tuple' for this example in the last line of this program
random1=d*random.random()*a
noeuds=[]
for i in range(len(noeud)):
noeuds=noeuds+[noeud[i][0]+random1,noeud[i][1]+random1,noeud[i][2]+random1]
print(noeuds)
p =...
Hi,
i have a python script for abaqus model.Now i want to add at this script a post traitement to obtain the curve (force/displacement).
NB:in my model i have tow part,so i can't utlise this example 'xy0 = XYDataFromHistory(odb=odb,outputVariableName='Reaction force: RF3 at Node 1 in NSET...
Dear all,
For troubleshooting of this error, what can I do?
The job input file "cellule_de_kelvin.inp" has been submitted for analysis.
Error in job cellule_de_kelvin: AN INVALID POISSONS RATIO VALUE HAS BEEN SPECIFIED. THE POISSONS RATIO MUST BE LESS THAN THE VALUE OF .5
Error in job...
Hi,
I have a list of n points a=[[1,2,3],[2,3,4],....] i need to delete this points on Abaqus with python script.
and i have another list of n points b where i want to applicat displacement on this points!
Can you help me please!!!