-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathph.point_stages.xeto
More file actions
96 lines (79 loc) · 2.05 KB
/
ph.point_stages.xeto
File metadata and controls
96 lines (79 loc) · 2.05 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
//
// Copyright (c) 2025, HPBS
// Licensed under the Academic Free License version 3.0
//
// History:
// 22 Jan 2025 Creation
//
// Placeholder Staging Point Specs
//
// These specs are intended to be contributed upstream to ph.points.
// Generic staging points not tied to specific equipment types.
//
//////////////////////////////////////////////////////////////////////////
// Heating Stage Points
//////////////////////////////////////////////////////////////////////////
// Heating stage command (number of stages)
HeatStageCmd: NumberPoint & CmdPoint {
heating
}
// Heating stage sensor (number of active stages)
HeatStageSensor: NumberPoint & SensorPoint {
heating
}
// Electric heating stage command
ElecHeatStageCmd: BoolPoint & CmdPoint {
heating
elec
}
// Electric heating stage sensor
ElecHeatStageSensor: BoolPoint & SensorPoint {
heating
elec
}
// Gas heating stage command
GasHeatStageCmd: BoolPoint & CmdPoint {
heating
naturalGas
}
// Gas heating stage sensor
GasHeatStageSensor: BoolPoint & SensorPoint {
heating
naturalGas
}
//////////////////////////////////////////////////////////////////////////
// Cooling Stage Points
//////////////////////////////////////////////////////////////////////////
// Cooling stage command (number of stages)
CoolStageCmd: NumberPoint & CmdPoint {
cooling
}
// Cooling stage sensor (number of active stages)
CoolStageSensor: NumberPoint & SensorPoint {
cooling
}
// DX cooling stage command
DxCoolStageCmd: BoolPoint & CmdPoint {
cooling
dxCooling
}
// DX cooling stage sensor
DxCoolStageSensor: BoolPoint & SensorPoint {
cooling
dxCooling
}
//////////////////////////////////////////////////////////////////////////
// Lead/Lag Sequencing Points
//////////////////////////////////////////////////////////////////////////
// Lead equipment indicator
LeadEquipSensor: NumberPoint & SensorPoint {
lead
}
// Equipment stages requested
EquipStagesRequestedSensor: NumberPoint & SensorPoint {
effective
}
// Equipment stages running
EquipStagesRunningSensor: NumberPoint & SensorPoint {
run
}