Technical Elements Documentation
    Preparing search index...

    Reusable interface for representing transition parameters. Used to define specific plant parameters that mark transitions between states.

    interface TransitionParameter {
        monitored?: boolean;
        monitoringInstruments?: string[];
        parameter: string;
        units?: string;
        value: string | number;
    }
    Index

    Properties

    monitored?: boolean

    Whether this parameter is being monitored

    monitoringInstruments?: string[]

    Instruments used to monitor this parameter

    parameter: string

    The plant parameter name

    units?: string

    Units of measurement, if applicable

    value: string | number

    The threshold value that marks the transition