Technical Elements Documentation
    Preparing search index...

    Variable EBRII_PumpFailureEstimationExampleConst

    EBRII_PumpFailureEstimationExample: {
        componentTypeReference: "TYPE-SODIUM-PUMP";
        confidenceIntervals: {
            lower: { mean: 0.0000025 };
            upper: { mean: 0.000058 };
        };
        estimatedDistribution: LOGNORMAL;
        failureModeReference: "FM-PUMP-BEARINGS";
        goodnessOfFit: { method: "Anderson-Darling"; value: 0.89 };
        parameters: { errorFactor: 4.8; mean: 0.000012 };
        sampleSize: 5;
    } = ...

    Example of failure rate estimation results for EBR-II primary sodium pump

    This example demonstrates the structure of failure rate estimation results based on operational data analysis.

    Type declaration

    • ReadonlycomponentTypeReference: "TYPE-SODIUM-PUMP"
    • ReadonlyconfidenceIntervals: { lower: { mean: 0.0000025 }; upper: { mean: 0.000058 } }
    • ReadonlyestimatedDistribution: LOGNORMAL
    • ReadonlyfailureModeReference: "FM-PUMP-BEARINGS"
    • ReadonlygoodnessOfFit: { method: "Anderson-Darling"; value: 0.89 }
    • Readonlyparameters: { errorFactor: 4.8; mean: 0.000012 }
    • ReadonlysampleSize: 5
    // Access the example
    import { examples } from 'data_analysis';
    const pumpFailureEstimation = examples.EBRII_PumpFailureEstimationExample;