All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudbus.cloudsim.power.models.PowerModelSpecPowerHpProLiantMl110G5Xeon3075 Maven / Gradle / Ivy

Go to download

CloudSim Plus: A modern, highly extensible and easier-to-use Java 8 Framework for Modeling and Simulation of Cloud Computing Infrastructures and Services

There is a newer version: 8.0.0
Show newest version
/*
 * 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 G5 (1 x [Xeon 3075 2660 MHz, 2 cores], 4GB).
* * http://www.spec.org/power_ssj2008/results/res2011q1/power_ssj2008-20110124-00339.html * *

If you are using any algorithms, policies or workload included in the power package please cite * the following paper:

* * * * @author Anton Beloglazov * @since CloudSim Toolkit 3.0 */ public class PowerModelSpecPowerHpProLiantMl110G5Xeon3075 extends PowerModelSpecPower { /** * The power consumption according to the utilization percentage. * @see #getPowerData(int) */ private final double[] power = { 93.7, 97, 101, 105, 110, 116, 121, 125, 129, 133, 135 }; @Override protected double getPowerData(final int index) { return power[index]; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy