-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathSmartChargingCtrlr.json
280 lines (280 loc) · 8.45 KB
/
SmartChargingCtrlr.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Schema for SmartChargingCtrlr",
"name": "SmartChargingCtrlr",
"type": "object",
"properties": {
"ACPhaseSwitchingSupported": {
"variable_name": "ACPhaseSwitchingSupported",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "This variable can be used to indicate an on-load/in-transaction capability. If defined and true, this EVSE supports the selection of which phase to use for 1 phase AC charging.",
"type": "boolean"
},
"SmartChargingCtrlrAvailable": {
"variable_name": "Available",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": true
}
],
"description": "Whether smart charging is supported.",
"type": "boolean"
},
"SmartChargingCtrlrEnabled": {
"variable_name": "Enabled",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": true
}
],
"description": "Whether smart charging is enabled.",
"type": "boolean"
},
"EntriesChargingProfiles": {
"variable_name": "Entries",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": 0
}
],
"instance": "ChargingProfiles",
"description": "Entries(ChargingProfiles) is the amount of Charging profiles currently installed on the Charging Station",
"type": "integer"
},
"ExternalControlSignalsEnabled": {
"variable_name": "ExternalControlSignalsEnabled",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Indicates whether a Charging Station should respond to external control signals that influence charging.",
"type": "boolean"
},
"LimitChangeSignificance": {
"variable_name": "LimitChangeSignificance",
"characteristics": {
"unit": "Percent",
"supportsMonitoring": true,
"dataType": "decimal"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 42
}
],
"description": "If at the Charging Station side a change in the limit in a ChargingProfile is lower than this percentage, the Charging Station MAY skip sending a NotifyChargingLimitRequest or a TransactionEventRequest message to the CSMS.",
"type": "number"
},
"NotifyChargingLimitWithSchedules": {
"variable_name": "NotifyChargingLimitWithSchedules",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Indicates if the Charging Station should include the externally set charging limit/schedule in the message when it sends a NotifyChargingLimitRequest message.",
"type": "boolean"
},
"PeriodsPerSchedule": {
"variable_name": "PeriodsPerSchedule",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": 42
}
],
"description": "Maximum number of periods that may be defined per ChargingSchedule.",
"type": "integer"
},
"Phases3to1": {
"variable_name": "Phases3to1",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "If defined and true, this Charging Station supports switching from 3 to 1 phase during a transaction",
"type": "boolean"
},
"ChargingProfileMaxStackLevel": {
"variable_name": "ProfileStackLevel",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": 42
}
],
"description": "Maximum acceptable value for stackLevel in a ChargingProfile. Since the lowest stackLevel is 0, this means that if SmartChargingCtrlr.ProfileStackLevel = 1, there can be at most 2 valid charging profiles per Charging Profile Purpose per EVSE.",
"type": "integer"
},
"ChargingScheduleChargingRateUnit": {
"variable_name": "RateUnit",
"characteristics": {
"valuesList": "A,W",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "A,W"
}
],
"description": "A list of supported quantities for use in a ChargingSchedule. Allowed values: 'A' and 'W\ufffd",
"type": "string"
},
"CompositeScheduleDefaultLimitAmps": {
"variable_name": "CompositeScheduleDefaultLimitAmps",
"characteristics": {
"unit": "A",
"minLimit": 0,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 48
}
],
"type": "integer",
"description": "Default amps limit applied when composite schedule is calculated and no limit was provided by the CSMS"
},
"CompositeScheduleDefaultLimitWatts": {
"variable_name": "CompositeScheduleDefaultLimitWatts",
"characteristics": {
"unit": "W",
"minLimit": 0,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 33120
}
],
"type": "integer",
"description": "Default watts limit applied when composite schedule is calculated and no limit was provided by the CSMS"
},
"CompositeScheduleDefaultNumberPhases": {
"variable_name": "CompositeScheduleDefaultNumberPhases",
"characteristics": {
"unit": "W",
"minLimit": 1,
"maxLimit": 3,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 3
}
],
"type": "integer",
"description": "Default number of phases applied when composite schedule is calculated and no limit was provided by the CSMS"
},
"SupplyVoltage": {
"variable_name": "SupplyVoltage",
"characteristics": {
"unit": "V",
"minLimit": 0,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 230
}
],
"type": "integer",
"description": "Supply voltage of the grid. This value is only used in case a conversion between smart charging amp and watt limits is required"
}
},
"IgnoredProfilePurposesOffline": {
"variable_name": "IgnoredProfilePurposesOffline",
"characteristics": {
"valuesList": "ChargingStationMaxProfile,TxDefaultProfile,TxProfile",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": ""
}
],
"description": "Allows configuration of comma seperated list of ChargingProfilePurposes that are ignored in the composite schedule caluclation when offline.",
"type": "string"
},
"required": [
"ChargingProfileMaxStackLevel",
"ChargingScheduleChargingRateUnit",
"EntriesChargingProfiles",
"LimitChangeSignificance",
"PeriodsPerSchedule"
]
}