Technical Elements Documentation

    Interface RiskSignificanceEvaluation

    Interface for risk significance evaluation of a specific PRA element.

    RI-A3

    {
    uuid: "123e4567-e89b-12d3-a456-426614174001",
    elementType: "event-sequence",
    elementId: "ES-LOCA-001",
    criteriaReference: "RSC-CDF-01",
    evaluationResults: {
    absoluteValue: 2.5e-7,
    relativeValue: 0.015,
    isSignificant: true,
    significanceBasis: "Exceeds both absolute threshold of 1.0e-7 and relative threshold of 1%"
    }
    }
    interface RiskSignificanceEvaluation {
        criteriaReference: RiskSignificanceCriteriaReference;
        elementId: string;
        elementType: string;
        evaluationResults: {
            absoluteValue?: number;
            isSignificant: boolean;
            relativeValue?: number;
            significanceBasis: string;
        };
        insights?: string[];
    }

    Hierarchy

    • Unique
      • RiskSignificanceEvaluation
    Index

    Properties

    Reference to the risk significance criteria being applied

    elementId: string

    ID of the element being evaluated

    elementType: string

    Type of PRA element being evaluated (e.g., "event-sequence", "basic-event")

    evaluationResults: {
        absoluteValue?: number;
        isSignificant: boolean;
        relativeValue?: number;
        significanceBasis: string;
    }

    Results of the significance evaluation

    Type declaration

    • OptionalabsoluteValue?: number

      Absolute risk value of the element

    • isSignificant: boolean

      Whether the element is considered risk-significant

    • OptionalrelativeValue?: number

      Relative contribution (as fraction of total)

    • significanceBasis: string

      Basis for the significance determination

    insights?: string[]

    Additional insights from this evaluation

    MMNEPVFCICPMFPCPTTAAATR