Technical Elements Documentation
    Preparing search index...

    Interface FailureRateEstimationResult

    Interface representing the result of a failure rate estimation

    DA-D1

    DA-D2

    DA-D3

    interface FailureRateEstimationResult {
        componentTypeReference: string;
        confidenceIntervals?: {
            lower: Record<string, number>;
            upper: Record<string, number>;
        };
        estimatedDistribution: DistributionType;
        failureModeReference: string;
        goodnessOfFit?: { method: string; value: number };
        parameters: Record<string, number>;
        sampleSize: number;
    }
    Index

    Properties

    componentTypeReference: string

    Reference to the component type being analyzed

    confidenceIntervals?: {
        lower: Record<string, number>;
        upper: Record<string, number>;
    }

    Confidence intervals for the parameters

    Type declaration

    • lower: Record<string, number>

      Lower bounds of confidence intervals

    • upper: Record<string, number>

      Upper bounds of confidence intervals

    estimatedDistribution: DistributionType

    The estimated probability distribution type

    failureModeReference: string

    Reference to the failure mode being analyzed

    goodnessOfFit?: { method: string; value: number }

    Results of goodness of fit testing

    Type declaration

    • method: string

      Method used for goodness of fit testing

    • value: number

      Test statistic value

    parameters: Record<string, number>

    Parameters of the estimated distribution

    sampleSize: number

    Number of data points used in the estimation