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 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
|
<pre>Internet Engineering Task Force (IETF) B. Schoening
Request for Comments: 7603 Independent Consultant
Category: Standards Track M. Chandramouli
ISSN: 2070-1721 Cisco Systems, Inc.
B. Nordman
Lawrence Berkeley National Lab
August 2015
<span class="h1">Energy Management (EMAN) Applicability Statement</span>
Abstract
The objective of Energy Management (EMAN) is to provide an energy
management framework for networked devices. This document presents
the applicability of the EMAN information model in a variety of
scenarios with cases and target devices. These use cases are useful
for identifying requirements for the framework and MIBs. Further, we
describe the relationship of the EMAN framework to other relevant
energy monitoring standards and architectures.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7603">http://www.rfc-editor.org/info/rfc7603</a>.
<span class="grey">Schoening, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction ................................................. <a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Energy Management Overview ............................... <a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. EMAN Document Overview ................................... <a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Energy Measurement ....................................... <a href="#page-5">5</a>
<a href="#section-1.4">1.4</a>. Energy Management ........................................ <a href="#page-5">5</a>
<a href="#section-1.5">1.5</a>. EMAN Framework Application ............................... <a href="#page-6">6</a>
<a href="#section-2">2</a>. Scenarios and Target Devices ................................. <a href="#page-6">6</a>
<a href="#section-2.1">2.1</a>. Network Infrastructure Energy Objects .................... <a href="#page-6">6</a>
<a href="#section-2.2">2.2</a>. Devices Powered and Connected by a Network Device ........ <a href="#page-7">7</a>
<a href="#section-2.3">2.3</a>. Devices Connected to a Network ........................... <a href="#page-8">8</a>
<a href="#section-2.4">2.4</a>. Power Meters ............................................. <a href="#page-9">9</a>
<a href="#section-2.5">2.5</a>. Mid-level Managers ...................................... <a href="#page-10">10</a>
<a href="#section-2.6">2.6</a>. Non-residential Building System Gateways ................ <a href="#page-10">10</a>
<a href="#section-2.7">2.7</a>. Home Energy Gateways .................................... <a href="#page-11">11</a>
<a href="#section-2.8">2.8</a>. Data Center Devices ..................................... <a href="#page-12">12</a>
<a href="#section-2.9">2.9</a>. Energy Storage Devices .................................. <a href="#page-13">13</a>
<a href="#section-2.10">2.10</a>. Industrial Automation Networks ......................... <a href="#page-14">14</a>
<a href="#section-2.11">2.11</a>. Printers ............................................... <a href="#page-14">14</a>
<a href="#section-2.12">2.12</a>. Demand Response ........................................ <a href="#page-15">15</a>
<a href="#section-3">3</a>. Use Case Patterns ........................................... <a href="#page-16">16</a>
<a href="#section-3.1">3.1</a>. Metering ................................................ <a href="#page-16">16</a>
<a href="#section-3.2">3.2</a>. Metering and Control .................................... <a href="#page-16">16</a>
<a href="#section-3.3">3.3</a>. Power Supply, Metering and Control ...................... <a href="#page-16">16</a>
<a href="#section-3.4">3.4</a>. Multiple Power Sources .................................. <a href="#page-16">16</a>
<a href="#section-4">4</a>. Relationship of EMAN to Other Standards ..................... <a href="#page-17">17</a>
<a href="#section-4.1">4.1</a>. Data Model and Reporting ................................ <a href="#page-17">17</a>
<a href="#section-4.1.1">4.1.1</a>. IEC - CIM........................................ <a href="#page-17">17</a>
<a href="#section-4.1.2">4.1.2</a>. DMTF............................................. <a href="#page-17">17</a>
<a href="#section-4.1.3">4.1.3</a>. ODVA............................................. <a href="#page-19">19</a>
<a href="#section-4.1.4">4.1.4</a>. Ecma SDC......................................... <a href="#page-19">19</a>
<a href="#section-4.1.5">4.1.5</a>. PWG.............................................. <a href="#page-19">19</a>
<span class="grey">Schoening, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<a href="#section-4.1.6">4.1.6</a>. ASHRAE........................................... <a href="#page-20">20</a>
<a href="#section-4.1.7">4.1.7</a>. ANSI/CEA......................................... <a href="#page-21">21</a>
<a href="#section-4.1.8">4.1.8</a>. ZigBee........................................... <a href="#page-21">21</a>
<a href="#section-4.2">4.2</a>. Measurement ............................................. <a href="#page-22">22</a>
<a href="#section-4.2.1">4.2.1</a>. ANSI C12......................................... <a href="#page-22">22</a>
<a href="#section-4.2.2">4.2.2</a>. IEC 62301........................................ <a href="#page-22">22</a>
<a href="#section-4.3">4.3</a>. Other ................................................... <a href="#page-22">22</a>
<a href="#section-4.3.1">4.3.1</a>. ISO.............................................. <a href="#page-22">22</a>
<a href="#section-4.3.2">4.3.2</a>. Energy Star...................................... <a href="#page-23">23</a>
<a href="#section-4.3.3">4.3.3</a>. Smart Grid....................................... <a href="#page-23">23</a>
<a href="#section-5">5</a>. Limitations ................................................. <a href="#page-24">24</a>
<a href="#section-6">6</a>. Security Considerations ..................................... <a href="#page-24">24</a>
<a href="#section-7">7</a>. References .................................................. <a href="#page-25">25</a>
<a href="#section-7.1">7.1</a>. Normative References .................................... <a href="#page-25">25</a>
<a href="#section-7.2">7.2</a>. Informative References .................................. <a href="#page-25">25</a>
Acknowledgements ............................................... <a href="#page-27">27</a>
Authors' Addresses ............................................. <a href="#page-28">28</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The focus of the Energy Management (EMAN) framework is energy
monitoring and management of energy objects [<a href="./rfc7326" title=""Energy Management Framework"">RFC7326</a>]. The scope of
devices considered are network equipment and their components, and
devices connected directly or indirectly to the network. The EMAN
framework enables monitoring of heterogeneous devices to report their
energy consumption and, if permissible, control. There are multiple
scenarios where this is desirable, particularly considering the
increased importance of limiting consumption of finite energy
resources and reducing operational expenses.
The EMAN framework [<a href="./rfc7326" title=""Energy Management Framework"">RFC7326</a>] describes how energy information can be
retrieved from IP-enabled devices using Simple Network Management
Protocol (SNMP), specifically, Management Information Base (MIB)
modules for SNMP.
This document describes typical applications of the EMAN framework as
well as its opportunities and limitations. It also reviews other
standards that are similar in part to EMAN but address different
domains, describing how those other standards relate to the EMAN
framework.
The rest of the document is organized as follows. <a href="#section-2">Section 2</a> contains
a list of use cases or network scenarios that EMAN addresses.
<a href="#section-3">Section 3</a> contains an abstraction of the use case scenarios to
distinct patterns. <a href="#section-4">Section 4</a> deals with other standards related and
applicable to EMAN.
<span class="grey">Schoening, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Energy Management Overview</span>
EMAN addresses the electrical energy consumed by devices connected to
a network. A first step to increase the energy efficiency in
networks and the devices attached to the network is to enable energy
objects to report their energy usage over time. The EMAN framework
addresses this problem with an information model for electrical
equipment: energy object identification, energy object context, power
measurement, and power characteristics.
The EMAN framework defines SNMP MIB modules based on the information
model. By implementing these SNMP MIB modules, an energy object can
report its energy consumption according to the information model.
Based on the information model, the MIB documents specify SNMP MIB
modules, but it is equally possible to use other mechanisms such as
YANG module, Network Conference Protocol (NETCONF), etc.
In that context, it is important to distinguish energy objects that
can only report their own energy usage from devices that can also
collect and aggregate energy usage of other energy objects.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. EMAN Document Overview</span>
The EMAN work consists of the following Standard Track and
Informational documents in the area of energy management.
Applicability Statement (this document)
Requirements [<a href="./rfc6988" title=""Requirements for Energy Management"">RFC6988</a>]: This document presents requirements of
energy management and the scope of the devices considered.
Framework [<a href="./rfc7326" title=""Energy Management Framework"">RFC7326</a>]: This document defines a framework for
providing energy management for devices within or connected to
communication networks and lists the definitions for the common
terms used in these documents.
Energy Object Context MIB [<a href="./rfc7461" title=""Energy Object Context MIB"">RFC7461</a>]: This document defines a MIB
module that characterizes a device's identity, context, and
relationships to other entities.
Monitoring and Control MIB [<a href="./rfc7460" title=""Monitoring and Control MIB for Power and Energy"">RFC7460</a>]: This document defines a MIB
module for monitoring the power and energy consumption of a
device.
The MIB module contains an optional module for metrics
associated with power characteristics.
<span class="grey">Schoening, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
Battery MIB [<a href="./rfc7577" title=""Definition of Managed Objects for Battery Monitoring"">RFC7577</a>]: This document defines a MIB module for
monitoring characteristics of an internal battery.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Energy Measurement</span>
It is increasingly common for today's smart devices to measure and
report their own energy consumption. Intelligent power strips and
some Power over Ethernet (PoE) switches can meter consumption of
connected devices. However, when managed and reported through
proprietary means, this information is difficult to view at the
enterprise level.
The primary goal of the EMAN information model is to enable reporting
and management within a standard framework that is applicable to a
wide variety of end devices, meters, and proxies. This enables a
management system to know who's consuming what, when, and how by
leveraging existing networks across various equipment in a unified
and consistent manner.
Because energy objects may both consume energy and provide energy to
other devices, there are three types of energy measurement: energy
input to a device, energy supplied to other devices, and net
(resultant) energy consumed (the difference between energy input and
supplied).
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Energy Management</span>
The EMAN framework provides mechanisms for energy control in addition
to passive monitoring. There are many cases where active energy
control of devices is desirable, for example, during low device
utilization or peak electrical price periods.
Energy control can be as simple as controlling on/off states. In
many cases, however, energy control requires understanding the energy
object context. For instance, during non-business hours in a
commercial building, some phones must remain available in case of
emergency, and office cooling is not usually turned off completely,
but the comfort level is reduced.
Energy object control therefore requires flexibility and support for
different policies and mechanisms: from centralized management by an
energy management system to autonomous control by individual devices
and alignment with dynamic demand-response mechanisms.
The power states specified in the EMAN framework can be used in
demand-response scenarios. In response to time-of-day fluctuation of
energy costs or grid power shortages, network devices can respond and
reduce their energy consumption.
<span class="grey">Schoening, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h3"><a class="selflink" id="section-1.5" href="#section-1.5">1.5</a>. EMAN Framework Application</span>
A Network Management System (NMS) is an entity that requests
information from compatible devices, typically using the SNMP
protocol. An NMS may implement many network management functions,
such as security or identity management. An NMS that deals
exclusively with energy is called an Energy Management System (EnMS).
It may be limited to monitoring energy use, or it may also implement
control functions. An EnMS collects energy information for devices
in the network.
Energy management can be implemented by extending existing SNMP
support with EMAN-specific MIBs. SNMP provides an industry-proven
and well-known mechanism to discover, secure, measure, and control
SNMP-enabled end devices. The EMAN framework provides an information
and data model to unify access to a large range of devices.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Scenarios and Target Devices</span>
This section presents energy management scenarios that the EMAN
framework should solve. Each scenario lists target devices for which
the energy management framework can be applied, how the reported-on
devices are powered, and how the reporting or control is
accomplished. While there is some overlap between some of the use
cases, the use cases illustrate network scenarios that the EMAN
framework supports.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Network Infrastructure Energy Objects</span>
This scenario covers the key use case of network devices and their
components. For a device aware of one or more components, our
information model supports monitoring and control at the component
level. Typically, the chassis draws power from one or more sources
and feeds its internal components. It is highly desirable to have
monitoring available for individual components, such as line cards,
processors, disk drives, and peripherals such as USB devices.
As an illustrative example, consider a switch with the following
grouping of subentities for which energy management could be useful.
o Physical view: chassis (or stack), line cards, and service
modules of the switch.
o Component view: CPU, Application-Specific Integrated Circuits
(ASICs), fans, power supply, ports (single port and port
groups), storage, and memory.
<span class="grey">Schoening, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
The ENTITY-MIB [<a href="./rfc6933" title=""Entity MIB (Version 4)"">RFC6933</a>] provides a containment model for uniquely
identifying the physical subcomponents of network devices. The
containment information identifies whether one Energy Object belongs
to another Energy Object (e.g., a line-card Energy Object contained
in a chassis Energy Object). The mapping table,
entPhysicalContainsTable, has an index, entPhysicalChildIndex, and
the table, entPhysicalTable, has a MIB object,
entPhysicalContainedIn, that points to the containing entity.
The essential properties of this use case are:
o Target devices: network devices such as routers and switches,
as well as their components.
o How powered: typically by a Power Distribution Unit (PDU) on a
rack or from a wall outlet. The components of a device are
powered by the device chassis.
o Reporting: Direct power measurement can be performed at a
device level. Components can report their power consumption
directly, or the chassis/device can report on behalf of some
components.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Devices Powered and Connected by a Network Device</span>
This scenario covers Power Sourcing Equipment (PSE) devices. A PSE
device (e.g., a PoE switch) provides power to a Powered Device (PD)
(e.g., a desktop phone) over a medium such as USB or Ethernet
[<a href="./rfc3621" title=""Power Ethernet MIB"">RFC3621</a>]. For each port, the PSE can control the power supply
(switching it on and off) and usually meter actual power provided.
PDs obtain network connectivity as well as power over a single
connection so the PSE can determine which device is associated with
each port.
PoE ports on a switch are commonly connected to devices such as IP
phones, wireless access points, and IP cameras. The switch needs
power for its internal use and to supply power to PoE ports.
Monitoring the power consumption of the switch (supplying device) and
the power consumption of the PoE endpoints (consuming devices) is a
simple use case of this scenario.
This scenario illustrates the relationships between entities. The
PoE IP phone is powered by the switch. If there are many IP phones
connected to the same switch, the power consumption of all the IP
phones can be aggregated by the switch.
<span class="grey">Schoening, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
The essential properties of this use case are:
Target devices: Power over Ethernet devices such as IP phones,
wireless access points, and IP cameras.
How powered: PoE devices are connected to the switch port that
supplies power to those devices.
Reporting: PoE device power consumption is measured and reported
by the switch (PSE) that supplies power. In addition, some
edge devices can support the EMAN framework.
This use case can be divided into two subcases:
a) The endpoint device supports the EMAN framework, in which case
this device is an EMAN Energy Object by itself with its own
Universally Unique Identifier (UUID). The device is
responsible for its own power reporting and control. See the
related scenario "Devices Connected to a Network" below.
b) The endpoint device does not have EMAN capabilities, and the
power measurement may not be able to be performed independently
and is therefore only performed by the supplying device. This
scenario is similar to the "Mid-level Manager" below.
In subcase (a), note that two power usage reporting mechanisms for
the same device are available: one performed by the PD itself and one
performed by the PSE. Device-specific implementations will dictate
which one to use.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Devices Connected to a Network</span>
This use case covers the metering relationship between an energy
object and the parent energy object to which it is connected, while
receiving power from a different source.
An example is a PC that has a network connection to a switch but
draws power from a wall outlet. In this case, the PC can report
power usage by itself, ideally through the EMAN framework.
The wall outlet to which the PC is plugged in can be unmetered or
metered, for example, by a Smart PDU.
a) If metered, the PC has a powered-by relationship to the Smart
PDU, and the Smart PDU acts as a "mid-level manager".
<span class="grey">Schoening, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
b) If unmetered, or operating on batteries, the PC will report its
own energy usage as any other Energy Object to the switch, and
the switch may possibly provide aggregation.
These two cases are not mutually exclusive.
In terms of relationships between entities, the PC has a powered-by
relationship to the PDU, and if the power consumption of the PC is
metered by the PDU, then there is a metered-by relation between the
PC and the PDU.
The essential properties of this use case are:
o Target devices: energy objects that have a network connection
but receive power supply from another source.
o How powered: endpoint devices (e.g., PCs) receive power supply
from the wall outlet (unmetered), a PDU (metered), or can be
powered autonomously (batteries).
o Reporting: The power consumption can be reported via the EMAN
framework
- by the device directly,
- by the switch with information provided to it by the device,
or
- by the PDU from which the device obtains its power.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Power Meters</span>
Some electrical devices are not equipped with instrumentation to
measure their own power and accumulated energy consumption. External
meters can be used to measure the power consumption of such
electrical devices as well as collections of devices.
Three types of external metering are relevant to EMAN: PDUs,
standalone meters, and utility meters. External meters can measure
consumption of a single device or a set of devices.
Power Distribution Units (PDUs) can have built-in meters for each
socket and can measure the power supplied to each device in an
equipment rack. PDUs typically have remote management capabilities
that can report and possibly control the power supply of each outlet.
Standalone meters can be placed anywhere in a power distribution tree
and may measure all or part of the total. Utility meters monitor and
report accumulated power consumption of the entire building. There
can be submeters to measure the power consumption of a portion of the
building.
<span class="grey">Schoening, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
The essential properties of this use case are:
o Target devices: PDUs and meters.
o How powered: from traditional mains power but supplied through
a PDU or meter (where "mains power" is the standard AC power
drawn from the wall outlet).
o Reporting: PDUs report power consumption of downstream devices,
usually a single device per outlet. Meters may report for one
or more devices and may require knowledge of the topology to
associate meters with metered devices.
Meters have metered-by relationships with devices and may have
aggregation relationships between the meters and the devices for
which power consumption is accumulated and reported by the meter.
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Mid-level Managers</span>
This use case covers aggregation of energy management data at "mid-
level managers" that can provide energy management functions for
themselves and associated devices.
A switch can provide energy management functions for all devices
connected to its ports whether or not these devices are powered by
the switch or whether the switch provides immediate network
connectivity to the devices. Such a switch is a mid-level manager,
offering aggregation of power consumption data for other devices.
Devices report their EMAN data to the switch and the switch
aggregates the data for further reporting.
The essential properties of this use case:
o Target devices: devices that can perform aggregation; commonly
a switch or a proxy.
o How powered: mid-level managers are commonly powered by a PDU
or from a wall outlet but can be powered by any method.
o Reporting: The mid-level manager aggregates the energy data and
reports that data to an EnMS or higher mid-level manager.
<span class="h3"><a class="selflink" id="section-2.6" href="#section-2.6">2.6</a>. Non-residential Building System Gateways</span>
This use case describes energy management of non-residential
buildings. Building Management Systems (BMS) have been in place for
many years using legacy protocols not based on IP. In these
buildings, a gateway can provide a proxy function between IP networks
<span class="grey">Schoening, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
and legacy building automation protocols. The gateway provides an
interface between the EMAN framework and relevant building management
protocols.
Due to the potential energy savings, energy management of buildings
has received significant attention. There are gateway network
elements to manage the multiple components of a building energy
management system such as Heating, Ventilation, and Air Conditioning
(HVAC), lighting, electrical, fire and emergency systems, elevators,
etc. The gateway device uses legacy building protocols to
communicate with those devices, collects their energy usage, and
reports the results.
The gateway performs protocol conversion and communicates via
RS-232/RS-485 interfaces, Ethernet interfaces, and protocols specific
to building management such as BACnet (a protocol for building
automation and control networks) [<a href="#ref-BACnet" title=""BACnet Webpage"">BACnet</a>], Modbus [<a href="#ref-MODBUS" title=""MODBUS Application Protocol Specification"">MODBUS</a>], or ZigBee
[<a href="#ref-ZIGBEE" title=""The ZigBee Alliance"">ZIGBEE</a>].
The essential properties of this use case are:
o Target devices: building energy management devices -- HVAC
systems, lighting, electrical, and fire and emergency systems.
o How powered: any method.
o Reporting: The gateway collects energy consumption of non-IP
systems and communicates the data via the EMAN framework.
<span class="h3"><a class="selflink" id="section-2.7" href="#section-2.7">2.7</a>. Home Energy Gateways</span>
This use case describes the scenario of energy management of a home.
The home energy gateway is another example of a proxy that interfaces
with electrical appliances and other devices in a home. This gateway
can monitor and manage electrical equipment (e.g., refrigerator,
heating/cooling, or washing machine) using one of the many protocols
that are being developed for residential devices.
Beyond simply metering, it's possible to implement energy saving
policies based on time of day, occupancy, or energy pricing from the
utility grid. The EMAN information model can be applied to the
energy management of a home.
The essential properties of this use case are:
o Target devices: home energy gateway and smart meters in a home.
o How powered: any method.
<span class="grey">Schoening, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
o Reporting: The home energy gateway can collect power
consumption of device in a home and possibly report the meter
reading to the utility.
<span class="h3"><a class="selflink" id="section-2.8" href="#section-2.8">2.8</a>. Data Center Devices</span>
This use case describes energy management of a data center. Energy
efficiency of data centers has become a fundamental challenge of data
center operation, as data centers are big energy consumers and have
an expensive infrastructure. The equipment generates heat, and heat
needs to be evacuated through an HVAC system.
A typical data center network consists of a hierarchy of electrical
energy objects. At the bottom of the network hierarchy are servers
mounted on a rack; these are connected to top-of-the-rack switches,
which in turn are connected to aggregation switches and then to core
switches. Power consumption of all network elements, servers, and
storage devices in the data center should be measured. Energy
management can be implemented on different aggregation levels, i.e.,
at the network level, the Power Distribution Unit (PDU) level, and/or
the server level.
Beyond the network devices, storage devices, and servers, data
centers contain Uninterruptable Power Systems (UPSs) to provide back-
up power for the facility in the event of a power outage. A UPS can
provide backup power for many devices in a data center for a finite
period of time. Energy monitoring of energy storage capacity is
vital from a data center network operations point of view.
Presently, the UPS MIB can be useful in monitoring the battery
capacity, the input load to the UPS, and the output load from the
UPS. Currently, there is no link between the UPS MIB and the ENTITY
MIB.
In addition to monitoring the power consumption of a data center,
additional power characteristics should be monitored. Some of these
are dynamic variations in the input power supply from the grid,
referred to as power quality metrics. It can also be useful to
monitor how efficiently the devices utilize power.
Nameplate capacity of the data center can be estimated from the
nameplate ratings (which indicate the maximum possible power draw) of
IT equipment at a site.
<span class="grey">Schoening, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
The essential properties of this use case are:
o Target devices: IT devices in a data center, such as network
equipment, servers, and storage devices, as well as power and
cooling infrastructure.
o How powered: any method, but commonly by one or more PDUs.
o Reporting: Devices may report on their own behalf or for other
connected devices as described in other use cases.
<span class="h3"><a class="selflink" id="section-2.9" href="#section-2.9">2.9</a>. Energy Storage Devices</span>
Energy storage devices can have two different roles: one type whose
primary function is to provide power to another device (e.g., a UPS)
and one type with a different primary function but that has energy
storage as a component (e.g., a notebook). This use case covers
both.
The energy storage can be a conventional battery or any other means
to store electricity, such as a hydrogen cell.
An internal battery can be a back-up or an alternative source of
power to mains power. As batteries have a finite capacity and
lifetime, means for reporting the actual charge, age, and state of a
battery are required. An internal battery can be viewed as a
component of a device and can be contained within the device from an
ENTITY-MIB perspective.
Battery systems are often used in remote locations such as mobile
telecom towers. For continuous operation, it is important to monitor
the remaining battery life and raise an alarm when this falls below a
threshold.
The essential properties of this use case are:
o Target devices: devices that have an internal battery or
external storage.
o How powered: from batteries or other storage devices.
o Reporting: The device reports on its power delivered and state.
<span class="grey">Schoening, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h3"><a class="selflink" id="section-2.10" href="#section-2.10">2.10</a>. Industrial Automation Networks</span>
Energy consumption statistics in the industrial sector are
staggering. The industrial sector alone consumes about half of the
world's total delivered energy and is a significant user of
electricity. Thus, the need for optimization of energy usage in this
sector is natural.
Industrial facilities consume energy in process loads and non-process
loads.
The essential properties of this use case are:
o Target devices: devices used in an industrial sector.
o How powered: any method.
o Reporting: The Common Industrial Protocol (CIP) is commonly
used for reporting energy for these devices.
<span class="h3"><a class="selflink" id="section-2.11" href="#section-2.11">2.11</a>. Printers</span>
This use case describes the scenario of energy monitoring and
management of printers. Printers in this use case stand in for all
imaging equipment, including Multi-function Devices (MFDs), scanners,
fax machines, and mailing machines.
Energy use of printers has been a long-standing industry concern, and
sophisticated power management is common. Printers often use a
variety of low-power modes, particularly for managing energy-
intensive thermo-mechanical components. Printers also have long made
extensive use of SNMP for end-user system interaction and for
management generally, with cross-vendor management systems able to
manage fleets of printers in enterprises. Power consumption during
active modes can vary widely, with high peak usage levels.
Printers can expose detailed power state information, distinct from
operational state information, with some printers reporting
transition states between stable long-term states. Many also support
active setting of power states and policies, such as delay times,
when inactivity automatically transitions the device to a lower power
mode. Other features include reporting on components, counters for
state transitions, typical power levels by state, scheduling, and
events/alarms.
<span class="grey">Schoening, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
Some large printers also have a "Digital Front End", which is a
computer that performs functions on behalf of the physical imaging
system. These typically have their own presence on the network and
are sometimes separately powered.
There are some unique characteristics of printers from the point of
view energy management. While the printer is not in use, there are
timer-based low power states, which consume little power. On the
other hand, while the printer is printing or copying, the cylinder is
heated so that power consumption is quite high but only for a short
period of time. Given this work load, periodic polling of power
levels alone would not suffice.
The essential properties of this use case are:
o Target devices: all imaging equipment.
o How powered: typically, AC from a wall outlet.
o Reporting: The devices report for themselves.
<span class="h3"><a class="selflink" id="section-2.12" href="#section-2.12">2.12</a>. Demand Response</span>
The theme of demand response from a utility grid spans across several
use cases. In some situations, in response to time-of-day
fluctuation of energy costs or sudden energy shortages due power
outages, it may be important to respond and reduce the energy
consumption of the network.
From the EMAN use case perspective, the demand-response scenario can
apply to a data center, building, or home. Real-time energy
monitoring is usually a prerequisite so that during a potential
energy shortfall the EnMS can provide an active response. The EnMS
could shut down selected devices that are considered lower priority
or uniformly reduce the power supplied to a class of devices. For
multisite data centers, it may be possible to formulate policies such
as the follow-the-sun type of approach by scheduling the mobility of
Virtual Machines (VMs) across data centers in different geographical
locations.
The essential properties of this use case are:
o Target devices: any device.
o How powered: traditional mains AC power.
o Reporting: Devices report in real time.
<span class="grey">Schoening, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
o Control: demand response based upon policy or priority.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Use Case Patterns</span>
The use cases presented above can be abstracted to the following
broad patterns for energy objects.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Metering</span>
- Energy objects that have the capability for internal metering
- Energy objects that are metered by an external device
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Metering and Control</span>
- Energy objects that do not supply power but can perform power
metering for other devices
- Energy objects that do not supply power but can perform both
metering and control for other devices
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Power Supply, Metering, and Control</span>
- Energy objects that supply power for other devices but do not
perform power metering for those devices
- Energy objects that supply power for other devices and also
perform power metering
- Energy objects that supply power for other devices and also
perform power metering and control for other devices
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Multiple Power Sources</span>
- Energy objects that have multiple power sources, with metering and
control performed by the same power source
- Energy objects that have multiple power sources supplying power to
the device with metering performed by one or more sources and
control performed by another source
<span class="grey">Schoening, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Relationship of EMAN to Other Standards</span>
The EMAN framework is tied to other standards and efforts that
address energy monitoring and control. EMAN leverages existing
standards when possible, and it helps enable adjacent technologies
such as Smart Grid.
The standards most relevant and applicable to EMAN are listed below
with a brief description of their objectives, the current state, and
how that standard relates to EMAN.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Data Model and Reporting</span>
<span class="h4"><a class="selflink" id="section-4.1.1" href="#section-4.1.1">4.1.1</a>. IEC - CIM</span>
The International Electrotechnical Commission (IEC) has developed a
broad set of standards for power management. Among these, the most
applicable to EMAN is IEC 61850, a standard for the design of
electric utility automation. The abstract data model defined in
61850 is built upon and extends the Common Information Model (CIM).
The complete 61850 CIM model includes over a hundred object classes
and is widely used by utilities worldwide.
This set of standards were originally conceived to automate control
of a substation (a facility that transfers electricity from the
transmission to the distribution system). However, the extensive
data model has been widely used in other domains, including Energy
Management Systems (EnMS).
IEC TC57 WG19 is an ongoing working group with the objective to
harmonize the CIM data model and 61850 standards.
Several concepts from IEC Standards have been reused in the EMAN
documents. In particular, AC Power Quality measurements have been
reused from IEC 61850-7-4. The concept of Accuracy Classes for
measurement of power and energy has been adapted from ANSI C12.20 and
IEC standards 62053-21 and 62053-22.
<span class="h4"><a class="selflink" id="section-4.1.2" href="#section-4.1.2">4.1.2</a>. DMTF</span>
The Distributed Management Task Force (DMTF) has defined a Power
State Management profile [<a href="#ref-DMTF-DSP1027">DMTF-DSP1027</a>] for managing computer systems
using the DMTF's Common Information Model (CIM). These
specifications provide physical, logical, and virtual system
management requirements for power-state control services. The DMTF
standard does not include energy monitoring.
<span class="grey">Schoening, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
The Power State Management profile is used to describe and manage the
Power State of computer systems. This includes controlling the Power
State of an entity for entering sleep mode, awakening, and rebooting.
The EMAN framework references the DMTF Power Profile and Power State
Set.
<span class="h5"><a class="selflink" id="section-4.1.2.1" href="#section-4.1.2.1">4.1.2.1</a>. Common Information Model Profiles</span>
The DMTF uses CIM-based 'Profiles' to represent and manage power
utilization and configuration of managed elements (note that this is
not the 61850 CIM). Key profiles for energy management are 'Power
Supply' (DSP 1015), 'Power State' (DSP 1027), and 'Power Utilization
Management' (DSP 1085). These profiles define many features for the
monitoring and configuration of a Power Managed Element's static and
dynamic power saving modes, power allocation limits, and power
states.
Reduced power modes can be established as static or dynamic. Static
modes are fixed policies that limit power use or utilization.
Dynamic power saving modes rely upon internal feedback to control
power consumption.
Power states are eight named operational and non-operational levels.
These are On, Sleep-Light, Sleep-Deep, Hibernate, Off-Soft, and Off-
Hard. Power change capabilities provide immediate, timed interval,
and graceful transitions between on, off, and reset power states.
Table 3 of the Power State Profile defines the correspondence between
the Advanced Configuration and Power Interface [<a href="#ref-ACPI" title=""Advanced Configuration and Power Interface Specification"">ACPI</a>] and DMTF power
state models, although it is not necessary for a managed element to
support ACPI. Optionally, a TransitioningToPowerState property can
represent power state transitions in progress.
<span class="h5"><a class="selflink" id="section-4.1.2.2" href="#section-4.1.2.2">4.1.2.2</a>. DASH</span>
DMTF Desktop and Mobile Architecture for System Hardware [<a href="#ref-DASH" title=""Desktop and Mobile Architecture for System Hardware"">DASH</a>]
addresses managing heterogeneous desktop and mobile systems
(including power) via in-band and out-of-band communications. DASH
uses the DMTF's Web Services for Management (WS-Management) and CIM
data model to manage and control resources such as power, CPU, etc.
Both in-service and out-of-service systems can be managed with the
DASH specification in a fully secured remote environment. Full power
life-cycle management is possible using out-of-band management.
<span class="grey">Schoening, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h4"><a class="selflink" id="section-4.1.3" href="#section-4.1.3">4.1.3</a>. ODVA</span>
The Open DeviceNet Vendors Association (ODVA) is an association for
industrial automation companies that defines the Common Industrial
Protocol (CIP). Within ODVA, there is a special interest group
focused on energy and standardization and interoperability of energy-
aware devices.
The ODVA is developing an energy management framework for the
industrial sector. There are synergies and similar concepts between
the ODVA and EMAN approaches to energy monitoring and management.
ODVA defines a three-part approach towards energy management:
awareness of energy usage, energy efficiency, and the exchange of
energy with a utility or others. Energy monitoring and management
promote efficient consumption and enable automating actions that
reduce energy consumption.
The foundation of the approach is the information and communication
model for entities. An entity is a network-connected, energy-aware
device that has the ability to either measure or derive its energy
usage based on its native consumption or generation of energy, or
report a nominal or static energy value.
<span class="h4"><a class="selflink" id="section-4.1.4" href="#section-4.1.4">4.1.4</a>. Ecma SDC</span>
The Ecma International standard on Smart Data Centre [<a href="#ref-Ecma-SDC" title=""Smart Data Centre Resource Monitoring and Control"">Ecma-SDC</a>]
defines semantics for management of entities in a data center such as
servers, storage, and network equipment. It covers energy as one of
many functional resources or attributes of systems for monitoring and
control. It only defines messages and properties and does not
reference any specific protocol. Its goal is to enable
interoperability of such protocols as SNMP, BACnet, and HTTP by
ensuring a common semantic model across them. Four power states are
defined, Off, Sleep, Idle, and Active. The standard does not include
actual energy or power measurements.
When used with EMAN, the SDC standard will provide a thin abstraction
on top of the more detailed data model available in EMAN.
<span class="h4"><a class="selflink" id="section-4.1.5" href="#section-4.1.5">4.1.5</a>. PWG</span>
The IEEE Industry Standards and Technology Organization (ISTO)
Printer Working Group (PWG) defines open standards for printer-
related protocols for the benefit of printer manufacturers and
related software vendors. The Printer WG covers power monitoring and
management of network printers and imaging systems in the PWG Power
Management Model for Imaging Systems [<a href="#ref-PWG5106.4" title=""PWG Power Management Model for Imaging Systems 1.0"">PWG5106.4</a>]. Clearly, these
<span class="grey">Schoening, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
devices are within the scope of energy management since they receive
power and are attached to the network. In addition, there is ample
scope for power management since printers and imaging systems are not
used that often.
The IEEE-ISTO Printer Working Group (PWG) defines SNMP MIB modules
for printer management and, in particular, a "PWG Power Management
Model for Imaging Systems v1.0" [<a href="#ref-PWG5106.4" title=""PWG Power Management Model for Imaging Systems 1.0"">PWG5106.4</a>] and a companion SNMP
binding in the "PWG Imaging System Power MIB v1.0" [<a href="#ref-PWG5106.5" title=""PWG Imaging System Power MIB v1.0"">PWG5106.5</a>]. This
PWG model and MIB are harmonized with the DMTF CIM Infrastructure
[<a href="#ref-DMTF-DSP0004">DMTF-DSP0004</a>] and DMTF CIM Power State Management Profile
[<a href="#ref-DMTF-DSP1027">DMTF-DSP1027</a>] for power states and alerts.
These MIB modules can be useful for monitoring the power and Power
State of printers. The EMAN framework takes into account the
standards defined in the Printer Working Group. The PWG may
harmonize its MIBs with those from EMAN. The PWG covers many topics
in greater detail than EMAN, including those specific to imaging
equipment. The PWG also provides for vendor-specific extension
states (beyond the standard DMTF CIM states).
The IETF Printer MIB [<a href="./rfc3805" title=""Printer MIB v2"">RFC3805</a>] is on the Standards Track, but that
MIB module does not address power management.
<span class="h4"><a class="selflink" id="section-4.1.6" href="#section-4.1.6">4.1.6</a>. ASHRAE</span>
In the U.S., there is an extensive effort to coordinate and develop
standards related to the "Smart Grid". The Smart Grid
Interoperability Panel, coordinated by the government's National
Institute of Standards and Technology, identified the need for a
building side information model (as a counterpart to utility models)
and specified this in Priority Action Plan (PAP) 17. This was
designated to be a joint effort by the American Society of Heating,
Refrigerating and Air-Conditioning Engineers (ASHRAE) and the
National Electrical Manufacturers Association (NEMA), both ANSI-
approved Standards Development Organizations (SDOs). The result is
to be an information model, not a protocol.
The ASHRAE effort [<a href="#ref-ASHRAE" title=""ASHRAE SPC 201 P Information Page"">ASHRAE</a>] addresses data used only within a building
as well as data that may be shared with the grid, particularly as it
relates to coordinating future demand levels with the needs of the
grid. The model is intended to be applied to any building type, both
residential and commercial. It is expected that existing protocols
will be adapted to comply with the new information model, as would
new protocols.
<span class="grey">Schoening, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
There are four basic types of entities in the model: generators,
loads, meters, and energy managers. The metering part of the model
overlaps to a large degree with the EMAN framework, though there are
features unique to each. The load part speaks to control
capabilities well beyond what EMAN covers. Details of generation and
of the energy management function are outside of EMAN scope.
A public review draft of the ASHRAE standard was released in July
2012. There are no apparent major conflicts between the two
approaches, but there are areas where some harmonization is possible.
<span class="h4"><a class="selflink" id="section-4.1.7" href="#section-4.1.7">4.1.7</a>. ANSI/CEA</span>
The Consumer Electronics Association (CEA) has approved ANSI/CEA-2047
[<a href="#ref-ANSICEA" title=""CEA 2047 CE Energy Usage Information (CE-EUI)"">ANSICEA</a>] as a standard data model for Energy Usage Information. The
primary purpose is to enable home appliances and electronics to
communicate energy usage information over a wide range of
technologies with pluggable modules that contain the physical-layer
electronics. The standard can be used by devices operating on any
home network including Wi-Fi, Ethernet, ZigBee, Z-Wave, and
Bluetooth. The Introduction to ANSI/CEA-2047 states that "this
standard provides an information model for other groups to develop
implementations specific to their network, protocol and needs." It
covers device identification, current power level, cumulative energy
consumption, and provides for reporting time-series data.
<span class="h4"><a class="selflink" id="section-4.1.8" href="#section-4.1.8">4.1.8</a>. ZigBee</span>
The ZigBee Smart Energy Profile 2.0 (SEP) effort [<a href="#ref-ZIGBEE" title=""The ZigBee Alliance"">ZIGBEE</a>] focuses on
IP-based wireless communication to appliances and lighting. It is
intended to enable internal building energy management and provide
for bidirectional communication with the power grid.
ZigBee protocols are intended for use in embedded applications with
low data rates and low power consumption. ZigBee defines a general-
purpose, inexpensive, self-organizing mesh network that can be used
for industrial control, embedded sensing, medical data collection,
smoke and intruder warning, building automation, home automation,
etc.
ZigBee is currently not an ANSI-recognized SDO.
The EMAN framework addresses the needs of IP-enabled networks through
the usage of SNMP, while ZigBee provides for completely integrated
and inexpensive mesh solutions.
<span class="grey">Schoening, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Measurement</span>
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. ANSI C12</span>
The American National Standards Institute (ANSI) has defined a
collection of power meter standards under ANSI C12. The primary
standards include communication protocols (C12.18, 21 and 22), data
and schema definitions (C12.19), and measurement accuracy (C12.20).
European equivalent standards are provided by IEC 62053-22.
These very specific standards are oriented to the meter itself and
are used by electricity distributors and producers.
The EMAN framework [<a href="./rfc7326" title=""Energy Management Framework"">RFC7326</a>] references the Accuracy Classes
specified in ANSI C12.20.
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. IEC 62301</span>
IEC 62301, "Household electrical appliances - Measurement of standby
power" [<a href="#ref-IEC62301" title=""Household electrical appliances - Measurement of standby power"">IEC62301</a>], specifies a power-level measurement procedure.
While nominally for appliances and low-power modes, its concepts
apply to other device types and modes, and it is commonly referenced
in test procedures for energy using products.
While the standard is intended for laboratory measurements of devices
in controlled conditions, aspects of it are informative to those
implementing measurement in products that ultimately report via EMAN.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Other</span>
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. ISO</span>
The International Organization for Standardization (ISO) [<a href="#ref-ISO" title=""ISO launches ISO 50001 energy management standard"">ISO</a>] is
developing an energy management standard, ISO 50001, to complement
ISO 9001 for quality management and ISO 14001 for environmental
management. The intent is to facilitate the creation of energy
management programs for industrial, commercial, and other entities.
The standard defines a process for energy management at an
organizational level. It does not define the way in which devices
report energy and consume energy.
ISO 50001 is based on the common elements found in all of ISO's
management system standards, assuring a high level of compatibility
with ISO 9001 and ISO 14001. ISO 50001 benefits include:
o Integrating energy efficiency into management practices and
throughout the supply chain.
<span class="grey">Schoening, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
o Using energy management best practices and good energy
management behaviors.
o Benchmarking, measuring, documenting, and reporting energy
intensity improvements and their projected impact on reductions
in greenhouse gas (GHG) emissions.
o Evaluating and prioritizing the implementation of new energy-
efficient technologies.
ISO 50001 has been developed by ISO project committee ISO TC 242,
Energy Management. EMAN is complementary to ISO 9001.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Energy Star</span>
The U.S. Environmental Protection Agency (EPA) and U.S. Department of
Energy (DOE) jointly sponsor the Energy Star program [<a href="#ref-ESTAR">ESTAR</a>]. The
program promotes the development of energy efficient products and
practices.
To qualify as Energy Star, products must meet specific energy
efficiency targets. The Energy Star program also provides planning
tools and technical documentation to encourage more energy-efficient
building design. Energy Star is a program; it is not a protocol or
standard.
For businesses and data centers, Energy Star offers technical support
to help companies establish energy conservation practices. Energy
Star provides best practices for measuring current energy
performance, goal setting, and tracking improvement. The Energy Star
tools offered include a rating system for building performance and
comparative benchmarks.
There is no immediate link between EMAN and Energy Star, one being a
protocol and the other a set of recommendations to develop energy-
efficient products. However, Energy Star could include EMAN
standards in specifications for future products, either as required
or rewarded with some benefit.
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a>. Smart Grid</span>
The Smart Grid standards efforts underway in the United States are
overseen by the U.S. National Institute of Standards and Technology
[<a href="#ref-NIST" title=""Smart Grid Homepage"">NIST</a>]. NIST is responsible for coordinating a public-private
partnership with key energy and consumer stakeholders in order to
facilitate the development of Smart Grid standards. These activities
are monitored and facilitated by the Smart Grid Interoperability
Panel (SGIP). This group has working groups for specific topics
<span class="grey">Schoening, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
including homes, commercial buildings, and industrial facilities as
they relate to the grid. A stated goal of the group is to harmonize
any new standard with the IEC CIM and IEC 61850.
When a working group detects a standard or technology gap, the team
seeks approval from the SGIP for the creation of a Priority Action
Plan (PAP), a private-public partnership to close the gap. PAP 17 is
discussed in <a href="#section-4.1.6">Section 4.1.6</a>.
PAP 10 addresses "Standard Energy Usage Information". Smart Grid
standards will provide distributed intelligence in the network and
allow enhanced load shedding. For example, pricing signals will
enable selective shutdown of non-critical activities during peak
price periods. Actions can be effected through both centralized and
distributed management controls.
There is an obvious functional link between Smart Grid and EMAN in
the form of demand response even though the EMAN framework itself
does not address any coordination with the grid. As EMAN enables
control, it can be used by an EnMS to accomplish demand response
through translation of a signal from an outside entity.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Limitations</span>
EMAN addresses the needs of energy monitoring in terms of measurement
and considers limited control capabilities of energy monitoring of
networks.
EMAN does not create a new protocol stack, but rather defines a data
and information model useful for measuring and reporting energy and
other metrics over SNMP.
EMAN does not address questions regarding Smart Grid, electricity
producers, and distributors.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
EMAN uses SNMP and thus has the functionality of SNMP's security
capabilities. SNMPv3 [<a href="./rfc3411" title=""An Architecture for Describing Simple Network Management Protocol (SNMP) Management Frameworks"">RFC3411</a>] provides important security features
such as confidentiality, integrity, and authentication.
<a href="./rfc7460#section-10">Section 10 of [RFC7460]</a> and <a href="./rfc7461#section-6">Section 6 of [RFC7461]</a> mention that power
monitoring and management MIBs may have certain privacy implications.
These privacy implications are beyond the scope of this document.
There may be additional privacy considerations specific to each use
case; this document has not attempted to analyze these.
<span class="grey">Schoening, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<a id="ref-RFC3411">RFC3411</a>] Harrington, D., Presuhn, R., and B. Wijnen, "An
Architecture for Describing Simple Network Management
Protocol (SNMP) Management Frameworks", STD 62, <a href="./rfc3411">RFC 3411</a>,
DOI 10.17487/RFC3411, December 2002,
<<a href="http://www.rfc-editor.org/info/rfc3411">http://www.rfc-editor.org/info/rfc3411</a>>.
[<a id="ref-RFC3621">RFC3621</a>] Berger, A. and D. Romascanu, "Power Ethernet MIB",
<a href="./rfc3621">RFC 3621</a>, DOI 10.17487/RFC3621, December 2003,
<<a href="http://www.rfc-editor.org/info/rfc3621">http://www.rfc-editor.org/info/rfc3621</a>>.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-ACPI">ACPI</a>] ACPI, "Advanced Configuration and Power Interface
Specification", Revision 5.0b, November 2013,
<<a href="http://www.acpi.info/spec30b.htm">http://www.acpi.info/spec30b.htm</a>>.
[<a id="ref-ANSICEA">ANSICEA</a>] ANSI, "CEA 2047 CE Energy Usage Information (CE-EUI)",
ANSI/CEA-2047, August 2014.
[<a id="ref-ASHRAE">ASHRAE</a>] NIST, "ASHRAE SPC 201 P Information Page",
<<a href="http://collaborate.nist.gov/twiki-sggrid/bin/view/SmartGrid/PAP17Information">http://collaborate.nist.gov/twiki-sggrid/</a>
<a href="http://collaborate.nist.gov/twiki-sggrid/bin/view/SmartGrid/PAP17Information">bin/view/SmartGrid/PAP17Information</a>>.
[<a id="ref-BACnet">BACnet</a>] "BACnet Webpage", <<a href="http://www.bacnet.org">http://www.bacnet.org</a>>.
[<a id="ref-DASH">DASH</a>] DMTF, "Desktop and Mobile Architecture for System
Hardware", <<a href="http://www.dmtf.org/standards/mgmt/dash/">http://www.dmtf.org/standards/mgmt/dash/</a>>.
[<a id="ref-DMTF-DSP0004">DMTF-DSP0004</a>]
DMTF, "Common Information Model (CIM) Infrastructure",
DSP0004, Version 2.5.0, May 2009, <<a href="http://www.dmtf.org/standards/published_documents/DSP0004_2.5.0.pdf">http://www.dmtf.org/</a>
<a href="http://www.dmtf.org/standards/published_documents/DSP0004_2.5.0.pdf">standards/published_documents/DSP0004_2.5.0.pdf</a>>.
[<a id="ref-DMTF-DSP1027">DMTF-DSP1027</a>]
DMTF, "Power State Management Profile", DSP1027, Version
2.0.0, December 2009, <<a href="http://www.dmtf.org/standards/published_documents/DSP1027_2.0.0.pdf">http://www.dmtf.org/standards/</a>
<a href="http://www.dmtf.org/standards/published_documents/DSP1027_2.0.0.pdf">published_documents/DSP1027_2.0.0.pdf</a>>.
[<a id="ref-Ecma-SDC">Ecma-SDC</a>] Ecma International, "Smart Data Centre Resource
Monitoring and Control", Standard ECMA-400, Second
Edition, June 2013, <<a href="http://www.ecma-international.org/publications/standards/Ecma-400.htm">http://www.ecma-international.org/</a>
<a href="http://www.ecma-international.org/publications/standards/Ecma-400.htm">publications/standards/Ecma-400.htm</a>>.
[<a id="ref-ESTAR">ESTAR</a>] Energy Star, <<a href="http://www.energystar.gov/">http://www.energystar.gov/</a>>.
<span class="grey">Schoening, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
[<a id="ref-IEC62301">IEC62301</a>] IEC, "Household electrical appliances - Measurement of
standby power", IEC 62301:2011, Edition 2.0, January
2011.
[<a id="ref-ISO">ISO</a>] ISO, "ISO launches ISO 50001 energy management standard",
June 2011,
<<a href="http://www.iso.org/iso/news.htm?refid=Ref1434">http://www.iso.org/iso/news.htm?refid=Ref1434</a>>.
[<a id="ref-MODBUS">MODBUS</a>] Modbus-IDA, "MODBUS Application Protocol Specification",
Version 1.1b, December 2006, <<a href="http://www.modbus.org/docs/Modbus_Application_Protocol_V1_1b.pdf">http://www.modbus.org/docs/</a>
<a href="http://www.modbus.org/docs/Modbus_Application_Protocol_V1_1b.pdf">Modbus_Application_Protocol_V1_1b.pdf</a>>.
[<a id="ref-NIST">NIST</a>] NIST, "Smart Grid Homepage", August 2010,
<<a href="http://www.nist.gov/smartgrid/">http://www.nist.gov/smartgrid/</a>>.
[<a id="ref-PWG5106.4">PWG5106.4</a>] IEEE-ISTO, "PWG Power Management Model for Imaging
Systems 1.0", PWG Candidate Standard 5106.4-2011,
February 2011, <<a href="ftp://ftp.pwg.org/pub/pwg/candidates/cs-wimspower10-20110214-5106.4.pdf">ftp://ftp.pwg.org/pub/pwg/candidates/</a>
<a href="ftp://ftp.pwg.org/pub/pwg/candidates/cs-wimspower10-20110214-5106.4.pdf">cs-wimspower10-20110214-5106.4.pdf</a>>.
[<a id="ref-PWG5106.5">PWG5106.5</a>] IEEE-ISTO, "PWG Imaging System Power MIB v1.0", PWG
Candidate Standard 5106.5-2011, February 2011.
[<a id="ref-RFC3805">RFC3805</a>] Bergman, R., Lewis, H., and I. McDonald, "Printer MIB
v2", <a href="./rfc3805">RFC 3805</a>, DOI 10.17487/RFC3805, June 2004,
<<a href="http://www.rfc-editor.org/info/rfc3805">http://www.rfc-editor.org/info/rfc3805</a>>.
[<a id="ref-RFC6933">RFC6933</a>] Bierman, A., Romascanu, D., Quittek, J., and M.
Chandramouli, "Entity MIB (Version 4)", <a href="./rfc6933">RFC 6933</a>,
DOI 10.17487/RFC6933, May 2013,
<<a href="http://www.rfc-editor.org/info/rfc6933">http://www.rfc-editor.org/info/rfc6933</a>>.
[<a id="ref-RFC6988">RFC6988</a>] Quittek, J., Ed., Chandramouli, M., Winter, R., Dietz,
T., and B. Claise, "Requirements for Energy Management",
<a href="./rfc6988">RFC 6988</a>, DOI 10.17487/RFC6988, September 2013,
<<a href="http://www.rfc-editor.org/info/rfc6988">http://www.rfc-editor.org/info/rfc6988</a>>.
[<a id="ref-RFC7326">RFC7326</a>] Parello, J., Claise, B., Schoening, B., and J. Quittek,
"Energy Management Framework", <a href="./rfc7326">RFC 7326</a>,
DOI 10.17487/RFC7326, September 2014,
<<a href="http://www.rfc-editor.org/info/rfc7326">http://www.rfc-editor.org/info/rfc7326</a>>.
[<a id="ref-RFC7460">RFC7460</a>] Chandramouli, M., Claise, B., Schoening, B., Quittek, J.,
and T. Dietz, "Monitoring and Control MIB for Power and
Energy", <a href="./rfc7460">RFC 7460</a>, DOI 10.17487/RFC7460, March 2015,
<<a href="http://www.rfc-editor.org/info/rfc7460">http://www.rfc-editor.org/info/rfc7460</a>>.
<span class="grey">Schoening, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
[<a id="ref-RFC7461">RFC7461</a>] Parello, J., Claise, B., and M. Chandramouli, "Energy
Object Context MIB", <a href="./rfc7461">RFC 7461</a>, DOI 10.17487/RFC7461,
March 2015, <<a href="http://www.rfc-editor.org/info/rfc7461">http://www.rfc-editor.org/info/rfc7461</a>>.
[<a id="ref-RFC7577">RFC7577</a>] Quittek, J., Winter, R., and T. Dietz, "Definition of
Managed Objects for Battery Monitoring", <a href="./rfc7577">RFC 7577</a>,
DOI 10.17487/RFC7577, July 2015,
<<a href="http://www.rfc-editor.org/info/rfc7577">http://www.rfc-editor.org/info/rfc7577</a>>.
[<a id="ref-ZIGBEE">ZIGBEE</a>] "The ZigBee Alliance", <<a href="http://www.zigbee.org/">http://www.zigbee.org/</a>>.
Acknowledgements
Firstly, the authors thank Emmanuel Tychon for taking the lead on the
initial draft and making substantial contributions to it. The
authors also thank Jeff Wheeler, Benoit Claise, Juergen Quittek,
Chris Verges, John Parello, and Matt Laherty for their valuable
contributions. The authors also thank Kerry Lynn for the use case
involving demand response.
<span class="grey">Schoening, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7603">RFC 7603</a> EMAN Applicability Statement August 2015</span>
Authors' Addresses
Brad Schoening
Independent Consultant
44 Rivers Edge Drive
Little Silver, NJ 07739
United States
Phone: +1 917 304 7190
Email: brad.schoening@verizon.net
Mouli Chandramouli
Cisco Systems, Inc.
Sarjapur Outer Ring Road
Bangalore 560103
India
Phone: +91 80 4429 2409
Email: moulchan@cisco.com
Bruce Nordman
Lawrence Berkeley National Laboratory
1 Cyclotron Road, 90-2000
Berkeley, CA 94720-8130
United States
Phone: +1 510 486 7089
Email: bnordman@lbl.gov
Schoening, et al. Standards Track [Page 28]
</pre>
|