User Guide

Table Of Contents
Program Methodology—Resident Points
Siemens Building Technologies, Inc. 1-51
Day (DAY)
Unitary pre-APOGEE APOGEE BACnet
Syntax
DAY
Use
This resident point specifies the current day of the week. The values
used for the DAY point are as follows:
Number Day of the Week
1 Monday
2 Tuesday
3 Wednesday
4 Thursday
5 Friday
6 Saturday
7 Sunday
Example
300 IF (DAY.EQ.1) THEN TOTRAN = 0
Notes
These values are not related to the modes used in the TODMOD
statement.
APOGEE PPCL User’s Manual
1-52 Siemens Building Technologies, Inc.
Day of the month (DAYOFM)
Unitary pre-APOGEE APOGEE BACnet
Syntax
DAYOFM
Use
This resident point specifies a particular day of any month.
Valid values for DAYOFM are 1 through 31. The value corresponds
to the numerical calendar day of a month.
Example
160 C THIS SECTION OF CODE DETERMINES IF
162 C IT IS THE FIRST DAY OF THE MONTH.
164 C IF SO, SET TOTMON TO 0.
166 C
180 IF (DAYOFM.EQ.1) THEN TOTMON = 0
Notes
This point is helpful when you have to perform certain operations on
a specific day (for example, generating a report on the first day in the
month).