-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdhw.xeto
More file actions
69 lines (62 loc) · 1.73 KB
/
dhw.xeto
File metadata and controls
69 lines (62 loc) · 1.73 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
//
// Copyright (c) 2025, HPBS
// Licensed under the Academic Free License version 3.0
//
// History:
// 21 Jan 2025 Creation
//
// HPBS Domestic Hot Water Point Types
//
// Extends Haystack ph.points with domestic hot water thermal metering points.
// Temperature, flow, and volume points are in water.xeto; this file contains
// thermal energy and power metering specific to DHW systems.
//
//////////////////////////////////////////////////////////////////////////
// DHW Thermal Energy Points
//////////////////////////////////////////////////////////////////////////
// Domestic hot water thermal energy sensor (BTU meter totalized)
HpbsDomesticHotWaterEnergySensor: ThermalEnergySensor & HpbsDomesticHotWaterColor {
domestic
hot
water
unit: "kBTU"
hisMode: "consumption"
hisTotalized
hisCollectInterval: "5min"
navName: "DhwEnergy"
}
// Domestic hot water thermal power sensor (instantaneous BTU rate)
HpbsDomesticHotWaterPowerSensor: ThermalPowerSensor & HpbsDomesticHotWaterColor {
domestic
hot
water
unit: "kBTU/h"
hisMode: "sampled"
hisCollectInterval: "5min"
navName: "DhwPwr"
}
//////////////////////////////////////////////////////////////////////////
// DHW Recirculation Points
//////////////////////////////////////////////////////////////////////////
// DHW recirculation pump run command
HpbsDomesticHotWaterRecircPumpRunCmd: RunCmd & HpbsDomesticHotWaterColor {
domestic
hot
water
pump
circ
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "DhwRecircPumpCmd"
}
// DHW recirculation pump run status
HpbsDomesticHotWaterRecircPumpRunSensor: RunSensor & HpbsDomesticHotWaterColor {
domestic
hot
water
pump
circ
hisMode: "cov"
hisCollectInterval: "24hr"
navName: "DhwRecircPumpSts"
}