Technical Elements Documentation
    Preparing search index...

    Interface SensitivityStudy

    Standardized interface for sensitivity studies across technical elements.

    This interface consolidates common patterns for sensitivity studies found in:

    • Data Analysis
    • Event Sequence Analysis
    • Initiating Event Analysis

    It provides a consistent structure for documenting sensitivity studies while allowing for technical element-specific extensions.

    interface SensitivityStudy {
        description: string;
        elementSpecificProperties?: Record<string, unknown>;
        impact?: string;
        insights?: string;
        modelUncertaintyId?: string;
        name?: string;
        parameterRanges: Record<string, [number, number]>;
        results?: string;
        variedParameters: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    description: string

    Description of the sensitivity study

    elementSpecificProperties?: Record<string, unknown>

    Technical element specific properties Allows for extension with properties specific to a technical element

    impact?: string

    Impact on analysis outcomes

    insights?: string

    Insights gained from the study

    modelUncertaintyId?: string

    Reference to the model uncertainty being studied

    name?: string

    Name or title of the sensitivity study

    parameterRanges: Record<string, [number, number]>

    Range of variation for each parameter Record where key is parameter name and value is [min, max] tuple

    results?: string

    Results of the sensitivity study

    variedParameters: string[]

    Parameters being varied in the study