isUpgradeRequiredForOdb
This method determines if an output database file needs to be upgraded to the current release. You can access this method using either of the following techniques:
Required arguments
Optional argumentsNone. Return valueA Boolean indicating the result of the test. A value of True indicates that the output database needs to be upgraded to the current release. ExceptionsNone. maxEnvelope
Retrieve the maximum value of an output variable over a number of fields. Required argumentsThe maxEnvelope method does not use keyword arguments.
Optional argumentsNone. Return valueA sequence of two fieldOutput objects. The first fieldOutput object contains the maximum value. The second fieldOutput object contains the index of the field containing the maximum value. The index follows the order in which fields are positioned in the list of fieldOutput objects provided as the argument to the function. ExceptionsOdbError
minEnvelope
Retrieve the minimum value of an output variable over a number of fields. Required argumentsThe minEnvelope method does not use keyword arguments.
Optional argumentsNone. Return valueA sequence of two fieldOutput objects. The first fieldOutput object contains the minimum value. The second fieldOutput object contains the index of the field containing the minimum value. The index follows the order in which fields are positioned in the list of fieldOutput objects provided as the argument to the function. ExceptionsOdbError
openOdb
This method opens an existing output database (.odb) file and creates a new Odb object. You typically execute this method outside of Abaqus/CAE when, in most cases, only one output database is open at any time. For example, import odbAccess shockLoadOdb = odbAccess.openOdb(path='myOdb.odb') Required arguments
Optional arguments
Return valueAn Odb object. Exceptions
openOdb
This method opens an existing output database (.odb) file and creates a new Odb object. This method is accessed only via the session object inside Abaqus/CAE and adds the new Odb object to the session.odbs repository. This method allows you to open multiple output databases at the same time and to use the repository key to specify a particular output database. For example, import visualization session.openOdb(name='myOdb', path='stress.odb', readOnly=True) Required arguments
Optional arguments
Return valueAn Odb object. Exceptions
upgradeOdb
This method upgrades an existing Odb object to the current release and writes the upgraded version of the Odb object to a file. In addition, Abaqus/CAE writes information about the status of the upgrade to a log (*.log) file. You can access this method using either of the following techniques:
Required arguments
Optional argumentsNone. Return valueNone. Exceptions
|