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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
{
"group": {
"name": "ACSimInterface",
"label": "AC Simulator Control Interface",
"desc": "A generic AC simulator/power supply control interface for DER electrical testing.",
"points": [
{
"desc": "Model identifier",
"label": "Model ID",
"mandatory": "M",
"name": "ID",
"size": 1,
"static": "S",
"type": "uint16",
"value": 64411
},
{
"desc": "Model length.",
"label": "Model Length",
"mandatory": "M",
"name": "L",
"size": 1,
"static": "S",
"type": "uint16"
},
{
"label": "Active Phases",
"desc": "Set the number of active phases for the power supply",
"name": "Phases",
"type": "uint16",
"size": 1,
"access": "RW"
},
{
"label": "Phase Angle",
"desc": "Phase angle (deg) between phases. 0 for signle phase, 120 for two phase, 120 for three phase.",
"name": "PhaseAngle",
"type": "uint16",
"size": 1,
"access": "RW"
},
{
"label": "Nominal Voltage",
"desc": "Nominal L-N Voltage",
"name": "VNom",
"type": "uint16",
"size": 1,
"sf": "V_SF",
"units": "V",
"access": "RW"
},
{
"label": "Maximum Voltage",
"desc": "Maximum Voltage Protection Level",
"name": "VMax",
"type": "uint16",
"size": 1,
"sf": "V_SF",
"units": "V",
"access": "RW"
},
{
"label": "Maximum Current",
"desc": "Maximum Current Protection Level",
"name": "IMax",
"type": "uint16",
"size": 1,
"sf": "A_SF",
"units": "A",
"access": "RW"
},
{
"label": "Frequency",
"desc": "Frequency Setpoint",
"name": "Freq",
"type": "uint16",
"size": 1,
"sf": "Hz_SF",
"units": "Hz",
"access": "RW"
},
{
"label": "Output State",
"desc": "AC Output State",
"name": "Output",
"type": "enum16",
"size": 1,
"access": "RW",
"symbols": [
{ "label": "Output Off", "name": "OFF", "value": 0 },
{ "label": "Output On", "name": "ON", "value": 1 }
]
},
{
"label": "Relay State",
"desc": "AC Relay State",
"name": "Relay",
"type": "enum16",
"size": 1,
"access": "RW",
"symbols": [
{ "label": "Relay Open", "name": "OPEN", "value": 0 },
{ "label": "Relay Closed", "name": "CLOSED", "value": 1 }
]
},
{
"label": "Regeneration State",
"desc": "Regeneration State",
"name": "Regen",
"type": "enum16",
"size": 1,
"access": "RW",
"symbols": [
{ "label": "Regen Off", "name": "OFF", "value": 0 },
{ "label": "Regen On", "name": "ON", "value": 1 }
]
},
{
"label": "Voltage Setpoint",
"desc": "Voltage Setpoint (all phases)",
"name": "VSet",
"type": "uint16",
"size": 1,
"sf": "V_SF",
"units": "V",
"access": "RW"
},
{
"label": "Voltage Setpoint Phase A",
"desc": "Voltage Setpoint Phase A",
"name": "VSetA",
"type": "uint16",
"size": 1,
"sf": "V_SF",
"units": "V",
"access": "RW"
},
{
"label": "Voltage Setpoint Phase B",
"desc": "Voltage Setpoint Phase B",
"name": "VSetB",
"type": "uint16",
"size": 1,
"sf": "V_SF",
"units": "V",
"access": "RW"
},
{
"label": "Voltage Setpoint Phase C",
"desc": "Voltage Setpoint Phase C",
"name": "VSetC",
"type": "uint16",
"size": 1,
"sf": "V_SF",
"units": "V",
"access": "RW"
},
{
"label": "Frequency Slew Rate",
"desc": "Frequency Slew Rate",
"name": "FreqSlew",
"type": "uint16",
"size": 1,
"sf": "HzSlew_SF",
"units": "Hz/s",
"access": "RW"
},
{
"label": "Voltage Slew Rate",
"desc": "Voltage Slew Rate",
"name": "VSlew",
"type": "uint16",
"size": 1,
"sf": "VSlew_SF",
"units": "V/s",
"access": "RW"
},
{
"label": "Measured Voltage Phase A",
"desc": "Measured Voltage Phase A",
"name": "VA",
"type": "int32",
"size": 2,
"sf": "V_SF",
"units": "V"
},
{
"label": "Measured Voltage Phase B",
"desc": "Measured Voltage Phase B",
"name": "VB",
"type": "int32",
"size": 2,
"sf": "V_SF",
"units": "V"
},
{
"label": "Measured Voltage Phase C",
"desc": "Measured Voltage Phase C",
"name": "VC",
"type": "int32",
"size": 2,
"sf": "V_SF",
"units": "V"
},
{
"label": "Measured Frequency",
"desc": "Measured Frequency",
"name": "Hz",
"type": "int32",
"size": 2,
"sf": "Hz_SF",
"units": "Hz"
},
{
"label": "Measured Current Phase A",
"desc": "Measured Current Phase A",
"name": "IA",
"type": "int32",
"size": 2,
"sf": "A_SF",
"units": "A"
},
{
"label": "Measured Current Phase B",
"desc": "Measured Current Phase B",
"name": "IB",
"type": "int32",
"size": 2,
"sf": "A_SF",
"units": "A"
},
{
"label": "Measured Current Phase C",
"desc": "Measured Current Phase C",
"name": "IC",
"type": "int32",
"size": 2,
"sf": "A_SF",
"units": "A"
},
{
"label": "Voltage Harmonics Phase A",
"desc": "Voltage Harmonics Pct, Phase A (comma seperated string for harmonics 1-50)",
"name": "VHarA",
"type": "string",
"size": 150,
"units": "V",
"access": "R"
},
{
"label": "Voltage Harmonics Phase B",
"desc": "Voltage Harmonics Pct, Phase B (comma seperated string for harmonics 1-50)",
"name": "VHarB",
"type": "string",
"size": 150,
"units": "V",
"access": "R"
},
{
"label": "Voltage Harmonics Phase C",
"desc": "Voltage Harmonics Pct, Phase C (comma seperated string for harmonics 1-50)",
"name": "VHarC",
"type": "string",
"size": 150,
"units": "V",
"access": "R"
},
{
"label": "Current Harmonics Phase A",
"desc": "Current Harmonics Pct, Phase A (comma seperated string for harmonics 1-50)",
"name": "IHarA",
"type": "string",
"size": 150,
"units": "A",
"access": "R"
},
{
"label": "Current Harmonics Phase B",
"desc": "Current Harmonics Pct, Phase B (comma seperated string for harmonics 1-50)",
"name": "IHarB",
"type": "string",
"size": 150,
"units": "A",
"access": "R"
},
{
"label": "Current Harmonics Phase C",
"desc": "Current Harmonics Pct, Phase C (comma seperated string for harmonics 1-50)",
"name": "IHarC",
"type": "string",
"size": 150,
"units": "A",
"access": "R"
},
{
"label": "Current Interharmonics Phase A",
"desc": "Current Interharmonics Pct, Phase A (comma seperated string for interharmonics 1-50)",
"name": "IIntHarA",
"type": "string",
"size": 150,
"units": "A",
"access": "R"
},
{
"label": "Current Interharmonics Phase B",
"desc": "Current Interharmonics Pct, Phase B (comma seperated string for interharmonics 1-50)",
"name": "IIntHarB",
"type": "string",
"size": 150,
"units": "A",
"access": "R"
},
{
"label": "Current Interharmonics Phase C",
"desc": "Current Interharmonics Pct, Phase C (comma seperated string for interharmonics 1-50)",
"name": "IIntHarC",
"type": "string",
"size": 150,
"units": "A",
"access": "R"
},
{
"label": "Voltage THD Phase A",
"desc": "Voltage THD Phase A",
"name": "VThdA",
"type": "uint16",
"size": 1,
"sf": "THD_SF",
"units": "%",
"access": "R"
},
{
"label": "Voltage THD Phase B",
"desc": "Voltage THD Phase B",
"name": "VThdB",
"type": "uint16",
"size": 1,
"sf": "THD_SF",
"units": "%",
"access": "R"
},
{
"label": "Voltage THD Phase C",
"desc": "Voltage THD Phase C",
"name": "VThdC",
"type": "uint16",
"size": 1,
"sf": "THD_SF",
"units": "%",
"access": "R"
},
{
"label": "Current THD Phase A",
"desc": "Current THD Phase A",
"name": "IThdA",
"type": "uint16",
"size": 1,
"sf": "THD_SF",
"units": "%",
"access": "R"
},
{
"label": "Current THD Phase B",
"desc": "Current THD Phase B",
"name": "IThdB",
"type": "uint16",
"size": 1,
"sf": "THD_SF",
"units": "%",
"access": "R"
},
{
"label": "Current THD Phase C",
"desc": "Current THD Phase C",
"name": "IThdC",
"type": "uint16",
"size": 1,
"sf": "THD_SF",
"units": "%",
"access": "R"
},
{
"label": "Enable Profile",
"desc": "Start/Stop the AC Profile",
"name": "EnaProf",
"type": "enum16",
"size": 1,
"access": "RW",
"symbols": [
{ "label": "Stop Profile", "name": "STOP", "value": 0 },
{ "label": "Start Profile Immediately", "name": "START", "value": 1 },
{ "label": "Start Profile via External Trigger Signal", "name": "TRIGGER", "value": 2 }
]
},
{
"desc": "Result of last profile operation.",
"label": "Profile Result",
"mandatory": "M",
"name": "ProfRslt",
"size": 1,
"symbols": [
{ "label": "Profile update in progress.", "name": "IN_PROGRESS", "value": 0 },
{ "label": "Profile update completed successfully.", "name": "COMPLETED", "value": 1 },
{ "label": "Profile update failed.", "name": "FAILED", "value": 2 }
],
"type": "enum16"
},
{
"desc": "Number of stored profiles supported.",
"label": "Stored Profile Count",
"mandatory": "M",
"name": "NProf",
"size": 1,
"static": "S",
"type": "uint16"
},
{
"desc": "Max profile points in the profiles.",
"label": "Max Profile Point Count",
"mandatory": "M",
"name": "NPt",
"size": 1,
"static": "S",
"type": "uint16"
},
{
"desc": "Scale factor for voltage points.",
"label": "Voltage Scale Factor",
"mandatory": "M",
"name": "V_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
},
{
"desc": "Scale factor for current points.",
"label": "Current Scale Factor",
"mandatory": "M",
"name": "A_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
},
{
"desc": "Scale factor for time points.",
"label": "Time Scale Factor",
"mandatory": "M",
"name": "Tms_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
},
{
"desc": "Scale factor for frequency points.",
"label": "Frequency Scale Factor",
"mandatory": "M",
"name": "Hz_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
},
{
"desc": "Scale factor for frequency slew rate.",
"label": "Frequency Slew Rate Scale Factor",
"mandatory": "M",
"name": "HzSlew_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
},
{
"desc": "Scale factor for voltage slew rate.",
"label": "Voltage Slew Rate Scale Factor",
"mandatory": "M",
"name": "VSlew_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
},
{
"desc": "Scale factor for THD values.",
"label": "THD Scale Factor",
"mandatory": "M",
"name": "THD_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"access": "R"
}
],
"groups": [
{
"comments": [
"Stored AC Profile Sets - Number of profile sets = NProf"
],
"count": "NProf",
"desc": "Stored AC profile sets.",
"label": "Stored AC Profiles",
"name": "Prof",
"points": [
{
"access": "RW",
"desc": "Profile name.",
"label": "Profile Name",
"name": "Name",
"size": 32,
"type": "string"
},
{
"access": "RW",
"desc": "Number of active points.",
"label": "Active Points",
"mandatory": "M",
"name": "ActPt",
"size": 1,
"type": "uint16"
}
],
"groups": [
{
"comments": [
"Stored AC Profile Sets - Profile points for each stored profile - Number of profile points contained in NPt"
],
"count": "NPt",
"desc": "Stored AC profile points.",
"label": "Stored AC Profile Points",
"name": "Pt",
"points": [
{
"access": "RW",
"desc": "Profile time.",
"label": "Profile Time",
"name": "Tms",
"size": 1,
"type": "uint16",
"units": "Sec",
"sf": "Tms_SF"
},
{
"access": "RW",
"desc": "Profile voltage phase A point in Volts.",
"label": "Voltage Point",
"name": "VA",
"sf": "V_SF",
"size": 1,
"type": "uint16",
"units": "V"
},
{
"access": "RW",
"desc": "Profile voltage phase B point in Volts.",
"label": "Voltage Point Phase B",
"name": "VB",
"sf": "V_SF",
"size": 1,
"type": "uint16",
"units": "V"
},
{
"access": "RW",
"desc": "Profile voltage phase C point in Volts.",
"label": "Voltage Point Phase C",
"name": "VC",
"sf": "V_SF",
"size": 1,
"type": "uint16",
"units": "V"
},
{
"access": "RW",
"desc": "Profile frequency point in Hz.",
"label": "Frequency Point",
"name": "Hz",
"sf": "Hz_SF",
"size": 1,
"type": "uint16",
"units": "Hz"
},
{
"access": "RW",
"desc": "Profile phase A angle in degrees.",
"label": "Phase Angle A",
"name": "PhaseAngleA",
"size": 1,
"type": "uint16",
"units": "Degrees"
},
{
"access": "RW",
"desc": "Profile phase B angle in degrees.",
"label": "Phase Angle B",
"name": "PhaseAngleB",
"size": 1,
"type": "uint16",
"units": "Degrees"
},
{
"access": "RW",
"desc": "Profile phase C angle in degrees.",
"label": "Phase Angle C",
"name": "PhaseAngleC",
"size": 1,
"type": "uint16",
"units": "Degrees"
}
],
"type": "group"
}
],
"type": "group"
}
],
"type": "group"
},
"id": 64411
}