forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice-energy-management-cluster.xml
369 lines (339 loc) · 17.1 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<?xml version="1.0"?>
<!--
Copyright (c) 2023-2024 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.
-->
<!--
XML generated by Alchemy; DO NOT EDIT.
Source: src/app_clusters/DeviceEnergyManagement.adoc
Parameters: in-progress
Git: 1.4-prerelease-ipr-69-ge15ff5700
-->
<configurator xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../zcl.xsd">
<domain name="Energy Management"/>
<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="either" code="0xFFFD" value="4"/>
<features>
<feature bit="0" code="PA" name="PowerAdjustment" summary="Allows an EMS to make a temporary power adjustment (within the limits offered by the ESA).">
<optionalConform/>
</feature>
<feature bit="1" code="PFR" name="PowerForecastReporting" summary="Allows an ESA to advertise its indicative future power consumption vs time.">
<otherwiseConform>
<optionalConform choice="a">
<notTerm>
<feature name="PA"/>
</notTerm>
</optionalConform>
<mandatoryConform>
<orTerm>
<feature name="STA"/>
<feature name="PAU"/>
<feature name="FA"/>
<feature name="CON"/>
</orTerm>
</mandatoryConform>
<optionalConform/>
</otherwiseConform>
</feature>
<feature bit="2" code="SFR" name="StateForecastReporting" summary="Allows an ESA to advertise its indicative future state vs time.">
<optionalConform choice="a">
<notTerm>
<feature name="PA"/>
</notTerm>
</optionalConform>
</feature>
<feature bit="3" code="STA" name="StartTimeAdjustment" summary="Allows an EMS to delay an ESA's planned operation.">
<optionalConform/>
</feature>
<feature bit="4" code="PAU" name="Pausable" summary="Allows an EMS to pause an ESA's planned operation.">
<optionalConform/>
</feature>
<feature bit="5" code="FA" name="ForecastAdjustment" summary="Allows an EMS to adjust an ESA's planned operation.">
<optionalConform/>
</feature>
<feature bit="6" code="CON" name="ConstraintBasedAdjustment" summary="Allows an EMS to request constraints to an ESA's planned operation.">
<optionalConform/>
</feature>
</features>
<!--Attributes-->
<attribute code="0x0000" side="server" name="ESAType" type="ESATypeEnum" define="ESA_TYPE" min="0x00" max="0xFF" default="0xFF">
<mandatoryConform/>
</attribute>
<attribute code="0x0001" side="server" name="ESACanGenerate" type="boolean" define="ESA_CAN_GENERATE" default="0">
<mandatoryConform/>
</attribute>
<attribute code="0x0002" side="server" name="ESAState" type="ESAStateEnum" define="ESA_STATE" default="0x00" min="0x00" max="0x04">
<mandatoryConform/>
</attribute>
<attribute code="0x0003" side="server" name="AbsMinPower" type="power_mw" define="ABS_MIN_POWER" default="0">
<mandatoryConform/>
</attribute>
<attribute code="0x0004" side="server" name="AbsMaxPower" type="power_mw" define="ABS_MAX_POWER" default="0">
<mandatoryConform/>
</attribute>
<!--Conformance feature PA - for now optional-->
<attribute code="0x0005" side="server" name="PowerAdjustmentCapability" type="PowerAdjustCapabilityStruct" define="POWER_ADJUSTMENT_CAPABILITY" isNullable="true" optional="true">
<mandatoryConform>
<feature name="PA"/>
</mandatoryConform>
</attribute>
<!--Conformance feature PFR \| SFR - for now optional-->
<attribute code="0x0006" side="server" name="Forecast" type="ForecastStruct" define="FORECAST" isNullable="true" optional="true">
<mandatoryConform>
<orTerm>
<feature name="PFR"/>
<feature name="SFR"/>
</orTerm>
</mandatoryConform>
</attribute>
<attribute code="0x0007" side="server" name="OptOutState" type="OptOutStateEnum" define="OPT_OUT_STATE" min="0x00" max="0x03" default="0x00" optional="true">
<mandatoryConform>
<orTerm>
<feature name="PA"/>
<feature name="STA"/>
<feature name="PAU"/>
<feature name="FA"/>
<feature name="CON"/>
</orTerm>
</mandatoryConform>
</attribute>
<command source="client" code="0x00" name="PowerAdjustRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to request an adjustment in the power consumption of an ESA for a specified duration.</description>
<arg id="0" name="Power" type="power_mw"/>
<arg id="1" name="Duration" type="elapsed_s"/>
<arg id="2" name="Cause" type="AdjustmentCauseEnum" min="0x00" max="0x01"/>
<mandatoryConform>
<feature name="PA"/>
</mandatoryConform>
</command>
<command source="client" code="0x01" name="CancelPowerAdjustRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to cancel an ongoing PowerAdjustmentRequest operation.</description>
<mandatoryConform>
<feature name="PA"/>
</mandatoryConform>
</command>
<command source="client" code="0x02" name="StartTimeAdjustRequest" optional="true" apiMaturity="provisional">
<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>
<arg id="0" name="RequestedStartTime" type="epoch_s"/>
<arg id="1" name="Cause" type="AdjustmentCauseEnum" min="0x00" max="0x01"/>
<mandatoryConform>
<feature name="STA"/>
</mandatoryConform>
</command>
<command source="client" code="0x03" name="PauseRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to temporarily pause an operation and reduce the ESAs energy demand.</description>
<arg id="0" name="Duration" type="elapsed_s"/>
<arg id="1" name="Cause" type="AdjustmentCauseEnum" min="0x00" max="0x01"/>
<mandatoryConform>
<feature name="PAU"/>
</mandatoryConform>
</command>
<command source="client" code="0x04" name="ResumeRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to cancel the PauseRequest command and enable earlier resumption of operation.</description>
<mandatoryConform>
<feature name="PAU"/>
</mandatoryConform>
</command>
<command source="client" code="0x05" name="ModifyForecastRequest" optional="true" apiMaturity="provisional">
<description>Allows a client to modify a Forecast within the limits allowed by the ESA.</description>
<arg id="0" name="ForecastID" type="int32u"/>
<arg id="1" name="SlotAdjustments" array="true" type="SlotAdjustmentStruct" length="10"/>
<arg id="2" name="Cause" type="AdjustmentCauseEnum" min="0x00" max="0x01"/>
<mandatoryConform>
<feature name="FA"/>
</mandatoryConform>
</command>
<command source="client" code="0x06" name="RequestConstraintBasedForecast" optional="true" apiMaturity="provisional">
<description>Allows a client to ask the ESA to recompute its Forecast based on power and time constraints.</description>
<arg id="0" name="Constraints" array="true" type="ConstraintsStruct" length="10"/>
<arg id="1" name="Cause" type="AdjustmentCauseEnum" min="0x00" max="0x01"/>
<mandatoryConform>
<feature name="CON"/>
</mandatoryConform>
</command>
<command source="client" code="0x07" name="CancelRequest" optional="true">
<description>Allows a client to request cancellation of a previous adjustment request in a StartTimeAdjustRequest, ModifyForecastRequest or RequestConstraintBasedForecast command.</description>
<mandatoryConform>
<orTerm>
<feature name="STA"/>
<feature name="FA"/>
<feature name="CON"/>
</orTerm>
</mandatoryConform>
</command>
<event code="0x00" name="PowerAdjustStart" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>This event SHALL be generated when the Power Adjustment session is started.</description>
<mandatoryConform>
<feature name="PA"/>
</mandatoryConform>
</event>
<event code="0x01" name="PowerAdjustEnd" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>This event SHALL be generated when the Power Adjustment session ends.</description>
<field id="0" name="Cause" type="CauseEnum" apiMaturity="provisional" default="0x00" min="0x00" max="0x04"/>
<field id="1" name="Duration" type="elapsed_s" apiMaturity="provisional"/>
<field id="2" name="EnergyUse" type="energy_mwh" apiMaturity="provisional"/>
<mandatoryConform>
<feature name="PA"/>
</mandatoryConform>
</event>
<event code="0x02" name="Paused" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>This event SHALL be generated when the ESA enters the Paused state.</description>
<mandatoryConform>
<feature name="PAU"/>
</mandatoryConform>
</event>
<event code="0x03" name="Resumed" priority="info" side="server" apiMaturity="provisional" optional="true">
<description>This event SHALL be generated when the ESA leaves the Paused state and resumes operation.</description>
<field id="0" name="Cause" type="CauseEnum" apiMaturity="provisional" default="0x00" min="0x00" max="0x04"/>
<mandatoryConform>
<feature name="PAU"/>
</mandatoryConform>
</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="PowerAdjustActive" value="0x03"/>
<item name="Paused" value="0x04"/>
</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"/>
<item name="Cancelled" value="0x04"/>
</enum>
<enum name="AdjustmentCauseEnum" type="enum8">
<cluster code="0x0098"/>
<item name="LocalOptimization" value="0x00"/>
<item name="GridOptimization" value="0x01"/>
</enum>
<enum name="ForecastUpdateReasonEnum" type="enum8">
<cluster code="0x0098"/>
<item name="InternalOptimization" value="0x00"/>
<item name="LocalOptimization" value="0x01"/>
<item name="GridOptimization" value="0x02"/>
</enum>
<enum name="OptOutStateEnum" type="enum8">
<cluster code="0x0098"/>
<item name="NoOptOut" value="0x00"/>
<item name="LocalOptOut" value="0x01"/>
<item name="GridOptOut" value="0x02"/>
<item name="OptOut" value="0x03"/>
</enum>
<enum name="PowerAdjustReasonEnum" type="enum8">
<cluster code="0x0098"/>
<item name="NoAdjustment" value="0x00"/>
<item name="LocalOptimizationAdjustment" value="0x01"/>
<item name="GridOptimizationAdjustment" value="0x02"/>
</enum>
<struct name="CostStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="CostType" type="CostTypeEnum" default="0x00" min="0x00" max="0x03"/>
<item fieldId="1" name="Value" type="int32s" default="0"/>
<item fieldId="2" name="DecimalPoints" type="int8u" default="0"/>
<item fieldId="3" name="Currency" type="int16u" max="999" optional="true" default="0"/>
</struct>
<struct name="PowerAdjustCapabilityStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="PowerAdjustCapability" array="true" type="PowerAdjustStruct" isNullable="true" length="8"/>
<item fieldId="1" name="Cause" type="PowerAdjustReasonEnum" default="0x00" min="0x00" max="0x02"/>
</struct>
<struct name="PowerAdjustStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="MinPower" type="power_mw" default="0"/>
<item fieldId="1" name="MaxPower" type="power_mw" default="0"/>
<item fieldId="2" name="MinDuration" type="elapsed_s" default="0"/>
<item fieldId="3" name="MaxDuration" type="elapsed_s"/>
</struct>
<struct name="ForecastStruct" apiMaturity="provisional">
<cluster code="0x0098"/>
<item fieldId="0" name="ForecastID" type="int32u" default="0"/>
<item fieldId="1" name="ActiveSlotNumber" type="int16u" isNullable="true" default="0"/>
<item fieldId="2" name="StartTime" type="epoch_s"/>
<item fieldId="3" name="EndTime" type="epoch_s"/>
<item fieldId="4" name="EarliestStartTime" type="epoch_s" isNullable="true" optional="true"/>
<item fieldId="5" name="LatestEndTime" type="epoch_s" optional="true"/>
<item fieldId="6" name="IsPausable" type="boolean"/>
<item fieldId="7" name="Slots" array="true" type="SlotStruct" length="10"/>
<item fieldId="8" name="ForecastUpdateReason" type="ForecastUpdateReasonEnum" min="0x00" max="0x02"/>
</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="SlotIsPausable" type="boolean" optional="true"/>
<item fieldId="6" name="MinPauseDuration" type="elapsed_s" optional="true"/>
<item fieldId="7" name="MaxPauseDuration" type="elapsed_s" optional="true"/>
<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" length="5"/>
<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" optional="true"/>
<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" 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>