Technical Elements Documentation
    Preparing search index...

    Interface representing an instrument used to monitor key plant parameters. This helps ensure adequate instrumentation for each plant operating state.

    POS-A8

    interface Instrument {
        accuracy: number;
        availability: boolean;
        calibrationRequirements?: string;
        location: string;
        parameter: string;
        range?: [number, number];
        safetyRelated: boolean;
        units?: string;
    }

    Hierarchy

    • Unique
    • Named
      • Instrument
    Index

    Properties

    accuracy: number

    Accuracy of the instrument (e.g., ±1%)

    availability: boolean

    Whether the instrument is available in this plant operating state

    calibrationRequirements?: string

    Calibration requirements

    location: string

    Location of the instrument in the plant

    parameter: string

    Parameter being monitored (e.g., Temperature, Pressure)

    range?: [number, number]

    Range of the instrument

    safetyRelated: boolean

    Whether the instrument is safety-related

    units?: string

    Units of measurement