Source code for abaqus.PlotOptions.OdbAnalysisError
from .OdbAuxiliaryData import OdbAuxiliaryData
[docs]class OdbAnalysisError:
"""The OdbAnalysisError object stores the description of different errors encountered
during the analysis.
Attributes
----------
incrementNumber: str
An int specifying the increment number where the analysis was aborted. This attribute is
read-only.
iterationNumber: str
An int specifying the iteration number where the analysis was aborted. This attribute is
read-only.
attemptNumber: str
An int specifying the attempt number on which the analysis was aborted. This attribute
is read-only.
category: str
String specifying the category of error. This attribute is read-only.
data: OdbAuxiliaryData
An :py:class:`~abaqus.PlotOptions.OdbAuxiliaryData.OdbAuxiliaryData` object.
description: str
String specifying the cause of the error. This attribute is read-only.
detailStrings: str
String specifying the exact nature of the problem. This attribute is read-only.
knowledgeItem: str
String specifying the exact reason for the error encountered. This attribute is
read-only.
numberOfVariations: str
An int specifying the number of variations. This attribute is read-only.
stepNumber: str
An int specifying the step number on which the error was encountered. This attribute is
read-only.
Notes
-----
This object can be accessed by:
.. code-block:: python
import visualization
session.odbData[name].diagnosticData.analysisErrors[i]
"""
# An int specifying the increment number where the analysis was aborted. This attribute is
# read-only.
incrementNumber: str = ''
# An int specifying the iteration number where the analysis was aborted. This attribute is
# read-only.
iterationNumber: str = ''
# An int specifying the attempt number on which the analysis was aborted. This attribute
# is read-only.
attemptNumber: str = ''
# String specifying the category of error. This attribute is read-only.
category: str = ''
# An OdbAuxiliaryData object.
data: OdbAuxiliaryData = OdbAuxiliaryData()
# String specifying the cause of the error. This attribute is read-only.
description: str = ''
# String specifying the exact nature of the problem. This attribute is read-only.
detailStrings: str = ''
# String specifying the exact reason for the error encountered. This attribute is
# read-only.
knowledgeItem: str = ''
# An int specifying the number of variations. This attribute is read-only.
numberOfVariations: str = ''
# An int specifying the step number on which the error was encountered. This attribute is
# read-only.
stepNumber: str = ''