forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice-energy-management-cluster.xml
192 lines (187 loc) · 10.8 KB
/
device-energy-management-cluster.xml
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?xml version="1.0"?>
<!--
Copyright (c) 2023 Project CHIP Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<configurator>
<domain name="Energy Management"/>
<bitmap name="Feature" type="bitmap32">
<cluster code="0x0098"/>
<field name="PowerAdjustment" mask="0x1"/>
<field name="PowerForecastReporting" mask="0x2"/>
<field name="StateForecastReporting" mask="0x4"/>
<field name="ForecastAdjustment" mask="0x8"/>
</bitmap>
<cluster apiMaturity="provisional">
<name>Device Energy Management</name>
<domain>Energy Management</domain>
<code>0x0098</code>
<define>DEVICE_ENERGY_MANAGEMENT_CLUSTER</define>
<client init="false" tick="false">true</client>
<server init="false" tick="false">true</server>
<description>This cluster allows a client to manage the power draw of a device. An example of such a client could be an Energy Management System (EMS) which controls an Energy Smart Appliance (ESA).</description>
<globalAttribute side="server" code="0xFFFD" value="2" />
<!--Attributes-->
<attribute code="0x0000" side="server" type="ESATypeEnum" define="ESA_TYPE" writable="false" optional="false">ESAType</attribute>
<attribute code="0x0001" side="server" type="boolean" define="ESA_CAN_GENERATE" writable="false" optional="false">ESACanGenerate</attribute>
<attribute code="0x0002" side="server" type="ESAStateEnum" define="ESA_STATE" default="0" writable="false" optional="false">ESAState</attribute>
<attribute code="0x0003" side="server" type="power_mw" define="ABS_MIN_POWER" default="0" writable="false" optional="false">AbsMinPower</attribute>
<attribute code="0x0004" side="server" type="power_mw" define="ABS_MAX_POWER" default="0" writable="false" optional="false">AbsMaxPower</attribute>
<!--Conformance feature PA - for now optional-->
<attribute code="0x0005" side="server" type="ARRAY" entryType="PowerAdjustStruct" define="POWER_ADJUSTMENT_CAPABILITY" isNullable="true" writable="false" optional="true">PowerAdjustmentCapability</attribute>
<!--Conformance feature PFR \| SFR - for now optional-->
<attribute code="0x0006" side="server" type="ForecastStruct" define="FORECAST" isNullable="true" writable="false" optional="true">Forecast</attribute>
<command source="client" code="0x0000" name="PowerAdjustRequest" optional="true" apiMaturity="provisional">
<arg name="Power" type="power_mw"/>
<arg name="Duration" type="elapsed_s"/>
<description>Allows a client to request an adjustment in the power consumption of an ESA for a specified duration.</description>
</command>
<command source="client" code="0x0001" name="CancelPowerAdjustRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to cancel an ongoing PowerAdjustmentRequest operation.</description>
</command>
<command source="client" code="0x0002" name="StartTimeAdjustRequest" optional="true" apiMaturity="provisional">
<arg name="RequestedStartTime" type="epoch_s"/>
<description>Allows a client to adjust the start time of a Forecast sequence that has not yet started operation (i.e. where the current Forecast StartTime is in the future).</description>
</command>
<command source="client" code="0x0003" name="PauseRequest" optional="true" apiMaturity="provisional">
<arg name="Duration" type="elapsed_s"/>
<description>Allows a client to temporarily pause an operation and reduce the ESAs energy demand.</description>
</command>
<command source="client" code="0x0004" name="ResumeRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to cancel the PauseRequest command and enable earlier resumption of operation.</description>
</command>
<command source="client" code="0x0005" name="ModifyForecastRequest" optional="true" apiMaturity="provisional">
<arg name="ForecastId" type="int32u"/>
<arg name="SlotAdjustments" array="true" type="SlotAdjustmentStruct"/>
<description>Allows a client to modify a Forecast within the limits allowed by the ESA.</description>
</command>
<command source="client" code="0x0006" name="RequestConstraintBasedForecast" optional="true" apiMaturity="provisional">
<arg name="Constraints" array="true" type="ConstraintsStruct"/>
<description>Allows a client to ask the ESA to recompute its Forecast based on power and time constraints.</description>
</command>
<event code="0x0000" name="PowerAdjustStart" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>PowerAdjustStart</description>
</event>
<event code="0x0001" name="PowerAdjustEnd" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>PowerAdjustEnd</description>
<field id="0" name="Cause" type="CauseEnum" apiMaturity="provisional"/>
<field id="1" name="Duration" type="elapsed_s" apiMaturity="provisional"/>
<field id="2" name="EnergyUse" type="energy_mwh" apiMaturity="provisional"/>
</event>
<event code="0x0002" name="Paused" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>Paused</description>
</event>
<event code="0x0003" name="Resumed" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>Resumed</description>
</event>
</cluster>
<enum name="CostTypeEnum" type="enum8" apiMaturity="provisional">
<cluster code="0x0098"/>
<item name="Financial" value="0x00"/>
<item name="GHGEmissions" value="0x01"/>
<item name="Comfort" value="0x02"/>
<item name="Temperature" value="0x03"/>
</enum>
<enum name="ESATypeEnum" type="enum8" apiMaturity="provisional">
<cluster code="0x0098"/>
<item name="EVSE" value="0x00"/>
<item name="SpaceHeating" value="0x01"/>
<item name="WaterHeating" value="0x02"/>
<item name="SpaceCooling" value="0x03"/>
<item name="SpaceHeatingCooling" value="0x04"/>
<item name="BatteryStorage" value="0x05"/>
<item name="SolarPV" value="0x06"/>
<item name="FridgeFreezer" value="0x07"/>
<item name="WashingMachine" value="0x08"/>
<item name="Dishwasher" value="0x09"/>
<item name="Cooking" value="0x0A"/>
<item name="HomeWaterPump" value="0x0B"/>
<item name="IrrigationWaterPump" value="0x0C"/>
<item name="PoolPump" value="0x0D"/>
<item name="Other" value="0xFF"/>
</enum>
<enum name="ESAStateEnum" type="enum8" apiMaturity="provisional">
<cluster code="0x0098"/>
<item name="Offline" value="0x00"/>
<item name="Online" value="0x01"/>
<item name="Fault" value="0x02"/>
<item name="UserOptOut" value="0x03"/>
<item name="PowerAdjustActive" value="0x04"/>
<item name="Paused" value="0x05"/>
</enum>
<enum name="CauseEnum" type="enum8" apiMaturity="provisional">
<cluster code="0x0098"/>
<item name="NormalCompletion" value="0x00"/>
<item name="Offline" value="0x01"/>
<item name="Fault" value="0x02"/>
<item name="UserOptOut" value="0x03"/>
</enum>
<struct name="CostStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="CostType" type="CostTypeEnum"/>
<item fieldId="1" name="Value" type="int32s"/>
<item fieldId="2" name="DecimalPoints" type="int8u"/>
<item fieldId="3" name="Currency" type="int16u" max="999" optional="true"/>
</struct>
<struct name="PowerAdjustStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="MinPower" type="power_mw"/>
<item fieldId="1" name="MaxPower" type="power_mw"/>
<item fieldId="2" name="MinDuration" type="elapsed_s"/>
<item fieldId="3" name="MaxDuration" type="elapsed_s"/>
</struct>
<struct name="ForecastStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="ForecastId" type="int16u"/>
<item fieldId="1" name="ActiveSlotNumber" type="int16u" max="0xFFFE" isNullable="true"/>
<item fieldId="2" name="StartTime" type="epoch_s"/>
<item fieldId="3" name="EndTime" type="epoch_s"/>
<item fieldId="4" name="EarliestStartTime" type="epoch_s" max="0xFFFFFFFE" isNullable="true" optional="true"/>
<item fieldId="5" name="LatestEndTime" type="epoch_s" optional="true"/>
<item fieldId="6" name="IsPauseable" type="boolean"/>
<item fieldId="7" name="Slots" array="true" type="SlotStruct"/>
</struct>
<struct name="SlotStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="MinDuration" type="elapsed_s"/>
<item fieldId="1" name="MaxDuration" type="elapsed_s"/>
<item fieldId="2" name="DefaultDuration" type="elapsed_s"/>
<item fieldId="3" name="ElapsedSlotTime" type="elapsed_s"/>
<item fieldId="4" name="RemainingSlotTime" type="elapsed_s"/>
<item fieldId="5" name="SlotIsPauseable" type="boolean"/>
<item fieldId="6" name="MinPauseDuration" type="elapsed_s"/>
<item fieldId="7" name="MaxPauseDuration" type="elapsed_s"/>
<item fieldId="8" name="ManufacturerESAState" type="int16u" optional="true"/>
<item fieldId="9" name="NominalPower" type="power_mw" optional="true"/>
<item fieldId="10" name="MinPower" type="power_mw" optional="true"/>
<item fieldId="11" name="MaxPower" type="power_mw" optional="true"/>
<item fieldId="12" name="NominalEnergy" type="energy_mwh" optional="true"/>
<item fieldId="13" name="Costs" array="true" type="CostStruct" optional="true"/>
<item fieldId="14" name="MinPowerAdjustment" type="power_mw" optional="true"/>
<item fieldId="15" name="MaxPowerAdjustment" type="power_mw" optional="true"/>
<item fieldId="16" name="MinDurationAdjustment" type="elapsed_s" optional="true"/>
<item fieldId="17" name="MaxDurationAdjustment" type="elapsed_s" optional="true"/>
</struct>
<struct name="SlotAdjustmentStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="SlotIndex" type="int8u"/>
<item fieldId="1" name="NominalPower" type="power_mw"/>
<item fieldId="2" name="Duration" type="elapsed_s"/>
</struct>
<struct name="ConstraintsStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="StartTime" type="epoch_s"/>
<item fieldId="1" name="Duration" type="elapsed_s" min="0" max="86400"/>
<item fieldId="2" name="NominalPower" type="power_mw" optional="true"/>
<item fieldId="3" name="MaximumEnergy" type="energy_mwh" optional="true"/>
<item fieldId="4" name="LoadControl" type="int8s" optional="true"/>
</struct>
</configurator>