Class LinearPowerModelCalculator

  • All Implemented Interfaces:
    IResourcePowerModelCalculator

    public class LinearPowerModelCalculator
    extends AbstractResourcePowerModelCalculator
    Creates a calculator that evaluates the power consumption P of a PowerConsumingResource by interpolating between the resource's minimum P_min and maximum power consumption P_min using the utilization Util of the specific resource:

    P = P_min + Util * (P_max - P_min)
    • Constructor Detail

      • LinearPowerModelCalculator

        public LinearPowerModelCalculator​(ResourcePowerBinding binding)
        Create a calculator for a linear power model.
        Parameters:
        powerConsumingResource - The resource for which the calculator is created.