pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface ControlPolicy

    A profile's control policy. Only the fields belonging to kind are set.

    interface ControlPolicy {
        cooling?: boolean;
        empty?: number;
        hysteresis?: number;
        kind: ControlKind;
        limit?: number;
        rising?: boolean;
        safeBand?: number;
        setpoint?: number;
        warnWithin?: number;
    }
    Index
    cooling?: boolean

    Whether the output cools rather than heats, for a setpoint policy.

    empty?: number

    The level treated as empty, for a level policy.

    hysteresis?: number

    Half the deadband width, for a setpoint policy.

    Which policy this describes.

    limit?: number

    The largest safe change per sample, for a surge policy.

    rising?: boolean

    Whether a rise rather than a fall is watched, for a surge policy.

    safeBand?: number

    How far the reading may stray before an alert, for a setpoint policy.

    setpoint?: number

    The target reading, for a setpoint policy.

    warnWithin?: number

    How many samples ahead to warn, for a level policy.