User Guide

Table Of Contents
Program Methodology—Arithmetic Operators
Siemens Building Technologies, Inc. 1-23
Addition
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
that are used in the calculation.
Use
Adds two or more values and stores the sum in a defined location as
pt1.
Example
560 COUNT = COUNT + 1.0
APOGEE PPCL User’s Manual
1-24 Siemens Building Technologies, Inc.
Assignment
Unitary pre-APOGEE APOGEE BACnet
Syntax
pt1 = value1
pt1 The point name or local variable that receives the value
from value1.
value1 A point name, local variable, expression, or number that is
assigned to pt1.
Use
Assigns the value of value1 to the value of pt1.
Example
560 COUNT = COUNT + 1.0
Notes
Do not to assign values to reserved words. See the Reserved Word
List in Appendix A.
Example
500 C = OATEMP
The code in this example would fail due to the “C” being used like a
variable, when instead the field panel interprets the line as a
comment.