-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathph.point_thermal.xeto
More file actions
47 lines (38 loc) · 1.32 KB
/
ph.point_thermal.xeto
File metadata and controls
47 lines (38 loc) · 1.32 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
//
// Copyright (c) 2025, HPBS
// Licensed under the Academic Free License version 3.0
//
// History:
// 22 Jan 2025 Creation
//
// Placeholder Thermal Point Specs
//
// These specs are intended to be contributed upstream to ph.points.
// They define thermal energy/power point types following Project Haystack conventions.
//
//////////////////////////////////////////////////////////////////////////
// Thermal Energy Points
//////////////////////////////////////////////////////////////////////////
// Point associated with thermal energy (BTU, ton-hr, etc.)
ThermalEnergyPoint : NumberPoint <abstract> {
thermal
energy
unit: Unit <quantity:"energy"> "BTU"
}
// Sensor for thermal energy (totalized)
ThermalEnergySensor : ThermalEnergyPoint & SensorPoint
// Setpoint for thermal energy
ThermalEnergySp : ThermalEnergyPoint & SpPoint
//////////////////////////////////////////////////////////////////////////
// Thermal Power Points
//////////////////////////////////////////////////////////////////////////
// Point associated with thermal power (BTU/hr, tons, etc.)
ThermalPowerPoint : NumberPoint <abstract> {
thermal
power
unit: Unit <quantity:"power"> "BTU/h"
}
// Sensor for thermal power
ThermalPowerSensor : ThermalPowerPoint & SensorPoint
// Setpoint for thermal power
ThermalPowerSp : ThermalPowerPoint & SpPoint