forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectrical-power-measurement-cluster.xml
180 lines (175 loc) · 9.19 KB
/
electrical-power-measurement-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
<?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="CHIP"/>
<cluster>
<name>Electrical Power Measurement</name>
<domain>Measurement & Sensing</domain>
<code>0x0090</code>
<define>ELECTRICAL_POWER_MEASUREMENT_CLUSTER</define>
<client init="false" tick="false">true</client>
<server init="false" tick="false">true</server>
<globalAttribute side="either" code="0xFFFD" value="1"/>
<description>This cluster provides a mechanism for querying data about electrical power as measured by the server.</description>
<features>
<feature bit="0" code="DIRC" name="DirectCurrent" summary="Supports measurement of direct current">
<optionalConform choice="a" more="true"/>
</feature>
<feature bit="1" code="ALTC" name="AlternatingCurrent" summary="Supports measurement of alternating current">
<optionalConform choice="a" more="true"/>
</feature>
<feature bit="2" code="POLY" name="PolyphasePower" summary="Supports polyphase measurements">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</feature>
<feature bit="3" code="HARM" name="Harmonics" summary="Supports measurement of AC harmonics">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</feature>
<feature bit="4" code="PWRQ" name="PowerQuality" summary="Supports measurement of AC harmonic phases">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</feature>
</features>
<!--Attributes-->
<attribute code="0x0000" side="server" name="PowerMode" define="POWER_MODE" type="PowerModeEnum" min="0x00" max="0x02">
<mandatoryConform/>
</attribute>
<attribute code="0x0001" side="server" name="NumberOfMeasurementTypes" define="NUMBER_OF_MEASUREMENT_TYPES" type="int8u" min="1">
<mandatoryConform/>
</attribute>
<attribute code="0x0002" side="server" name="Accuracy" define="ACCURACY" type="array" entryType="MeasurementAccuracyStruct" minLength="1">
<mandatoryConform/>
</attribute>
<attribute code="0x0003" side="server" name="Ranges" define="RANGES" type="array" optional="true" entryType="MeasurementRangeStruct" minLength="0">
<optionalConform/>
</attribute>
<attribute code="0x0004" side="server" name="Voltage" define="VOLTAGE" type="voltage_mv" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform/>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x0005" side="server" name="ActiveCurrent" define="ACTIVE_CURRENT" type="amperage_ma" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform/>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x0006" side="server" name="ReactiveCurrent" define="REACTIVE_CURRENT" type="amperage_ma" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<attribute code="0x0007" side="server" name="ApparentCurrent" define="APPARENT_CURRENT" type="amperage_ma" isNullable="true" min="0" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x0008" side="server" name="ActivePower" define="ACTIVE_POWER" type="power_mw" isNullable="true" min="-4611686018427387904" max="4611686018427387904">
<mandatoryConform/>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x0009" side="server" name="ReactivePower" define="REACTIVE_POWER" type="power_mw" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x000A" side="server" name="ApparentPower" define="APPARENT_POWER" type="power_mw" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x000B" side="server" name="RMSVoltage" define="RMS_VOLTAGE" type="voltage_mv" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x000C" side="server" name="RMSCurrent" define="RMS_CURRENT" type="amperage_ma" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x000D" side="server" name="RMSPower" define="RMS_POWER" type="power_mw" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature HARM - for now optional-->
<attribute code="0x000E" side="server" name="Frequency" define="FREQUENCY" type="int64s" isNullable="true" optional="true" min="0" max="1000000">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<!--Conformance feature PWRQ - for now optional-->
<attribute code="0x000F" side="server" name="HarmonicCurrents" define="HARMONIC_CURRENTS" type="array" entryType="HarmonicMeasurementStruct" isNullable="true" optional="true">
<mandatoryConform>
<feature name="HARM"/>
</mandatoryConform>
</attribute>
<!--Conformance feature [ALTC] - for now optional-->
<attribute code="0x0010" side="server" name="HarmonicPhases" define="HARMONIC_PHASES" type="array" isNullable="true" optional="true" entryType="HarmonicMeasurementStruct">
<mandatoryConform>
<feature name="PWRQ"/>
</mandatoryConform>
</attribute>
<!--Conformance feature [POLY] - for now optional-->
<attribute code="0x0011" side="server" name="PowerFactor" define="POWER_FACTOR" type="int64s" isNullable="true" min="-10000" max="10000" optional="true">
<optionalConform>
<feature name="ALTC"/>
</optionalConform>
</attribute>
<attribute code="0x0012" side="server" name="NeutralCurrent" type="amperage_ma" define="NEUTRAL_CURRENT" isNullable="true" min="-4611686018427387904" max="4611686018427387904" optional="true">
<optionalConform>
<feature name="POLY"/>
</optionalConform>
</attribute>
<event code="0x00" side="server" name="MeasurementPeriodRanges" priority="info" optional="true">
<description>MeasurementPeriodRanges</description>
<field id="0" name="Ranges" array="true" type="MeasurementRangeStruct"/>
<mandatoryConform>
<attribute name="Ranges"/>
</mandatoryConform>
</event>
</cluster>
<enum name="PowerModeEnum" type="enum8">
<cluster code="0x0090"/>
<item name="Unknown" value="0x00"/>
<item name="DC" value="0x01"/>
<item name="AC" value="0x02"/>
</enum>
<struct name="MeasurementRangeStruct">
<cluster code="0x0090"/>
<item fieldId="0" name="MeasurementType" type="MeasurementTypeEnum" min="0x0000" max="0x000E"/>
<item fieldId="1" name="Min" type="int64s" min="-4611686018427387904" max="4611686018427387904"/>
<item fieldId="2" name="Max" type="int64s" min="-4611686018427387904" max="4611686018427387904"/>
<item fieldId="3" name="StartTimestamp" type="epoch_s" optional="true"/>
<item fieldId="4" name="EndTimestamp" type="epoch_s" optional="true"/>
<item fieldId="5" name="MinTimestamp" type="epoch_s" optional="true"/>
<item fieldId="6" name="MaxTimestamp" type="epoch_s" optional="true"/>
<item fieldId="7" name="StartSystime" type="systime_ms" optional="true"/>
<item fieldId="8" name="EndSystime" type="systime_ms" optional="true"/>
<item fieldId="9" name="MinSystime" type="systime_ms" optional="true"/>
<item fieldId="10" name="MaxSystime" type="systime_ms" optional="true"/>
</struct>
<struct name="HarmonicMeasurementStruct">
<cluster code="0x0090"/>
<item fieldId="0" name="Order" type="int8u" min="1" default="1"/>
<item fieldId="1" name="Measurement" type="int64s" min="-4611686018427387904" max="4611686018427387904" isNullable="true"/>
</struct>
</configurator>