Technical Elements Documentation
    Preparing search index...

    Interface representing a time-varying condition within a plant operating state. Conditions within a POS are not always constant, and certain parameters can change over time, affecting the risk profile.

    interface TimeVaryingCondition {
        impact: string;
        parameter: string;
        requiresMonitoring: boolean;
        time: number;
        uncertainty?: number;
        units?: string;
        value: number;
    }

    Hierarchy

    • Unique
    • Named
      • TimeVaryingCondition
    Index

    Properties

    impact: string

    Description of the impact on safety functions

    parameter: string

    Parameter that is changing (e.g., Decay Heat)

    requiresMonitoring: boolean

    Whether this condition requires special monitoring

    time: number

    Time in hours from the start of the POS

    uncertainty?: number

    Associated uncertainty

    units?: string

    Units of measurement

    value: number

    Value of the parameter at this time