Technical Elements Documentation
    Preparing search index...

    Interface representing the risk significance of a plant operating state. Different POSs contribute differently to overall plant risk, and this interface captures that information.

    interface OperatingStateRisk {
        importanceMeasures?: {
            componentId: ComponentReference;
            fussellVesely?: number;
            RAW?: number;
            RRW?: number;
        }[];
        riskContribution: number;
        riskMetrics: { CDF: Frequency; LERF: Frequency };
        riskSignificantContributors: string[];
        stateId: string;
        stateName: string;
    }
    Index

    Properties

    importanceMeasures?: {
        componentId: ComponentReference;
        fussellVesely?: number;
        RAW?: number;
        RRW?: number;
    }[]

    Importance measures for key components

    Type declaration

    • componentId: ComponentReference

      Component ID

    • OptionalfussellVesely?: number

      Fussell-Vesely importance

    • OptionalRAW?: number

      Risk Achievement Worth

    • OptionalRRW?: number

      Risk Reduction Worth

    riskContribution: number

    Contribution to total risk (e.g., percentage)

    riskMetrics: { CDF: Frequency; LERF: Frequency }

    Risk metrics for this operating state

    Type declaration

    riskSignificantContributors: string[]

    List of risk-significant contributors

    stateId: string

    ID of the plant operating state

    stateName: string

    Name of the plant operating state