Enum ArbitrageStrategist.StrategistType
- java.lang.Object
-
- java.lang.Enum<ArbitrageStrategist.StrategistType>
-
- agents.storage.arbitrageStrategists.ArbitrageStrategist.StrategistType
-
- All Implemented Interfaces:
Serializable
,Comparable<ArbitrageStrategist.StrategistType>
- Enclosing class:
- ArbitrageStrategist
public static enum ArbitrageStrategist.StrategistType extends Enum<ArbitrageStrategist.StrategistType>
Types of Strategists for storage operators
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISPATCH_FILE
Creates a the schedule according to a given TimeSeries.MULTI_AGENT_MEDIAN
Calculates theDevice
dispatch in order to maximise the profits of theStorageTrader
.SINGLE_AGENT_MAX_PROFIT
Optimises theDevice
dispatch in order to maximise the profits of theStorageTrader
.SINGLE_AGENT_MIN_SYSTEM_COST
Uses the storageDevice
in order to minimise the total system costs.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArbitrageStrategist.StrategistType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ArbitrageStrategist.StrategistType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISPATCH_FILE
public static final ArbitrageStrategist.StrategistType DISPATCH_FILE
Creates a the schedule according to a given TimeSeries.
-
SINGLE_AGENT_MIN_SYSTEM_COST
public static final ArbitrageStrategist.StrategistType SINGLE_AGENT_MIN_SYSTEM_COST
Uses the storageDevice
in order to minimise the total system costs.
-
SINGLE_AGENT_MAX_PROFIT
public static final ArbitrageStrategist.StrategistType SINGLE_AGENT_MAX_PROFIT
Optimises theDevice
dispatch in order to maximise the profits of theStorageTrader
. A perfect forecast of upcoming prices (and their changes due to charging) is used for the optimisation.
-
MULTI_AGENT_MEDIAN
public static final ArbitrageStrategist.StrategistType MULTI_AGENT_MEDIAN
Calculates theDevice
dispatch in order to maximise the profits of theStorageTrader
. A median of the forecasted prices is used to estimate a good dispatch strategy in an environment with more than one flexible agent.
-
-
Method Detail
-
values
public static ArbitrageStrategist.StrategistType[] 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 (ArbitrageStrategist.StrategistType c : ArbitrageStrategist.StrategistType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArbitrageStrategist.StrategistType 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
-
-