614 questions
0
votes
0
answers
47
views
Why is the output of the function getTransformedField() different from that queried in Abaqus/Viewer?
I am writing an Abaqus/Python script that transforms FieldOutput values of a large deformation problem from the global cartesian to a user-defined moving cylindrical coordinate system. Since I am new ...
1
vote
1
answer
47
views
Why do I only get one part/geometry back?
So I'm trying to model a metal rubber layer spring in Abaqus. I need three different angles of the layerspring. Then I create sets, partitions, surfaces and a reference point.
I try to do all of this ...
0
votes
1
answer
183
views
Extracting the Mises values in Abaqus from an .odb file
I'm writing a code in python that extracts MISES stress (S) in Abaqus 2019 of an instance that is part of an assembly. I have written similar codes for CPRESS or Deformation, but can't get a hold of ...
0
votes
0
answers
74
views
Extract HFL magnitude from nodeset abaqus python scripting
I encountered a problem while trying to extract heat flux "HFL Magnitude" from nodes (nodesets) in an Abaqus ODB file using a Python script. However, the same script works correctly for ...
0
votes
0
answers
125
views
Generate a batch of Abaqus .inp files using Python Multiprocess
I am using a commercial finite element application called Abaqus/CAE with a built-in Python 2.6 interpreter and API. The inp file is for Abauqus to calculate with having geometry, material properties,...
0
votes
2
answers
576
views
Abaqus scripting: Create a Set from a Face object
I created in Abaqus v6.14 scripting an extruded Part p with BaseSolidExtrude, which is then a cylinder (not necessarily circular). I want to create three sets, one for the top and bottom surface, and ...
0
votes
1
answer
79
views
The database cannot be opened at this time
The .Ick file for the output database D:/babar/Abaqus/Simu//1.odb indicates that the Analysis Input File Processor is currently modifying the database.
The database cannot be opened at this time.
I am ...
1
vote
1
answer
137
views
ABAQUS Powershell Automation: Running a job for 1 hour then terminate and proceed to analyse the next job
Newbie to Powershell here. Sorry if someone has ask this in the past but I could find an example that relate to Abaqus. So what I am planning to do is to run a few jobs, one after the other ...
1
vote
2
answers
613
views
How to run Abaqus Script in no-GUI mode with using display group APIs
I am creating an Abaqus script to get image for max stress and strain of parts across each time increment.
Script should open odb files in Abaqus Viewer in no-GUI mode and find out in which time ...
0
votes
0
answers
99
views
Why print can change the Fortran results?
It is a rather simple but frustrating question. I have written UMAT with ABAQUS, and part codes are as follows,
macro_strain(:) = 0
macro_strain(1:3) = DSTRAN
!print * , '...
0
votes
2
answers
265
views
In Abaqus, is there a way to split a geometry set into multiple sets by its faces?
I'm looking to create a plugin or script where the user can create a set of multiple faces and the plugin/script will then create sets for each of the faces. Ideally, the user would name the initial ...
-1
votes
1
answer
104
views
Abaqus Python: Shell Loft
I'm new to Abaqus scripting with Python and need help automating the Shell Loft operation. I have five wires positioned in different planes along the z-axis. My goal is to perform Shell Loft using two ...
0
votes
1
answer
851
views
Python scripting in Abaqus extracting output from the output data base
I'm writing a code in python that extracts the contact stress (CPRESS) in Abaqus 2019 of all the nodes on a given surface. I managed to write the code so that the Node-Label as well as the coordinates ...
1
vote
1
answer
174
views
Defining a set from a list of elements in python script for Abaqus
I have a tuple called E3 containing element numbers, for instance:
(array([ 136, 2593, 3061, 4348], dtype=int64),)
Now, I would like to define the set of these elements.
Until now, I haven't ...
0
votes
0
answers
179
views
Abaqus umat calls other subroutine but it doesn't update the array
I use the simple isotropic elastic material in uniaxial tension as an example. First the isotropic elastic behavior is directly coded inside the UMAT subroutine and it works fine below (OK.for).
Now I ...