Extracting Deformed Geomtry from ODB file

Deformed geometry can be imported into Abaqus/CAE using the following steps:

  • Select: File->Import->Part->*.odb
  • Choose the ODB file, Create Part from Output Database dialogue box appears
  • Select step and frame in the Deformed configuration option

The imported shape can be written into an input file by creating an instance of it in the Assembly module and writing an input file in Jobs module

Accessing Python in Abaqus

The following commands can be used in terminal to access Python

abaqus python

This command does not use  a license token. However the usually used Abaqus package won’t be available in this option

abaqus viewer -noGUI
abaqus cae -noGUI

These commands give access to everything in Abaqus/Viewer and Abaqus/CAE

MONITOR the progress of solution using DOF

The progress of solution can be monitored using keyword *MONITOR or DOF Monitor request in CAE. This will cause the values of DOF to be written at intervals during analysis. It will be written to status (.sta) file. In case of Abaqus/Standard, it will be written to message(.msg) file.

Reference:

Analysis User’s Manual 4.1.1 Ouput

Abaqus/CAE User’s Manual 14.5.4 Degree of freedom monitor requests

Keywords Reference Manual

Which version of Python is used by my Abaqus?

To check which version of Python is used in the Abaqus version installed on your system:

In Abaqus/CAE, use the Python interpreter provided in the command line interface at the bottom of Abaqus/CAE

(Abaqus/CAE displays the Python >>> prompt in the command line interface. )

Type the following:

>>> import sys
>>> print(sys.version)

Python config