Technical Elements Documentation
    Preparing search index...

    Interface RiskMetric

    Interface for a risk metric with value and uncertainty.

    interface RiskMetric {
        acceptanceCriteria?: {
            basis: string;
            complianceStatus: "COMPLIANT" | "NON_COMPLIANT" | "INDETERMINATE";
            limit: number;
        };
        description?: string;
        metricType: string;
        uncertainty?: Uncertainty;
        units: string;
        value: number;
    }

    Hierarchy

    • Unique
    • Named
      • RiskMetric
    Index

    Properties

    acceptanceCriteria?: {
        basis: string;
        complianceStatus: "COMPLIANT" | "NON_COMPLIANT" | "INDETERMINATE";
        limit: number;
    }

    Applicable acceptance criteria (if any)

    description?: string

    Description of the risk metric

    metricType: string

    Type of risk metric

    uncertainty?: Uncertainty

    Uncertainty associated with the risk metric value

    units: string

    Units for the metric (e.g., "per reactor year")

    value: number

    Point estimate value of the risk metric