Technical Elements Documentation
    Preparing search index...

    Interface BaseUncertaintyAnalysis

    Base interface for uncertainty analysis across technical elements.

    This interface provides a consistent structure for documenting uncertainty propagation methods and model uncertainties across different technical elements.

    interface BaseUncertaintyAnalysis {
        modelUncertainties: {
            description: string;
            impact: string;
            isQuantified: boolean;
            treatmentApproach: string;
            uncertaintyId: string;
        }[];
        numberOfSamples?: number;
        propagationMethod: | "OTHER"
        | "MONTE_CARLO"
        | "LATIN_HYPERCUBE"
        | "ANALYTICAL";
        randomSeed?: number;
        sensitivityStudies?: SensitivityStudy[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    modelUncertainties: {
        description: string;
        impact: string;
        isQuantified: boolean;
        treatmentApproach: string;
        uncertaintyId: string;
    }[]

    Model uncertainties considered The concept of identifying, describing, and defining the treatment approach for model uncertainties is relevant across various technical elements of a PRA.

    Type declaration

    • description: string

      Description of the uncertainty

    • impact: string

      Impact on the model

    • isQuantified: boolean

      Whether the uncertainty is quantified

    • treatmentApproach: string

      How the uncertainty is addressed

    • uncertaintyId: string

      Uncertainty ID

    numberOfSamples?: number

    Number of samples if using simulation Specific to simulation-based propagation methods (like Monte Carlo and Latin Hypercube) and is a general parameter for such methods.

    propagationMethod: "OTHER" | "MONTE_CARLO" | "LATIN_HYPERCUBE" | "ANALYTICAL"

    Uncertainty propagation method Defines the method used to propagate uncertainty, which is a general concept applicable across different types of uncertainty analysis within a PRA.

    randomSeed?: number

    Seed value for random number generator if using simulation Used in simulation-based uncertainty propagation to ensure reproducibility or to control the random number generation process.

    sensitivityStudies?: SensitivityStudy[]

    Sensitivity studies for unquantified uncertainties Sensitivity analysis is a general technique used to assess the impact of parameter variations or uncertainties on the results of an analysis.