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
2
votes
1 answer

How to change Abaqus solver executable file name

I wish to compare two parallel running of Abaqus simulations with umat coded in Fortran. It seems that I am able to select the correct standard.exe associated with each run, but it won't always be this lucky. This prompted me to ask if there is a…
Jesse Feng
  • 117
  • 9
2
votes
1 answer

Find edges of parts that are created in linear pattern in abaqus using scripting

I am currently working on my research project for my MSc. My project involves evaluating woven roving fabric using binary modelling technique. This means I represent the weave of the fabric as line/trusses and the resin/matrix as a simple block. I…
Lbrun
  • 21
  • 1
2
votes
0 answers

How can extract default values for automatic virtual topology using python?

Hi all and thank you in advance, I am currently trying to extract Abaqus's default calculated virtual topology values (image). I can not seem to find how to extract the default values using python in the script reference guides. Any ideas on how to…
craxsh
  • 35
  • 4
2
votes
1 answer

How can I run a custom calculating procedure using Abaqus, Python and Fortran(mix-language programing)?

Thanks in advance! I'm a green hand in python and mix-language programing. My develop environment is Abaqus6.13(with python 2.6.2)+MSVS2012+inter Fortran 2013SP1(I want to use IMSL), on Windows 7. And my final purpose is developing an GUI plugin in…
hwzhou
  • 31
  • 4
2
votes
2 answers

how do i extract different Field output data with abapy?

In abaqus, I navigated to field output request and there I checked the box before 'E, total strain component' because it wasn't standard checked. But after I try to access this information with the code: odb.steps[ stepname…
Theodoor
  • 77
  • 1
  • 7
2
votes
1 answer

Abaqus get face object

I'm trying to get the normal of every face in a surface (EDIT: the surface is extracted from a solid, not a shell). I can't seem to get the face objects though. According to the scripting reference guide this should be the…
ThaNoob
  • 520
  • 7
  • 23
2
votes
2 answers

Abaqus visualize density

I'm trying to optimize the porosity distribution of a certain material. I would like to visualize the results. I can visualize the different materials using 'visualize->material' however he gives every material a random color. I would like the least…
ThaNoob
  • 520
  • 7
  • 23
2
votes
1 answer

How to release hung licenses from the client side?

abaqus floating licenses gets hung. For example: if I kill a running job, the tokens that were previously in use (by me) gets hung and if I submit a job again there are no tokens available. When I check the token usage with abaqus licensing ru, it's…
Anbu
  • 108
  • 2
  • 9
2
votes
1 answer

Can't use gfortran with Abaqus 2016 on Ubuntu

I'm trying to use gfortran with Abaqus 2016 on Ubuntu 16.04. I've already modified the .env file accoring to that : http://home.iitk.ac.in/~saiwal/computing/abaqus2016-2017-gfortran-compiler/ So the gfortran itself does not throw any errors at…
halaprix
  • 73
  • 6
2
votes
2 answers

I have a flattened list in python. How do I write the elements of the list into a file, while restricting the number of elements per line?

So, assuming I have a flattened list (with length = 135) where: matrix_e = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,…
Aedan
  • 37
  • 4
2
votes
1 answer

Abaqus/Python suppress warning

here is a minimal example for abaqus/python, that creates a cuboid and partitions from abaqus import * from abaqusConstants import * import __main__ model=mdb.models['Model-1'] # Sketch s = model.ConstrainedSketch(name='__profile__',…
SoB
  • 51
  • 3
2
votes
1 answer

Is it possible to import material from material library in Abaqus CAE using scripts?

I'm working on Abaqus 6.14 plugin that would help me in my Engineer's Thesis, which I'm writing in Python. According to Abaqus scripting reference guide it is possible to import materials from Output Databases (*.odb files) by calling: from abaqus…
user7346816
2
votes
1 answer

How to request energy field output in ABAQUS Python

I m trying to extract energy at each integration point in Abaqus. I can do it for stresses or strains but i cant do for the energetical quantities. The obtained error is : “KeyError: 'ELEN'”, but in Abaqus it is the good keyword… Below it is my code…
user3601754
  • 3,792
  • 11
  • 43
  • 77
2
votes
2 answers

Is it possible to define a mesh with User-Elements and specify their properties with Python in Abaqus/CAE without editing the input file?

I am not sure this is possible, but I want to create a mesh with user-defined elements in Abaqus/CAE using the Python scripting interface. This will consist of at least two parts on the CAE side of things: defining the nodes & connectivity, and…
Matt P
  • 2,287
  • 1
  • 11
  • 26
2
votes
1 answer

Parallelizing a code in Python

I'm working with a commercial analysis software called Abaqus which has a Python interface to read the output values. I have just given a sample code (which doesn't run) below: myOdb contains all the information, from which I am extracting the data.…
Mechanician
  • 525
  • 1
  • 6
  • 20