User Guide

Table Of Contents
Glossary
Siemens Building Technologies, Inc. Glossary-3
integer
Whole number (non-decimal number).
line
Statement of program code assigned to a unique line number.
local variable
Points in a program of a field panel that can be used in place of user-
defined points to store temporary values ($LOC1 through $LOC15).
logical operators
Operator that compares two conditions. The result of a comparison
between the two conditions is called a condition. If the result of the
condition is true, then a specific action is taken. If the result is false,
then an alternative action is performed.
modular programming
Style of programming that logical organizes code into common
functions, such as operational modes.
order of precedence
Order in which operators (mathematical, relational, logical, and
special function) are evaluated in a command statement. Operators
that have a higher precedence are evaluated before operators that
have a lower precedence. If all the operators in the statement have
equivalent precedence levels, then the operators are evaluated from
left to right.
pre-APOGEE firmware
Firmware Revision 1.5 and earlier, and Revision 12.x and earlier.
program
Collection of instructions combined in a logical order to accomplish a
specific task.
APOGEE PPCL User’s Manual
Glossary-4 Siemens Building Technologies, Inc.
pseudocode
Non-syntactical description of program logic.
relational operators
Relational operators compare two values. The result of the
comparison is called a condition, and determines the type of action
that should be taken.
resident point
Predefined logical point that permanently resides in the PPCL
program in the field panel.
routing
Method for altering the flow of a program to transfer control to a line
of the program other than the next sequential line number.
special function
PPCL functions such as Alarm Priority (ALMPRI) that are used to
access a specific value that is unique to a point. The value of the
point can then be tested or assigned to other points. Since special
functions are maintained by the system, they cannot be manually
commanded to a different value. Special functions cannot be used
over the network.
statement
Collection of instructions to the computer in order to perform an
operation. A statement can also be considered a line of PPCL code.
subroutine
Portion of program code referenced repeatedly through one pass of
the program.