[1476] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
| 2 | <environment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
| 3 | xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/DCwormsResSchema.xsd"> |
---|
| 4 | |
---|
| 5 | <!-- Data Center description with energy parameters --> |
---|
| 6 | <resources> |
---|
| 7 | <computingResource class="Rack" name="rack" count="1"> |
---|
| 8 | <computingResource class="BladeEnclosure" count="6"> |
---|
| 9 | <device class="Fan"> |
---|
| 10 | <profile> |
---|
| 11 | <powerProfile> |
---|
| 12 | <energyEstimationPlugin> |
---|
| 13 | <name>example.energy.device.FanEnergyEstimationPlugin</name> |
---|
| 14 | </energyEstimationPlugin> |
---|
| 15 | </powerProfile> |
---|
| 16 | <airThroughputProfile> |
---|
| 17 | <airThroughputStates> |
---|
| 18 | <airThroughputState> |
---|
| 19 | <name>ON_100</name> |
---|
| 20 | <value>1200</value> |
---|
| 21 | <powerUsage>30</powerUsage> |
---|
| 22 | </airThroughputState> |
---|
| 23 | <airThroughputState> |
---|
| 24 | <name>ON_80</name> |
---|
| 25 | <value>800</value> |
---|
| 26 | <powerUsage>20</powerUsage> |
---|
| 27 | </airThroughputState> |
---|
| 28 | <airThroughputState> |
---|
| 29 | <name>ON_60</name> |
---|
| 30 | <value>600</value> |
---|
| 31 | <powerUsage>15</powerUsage> |
---|
| 32 | </airThroughputState> |
---|
| 33 | <airThroughputState> |
---|
| 34 | <name>ON_40</name> |
---|
| 35 | <value>400</value> |
---|
| 36 | <powerUsage>10</powerUsage> |
---|
| 37 | </airThroughputState> |
---|
| 38 | <airThroughputState> |
---|
| 39 | <name>ON_20</name> |
---|
| 40 | <value>200</value> |
---|
| 41 | <powerUsage>5</powerUsage> |
---|
| 42 | </airThroughputState> |
---|
| 43 | <airThroughputState> |
---|
| 44 | <name>OFF</name> |
---|
| 45 | <value>0</value> |
---|
| 46 | <powerUsage>0</powerUsage> |
---|
| 47 | </airThroughputState> |
---|
| 48 | </airThroughputStates> |
---|
| 49 | </airThroughputProfile> |
---|
| 50 | </profile> |
---|
| 51 | </device> |
---|
| 52 | <!-- Blade enclosure contains 14 computing nodes--> |
---|
| 53 | <computingResource class="Node" count="14"> |
---|
| 54 | <profile> |
---|
| 55 | <!-- Definition of computing node power profile --> |
---|
| 56 | <powerProfile> |
---|
| 57 | <!-- Reference to energy usage estimation plugin --> |
---|
| 58 | <energyEstimationPlugin> |
---|
| 59 | <name>example.energy.NodeEnergyEstimationPlugin</name> |
---|
| 60 | </energyEstimationPlugin> |
---|
| 61 | <!-- Definition of supported power states and corresponding power consumption --> |
---|
| 62 | <!-- Units according to the user interpretation, however statistics chart generator module by default express the values in Watts --> |
---|
| 63 | <powerStates> |
---|
| 64 | <powerState> |
---|
| 65 | <name>ON</name> |
---|
| 66 | <powerUsage>750</powerUsage> |
---|
| 67 | </powerState> |
---|
| 68 | <powerState> |
---|
| 69 | <name>OFF</name> |
---|
| 70 | <powerUsage>0</powerUsage> |
---|
| 71 | </powerState> |
---|
| 72 | </powerStates> |
---|
| 73 | </powerProfile> |
---|
| 74 | </profile> |
---|
| 75 | |
---|
| 76 | <!-- Each of 2 computing nodes contains 4 processors--> |
---|
| 77 | <computingResource class="Processor" count="4"> |
---|
| 78 | </computingResource> |
---|
| 79 | </computingResource> |
---|
| 80 | </computingResource> |
---|
| 81 | </computingResource> |
---|
| 82 | <scheduler class="Cluster" name="cluster"> |
---|
| 83 | <!-- Definition of scheduling plugin at cluster level --> |
---|
| 84 | <schedulingPlugin> |
---|
| 85 | <name>example.localplugin.Cluster_FCFSBF_ConsolidationHighPerf_NodePowMan_Plugin</name> |
---|
| 86 | </schedulingPlugin> |
---|
| 87 | <!-- Reference to managed resources - cluster manages resources belonging to the defined blade enclosure. |
---|
| 88 | Please note the include attribute is set to true, which gives the cluster access also to the internal devices. |
---|
| 89 | --> |
---|
| 90 | <managedComputingResources include="true"> |
---|
| 91 | <resourceName>rack</resourceName> |
---|
| 92 | </managedComputingResources> |
---|
| 93 | </scheduler> |
---|
| 94 | </resources> |
---|
| 95 | |
---|
| 96 | </environment> |
---|