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

Python script in abaqus error: 'numpy.ndarray' object has no attribute 'setValues'

Basically, I am trying to output a report with the two data x0 and x1. I followed the Abaqus .rpy format and tried to rename the calculated variable, but it is giving me this error. AttributeError: 'numpy.ndarray' object has no attribute…
Schneider
  • 37
  • 1
  • 8
-2
votes
1 answer

Error: "The leftmost part-ref in a data-ref can not be a function reference."

I am trying to write a FORTRAN subroutine for ABAQUS that would modify the seepage coefficient and thus the flow depending on whether there is contact on the surface. In order to do so I need 2 subroutines URDFIL to retrieve the node data and FLOW…
-2
votes
2 answers

Python: Accessing the variables from a Subprocess (Child) script, in the parent script

Using Python 2.7, I have a main script which executes a subprocess script. My question is how do I capture certain variables from the subprocess, e.g. the vectors: vec_1, vec_2, vec_3 I know that it is possible to obtain the stdout from the script…
jjs
  • 1
  • 5
-2
votes
1 answer

python script for saving subsequent images without overwriting

I am new to python but I have been able to make a script (pls see code below and attached picture ) that accesses abaqus .odb output file and saves the contour map as a .tiff file. Since this script runs at interval, the new image file overwrites…
Olu adroit
  • 41
  • 1
  • 2
  • 4
-3
votes
1 answer

How to fix an indentation error in the following code?

I wrote the following code to extract some results from Abaqus. I get an indentation error when I run the code. I have 19 simulation and I want to use this code to extract the results that I want. I have tried to fix it, but I couldn't. Can anyone…
-4
votes
1 answer

how can I multiple this part using for loops?

import section import regionToolset import displayGroupMdbToolset as dgm import part import material import assembly import step import interaction import load import mesh import optimization import job …
-5
votes
1 answer

How to get all items from a list in Python 2

I am using Python 2.7 in combination with Simulia Abaqus (6.14). I have defined a list of 3-D coordinates in the following format: selection_points = [(( 1, 2, 3), ), (( 4, 5, 6), ), ((7, 8, 9), )] I need to use ALL coordinates in…
Mathijs
  • 1
  • 4
1 2 3
41
42