Technical Elements Documentation
    Preparing search index...

    Interface BaseDataAnalysisParameter

    Base Data Analysis Parameter - parent of all data analysis parameters

    This interface implements several PRA standard requirements:

    • DA-A4
    • DA-A5
    • DA-A6
    interface BaseDataAnalysisParameter {
        assumptions?: data_analysis.Assumption[];
        data_sources?: DataSource[];
        description?: string;
        parameterType: ParameterType;
        uncertainty?: Uncertainty;
    }

    Hierarchy (View Summary)

    Index

    Properties

    assumptions?: data_analysis.Assumption[]

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

    DA-A5

    DA-A6

    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

    parameterType: ParameterType

    The type of parameter being analyzed.

    DA-A4

    uncertainty?: Uncertainty

    Uncertainty information for the parameter.

    DA-A5