ST_HVACParameterScale_nPoint
TYPE ST_HVACParameterScale_nPoint :
STRUCT
rX : ARRAY [1..g_iMaxNoOfScale_nPoint] OF REAL;
rY : ARRAY [1..g_iMaxNoOfScale_nPoint] OF REAL;
iNumberOfPoint : INT;
END_STRUCT
END_TYPE
rX[1..g_iMaxNoOfScale_nPoint]: Array that includes the values
of the single points of the X-axis. The number of points depends on
iNumberOfPoint.
Notice | |
Please note: The value rX[1] must be higher then rX[2], rX[2] must be higher then rX[n] OR rX[1] must be lesser then rX[2], rX[2] must be lesser then rX[n]. |
rY[1..g_iMaxNoOfScale_nPoint]: Array that includes the values of the single points of the Y-axis. The number of points depends on iNumberOfPoint.
iNumberOfPoint: Number of the single values of the X-Y-coordinates.
Notice | |
Please note: iNumberOfPoint must not be lesser then 2 or bigger then g_iMaxNoOfScale_nPoint(60). |