Questions tagged [abaqus]

Abaqus is a software suite for finite element analysis and computer-aided engineering

Abaqus is used in the automotive, aerospace, and industrial products industries. The product is popular with academic and research institutions due to the wide material modeling capability, and the program's ability to be customized. Abaqus also provides a good collection of multiphysics capabilities, such as coupled acoustic-structural, piezoelectric, and structural-pore capabilities, making it attractive for production-level simulations where multiple fields need to be coupled.

Abaqus was initially designed to address non-linear physical behavior; as a result, the package has an extensive range of material models such as elastomeric (rubberlike) material capabilities.

Source: https://en.wikipedia.org/wiki/Abaqus

622 questions
-1
votes
1 answer

How to fix this loop error in python for abaqus?

I created an abaqus model with different parts and each part has the same node numbering. I'm trying to make a set that contains all nodes with labale of 180. I wrote this loop but it takes just the the last part's node. How can I correct this…
Mohammad
  • 13
  • 3
-1
votes
1 answer

Using script to obtain total mass of the part

I am running a automated structural analysis in Abaqus using python and I need to obtain mass of the part automatically. "Tools ==> query ==> mass properties" is basically what I need, but I do not know how to script it, or if it is even possible. I…
LuTze
  • 61
  • 7
-1
votes
1 answer

Apply temperature to specified nodes in Abaqus with Python script

I have a file that contains temperature values for specific coordinates. The format of file is as follows: X Y Z Temp The goal is to read this information from a file and apply it, then Abaqus does its magic. I have been given a Python script that…
MO_m
  • 13
  • 4
-1
votes
1 answer

Creating new variables in Abaqus

Here is what I like to do in Abaqus (if possible): As a minimum working example, let's say I have an elastic specimen that I am applying a load on. When I look at the results I can see S11, S22, S33, etc... What I would like to see are things like…
-1
votes
1 answer

Abaqus free free analysis?

I tried running a frequency model without any boundary condition It came out with error for unconnected region. Is it possible to run free free analysis(with no boundary) in abaqus?
-1
votes
1 answer

How can I create a mesh that can be changed without invalidating native sets in Abaqus?

The nodesets I create "by feature edge" in Abaqus are invalidated if I change the mesh. What are my options to prevent this from happening? I am asking because I am trying to write a phython file in which to change the mesh as a parameter. That will…
Leo
  • 27
  • 5
-1
votes
1 answer

First 'object' in a sequence for values within a dictionary

I want to get the first value from a sequence for a key within a dictionary object. This is the dictionary object: {0: (mdb.models['EXP-100'].parts['hatpart-100'].vertices[1], (62.5242172081597, 101.192447407436, 325.0))} The Key is 0, and I'd…
isok89
  • 41
  • 1
  • 5
-1
votes
3 answers

how can i find "smallest eigenvalue" o a plate with python scripting in abaqus?

i write a python script to modeling and analysis a plate for buckling. i need the minimum eigenvalue for run the other script for RIKS analysis. how can i find "smallest eigenvalue" with python scripting in abaqus?
ham moa
  • 27
  • 3
-1
votes
1 answer

Reading text file and drawing grain structure using value available in file

I am working in abaqus to create crystal grains geomtries and assemble by using availble co-ordinates present in text file. I am new to python so please someone help me to read this file and assign values. You can find the file with this link…
manthu
  • 1
-1
votes
1 answer

abaqus thread tkinter Tk window refreshing never

I have run into a problem durring abaqus programming with phyton 2.7. I'm using Tkinter and making a window with a lot of controls on it. My main problem is that durring my plugin window is opened, the user needs to click on abaqus menuitems, browse…
-1
votes
1 answer

Create variable of unknown type automatically if it doesn't exist?

I have different variables of an unknown type (in ABAQUS, it says "Sequence") and want to combine them through a loop: a = [[unknown type], [unknown type], ...] x = [] for i in a: x.append(i) The problem now is that when I initialize x with =…
user56574
  • 9
  • 5
-1
votes
1 answer

Creating a surface with a sketch using Abaqus Python

My question might sounds rather simple but my knowledge in Abaqus scripting is almost inexistent. My aim is to represent a set of polygons in the same part where each polygon represents a 2D surface (in 3D space) of the part. I am creating a script…
user3641829
  • 261
  • 2
  • 11
-1
votes
1 answer

how to change the view

odbname = data.jobname + '.odb' mySession = session.openOdb(name = odbname) myViewport = session.viewports["Viewport: 1"] #plot stress myViewport.setValues(displayedObject=mySession) …
sidharthan
  • 1
  • 1
  • 1
  • 4
-2
votes
0 answers

Why the passed arg list in a python function is empty list?

I met a problem in this function, why is nodes is []? It sometimes is normal, same with total_nodes, but every once in 2 calls it became []. Why? How to make it as same as total_nodes? def generate_element( x, y, z_top, z_bottom, grayscale,…
-2
votes
1 answer

Is there a solution to matlab claiming insufficient input arguments when enough are being supplied?

I have a custom function I have made, which requires two input arguments. This is the opening line of the function, clearly showing it needs just two input arugments: function [file,frame,vertices,edges,faces,faceOrders,edgeOrders] =…
1 2 3
41
42