Package agents.heatPump.strategists
Enum HeatPumpStrategist.HeatPumpStrategistType
- java.lang.Object
-
- java.lang.Enum<HeatPumpStrategist.HeatPumpStrategistType>
-
- agents.heatPump.strategists.HeatPumpStrategist.HeatPumpStrategistType
-
- All Implemented Interfaces:
Serializable
,Comparable<HeatPumpStrategist.HeatPumpStrategistType>
- Enclosing class:
- HeatPumpStrategist
public static enum HeatPumpStrategist.HeatPumpStrategistType extends Enum<HeatPumpStrategist.HeatPumpStrategistType>
Types ofHeatPumpStrategist
s
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTERNAL
Creates a cost-optimal HeatPumpSchedule according to real-time prices, using external optimisation modelINFLEXIBLE_FILE
Uses heat demand from given fileINFLEXIBLE_RC
Aims to hold a constant target temperature; heat demand calculated from RC-type building modelMIN_COST_FILE
Minimises costs for heat pump dispatch using active storage (hot water tank) for a given heat demand fileMIN_COST_RC
Aims to minimise heat-pump dispatch costs; heat demand calculated from RC-type building model
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HeatPumpStrategist.HeatPumpStrategistType
valueOf(String name)
Returns the enum constant of this type with the specified name.static HeatPumpStrategist.HeatPumpStrategistType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN_COST_RC
public static final HeatPumpStrategist.HeatPumpStrategistType MIN_COST_RC
Aims to minimise heat-pump dispatch costs; heat demand calculated from RC-type building model
-
INFLEXIBLE_RC
public static final HeatPumpStrategist.HeatPumpStrategistType INFLEXIBLE_RC
Aims to hold a constant target temperature; heat demand calculated from RC-type building model
-
INFLEXIBLE_FILE
public static final HeatPumpStrategist.HeatPumpStrategistType INFLEXIBLE_FILE
Uses heat demand from given file
-
MIN_COST_FILE
public static final HeatPumpStrategist.HeatPumpStrategistType MIN_COST_FILE
Minimises costs for heat pump dispatch using active storage (hot water tank) for a given heat demand file
-
EXTERNAL
public static final HeatPumpStrategist.HeatPumpStrategistType EXTERNAL
Creates a cost-optimal HeatPumpSchedule according to real-time prices, using external optimisation model
-
-
Method Detail
-
values
public static HeatPumpStrategist.HeatPumpStrategistType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HeatPumpStrategist.HeatPumpStrategistType c : HeatPumpStrategist.HeatPumpStrategistType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HeatPumpStrategist.HeatPumpStrategistType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-