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

Using subroutines written in Fortran 90 with Abaqus Standard

I am using Abaqus with user-defined subroutines. To the best of my knowledge, Abaqus Standard or Explicit can be used with subroutines written specifically in Fortran 77 language, not the improved Fortran 90/95 language! Is there a way how to use…
MousumiG
  • 41
  • 2
  • 9
3
votes
1 answer

Extract nodal coordinates from the deformed testsubject (abaqus-python)

I am trying to make a python script to extract the nodal coordinates from the ODB file (from abaqus). So far i have come up with the code attached below (don't mind the extra information i put behind the #, sometimes it's just so i can keep track of…
Theodoor
  • 77
  • 1
  • 7
3
votes
3 answers

Abaqus Surface getSequenceFromMask

I am writing script in Abaqus, where I crush circle and square with cut circle (like cheese). I need to put Contact between parts so I need Surface. macro manager generates: s1 = a.instances['kolo-1'].edges side1Edges1 =…
Cenarius
  • 175
  • 1
  • 1
  • 12
3
votes
3 answers

Accelerate a slow loop in Abaqus-python code for extracting strain data from .odb file

I have a .odb file, named plate2.odb, that I want to extract the strain data from. To do this I built the simple code below that loops through the field output E (strain) for each element and saves it to a list. from odbAccess import openOdb import…
Austin Downey
  • 943
  • 2
  • 11
  • 28
3
votes
2 answers

Can't connect Abaqus PDE to Abaqus/CAE

When I try to run Abaqus PDE (Python development environment) for example from the windows command line with the command: abaqus cae -pde I get the following error in the command…
K.J.
  • 131
  • 5
3
votes
2 answers

Python multiprocessing from Abaqus/CAE

I am using a commercial application called Abaqus/CAE1 with a built-in Python 2.6 interpreter and API. I've developed a long-running script that I'm attempting to split into simultaneous, independent tasks using Python's multiprocessing module.…
Matt P
  • 2,287
  • 1
  • 11
  • 26
3
votes
1 answer

Abaqus python scripting - Element set created in .mdb not accessible in .odb

I've created a Set of elements in the rootAssembly in an .mdb file: a = mdb.models['Model-1'].rootAssembly els_1 = a.instances['Part-1'].elements Coh_els = els_1.getByBoundingBox(x1 y1 z1 x2 y2 z2) a.Set(elements=Coh_els, name='COHELSET-0') I'm…
Masha
  • 41
  • 1
  • 3
3
votes
3 answers

Abaqus on Ubuntu

Install Abaqus CAE on ubuntu, after selecting install directory and proceed, got following error Creating child process failed. Log ID is 0001 Action LaunchAPpAction from freature CODE\Linux_a64\SIMCAE_TP.PRD FAILED. Action ID:…
rifle123
  • 149
  • 1
  • 2
  • 15
3
votes
1 answer

Scipy Optimization in Abaqus: ImportError: DLL load failed: %1 is not a valid Win32 application

I am using python for scripting in Abaqus 6.14-3 and would like to use an optimization function from the scipy package. This version of abaqus runs with python 2.7.3 (64bit) and has numpy 1.6.2 installed. So I installed scipy 0.9.0 (32bit), which I…
FEMax
  • 31
  • 4
3
votes
1 answer

Launch Abaqus job from python

I try to launch an Abaqus job from a Python script: subprocess.call(['/opt/Abaqus/Commands/abq6132', 'job=test.inp']) The following warning message appears as expected: Abaqus Warning: The .inp or .sim extension has been removed from the job…
UlrichH
  • 83
  • 6
3
votes
1 answer

Retrieve value from array of dictionary : Python

I have the below as output from an application which I am trying to customize using Python. ({'featureName': 'Solid extrude-1', 'index': 6, 'instanceName': None, 'isReferenceRep': False, 'pointOn': ((-71.25, 18.75, 20.0),)}) I want to get the…
Ajit C
  • 33
  • 3
3
votes
1 answer

Abaqus - How to apply initial conditions as plastic strain?

I m trying to apply to apply plastic strains initial conditions in Abaqus as you can see below :  ** ---------------------------------------------------------------- *Initial Conditions, type=PLASTIC STRAIN test_elements, 0.338, -0.276, -0.0618,…
user3601754
  • 3,792
  • 11
  • 43
  • 77
2
votes
0 answers

Reading values from a CAE inp, file with to store elements and find corresponding thickness value of each element

The input file has element sets with structure like *ELSET, ELSET= P_8057_101 80570456, 80570461, 80570468, 80570473, 80570478, 80570482, 80570486, 80570490, 80570722, 80570833, 80570834 Each element is assigned offset from another table…
Abin Alex
  • 21
  • 1
2
votes
1 answer

Can I use implicit objective function in a design optimization process in Gekko. this implicit function is a subroutine that creates numerical model

I am doing an optimization for designing a seismic resistant structural system using Abaqus. I am intending to use Gekko for this purpose. But it seems that I am making a mistakes in writing down the suitable syntax concerning this task. "Objective"…
2
votes
1 answer

How to set working directory using python script in ABAQUS?

I can't find any python command related to set working directory in python reference guide in ABAQUS. Is there any way to set working directory using python script in ABAQUS?
서보일
  • 25
  • 3
1
2
3
41 42