User Guide

Table Of Contents
Program Methodology—Arithmetic Operators
Siemens Building Technologies, Inc. 1-25
Division
Unitary pre-APOGEE APOGEE BACnet
Syntax
pt1 = value1 / value2
pt1 A point name or local variable that receives the value of the
calculation.
value1 A point name, local variable, expression, or number used in
the calculation. In PPCL, value1 represents the numerator.
value2 A point name, local variable, expression or number used in
the calculation. In PPCL, value2 represents the
denominator.
Use
Divides two values (value1 by value2) and stores the quotient in a
defined location (pt1).
Example
890 AVERAG = TOTAL / 5.0
APOGEE PPCL User’s Manual
1-26 Siemens Building Technologies, Inc.
Multiplication
Unitary pre-APOGEE APOGEE BACnet
Syntax
pt1 = value1 * value2
pt1 A point name or local variable that receives the value of
the calculation.
value1,
value2
Point names, local variables, expressions, or numbers
used in the calculation.
Use
Multiplies two or more values (value1 and value2) and stores the
product in a defined location (pt1).
Example
300 SETPT = TEMP * 0.00438