41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
/*
|
|
* Title: CloudSim Toolkit
|
|
* Description: CloudSim (Cloud Simulation) Toolkit for Modeling and Simulation of Clouds
|
|
* Licence: GPL - http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* Copyright (c) 2009-2012, The University of Melbourne, Australia
|
|
*/
|
|
|
|
package org.cloudbus.cloudsim.power.models;
|
|
|
|
/**
|
|
* The power model of an HP ProLiant ML110 G3 (1 x [Pentium D930 3000 MHz, 2 cores], 4GB).
|
|
* http://www.spec.org/power_ssj2008/results/res2011q1/power_ssj2008-20110127-00342.html
|
|
*
|
|
* If you are using any algorithms, policies or workload included in the power package, please cite
|
|
* the following paper:
|
|
*
|
|
* Anton Beloglazov, and Rajkumar Buyya, "Optimal Online Deterministic Algorithms and Adaptive
|
|
* Heuristics for Energy and Performance Efficient Dynamic Consolidation of Virtual Machines in
|
|
* Cloud Data Centers", Concurrency and Computation: Practice and Experience (CCPE), Volume 24,
|
|
* Issue 13, Pages: 1397-1420, John Wiley & Sons, Ltd, New York, USA, 2012
|
|
*
|
|
* @author Anton Beloglazov
|
|
* @since CloudSim Toolkit 3.0
|
|
*/
|
|
public class PowerModelSpecPowerHpProLiantMl110G3PentiumD930 extends PowerModelSpecPower {
|
|
|
|
/** The power. */
|
|
private final double[] power = { 105, 112, 118, 125, 131, 137, 147, 153, 157, 164, 169 };
|
|
|
|
/*
|
|
* (non-Javadoc)
|
|
* @see org.cloudbus.cloudsim.power.models.PowerModelSpecPower#getPowerData(int)
|
|
*/
|
|
@Override
|
|
protected double getPowerData(int index) {
|
|
return power[index];
|
|
}
|
|
|
|
}
|