@@ -23,6 +23,8 @@ def __init__(self):
23
23
24
24
self .database_handler = DatabaseHandler ("energy_prices" )
25
25
26
+ self .upcoming_energy_rates_cache = []
27
+
26
28
def get_next_price_minimum (self , first_iteration : bool = False ) -> EnergyRate :
27
29
"""
28
30
This method performs a series of operations to determine the most cost-effective time to charge by analyzing
@@ -57,6 +59,7 @@ def get_next_price_minimum(self, first_iteration: bool = False) -> EnergyRate:
57
59
all_energy_rates = self ._extract_energy_rates_from_api_response (api_result )
58
60
self .write_energy_rates_to_database (all_energy_rates )
59
61
upcoming_energy_rates = self ._remove_energy_rates_from_the_past (all_energy_rates )
62
+ self .upcoming_energy_rates_cache = upcoming_energy_rates
60
63
if first_iteration and not self ._check_if_next_three_prices_are_greater_than_current_one (
61
64
upcoming_energy_rates
62
65
):
@@ -80,44 +83,29 @@ def get_next_price_minimum(self, first_iteration: bool = False) -> EnergyRate:
80
83
):
81
84
minimum_of_energy_rates .has_to_be_rechecked = True
82
85
83
- minimum_of_energy_rates .maximum_charging_duration = self ._calculate_maximum_charging_duration (
84
- minimum_of_energy_rates , upcoming_energy_rates
85
- )
86
-
87
86
return minimum_of_energy_rates
88
87
89
- @staticmethod
90
- def _calculate_maximum_charging_duration (
91
- minimum_of_energy_rates : EnergyRate , upcoming_energy_rates : list [EnergyRate ]
92
- ) -> timedelta :
88
+ def set_maximum_charging_duration_of_current_energy_rate (self , current_energy_rate : EnergyRate ) -> None :
93
89
"""
94
- Calculates the maximum duration for which charging is feasible under given energy rate constraints.
90
+ It takes the current energy rate from the InverterChargeController and compares it against the upcoming energy
91
+ rates. It then calculates and sets the maximum possible charging duration based on the comparison of the current
92
+ price and the consecutive ones.
95
93
96
- This method computes the maximum charging duration based on the minimum energy rate within the list of upcoming
97
- energy rates and MAXIMUM_THRESHOLD. This ensures that charging only continues while subsequent energy rates
98
- remain within the allowed threshold of the minimum energy rate.
94
+ We have to provide the current energy rate as the upcoming energy rates (which are saved as an instance
95
+ variable) only include the **upcoming** energy rates and not the current one.
99
96
100
97
Args:
101
- minimum_of_energy_rates: The energy rate which is considered as the minimum acceptable
102
- rate for initiating or continuing charging.
103
- upcoming_energy_rates: A list of energy rates representing projected energy pricing
104
- in subsequent time periods.
105
-
106
- Returns:
107
- A timedelta object representing the maximum charging duration under the given energy rate constraints.
98
+ current_energy_rate (EnergyRate): The current energy rate for comparison against upcoming energy rates.
108
99
"""
109
- index = upcoming_energy_rates .index (minimum_of_energy_rates )
110
100
charging_duration = timedelta (hours = 1 )
111
- if index + 1 >= len (upcoming_energy_rates ):
112
- return charging_duration
113
101
114
- for energy_rate in upcoming_energy_rates [ index + 1 :] :
115
- if energy_rate .rate <= minimum_of_energy_rates .rate + TibberAPIHandler .MAXIMUM_THRESHOLD :
102
+ for energy_rate in self . upcoming_energy_rates_cache :
103
+ if energy_rate .rate <= current_energy_rate .rate + TibberAPIHandler .MAXIMUM_THRESHOLD :
116
104
charging_duration += timedelta (hours = 1 )
117
- continue
118
- break
105
+ else :
106
+ break
119
107
120
- return charging_duration
108
+ current_energy_rate . maximum_charging_duration = charging_duration
121
109
122
110
@staticmethod
123
111
def _check_if_next_three_prices_are_greater_than_current_one (all_upcoming_energy_rates : list [EnergyRate ]) -> bool :
@@ -168,8 +156,6 @@ def _fetch_upcoming_prices_from_api(self) -> dict:
168
156
}
169
157
"""
170
158
)
171
- # Note: Sometimes we only get the prices for today from the tibber api and the prices for tomorrow stay empty
172
- # I guess they are not determined yet...?
173
159
self .log .debug ("Crawling the Tibber API for the electricity prices" )
174
160
response = self .client .execute (query )
175
161
self .log .trace (f"Retrieved data: { response } " )
0 commit comments