Skip to content

fault_type

Defines the Faulttypes which are possible

FaultType

Bases: Enum

Enumeration of supported fault types within the safety model. Each member represents a specific failure mode used for FIT rate calculations and visualization.

Source code in src/ecc_analyzer/interfaces/fault_type.py
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class FaultType(Enum):
    """
    Enumeration of supported fault types within the safety model.
    Each member represents a specific failure mode used for FIT rate calculations and visualization.
    """

    SBE = auto()
    DBE = auto()
    TBE = auto()
    MBE = auto()
    WD = auto()
    AZ = auto()
    SB = auto()
    SDB = auto()
    OTH = auto()
    SBE_IF = auto()