Source code for abaqus.PlotOptions.OdbNumericalProblemSummary

from abaqusConstants import *


[docs]class OdbNumericalProblemSummary: """The OdbNumericalProblemSummary object stores the numerical problem summary of a job. Attributes ---------- convergedNegativeEigenValues: Boolean A boolean specifying whether negative eigenvalues converged during the analysis. This attribute is read-only. convergedNumericalSingularities: Boolean A boolean specifying whether numerical singularities converged during the analysis. This attribute is read-only. convergedZeroPivots: Boolean A boolean specifying whether pivot points converged during the analysis. This attribute is read-only. numberOfZeroPivots: str An int specifying the number of zero pivots. This attribute is read-only. numberOfNumericalSingularities: str An int specifying the number of numerical singularities. This attribute is read-only. numberOfNegativeEigenValues: str An int specifying the number of negative eigenvalues. This attribute is read-only. Notes ----- This object can be accessed by: .. code-block:: python import visualization session.odbData[name].diagnosticData.numericalProblemSummary """ # A boolean specifying whether negative eigenvalues converged during the analysis. This # attribute is read-only. convergedNegativeEigenValues: Boolean = OFF # A boolean specifying whether numerical singularities converged during the analysis. This # attribute is read-only. convergedNumericalSingularities: Boolean = OFF # A boolean specifying whether pivot points converged during the analysis. This attribute # is read-only. convergedZeroPivots: Boolean = OFF # An int specifying the number of zero pivots. This attribute is read-only. numberOfZeroPivots: str = '' # An int specifying the number of numerical singularities. This attribute is read-only. numberOfNumericalSingularities: str = '' # An int specifying the number of negative eigenvalues. This attribute is read-only. numberOfNegativeEigenValues: str = ''