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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
|
PM8ECCMIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
AlarmType ::= INTEGER {
overValue( 10 ),
overPower( 11 ),
overReversePower( 12 ),
underValue( 20 ),
underPower( 21 ),
phaseRotationReversal( 51 ),
phaseLossVoltage( 52 ),
phaseLossCurrent( 53 ),
powerFactorLeading( 54 ),
powerFactorLagging( 55 ),
digitalInputOFFtoON( 60 ),
digitalInputONtoOFF( 61 ),
unaryEvent( 70 ),
voltageOrCurrentSwell( 80 ),
voltageOrCurrentSag( 90 ),
combinatorialAND( 100 ),
combinatorialNAND( 101 ),
combinatorialOR( 102 ),
combinatorialNOR( 103 ),
combinatorialXOR( 104 ),
combinatorialNOT( 105 ),
diagnostic( 1280 )
}
IOPointType ::= INTEGER {
digitalInput( 1 ),
digitalOutput( 2 ),
analogInput( 3 ),
analogOutput( 4 )
}
IOPointLabel ::= OCTET STRING (SIZE(0..16))
AlarmLabel ::= OCTET STRING (SIZE(0..16))
schneiderElectric OBJECT IDENTIFIER ::= { enterprises 3833 }
transparentFactoryEthernet OBJECT IDENTIFIER ::= { schneiderElectric 1 }
equipmentProfile OBJECT IDENTIFIER ::= { transparentFactoryEthernet 7 }
tfProducts OBJECT IDENTIFIER ::= { equipmentProfile 255 }
ecc OBJECT IDENTIFIER ::= { tfProducts 15 }
pm8ecc OBJECT IDENTIFIER ::= { ecc 1 }
metering OBJECT IDENTIFIER ::= { pm8ecc 1 }
systemWiringTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SystemWiringTypeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The wiring system type of the host meter."
::= { metering 1 }
systemWiringTypeEntry OBJECT-TYPE
SYNTAX SystemWiringTypeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter System Wiring Type"
INDEX {
swtIndex
}
::= { systemWiringTypeTable 1 }
SystemWiringTypeEntry ::= SEQUENCE {
swtIndex
INTEGER,
swtWiringType
INTEGER
}
swtIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "System Wiring Type Table Index"
::= { systemWiringTypeEntry 1 }
swtWiringType OBJECT-TYPE
SYNTAX INTEGER (10 | 11 | 12 | 30 | 31 | 32 | 40 | 42 | 44)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Single Phase Line to Neutral 2 Wire 1CT 1PT is
'10' Single Phase Line to Line 2 Wire 1CT 1PT
is '11' Single Phase 3-Wire 3 wire 2CT 2PT is
'12' Three Phase 3 Wire 2CT 2PT is '30' Three
Phase 3 Wire 3CT 2PT is '31' Three Phase 3 Wire
1CT 2PT is '32' Three Phase 4 Wire 3CT 3PT is
'40' Three Phase 4 Wire 3CT 2PT is '42' Three
Phase 4 Wire 1CT 3PT is '44'"
::= { systemWiringTypeEntry 2 }
loadCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF LoadCurrentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Load Current Table"
::= { metering 2 }
loadCurrentEntry OBJECT-TYPE
SYNTAX LoadCurrentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Load Current Table"
INDEX {
lcIndex
}
::= { loadCurrentTable 1 }
LoadCurrentEntry ::= SEQUENCE {
lcIndex
INTEGER,
lcIa
OCTET STRING,
lcIb
OCTET STRING,
lcIc
OCTET STRING,
lcIAvg
OCTET STRING
}
lcIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Load Current Table Index"
::= { loadCurrentEntry 1 }
lcIa OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Load Current Phase A Units = A (Amps)"
::= { loadCurrentEntry 2 }
lcIb OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Load Current Phase B Units = A (Amps)"
::= { loadCurrentEntry 3 }
lcIc OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Load Current Phase C Units = A (Amps)"
::= { loadCurrentEntry 4 }
lcIAvg OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Load Current 3 Phase Average Units
= A (Amps)"
::= { loadCurrentEntry 5 }
powerTable OBJECT-TYPE
SYNTAX SEQUENCE OF PowerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Power Table"
::= { metering 3 }
powerEntry OBJECT-TYPE
SYNTAX PowerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Power Table"
INDEX {
pIndex
}
::= { powerTable 1 }
PowerEntry ::= SEQUENCE {
pIndex
INTEGER,
pReal
OCTET STRING,
pReactive
OCTET STRING,
pApparent
OCTET STRING
}
pIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Power Table Index"
::= { powerEntry 1 }
pReal OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Real Power Units = kW"
::= { powerEntry 2 }
pReactive OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Reactive Power Units = kVAR"
::= { powerEntry 3 }
pApparent OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Apparent Power Units = kVA"
::= { powerEntry 4 }
powerFactorTable OBJECT-TYPE
SYNTAX SEQUENCE OF PowerFactorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Power Factor Table"
::= { metering 4 }
powerFactorEntry OBJECT-TYPE
SYNTAX PowerFactorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Power Factor Table"
INDEX {
pfIndex
}
::= { powerFactorTable 1 }
PowerFactorEntry ::= SEQUENCE {
pfIndex
INTEGER,
pfPowerFactorTotal
OCTET STRING,
pfPowerFactorDescription
OCTET STRING
}
pfIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Power Factor Table Index"
::= { powerFactorEntry 1 }
pfPowerFactorTotal OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter 3 Phase Total Power Factor"
::= { powerFactorEntry 2 }
pfPowerFactorDescription OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Describes the current power factor Lead/Lag for
IEEE mode Cap/Ind for IEC mode"
::= { powerFactorEntry 3 }
voltageTable OBJECT-TYPE
SYNTAX SEQUENCE OF VoltageEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Voltage Table"
::= { metering 5 }
voltageEntry OBJECT-TYPE
SYNTAX VoltageEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Voltage Table"
INDEX {
vIndex
}
::= { voltageTable 1 }
VoltageEntry ::= SEQUENCE {
vIndex
INTEGER,
vVab
OCTET STRING,
vVbc
OCTET STRING,
vVca
OCTET STRING,
vVllAvg
OCTET STRING,
vVan
OCTET STRING,
vVbn
OCTET STRING,
vVcn
OCTET STRING,
vVlnAvg
OCTET STRING
}
vIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Voltage Table Index"
::= { voltageEntry 1 }
vVab OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line A to Line B Units = V
(Volts)"
::= { voltageEntry 2 }
vVbc OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line B to Line C Units = V
(Volts)"
::= { voltageEntry 3 }
vVca OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line C to Line A Units = V
(Volts)"
::= { voltageEntry 4 }
vVllAvg OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line to Line Average Voltage
Units = V (Volts)"
::= { voltageEntry 5 }
vVan OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line A to Neutral Units = V
(Volts)"
::= { voltageEntry 6 }
vVbn OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line B to Neutral Units = V
(Volts)"
::= { voltageEntry 7 }
vVcn OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line C to Neutral Units = V
(Volts)"
::= { voltageEntry 8 }
vVlnAvg OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Voltage Line to Neutral 3 Phase Average
Units = V (Volts)"
::= { voltageEntry 9 }
frequencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrequencyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Frequency Table"
::= { metering 6 }
frequencyEntry OBJECT-TYPE
SYNTAX FrequencyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Frequency Table"
INDEX {
fIndex
}
::= { frequencyTable 1 }
FrequencyEntry ::= SEQUENCE {
fIndex
INTEGER,
fFrequency
OCTET STRING
}
fIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Frequency Table Index"
::= { frequencyEntry 1 }
fFrequency OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Frequency Units = Hz"
::= { frequencyEntry 2 }
currentDemandTable OBJECT-TYPE
SYNTAX SEQUENCE OF CurrentDemandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Current Demand Table"
::= { metering 7 }
currentDemandEntry OBJECT-TYPE
SYNTAX CurrentDemandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Current Demand Table"
INDEX {
cdPhase,
cdIndex
}
::= { currentDemandTable 1 }
CurrentDemandEntry ::= SEQUENCE {
cdIndex
INTEGER,
cdPhase
OCTET STRING,
cdPresentCurrentDemand
OCTET STRING,
cdPeakCurrentDemand
OCTET STRING,
cdLastCurrentDemand
OCTET STRING,
cdPeakDateTime
OCTET STRING,
cdResetDateTime
OCTET STRING,
cdPhaseEnum
INTEGER
}
cdIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Demand Current Table Index"
::= { currentDemandEntry 1 }
cdPhase OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Current Demand Phase Name"
::= { currentDemandEntry 2 }
cdPresentCurrentDemand OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Present Demand Current Units = A (Amps)"
::= { currentDemandEntry 3 }
cdPeakCurrentDemand OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Peak Current Demand Units = A (Amps)"
::= { currentDemandEntry 4 }
cdLastCurrentDemand OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Current Demand Last Interval Units
= A (Amps)"
::= { currentDemandEntry 5 }
cdPeakDateTime OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Peak Current Demand Date and Time"
::= { currentDemandEntry 6 }
cdResetDateTime OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Date and Time of Demand Current Reset"
::= { currentDemandEntry 7 }
cdPhaseEnum OBJECT-TYPE
SYNTAX INTEGER {
currentPhaseA( 1 ),
currentPhaseB( 2 ),
currentPhaseC( 3 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Current Demand Phase"
::= { currentDemandEntry 8 }
powerDemandTable OBJECT-TYPE
SYNTAX SEQUENCE OF PowerDemandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Power Demand"
::= { metering 8 }
powerDemandEntry OBJECT-TYPE
SYNTAX PowerDemandEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Power Demand Table"
INDEX {
pdComponent,
pdIndex
}
::= { powerDemandTable 1 }
PowerDemandEntry ::= SEQUENCE {
pdIndex
INTEGER,
pdComponent
OCTET STRING,
pdPresentPowerDemand
OCTET STRING,
pdPeakPowerDemand
OCTET STRING,
pdLastPowerDemand
OCTET STRING,
pdPeakDateTime
OCTET STRING,
pdResetDateTime
OCTET STRING,
pdComponentEnum
INTEGER
}
pdIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Power Demand Table Index"
::= { powerDemandEntry 1 }
pdComponent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Power Demand Component Units: Real
= kW Reacitve = kVAR Apparent = kVA"
::= { powerDemandEntry 2 }
pdPresentPowerDemand OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Present Demand Power"
::= { powerDemandEntry 3 }
pdPeakPowerDemand OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Peak Power Demand"
::= { powerDemandEntry 4 }
pdLastPowerDemand OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Power Demand Last Interval"
::= { powerDemandEntry 5 }
pdPeakDateTime OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Peak Power Demand Date and Time"
::= { powerDemandEntry 6 }
pdResetDateTime OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Date and Time of Power Demand Reset"
::= { powerDemandEntry 7 }
pdComponentEnum OBJECT-TYPE
SYNTAX INTEGER {
realPower( 1 ),
reactivePower( 2 ),
apparentPower( 3 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Power Demand Component"
::= { powerDemandEntry 8 }
energyTable OBJECT-TYPE
SYNTAX SEQUENCE OF EnergyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Energy Table"
::= { metering 9 }
energyEntry OBJECT-TYPE
SYNTAX EnergyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Energy Table"
INDEX {
eIndex
}
::= { energyTable 1 }
EnergyEntry ::= SEQUENCE {
eIndex
INTEGER,
eRealEnergy
OCTET STRING,
eDateTimeRealEnergyReset
OCTET STRING,
eReactiveEnergy
OCTET STRING,
eDateTimeReactiveEnergyReset
OCTET STRING,
eApparentEnergy
OCTET STRING,
eDateTimeApparentEnergyReset
OCTET STRING
}
eIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Energy Table Index"
::= { energyEntry 1 }
eRealEnergy OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Real Energy Units = Wh"
::= { energyEntry 2 }
eDateTimeRealEnergyReset OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Date and Time Real Energy Accumulation
was reset"
::= { energyEntry 3 }
eReactiveEnergy OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Reactive Energy Units = VARh"
::= { energyEntry 4 }
eDateTimeReactiveEnergyReset OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Date and Time Reative Energy Accumulation
was reset"
::= { energyEntry 5 }
eApparentEnergy OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Apparent Energy Units = VAh"
::= { energyEntry 6 }
eDateTimeApparentEnergyReset OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Date and Time Reactive Energy Accumulation
was reset"
::= { energyEntry 7 }
alarms OBJECT IDENTIFIER ::= { pm8ecc 2 }
alarmConfigurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmConfigurationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Displays the current configuration of the Host
Meter On-board alarms"
::= { alarms 1 }
alarmConfigurationEntry OBJECT-TYPE
SYNTAX AlarmConfigurationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Contains configuration information for the Host
Meter On-board Alarms"
INDEX {
acIndex,
acPosition
}
::= { alarmConfigurationTable 1 }
AlarmConfigurationEntry ::= SEQUENCE {
acIndex
INTEGER,
acPosition
INTEGER,
acAlarmLabel
AlarmLabel,
acEnabled
INTEGER,
acStatus
INTEGER,
acCounter
INTEGER,
acPriority
INTEGER,
acType
AlarmType,
acAlarmList1
INTEGER,
acAlarmList2
INTEGER,
acAlarmList3
INTEGER,
acAlarmList4
INTEGER
}
acIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Alarm Configuration Table Index"
::= { alarmConfigurationEntry 1 }
acPosition OBJECT-TYPE
SYNTAX INTEGER (1..74)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the position of the alarm. 1 - 74"
::= { alarmConfigurationEntry 2 }
acAlarmLabel OBJECT-TYPE
SYNTAX AlarmLabel
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the alarm (user configurable)"
::= { alarmConfigurationEntry 3 }
acEnabled OBJECT-TYPE
SYNTAX INTEGER (0 | 255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates whether the alarm is enabled or not.
0 = Disabled 255 = Enabled"
::= { alarmConfigurationEntry 4 }
acStatus OBJECT-TYPE
SYNTAX INTEGER (0..1)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates whether the alarm is active. 0 = Inactive
1 = Active"
::= { alarmConfigurationEntry 5 }
acCounter OBJECT-TYPE
SYNTAX INTEGER (0..32767)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the number of times the alarm has been
activated. Note: This counter resets at 32767"
::= { alarmConfigurationEntry 6 }
acPriority OBJECT-TYPE
SYNTAX INTEGER (0..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The priority of the alarm. 0 = No Priority 1 =
Low Priority 2 = Medium Priority 3 = High Priority"
::= { alarmConfigurationEntry 7 }
acType OBJECT-TYPE
SYNTAX AlarmType
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the type of the alarm."
::= { alarmConfigurationEntry 8 }
acAlarmList1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Used for combinatorial type alarms - The position
of the first alarm that is used to evaluate the
alarm state."
::= { alarmConfigurationEntry 9 }
acAlarmList2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Used for combinatorial type alarms - The position
of the second alarm that is used to evaluate
the alarm state."
::= { alarmConfigurationEntry 10 }
acAlarmList3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Used for combinatorial type alarms - The position
of the third alarm that is used to evaluate the
alarm state."
::= { alarmConfigurationEntry 11 }
acAlarmList4 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Used for combinatorial type alarms - The position
of the fourth alarm that is used to evaluate
the alarm state."
::= { alarmConfigurationEntry 12 }
alarmSummaryBitmapsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmSummaryBitmapsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Indicates the state of the Host Meter On-Board
Alarms"
::= { alarms 2 }
alarmSummaryBitmapsEntry OBJECT-TYPE
SYNTAX AlarmSummaryBitmapsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Indicates the status of the Host Meter On-Board
Alarms"
INDEX {
alSumIndex
}
::= { alarmSummaryBitmapsTable 1 }
AlarmSummaryBitmapsEntry ::= SEQUENCE {
alSumIndex
INTEGER,
alSumAlarms1to16
OCTET STRING,
alSumAlarms17to32
OCTET STRING,
alSumAlarms33to48
OCTET STRING,
alSumAlarms49to64
OCTET STRING,
alSumAlarms65to74
OCTET STRING
}
alSumIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Alarm Summary Bitmap Table Index"
::= { alarmSummaryBitmapsEntry 1 }
alSumAlarms1to16 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the status of Alarms 1 - 16 (16-bits,
bit-0 = Alarm 1)"
::= { alarmSummaryBitmapsEntry 2 }
alSumAlarms17to32 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the status of Alarms 17 - 32 (16-bits,
bit-0 = Alarm 17)"
::= { alarmSummaryBitmapsEntry 3 }
alSumAlarms33to48 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the status of Alarms 33 - 48 (16-bits,
bit-0 = Alarm 33)"
::= { alarmSummaryBitmapsEntry 4 }
alSumAlarms49to64 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the status of Alarms 49 - 64 (16-bits,
bit-0 = Alarm 49)"
::= { alarmSummaryBitmapsEntry 5 }
alSumAlarms65to74 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the status of Alarms 65 - 74 (16-bits,
bit-0 = Alarm 65, bit-9 = Alarm 74)"
::= { alarmSummaryBitmapsEntry 6 }
alarmCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlarmCountersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter On-Board Alarm Counters"
::= { alarms 3 }
alarmCountersEntry OBJECT-TYPE
SYNTAX AlarmCountersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter On-Board Alarm Counters"
INDEX {
alCntAlarmPosition,
alCntIndex
}
::= { alarmCountersTable 1 }
AlarmCountersEntry ::= SEQUENCE {
alCntIndex
INTEGER,
alCntAlarmPosition
INTEGER,
alCntCount
INTEGER
}
alCntIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Alarm Counters Table Index"
::= { alarmCountersEntry 1 }
alCntAlarmPosition OBJECT-TYPE
SYNTAX INTEGER (1..74)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Host Meter Alarm Position"
::= { alarmCountersEntry 2 }
alCntCount OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of times the Host Meter On-Board alarm
has transitioned from an inactive state to an
active state"
::= { alarmCountersEntry 3 }
io OBJECT IDENTIFIER ::= { pm8ecc 3 }
ioOptionIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF IoOptionIDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "I/O Option Module Installed on the Host Meter"
::= { io 1 }
ioOptionIDEntry OBJECT-TYPE
SYNTAX IoOptionIDEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "I/O Option Card Installed On-board the Host Meter"
INDEX {
ioIDIndex
}
::= { ioOptionIDTable 1 }
IoOptionIDEntry ::= SEQUENCE {
ioIDIndex
INTEGER,
ioIDInstalledOptionSlot1
INTEGER,
ioIDInstalledOptionSlot2
INTEGER
}
ioIDIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "I/O Installed Option ID Table Index"
::= { ioOptionIDEntry 1 }
ioIDInstalledOptionSlot1 OBJECT-TYPE
SYNTAX INTEGER {
unused( 1 ),
io-22( 2 ),
io-26( 3 ),
io-2222( 4 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "0 = Not Installed 1 = Unused 2 = IO22 3 = IO26
4 = IO 2222"
::= { ioOptionIDEntry 2 }
ioIDInstalledOptionSlot2 OBJECT-TYPE
SYNTAX INTEGER {
unused( 1 ),
io-22( 2 ),
io-26( 3 ),
io-2222( 4 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "0 = Not Installed 1 = Unused 2 = IO22 3 = IO26
4 = IO 2222"
::= { ioOptionIDEntry 3 }
ioConfigurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF IoConfigurationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Displays the current I/O configuration for each
I/O point"
::= { io 2 }
ioConfigurationEntry OBJECT-TYPE
SYNTAX IoConfigurationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Contains configuration information for the Host
Meter On-board I/O"
INDEX {
iocIndex,
iocPointNumber
}
::= { ioConfigurationTable 1 }
IoConfigurationEntry ::= SEQUENCE {
iocIndex
INTEGER,
iocPointNumber
INTEGER,
iocLabel
IOPointLabel,
iocStateOrValue
OCTET STRING,
iocPointType
IOPointType,
iocMode
INTEGER,
iocType
INTEGER,
iocCount
OCTET STRING
}
iocIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "I/O Configuration Table Index"
::= { ioConfigurationEntry 1 }
iocPointNumber OBJECT-TYPE
SYNTAX INTEGER (1..18)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The point number for this I/O Point"
::= { ioConfigurationEntry 2 }
iocLabel OBJECT-TYPE
SYNTAX IOPointLabel
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the I/O Point (user configurable)"
::= { ioConfigurationEntry 3 }
iocStateOrValue OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Displays the current value for the I/O Point Digial
I/O: 1 = Active or 0 = Inactive
Analog I/O: Scaled input/output value"
::= { ioConfigurationEntry 4 }
iocPointType OBJECT-TYPE
SYNTAX IOPointType
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of I/O at this point"
::= { ioConfigurationEntry 5 }
iocMode OBJECT-TYPE
SYNTAX INTEGER (0..9)
ACCESS read-only
STATUS mandatory
DESCRIPTION "For Digital Inputs and Outputs this object is
always 0 indicating Discrete.
For Analog Inputs and Outputs this object indicates
the range of analog I/O values (used without
units) 0 = 0 1 1 = 0 5 2 = 0 10 3 = 0
20 4 = 1 5 5 = 4 20 6 = -5 5 7 = -10
10 8 = -100 100 9 = User defined (values default
to 0)"
::= { ioConfigurationEntry 6 }
iocType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "For Digital Inputs this object indicates input
type 1 = Unused 2 = AC/DC
For Digital Outputs this object indicates output
type 1 = solid state relay 2 = electromechanical
relay
For Analog Inputs and Outputs this object indicates
the digital resolution of the I/O hardware. 0
= 8-Bit, unipolar 1 = 10-Bit, unipolar 2 = 12-Bit,
unipolar 3 = 14-Bit, unipolar 4 = 16-Bit, unipolar
5 = 16-Bit, bipolar with sign 6 = reserved 7
= reserved 8 = Resolution for IO2222 Voltage
range 0 - 4000 9 = Resolution for IO2222 Current
range 800 - 4000"
::= { ioConfigurationEntry 7 }
iocCount OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Number of times digital I/O point has transitioned
from OFF to ON"
::= { ioConfigurationEntry 8 }
ioStatusBitmapsTable OBJECT-TYPE
SYNTAX SEQUENCE OF IoStatusBitmapsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter I/O Status Bitmaps"
::= { io 3 }
ioStatusBitmapsEntry OBJECT-TYPE
SYNTAX IoStatusBitmapsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter On-Board I/O Status Bitmaps"
INDEX {
ioStatIndex
}
::= { ioStatusBitmapsTable 1 }
IoStatusBitmapsEntry ::= SEQUENCE {
ioStatIndex
INTEGER,
ioStatSummaryBitmap
OCTET STRING
}
ioStatIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "I/O Summary Bitmaps Table Index"
::= { ioStatusBitmapsEntry 1 }
ioStatSummaryBitmap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(18))
ACCESS read-only
STATUS mandatory
DESCRIPTION "Indicates the Status of the Host Meter I/O Points
Bit-0 = I/O Point 1 Bit-1 = I/O Point 2 ... Bit-17
= I/O Point 18"
::= { ioStatusBitmapsEntry 2 }
meterSystem OBJECT IDENTIFIER ::= { pm8ecc 4 }
meterIdentificationTable OBJECT-TYPE
SYNTAX SEQUENCE OF MeterIdentificationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Identification"
::= { meterSystem 1 }
meterIdentificationEntry OBJECT-TYPE
SYNTAX MeterIdentificationEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Host Meter Identification"
INDEX {
midIndex
}
::= { meterIdentificationTable 1 }
MeterIdentificationEntry ::= SEQUENCE {
midIndex
INTEGER,
midSerialNumber
INTEGER,
midFirmwareVersion
OCTET STRING,
midModelNumber
OCTET STRING,
midDeviceName
OCTET STRING
}
midIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION "Meter Identification Table Index"
::= { meterIdentificationEntry 1 }
midSerialNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host meter 32 bit Serial Number"
::= { meterIdentificationEntry 2 }
midFirmwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Firmware Version"
::= { meterIdentificationEntry 3 }
midModelNumber OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Model Number"
::= { meterIdentificationEntry 4 }
midDeviceName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "Host Meter Label plus Nameplate"
::= { meterIdentificationEntry 5 }
trapVariables OBJECT IDENTIFIER ::= { pm8ecc 5 }
alarmDateAndTime OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Date and Time of the alarm state change."
::= { trapVariables 1 }
alarmLabel OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Descriptive Label given to the alarm"
::= { trapVariables 2 }
alarmState OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "The state of the Alarm - pickup, dropout, unary,
diagnostic"
::= { trapVariables 3 }
alarmValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The value of the alarm when it changed state."
::= { trapVariables 4 }
alarmPriority OBJECT-TYPE
SYNTAX INTEGER {
highPriority( 1 ),
mediumPriority( 2 ),
lowPriority( 3 )
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The priority defined for the alarm."
::= { trapVariables 5 }
mibVersion OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION "This is the current version of the MIB"
::= { pm8ecc 6 }
pm8OnBoardAlarmP1 TRAP-TYPE
ENTERPRISE pm8ecc
VARIABLES {
alarmDateAndTime,
alarmLabel,
alarmState,
alarmValue,
alarmPriority
}
DESCRIPTION "Indicates the Host Meter On-Board Alarm system has
detected a state change of an enabled alarm with a
priority of 1"
::= 1
pm8OnBoardAlarmP2 TRAP-TYPE
ENTERPRISE pm8ecc
VARIABLES {
alarmDateAndTime,
alarmLabel,
alarmState,
alarmValue,
alarmPriority
}
DESCRIPTION "Indicates the Host Meter On-Board Alarm system has
detected a state change of an enabled alarm with a
priority of 2"
::= 2
pm8OnBoardAlarmP3 TRAP-TYPE
ENTERPRISE pm8ecc
VARIABLES {
alarmDateAndTime,
alarmLabel,
alarmState,
alarmValue,
alarmPriority
}
DESCRIPTION "Indicates the Host Meter On-Board Alarm system has
detected a state change of an enabled alarm with a
priority of 3"
::= 3
END
|