Technical Elements Documentation
    Preparing search index...

    Interface SystemSensitivityStudy

    Interface for sensitivity studies on system models.

    SY-C1(p)

    interface SystemSensitivityStudy {
        description: string;
        elementSpecificProperties?: Record<string, unknown>;
        impact?: string;
        impactOnSystem: string;
        insights?: string;
        modelUncertaintyId?: string;
        name?: string;
        parameterChanged: string;
        parameterRanges: Record<string, [number, number]>;
        results?: string;
        system: systems_analysis.SystemReference;
        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

    impactOnSystem: string

    Impact on the system performance.

    "Increased top event probability by 10%"
    
    insights?: string

    Insights gained from the sensitivity study. This should be a comma-separated string of insights rather than an array to maintain compatibility with the parent SensitivityStudy interface.

    modelUncertaintyId?: string

    Reference to the model uncertainty being studied

    name?: string

    Name or title of the sensitivity study

    parameterChanged: string

    Parameter changed in the sensitivity study.

    "Pump Failure Rate"
    
    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

    The system being analyzed.

    variedParameters: string[]

    Parameters being varied in the study