Skip to content
FTA (Fault Tree Analysis)

FTA (Fault Tree Analysis)

FTA (Fault Tree Analysis)

Fault Tree Analysis

1. Overview of FTA: Finding the Root Cause of a System Failure

    flowchart LR
    A["Top-level system failure"] -- "Analyze individual failure causes" --> B["FTA (Fault Tree Analysis)"]
  

Definition: A deductive methodology that calculates the probability of a specific failure (a Top Event) in a system or component by connecting all potential causes that could trigger that failure using logic gates (AND, OR).

Characteristics: (Deductive analysis) A systematic, top-down approach that starts from the Top Event and traces causes downward. (AND/OR logic) Models combinations of causes using logic gates (AND/OR) to quantitatively calculate failure probability. (Risk mitigation) Used to proactively identify potential risk factors in complex systems and establish preemptive mitigation measures.


2. FTA Analysis Procedure and Key Components

a. FTA Analysis Procedure

    flowchart TD
    A["Define the Top Event"] --> B("Identify gates & basic events");
    B --> C("Build the fault tree");
    C --> D("Quantitative/qualitative analysis");
    D --> E["Establish and execute countermeasures"];
    E --> F("Review and document results");
  
  1. Define the Top Event: Clearly define the critical failure or failure scenario of the system to be analyzed.
  2. Identify gates and basic events: Identify the sub-events that could trigger the Top Event, and define the relationships between them using logic gates (AND, OR, etc.).
  3. Build the fault tree: Complete the tree structure by tracing backward from the Top Event to the basic events.
  4. Quantitative/qualitative analysis: Calculate the probability of the Top Event based on the probability of the identified events, or identify critical failure paths.
  5. Derive improvement measures: Based on the analysis results, establish improvement or preventive measures for the areas most likely to fail.

b. Key Components of FTA

  • Top Event: The undesirable event of the system being analyzed (e.g., control system failure, data breach).
  • Basic Event: A basic failure cause that cannot be decomposed further (e.g., component failure, human error).
  • Intermediate Event: A compound failure resulting from a combination of multiple basic events or intermediate events.
  • Gates (logic operators):
    • AND Gate: Produces an output only when all input conditions are satisfied (e.g., a system fails only if two components fail simultaneously).
    • OR Gate: Produces an output if any one of the input conditions is satisfied (e.g., a system fails if any one of several causes occurs).
  • Fault Tree: The tree structure that descends from the Top Event to the basic events.

3. Expected Benefits and Application of FTA

  • Expected benefits:
    • Early identification of potential failures and risk factors in a system
    • Improved safety and reliability of complex systems
    • Support for cost-effective risk mitigation and prevention strategies
    • Compliance with safety regulations and standards
  • Applications:
    • System safety analysis in high-risk industries such as aerospace, nuclear power, and chemicals
    • Analysis of potential defects and security vulnerabilities in software systems
    • Used alongside FMEA (Failure Mode and Effects Analysis) for deeper risk assessment