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

Ignoring an error message to continue with the loop in python

I am using a Python script for executing some function in Abaqus. Now, after running for some iterations Abaqus is exiting the script due to an error. Is it possible in Python to bypass the error and continue with the other iterations? The error…
rcty
  • 707
  • 3
  • 8
  • 13
10
votes
2 answers

How integrate Abaqus python libraries into a project hosted in PyCharm

There is a similar question regarding the integration of Abaqus specific python libraries into a project hosted in PyDev/Eclipse. But unfortunately the answers were not compatible with my problem at hand. I am using ABAQUS Version 6.11-2 and the…
GeorgeX
  • 101
  • 1
  • 6
6
votes
4 answers

Win32 DLL importing issues (DllMain)

I have a native DLL that is a plug-in to a different application (one that I have essentially zero control of). Everything works just great until I link with an additional .lib file (links my DLL to another DLL named ABQSMABasCoreUtils.dll). This…
brady
  • 2,227
  • 16
  • 18
5
votes
7 answers

Submit a job, wait for its completion and after submit another job

I need to run multiple times the same abaqus .inp file (slightly changed within runs) and after each run ends I need to submit a abaqus python script that will read the results. I've done the following: #run the programme os.system('abaqus…
jpcgandre
  • 1,487
  • 5
  • 31
  • 55
5
votes
2 answers

os.system not working, but typing the same thing into the command prompt works

I am trying to run python abaqus through the command prompt using os.system('abaqus CAE noGUI=ODBMechens') It doesn't seem to run anything, but if I go to the command prompt myself and type in abaqus CAE noGUI=ODBMechens it works. I am using…
Mark Gordon
  • 59
  • 1
  • 1
  • 4
4
votes
2 answers

How to print a 3D pdf from ABAQUS/Viewer?

I am looking for a way to print 3D pdf from the results ABAQUS/Viewer. This will make it easy to communicate the results with others who are interested in the results of simulation but do not have access to ABAQUS.
amirKabir
  • 143
  • 2
  • 15
4
votes
3 answers

Communication between two separate Python engines

The problem statement is as follows: I am working with Abaqus, a program for analyzing mechanical problems. It is basically a standalone Python interpreter with its own objects etc. Within this program, I run a python script to set up my analysis…
mooisjken
  • 43
  • 3
4
votes
1 answer

Error with pickle module. AttributeError: class has no attribute '__new__'

I have been used python and Abaqus for a long time. But when i upgraded my python from 2.7 to 3.5.2 some error occures. I try to pickle some object A of my class. f = open(utilsDir + "aclass.log", 'wb') pickle.dump(A,f,protocol=2) …
Ivan Pudyakov
  • 116
  • 1
  • 1
  • 7
4
votes
1 answer

Printing to terminal using Abaqus nogui python interface

When running abaqus nogui python script I would like to output the status of the script to the terminal. But when I do, e.g.: print("Opening ODB...") print("Plotting images...") I also tried: print "Opening ODB..." print "Plotting images..." and…
UN4
  • 587
  • 5
  • 19
4
votes
2 answers

Reducing the area of the voronoi cells and determining the coordinates of new vertices

I have written a MATLAB code to create the figure attached using the voronoi. My region of interest is the red circle. Hence the seeds for voronoi were kept within the region.
rcty
  • 707
  • 3
  • 8
  • 13
4
votes
3 answers

How to run Abaqus Macro (.py) script

I am new to python. I generated a macro which is a .py script using Abaqus Macro manager. I realised that this script works only when run from the Abaqus manager and does not run by itself. Please does anyone know how to modify this script so i can…
Olu adroit
  • 41
  • 1
  • 2
  • 4
3
votes
1 answer

How to create set from list of sets in Python?

In abaqus Python script, several Plies have a large number of copies, each of which has many fibers. In each Fiber, a set of edges has been selected: App1-1, App1-2, ..., App99-1, App99-2, ..., App99-88. How to create a new set that will contain all…
Mike Cy
  • 41
  • 4
3
votes
1 answer

fastest way to get eigenvalues of many 1d array

I have a (n, m, 6)-array with n and m being more than 10.000. The 6 values are from a symmetric matrix in following order: [[11, 12, 13], [12, 22, 23], [13, 23, 33]] => (11, 22, 33, 12, 23, 31) What I want to calculate the eigenvalues and…
Toggo
  • 127
  • 1
  • 7
3
votes
1 answer

How to refine some specific surfaces in Avizo?

I m using Avizo to generate a mesh of my microstructure obtained from CT scan in order to launch computations in Abaqus. I can generate interesting surfaces meshes, nonetheless outside mesh is too fine (you can see figure with this question). I am…
user3601754
  • 3,792
  • 11
  • 43
  • 77
3
votes
1 answer

Inconsistent output from Abaqus ODB using Python scripting

I'm using a python script to extract and post process results fra an Abaqus FE model, but experience inconsistency when working with data from the odb-file. An example is given below. odbObj = session.openOdb(name=JobName+'.odb', readOnly=True) step…
Mads B
  • 65
  • 4
1
2 3
41 42