Technical Elements Documentation
    Preparing search index...

    Interface ScreeningCriteria

    Standardized interface for screening criteria across technical elements.

    This interface consolidates common patterns for screening criteria found in:

    • Initiating Event Analysis
    • Event Sequence Analysis
    • Plant Operating States Analysis
    • Hazard Analysis

    It provides a consistent structure for documenting screening criteria while allowing for technical element-specific extensions.

    const criteria: ScreeningCriteria = {
    frequency_criterion: 1.0e-7,
    basis: "Events with frequency below threshold have negligible risk impact",
    screened_out_elements: [
    {
    element_id: "IE-LOCA-SMALL",
    reason: "Low frequency",
    justification: "Frequency below screening threshold"
    }
    ]
    };
    interface ScreeningCriteria {
        basis: string;
        damage_frequency_criterion?: number;
        elementSpecificProperties?: Record<string, unknown>;
        frequency_criterion?: number;
        risk_criterion?: number;
        screened_out_elements: {
            element_id: string;
            justification: string;
            reason: string;
        }[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    basis: string

    Basis for screening criteria

    damage_frequency_criterion?: number

    Damage frequency screening criterion (if applicable)

    elementSpecificProperties?: Record<string, unknown>

    Technical element specific properties Allows for extension with properties specific to a technical element

    frequency_criterion?: number

    Frequency-based screening criterion (if applicable)

    risk_criterion?: number

    Risk-based screening criterion (if applicable)

    screened_out_elements: {
        element_id: string;
        justification: string;
        reason: string;
    }[]

    List of screened-out elements

    Type declaration

    • element_id: string

      ID of the screened-out element

    • justification: string

      Detailed justification for screening decision

    • reason: string

      Reason for screening out