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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
{
"group": {
"desc": "DER capacity model.",
"label": "DER Capacity",
"name": "DERCapacity",
"points": [
{
"desc": "DER capacity model ID.",
"label": "Model ID",
"mandatory": "M",
"name": "ID",
"size": 1,
"static": "S",
"type": "uint16",
"value": 702,
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "DER capacity model length.",
"label": "Model Length",
"mandatory": "M",
"name": "L",
"size": 1,
"static": "S",
"type": "uint16",
"value": 50,
"standards": [
"IEEE 1547-2018"
]
},
{
"comments": [
"Nameplate Ratings - Specifies capacity ratings"
],
"desc": "Maximum active power rating at unity power factor in watts.",
"label": "Active Power Max Rating",
"name": "WMaxRtg",
"sf": "W_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "W",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Active power rating at specified over-excited power factor in watts.",
"label": "Active Power (Over-Excited) Rating",
"name": "WOvrExtRtg",
"sf": "W_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "W",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Specified over-excited power factor.",
"label": "Specified Over-Excited PF",
"name": "WOvrExtRtgPF",
"sf": "PF_SF",
"size": 1,
"static": "S",
"type": "uint16",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Active power rating at specified under-excited power factor in watts.",
"label": "Active Power (Under-Excited) Rating",
"name": "WUndExtRtg",
"sf": "W_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "W",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Specified under-excited power factor.",
"label": "Specified Under-Excited PF",
"name": "WUndExtRtgPF",
"sf": "PF_SF",
"size": 1,
"static": "S",
"type": "uint16",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Maximum apparent power rating in voltamperes.",
"label": "Apparent Power Max Rating",
"name": "VAMaxRtg",
"sf": "VA_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "VA",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Maximum injected reactive power rating in vars.",
"label": "Reactive Power Injected Rating",
"name": "VarMaxInjRtg",
"sf": "Var_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "Var",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Maximum absorbed reactive power rating in vars.",
"label": "Reactive Power Absorbed Rating",
"name": "VarMaxAbsRtg",
"sf": "Var_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "Var",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Maximum active power charge rate in watts.",
"label": "Charge Rate Max Rating",
"name": "WChaRteMaxRtg",
"sf": "W_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "W",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Maximum active power discharge rate in watts.",
"label": "Discharge Rate Max Rating",
"name": "WDisChaRteMaxRtg",
"sf": "W_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "W",
"standards": []
},
{
"desc": "Maximum apparent power charge rate in voltamperes.",
"label": "Charge Rate Max VA Rating",
"name": "VAChaRteMaxRtg",
"sf": "VA_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "VA",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Maximum apparent power discharge rate in voltamperes.",
"label": "Discharge Rate Max VA Rating",
"name": "VADisChaRteMaxRtg",
"sf": "VA_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "VA",
"standards": []
},
{
"desc": "AC voltage nominal rating.",
"label": "AC Voltage Nominal Rating",
"name": "VNomRtg",
"sf": "V_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "V",
"standards": [
"IEEE 1547-2018"
],
"detail": "Voltages are LN for single phase DER (e.g. 120 V nominal), LL for split phase DER (e.g. 240 V nominal), and LL for three phase DER (e.g., 480 V nominal)."
},
{
"desc": "AC voltage maximum rating.",
"label": "AC Voltage Max Rating",
"name": "VMaxRtg",
"sf": "V_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "V",
"standards": [
"IEEE 1547-2018"
],
"detail": "Voltages are LN for single phase DER (e.g. 120 V nominal), LL for split phase DER (e.g. 240 V nominal), and LL for three phase DER (e.g., 480 V nominal)."
},
{
"desc": "AC voltage minimum rating.",
"label": "AC Voltage Min Rating",
"name": "VMinRtg",
"sf": "V_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "V",
"standards": [
"IEEE 1547-2018"
],
"detail": "Voltages are LN for single phase DER (e.g. 120 V nominal), LL for split phase DER (e.g. 240 V nominal), and LL for three phase DER (e.g., 480 V nominal)."
},
{
"desc": "AC current maximum rating in amps.",
"label": "AC Current Max Rating",
"name": "AMaxRtg",
"sf": "A_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "A",
"standards": []
},
{
"desc": "Unused. Please use WOvrExtRtgPF.",
"detail": "This point is duplicative of WOvrExtRtgPF.",
"label": "PF Over-Excited Rating (Unused)",
"name": "PFOvrExtRtg",
"sf": "PF_SF",
"size": 1,
"static": "S",
"type": "uint16",
"standards": []
},
{
"desc": "Unused. Please use WUndExtRtgPF.",
"detail": "This point is duplicative of WUndExtRtgPF.",
"label": "PF Under-Excited Rating (Unused)",
"name": "PFUndExtRtg",
"sf": "PF_SF",
"size": 1,
"static": "S",
"type": "uint16",
"standards": []
},
{
"desc": "Reactive susceptance that remains connected to the Area EPS in the cease to energize and trip state.",
"label": "Reactive Susceptance",
"name": "ReactSusceptRtg",
"sf": "S_SF",
"size": 1,
"static": "S",
"type": "uint16",
"units": "S",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Normal operating performance category as specified in IEEE 1547-2018.",
"label": "Normal Operating Category",
"name": "NorOpCatRtg",
"size": 1,
"static": "S",
"symbols": [
{
"label": "Category A",
"name": "CAT_A",
"value": 0
},
{
"label": "Category B",
"name": "CAT_B",
"value": 1
}
],
"type": "enum16",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Abnormal operating performance category as specified in IEEE 1547-2018.",
"label": "Abnormal Operating Category",
"name": "AbnOpCatRtg",
"size": 1,
"static": "S",
"symbols": [
{
"label": "Category I",
"name": "CAT_1",
"value": 0
},
{
"label": "Category II",
"name": "CAT_2",
"value": 1
},
{
"label": "Category III",
"name": "CAT_3",
"value": 2
}
],
"type": "enum16",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Supported control mode functions.",
"label": "Supported Control Modes",
"name": "CtrlModes",
"size": 2,
"static": "S",
"symbols": [
{
"label": "Limit Maximum Active Power",
"name": "MAX_W",
"value": 0
},
{
"label": "Fixed Active Power",
"name": "FIXED_W",
"value": 1
},
{
"label": "Fixed Reactive Power",
"name": "FIXED_VAR",
"value": 2
},
{
"label": "Fixed Power Factor",
"name": "FIXED_PF",
"value": 3
},
{
"label": "Volt-Var Function",
"name": "VOLT_VAR",
"value": 4
},
{
"label": "Freq-Watt Function",
"name": "FREQ_WATT",
"value": 5
},
{
"label": "Dynamic Reactive Current Function",
"name": "DYN_REACT_CURR",
"value": 6
},
{
"label": "Low-Voltage Trip",
"name": "LV_TRIP",
"value": 7
},
{
"label": "High-Voltage Trip",
"name": "HV_TRIP",
"value": 8
},
{
"label": "Watt-Var Function",
"name": "WATT_VAR",
"value": 9
},
{
"label": "Volt-Watt Function",
"name": "VOLT_WATT",
"value": 10
},
{
"label": "Scheduling",
"name": "SCHEDULED",
"value": 11
},
{
"label": "Low-Frequency Trip",
"name": "LF_TRIP",
"value": 12
},
{
"label": "High-Frequency Trip",
"name": "HF_TRIP",
"value": 13
}
],
"type": "bitfield32",
"standards": [
"IEEE 1547-2018"
]
},
{
"desc": "Intentional island categories.",
"label": "Intentional Island Categories",
"name": "IntIslandCatRtg",
"size": 1,
"static": "S",
"symbols": [
{
"label": "Uncategorized",
"name": "UNCATEGORIZED",
"value": 0
},
{
"label": "Intentional Island-Capable",
"name": "INT_ISL_CAPABLE",
"value": 1
},
{
"label": "Black Start-Capable",
"name": "BLACK_START_CAPABLE",
"value": 2
},
{
"label": "Isochronous-Capable",
"name": "ISOCH_CAPABLE",
"value": 3
}
],
"type": "bitfield16",
"standards": []
},
{
"access": "RW",
"comments": [
"Settings - Used to adjust nameplate ratings"
],
"desc": "Maximum active power setting used to adjust maximum active power setting.",
"label": "Active Power Max Setting",
"name": "WMax",
"sf": "W_SF",
"size": 1,
"type": "uint16",
"units": "W",
"standards": []
},
{
"access": "RW",
"desc": "Active power setting at specified over-excited power factor in watts.",
"label": "Active Power (Over-Excited) Setting",
"name": "WMaxOvrExt",
"sf": "W_SF",
"size": 1,
"type": "uint16",
"units": "W",
"standards": []
},
{
"access": "RW",
"desc": "Specified over-excited power factor.",
"label": "Specified Over-Excited PF",
"name": "WOvrExtPF",
"sf": "PF_SF",
"size": 1,
"type": "uint16",
"standards": []
},
{
"access": "RW",
"desc": "Active power setting at specified under-excited power factor in watts.",
"label": "Active Power (Under-Excited) Setting",
"name": "WMaxUndExt",
"sf": "W_SF",
"size": 1,
"type": "uint16",
"units": "W",
"standards": []
},
{
"access": "RW",
"desc": "Specified under-excited power factor.",
"label": "Specified Under-Excited PF",
"name": "WUndExtPF",
"sf": "PF_SF",
"size": 1,
"type": "uint16",
"standards": []
},
{
"access": "RW",
"desc": "Maximum apparent power setting used to adjust maximum apparent power rating.",
"label": "Apparent Power Max Setting",
"name": "VAMax",
"sf": "VA_SF",
"size": 1,
"type": "uint16",
"units": "VA",
"standards": []
},
{
"access": "RW",
"desc": "Maximum injected reactive power setting used to adjust maximum injected reactive power rating.",
"label": "Reactive Power Injected Setting",
"name": "VarMaxInj",
"sf": "Var_SF",
"size": 1,
"type": "uint16",
"units": "Var",
"standards": []
},
{
"access": "RW",
"desc": "Maximum absorbed reactive power setting used to adjust maximum absorbed reactive power rating.",
"label": "Reactive Power Absorbed Setting",
"name": "VarMaxAbs",
"sf": "Var_SF",
"size": 1,
"type": "uint16",
"units": "Var",
"standards": []
},
{
"access": "RW",
"desc": "Maximum active power charge rate setting used to adjust maximum active power charge rate rating.",
"label": "Charge Rate Max Setting",
"name": "WChaRteMax",
"sf": "W_SF",
"size": 1,
"type": "uint16",
"units": "W",
"standards": []
},
{
"access": "RW",
"desc": "Maximum active power discharge rate setting used to adjust maximum active power discharge rate rating.",
"label": "Discharge Rate Max Setting",
"name": "WDisChaRteMax",
"sf": "W_SF",
"size": 1,
"type": "uint16",
"units": "W",
"standards": []
},
{
"access": "RW",
"desc": "Maximum apparent power charge rate setting used to adjust maximum apparent power charge rate rating.",
"label": "Charge Rate Max VA Setting",
"name": "VAChaRteMax",
"sf": "VA_SF",
"size": 1,
"type": "uint16",
"units": "VA",
"standards": []
},
{
"access": "RW",
"desc": "Maximum apparent power discharge rate setting used to adjust maximum apparent power discharge rate rating.",
"label": "Discharge Rate Max VA Setting",
"name": "VADisChaRteMax",
"sf": "VA_SF",
"size": 1,
"type": "uint16",
"units": "VA",
"standards": []
},
{
"access": "RW",
"desc": "Nominal AC voltage setting.",
"label": "Nominal AC Voltage Setting",
"name": "VNom",
"sf": "V_SF",
"size": 1,
"type": "uint16",
"units": "V",
"standards": [],
"detail": "Voltages are LN for single phase DER (e.g. 120 V nominal), LL for split phase DER (e.g. 240 V nominal), and LL for three phase DER (e.g., 480 V nominal)."
},
{
"access": "RW",
"desc": "AC voltage maximum setting used to adjust AC voltage maximum rating.",
"label": "AC Voltage Max Setting",
"name": "VMax",
"sf": "V_SF",
"size": 1,
"type": "uint16",
"units": "V",
"standards": [],
"detail": "Voltages are LN for single phase DER (e.g. 120 V nominal), LL for split phase DER (e.g. 240 V nominal), and LL for three phase DER (e.g., 480 V nominal)."
},
{
"access": "RW",
"desc": "AC voltage minimum setting used to adjust AC voltage minimum rating.",
"label": "AC Voltage Min Setting",
"name": "VMin",
"sf": "V_SF",
"size": 1,
"type": "uint16",
"units": "V",
"standards": [],
"detail": "Voltages are LN for single phase DER (e.g. 120 V nominal), LL for split phase DER (e.g. 240 V nominal), and LL for three phase DER (e.g., 480 V nominal)."
},
{
"access": "RW",
"desc": "Maximum AC current setting used to adjust maximum AC current rating.",
"label": "AC Current Max Setting",
"name": "AMax",
"sf": "A_SF",
"size": 1,
"type": "uint16",
"units": "A",
"standards": []
},
{
"access": "RW",
"desc": "Unused. Please use WOvrExtPF.",
"detail": "This point is duplicative of WOvrExtPF.",
"label": "PF Over-Excited Setting (Unused)",
"name": "PFOvrExt",
"sf": "PF_SF",
"size": 1,
"type": "uint16",
"standards": []
},
{
"access": "RW",
"desc": "Unused. Please use WUndExtPF.",
"detail": "This point is duplicative of WUndExtPF.",
"label": "PF Under-Excited Setting (Unused)",
"name": "PFUndExt",
"sf": "PF_SF",
"size": 1,
"type": "uint16",
"standards": []
},
{
"access": "RW",
"desc": "Intentional island categories.",
"label": "Intentional Island Categories",
"name": "IntIslandCat",
"size": 1,
"symbols": [
{
"label": "Uncategorized",
"name": "UNCATEGORIZED",
"value": 0
},
{
"label": "Intentional Island-Capable",
"name": "INT_ISL_CAPABLE",
"value": 1
},
{
"label": "Black Start-Capable",
"name": "BLACK_START_CAPABLE",
"value": 2
},
{
"label": "Isochronous-Capable",
"name": "ISOCH_CAPABLE",
"value": 3
}
],
"type": "bitfield16",
"standards": []
},
{
"comments": [
"Scale Factors"
],
"desc": "Active power scale factor.",
"label": "Active Power Scale Factor",
"name": "W_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
},
{
"desc": "Power factor scale factor.",
"label": "Power Factor Scale Factor",
"name": "PF_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
},
{
"desc": "Apparent power scale factor.",
"label": "Apparent Power Scale Factor",
"name": "VA_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
},
{
"desc": "Reactive power scale factor.",
"label": "Reactive Power Scale Factor",
"name": "Var_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
},
{
"desc": "Voltage scale factor.",
"label": "Voltage Scale Factor",
"name": "V_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
},
{
"desc": "Current scale factor.",
"label": "Current Scale Factor",
"name": "A_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
},
{
"desc": "Susceptance scale factor.",
"label": "Susceptance Scale Factor",
"name": "S_SF",
"size": 1,
"static": "S",
"type": "sunssf",
"standards": []
}
],
"type": "group"
},
"id": 702
}