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:
-
From a script running outside Abaqus/CAE. For example,
import odbAccess needsUpgrade = odbAccess.isUpgradeRequiredForOdb( upgradeRequiredOdbPath='myOdb.odb')
-
From the Visualization module in Abaqus/CAE. For example,
import visualization needsUpgrade = session.isUpgradeRequiredForOdb( upgradeRequiredOdbPath='myOdb.odb')
Required arguments
- upgradeRequiredOdbPath
-
An String specifying the path to an output database file to test. The test determines if the output database needs to be upgraded to the current release.
Optional arguments
None.
Return value
A Boolean indicating the result of the test. A value of True indicates that the output database needs to be upgraded to the current release.
Exceptions
None.