Technical Elements Documentation

    Interface DataAnalysisParameter

    Data Analysis parameter with specific requirements

    This interface implements several PRA standard requirements:

    • DA-A2
    • DA-A3
    • HLR-DA-B

    DA-A2, DA-A3, HLR-DA-B

    interface DataAnalysisParameter {
        alternatives?: string[];
        assumptions?: data_analysis.Assumption[];
        basicEventId?: string;
        componentBoundaries?: {
            boundaries: string[];
            componentId?: string;
            description: string;
            excludedParts?: string[];
            includedParts: string[];
            systemId: string;
        };
        data_sources?: DataSource[];
        description?: string;
        failureMode?: string
        | data_analysis.FailureModeType;
        logicModelInfo?: {
            basicEventBoundary: string;
            evaluationModel: string;
            modelType: string;
        };
        parameterType: ParameterType;
        plant_operating_state?: data_analysis.PlantOperatingStateReference;
        probability_model?: DistributionType;
        successCriteria?: string
        | string[]
        | SuccessCriteriaId;
        systemDefinitionId?: string;
        testMaintenanceId?: string;
        uncertainty?: Uncertainty;
        value: number & Minimum<0>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    alternatives?: string[]

    Alternative approaches or parameters that could be used.

    DA-A5

    assumptions?: data_analysis.Assumption[]

    All assumptions made in the analysis, including both general and specific assumptions.

    DA-A5

    DA-A6

    basicEventId?: string

    Links to basic event this parameter is associated with

    DA-A1

    componentBoundaries?: {
        boundaries: string[];
        componentId?: string;
        description: string;
        excludedParts?: string[];
        includedParts: string[];
        systemId: string;
    }

    Specific component boundaries for this parameter

    Type declaration

    • boundaries: string[]

      Boundaries array - directly maps to SystemDefinition.boundaries when referencing a system

    • OptionalcomponentId?: string

      Component ID - references a component within SystemDefinition.modeledComponentsAndFailures

    • description: string

      Boundary description

    • OptionalexcludedParts?: string[]

      Parts excluded from the boundary

    • includedParts: string[]

      Parts included within the boundary - more detailed than boundaries

    • systemId: string

      System ID - references SystemDefinition

    DA-A1

    data_sources?: DataSource[]

    All data sources used in the analysis, including both general and specific sources.

    DA-A4

    description?: string

    Detailed description of the parameter

    failureMode?: string | data_analysis.FailureModeType

    Defines how the component can fail.

    DA-A2

    logicModelInfo?: {
        basicEventBoundary: string;
        evaluationModel: string;
        modelType: string;
    }

    Logic model information

    Type declaration

    • basicEventBoundary: string

      The basic event boundary

    • evaluationModel: string

      The model used for evaluation

    • modelType: string

      The logic model type

    DA-A4

    parameterType: ParameterType

    The type of parameter being analyzed.

    DA-A4

    Represents the plant operating state for which the parameter applies. This can be either a reference to a specific plant operating state by ID, or a complete plant operating states table.

    HLR-DA-B

    probability_model?: DistributionType

    The probability model used to evaluate event probability.

    DA-A3

    successCriteria?: string | string[] | SuccessCriteriaId

    Defines the criteria for success.

    DA-A2

    systemDefinitionId?: string

    Reference to the system definition this parameter is associated with. This provides access to the component's boundary and grouping information.

    HLR-DA-B

    testMaintenanceId?: string

    Links to test/maintenance information this parameter is associated with

    DA-A1

    uncertainty?: Uncertainty

    Uncertainty information for the parameter.

    DA-A5

    value: number & Minimum<0>

    The estimated value for the parameter

    MMNEPVFCICPMFPCPTTAAATR