EngToGeneric
- Last UpdatedJul 18, 2023
- 1 minute read
Gets a variable in the Plant SCADA generic scale format. Plant SCADA uses this scale to display trends. It calls this function automatically for trends defined in the project. If you want to display a trend using Cicode you need to call this function.
Syntax
EngToGeneric(Value, EngLow, EngHigh)
Value:
The value to convert to the Plant SCADA generic scale format.
EngLow:
The engineering units zero scale.
EngHigh:
The engineering units full scale.
Return Value
The variable (in the range 0 - 32000).
Related Functions
Example
/* Using trend definition 5 at AN20, display the value of Tag1 on
Pen1 of the trend. Tag1 has an engineering scale of 0 to 100. */
DspBar(20,5,EngToGeneric(Tag1,0,100));