Skip to content

Commit

Permalink
Store top colder than buffer top: add 3 degF to avoid calibration dif…
Browse files Browse the repository at this point in the history
…ferences
  • Loading branch information
thdfw committed Jan 6, 2025
1 parent c172bbf commit 4fdd6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gw_spaceheat/actors/atomic_ally.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def is_storage_colder_than_buffer(self) -> bool:
else:
self.alert(alias="store_v_buffer_fail", msg="It is impossible to know if the top of the storage is warmer than the top of the buffer!")
return False
if self.latest_temperatures[buffer_top] > self.latest_temperatures[tank_top]:
if self.latest_temperatures[buffer_top] > self.latest_temperatures[tank_top] + 3:
self.log("Storage top colder than buffer top")
return True
else:
Expand Down

0 comments on commit 4fdd6b0

Please sign in to comment.