Use arithmetic operators and functions

Combine multiple operators and functions in arithmetic expressions.
Operators calculate new values.
To
Use this operator
Add
+
Subtract/negate
-
Multiply
*
Exponent (x to the power of y)
**
Divide
/
Modulo-divide
mod
Assign relation
"<" | "<=" | ">" | ">=" | "=" | "<>"
Functions perform math operations. Specify a constant, a non-Boolean tag, or an expression for the function.
For
Use this function
Absolute value
ABS (numeric_expression)
Arc cosine
ACOS (numeric_expression)
Arc sine
ASIN (numeric_expression)
Arc tangent
ATAN (numeric_expression)
Cosine
COS (numeric_expression)
Radians to degrees
DEG (numeric_expression)
Natural log
LN (numeric_expression)
Log base 10
LOG (numeric_expression)
Degrees to radians
RAD (numeric_expression)
Sine
SIN (numeric_expression)
Square root
SQRT (numeric_expression)
Tangent
TAN (numeric_expression)
Truncate
TRUNC (numeric_expression)
The table provides examples for using arithmetic operators and functions.
Use this format
Example
For this situation
Write
value1 operator value2
If gain_4 and gain_4_adj are DINT tags and your specification says:
‘Add 15 to gain_4 and store the result in gain_4_adj’"
gain_4_adj := gain_4+15;
operator value1
If alarm and high_alarm are DINT tags and your specification says:
‘Negate high_alarm and store the result in alarm.’
alarm:= -high_alarm;
function(numeric_expression)
If overtravel and overtravel_POS are DINT tags and your specification says: ‘Calculate the absolute value of overtravel and store the result in overtravel_POS.’
overtravel_POS := ABS(overtravel);
value1 operator (function((value2+value3)/2)
If adjustment and position are DINT tags and sensor1 and sensor2 are REAL tags and your specification says: ‘Find the absolute value of the average of sensor1 and sensor2, add the adjustment, and store the result in position.’
position := adjustment + ABS((sensor1 +
sensor2)/2);
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal