-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathph.point_cooling-tower.xeto
More file actions
42 lines (35 loc) · 1019 Bytes
/
ph.point_cooling-tower.xeto
File metadata and controls
42 lines (35 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// Copyright (c) 2025, HPBS
// Licensed under the Academic Free License version 3.0
//
// History:
// 22 Jan 2025 Creation
//
// Placeholder Cooling Tower Point Specs
//
// These specs are intended to be contributed upstream to ph.points.
//
//////////////////////////////////////////////////////////////////////////
// Cooling Tower Stage Points
//////////////////////////////////////////////////////////////////////////
// Cooling tower stage command
CoolingTowerStageCmd: NumberPoint & CmdPoint {
coolingTower
}
// Cooling tower stage sensor
CoolingTowerStageSensor: NumberPoint & SensorPoint {
coolingTower
}
//////////////////////////////////////////////////////////////////////////
// Cooling Tower Run/Enable Points
//////////////////////////////////////////////////////////////////////////
// Cooling tower enable command
CoolingTowerEnableCmd: BoolPoint & CmdPoint {
coolingTower
enable
}
// Cooling tower run sensor
CoolingTowerRunSensor: BoolPoint & SensorPoint {
coolingTower
run
}