Files
EOS/src/akkudoktoreos/optimization/optimization.py
T

193 lines
6.8 KiB
Python
Raw Normal View History

2025-10-28 02:50:31 +01:00
from typing import Optional, Union
from pydantic import Field, computed_field, model_validator
from akkudoktoreos.config.configabc import SettingsBaseModel
from akkudoktoreos.core.coreabc import get_ems
from akkudoktoreos.core.pydantic import (
PydanticBaseModel,
PydanticDateTimeDataFrame,
)
2025-10-28 02:50:31 +01:00
from akkudoktoreos.utils.datetimeutil import DateTime
class GeneticCommonSettings(SettingsBaseModel):
"""General Genetic Optimization Algorithm Configuration."""
individuals: Optional[int] = Field(
default=300,
ge=10,
json_schema_extra={
"description": "Number of individuals (solutions) to generate for the (initial) generation [>= 10]. Defaults to 300.",
"examples": [300],
},
2025-10-28 02:50:31 +01:00
)
generations: Optional[int] = Field(
default=400,
ge=10,
json_schema_extra={
"description": "Number of generations to evaluate the optimal solution [>= 10]. Defaults to 400.",
"examples": [400],
},
2025-10-28 02:50:31 +01:00
)
seed: Optional[int] = Field(
default=None,
ge=0,
json_schema_extra={
"description": "Fixed seed for genetic algorithm. Defaults to 'None' which means random seed.",
"examples": [None],
},
2025-10-28 02:50:31 +01:00
)
penalties: dict[str, Union[float, int, str]] = Field(
default_factory=lambda: {
"ev_soc_miss": 10,
"ac_charge_break_even": 1.0,
},
json_schema_extra={
"description": "A dictionary of penalty function parameters consisting of a penalty function parameter name and the associated value.",
"examples": [
{"ev_soc_miss": 10},
],
},
2025-10-28 02:50:31 +01:00
)
class OptimizationCommonSettings(SettingsBaseModel):
2025-10-28 02:50:31 +01:00
"""General Optimization Configuration."""
2025-10-28 02:50:31 +01:00
horizon_hours: Optional[int] = Field(
default=24,
ge=0,
json_schema_extra={
"description": "The general time window within which the energy optimization goal shall be achieved [h]. Defaults to 24 hours.",
"examples": [24],
},
)
2025-10-28 02:50:31 +01:00
interval: Optional[int] = Field(
default=3600,
ge=15 * 60,
le=60 * 60,
json_schema_extra={
"description": "The optimization interval [sec].",
"examples": [60 * 60, 15 * 60],
},
2025-10-28 02:50:31 +01:00
)
algorithm: Optional[str] = Field(
default="GENETIC",
json_schema_extra={"description": "The optimization algorithm.", "examples": ["GENETIC"]},
)
2025-10-28 02:50:31 +01:00
genetic: Optional[GeneticCommonSettings] = Field(
default=None,
json_schema_extra={
"description": "Genetic optimization algorithm configuration.",
"examples": [{"individuals": 400, "seed": None, "penalties": {"ev_soc_miss": 10}}],
},
2025-10-28 02:50:31 +01:00
)
# Computed fields
@computed_field # type: ignore[prop-decorator]
@property
def keys(self) -> list[str]:
"""The keys of the solution."""
try:
ems_eos = get_ems()
except:
# ems might not be initialized
return []
key_list = []
optimization_solution = ems_eos.optimization_solution()
if optimization_solution:
# Prepare mapping
df = optimization_solution.solution.to_dataframe()
key_list = df.columns.tolist()
return sorted(set(key_list))
# Validators
@model_validator(mode="after")
def _enforce_algorithm_configuration(self) -> "OptimizationCommonSettings":
"""Ensure algorithm default configuration is set."""
if self.algorithm is not None:
if self.algorithm.lower() == "genetic" and self.genetic is None:
self.genetic = GeneticCommonSettings()
return self
2025-10-28 02:50:31 +01:00
class OptimizationSolution(PydanticBaseModel):
"""General Optimization Solution."""
id: str = Field(
..., json_schema_extra={"description": "Unique ID for the optimization solution."}
)
2025-10-28 02:50:31 +01:00
generated_at: DateTime = Field(
..., json_schema_extra={"description": "Timestamp when the solution was generated."}
)
2025-10-28 02:50:31 +01:00
comment: Optional[str] = Field(
default=None,
json_schema_extra={"description": "Optional comment or annotation for the solution."},
2025-10-28 02:50:31 +01:00
)
valid_from: Optional[DateTime] = Field(
default=None, json_schema_extra={"description": "Start time of the optimization solution."}
2025-10-28 02:50:31 +01:00
)
valid_until: Optional[DateTime] = Field(
default=None, json_schema_extra={"description": "End time of the optimization solution."}
2025-10-28 02:50:31 +01:00
)
total_losses_energy_wh: float = Field(
json_schema_extra={"description": "The total losses in watt-hours over the entire period."}
2025-10-28 02:50:31 +01:00
)
total_revenues_amt: float = Field(
json_schema_extra={"description": "The total revenues [money amount]."}
)
2025-10-28 02:50:31 +01:00
total_costs_amt: float = Field(
json_schema_extra={"description": "The total costs [money amount]."}
)
2025-10-28 02:50:31 +01:00
fitness_score: set[float] = Field(
json_schema_extra={"description": "The fitness score as a set of fitness values."}
)
2025-11-08 15:42:18 +01:00
prediction: PydanticDateTimeDataFrame = Field(
json_schema_extra={
"description": (
"Datetime data frame with time series prediction data per optimization interval:"
"- pv_energy_wh: PV energy prediction (positive) in wh"
"- elec_price_amt_kwh: Electricity price prediction in money per kwh"
"- feed_in_tariff_amt_kwh: Feed in tariff prediction in money per kwh"
"- weather_temp_air_celcius: Temperature in °C"
"- loadforecast_energy_wh: Load mean energy prediction in wh"
"- loadakkudoktor_std_energy_wh: Load energy standard deviation prediction in wh"
"- loadakkudoktor_mean_energy_wh: Load mean energy prediction in wh"
)
}
)
solution: PydanticDateTimeDataFrame = Field(
json_schema_extra={
"description": (
"Datetime data frame with time series solution data per optimization interval:"
"- load_energy_wh: Load of all energy consumers in wh"
"- grid_energy_wh: Grid energy feed in (negative) or consumption (positive) in wh"
"- costs_amt: Costs in money amount"
"- revenue_amt: Revenue in money amount"
"- losses_energy_wh: Energy losses in wh"
"- <device-id>_operation_mode_id: Operation mode id of the device."
"- <device-id>_operation_mode_factor: Operation mode factor of the device."
"- <device-id>_soc_factor: State of charge of a battery/ electric vehicle device as factor of total capacity."
"- <device-id>_energy_wh: Energy consumption (positive) of a device in wh."
)
}
)