Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

(wip)

Table of Contents

Alarm Routine


This tutorial will show how to create a simple high temperature Alarm on a VAV.

Prerequisites: A project with VAV equipments.

The tutorial is  built on the Demo project.

Please also check this video tutorial here.

Steps

1.Navigate to City Center > Floor1 > VAV-01.

Image Added

2.Click the Menu button and go to Logic Builder

3.Click on New Program

4.In the new program prompt add the name of the program, for example highTempAlarm with a short description.

Then add the following block - RoomTemp
Leave the ProgramOn Tags

Image Added

5. Click Save Program

6. Go to Add variable and add a new boolean variable.

Image Added
7.Set the default value of the variable to false then click apply.
8.On the right side menu click Edit to open the program in bLine

Image Added

9.Drag a Room Temp Get block and a highTemp Set block onto the editing page

  • More details regarding blocks and their properties can be found here

10. From the Block Library, add to the program a compare->greater than or equal to (cmpGtEq

and an alarm block.

Image Added Image Added
11.In the Alarm block, add some alarmText and  select the highTemp variable. Optionally a priority and a  cost can be set.

Image Added

12.In the cmpGtEq block, set the b value to 85

Image Added

-Optionally  a CondDelay block can be added. Usin it the user can set a condition to enter in effect after a period of time. For example, the alarm will be triggered if the roomTemp value will be higher than 85 degrees for more than 5 seconds

Image Added

14. Link the conditions and values as well as the flow order as shown below:

Image Added

The program can be read as thus:

"If the roomTemp is higher than 85 degrees for more than 5 seconds the highTemp will be set to True and trigger the alarm"

15. Save the program.

Should the conditions be met, the alarm will show in the Alarms app, under the End User Apps. More about Alarms here

Image Added