-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstages.xeto
More file actions
162 lines (140 loc) · 4 KB
/
stages.xeto
File metadata and controls
162 lines (140 loc) · 4 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//
// Copyright (c) 2025, HPBS
// Licensed under the Academic Free License version 3.0
//
// History:
// 21 Jan 2025 Creation
//
// HPBS Staging Point Types
//
// Extends ph_point_stages staging types with HPBS-specific defaults
// for naming conventions and visualization colors.
//
//////////////////////////////////////////////////////////////////////////
// Heating Stage Points
//////////////////////////////////////////////////////////////////////////
// Heating stage command (number of stages)
HpbsHeatingStageCmd: HeatStageCmd & HpbsHotWaterColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "HtgStgCmd"
}
// Heating stage status (number of active stages)
HpbsHeatingStageSensor: HeatStageSensor & HpbsHotWaterColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "HtgStgSts"
}
// Electric heat stage 1 command
HpbsElecHeatStage1Cmd: ElecHeatStageCmd & HpbsElecColor {
stage: Number 1
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "ElecHtg1Cmd"
}
// Electric heat stage 1 status
HpbsElecHeatStage1Sensor: ElecHeatStageSensor & HpbsElecColor {
stage: Number 1
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "ElecHtg1Sts"
}
// Electric heat stage 2 command
HpbsElecHeatStage2Cmd: ElecHeatStageCmd & HpbsElecColor {
stage: Number 2
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "ElecHtg2Cmd"
}
// Electric heat stage 2 status
HpbsElecHeatStage2Sensor: ElecHeatStageSensor & HpbsElecColor {
stage: Number 2
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "ElecHtg2Sts"
}
// Gas heat stage 1 command
HpbsGasHeatStage1Cmd: GasHeatStageCmd & HpbsGasColor {
stage: Number 1
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "GasHtg1Cmd"
}
// Gas heat stage 1 status
HpbsGasHeatStage1Sensor: GasHeatStageSensor & HpbsGasColor {
stage: Number 1
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "GasHtg1Sts"
}
// Gas heat stage 2 command
HpbsGasHeatStage2Cmd: GasHeatStageCmd & HpbsGasColor {
stage: Number 2
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "GasHtg2Cmd"
}
//////////////////////////////////////////////////////////////////////////
// Cooling Stage Points
//////////////////////////////////////////////////////////////////////////
// Cooling stage command (number of stages)
HpbsCoolingStageCmd: CoolStageCmd & HpbsChilledWaterColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "ClgStgCmd"
}
// Cooling stage status (number of active stages)
HpbsCoolingStageSensor: CoolStageSensor & HpbsChilledWaterColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "ClgStgSts"
}
// DX cooling stage 1 command
HpbsDxCoolingStage1Cmd: DxCoolStageCmd & HpbsChilledWaterColor {
stage: Number 1
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "DxClg1Cmd"
}
// DX cooling stage 1 status
HpbsDxCoolingStage1Sensor: DxCoolStageSensor & HpbsChilledWaterColor {
stage: Number 1
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "DxClg1Sts"
}
// DX cooling stage 2 command
HpbsDxCoolingStage2Cmd: DxCoolStageCmd & HpbsChilledWaterColor {
stage: Number 2
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "DxClg2Cmd"
}
// DX cooling stage 2 status
HpbsDxCoolingStage2Sensor: DxCoolStageSensor & HpbsChilledWaterColor {
stage: Number 2
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "DxClg2Sts"
}
//////////////////////////////////////////////////////////////////////////
// Lead/Lag and Sequencing Points
//////////////////////////////////////////////////////////////////////////
// Lead equipment selector/indicator
HpbsLeadEquipSensor: LeadEquipSensor & HpbsSensorColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "LeadEquip"
}
// Number of equipment stages requested
HpbsEquipStagesRequestedSensor: EquipStagesRequestedSensor & HpbsSensorColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "StgsReq"
}
// Number of equipment stages running
HpbsEquipStagesRunningSensor: EquipStagesRunningSensor & HpbsSensorColor {
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "StgsRun"
}