-
|
Hi there, Thanks a lot for the work on the integration! I'm a software developer myself, so I might be able to contribute here and there. I'm trying to tweak my my Alpha-Innotec heatpump, as while I have the room thermostat setpoint on 17 degrees Celsius, it still is heating the house to 20-21 degrees :) Lowering the thermostat value helps but it's not ideal. Can someone help me understand how the heating curve shape is defined? Understanding that seems crucial to be able to tune it a little. I have read the Luxtronik manuals on this subject, but couldn't see an answer, I may have missed something. The images in e.g. this online version imply the curve to be non-linear, but fail to specify the parameters of the curve. My curve values are approximately as follows (adjusted a little to have simple resulting formula)
If this is a linear curve (or line then rather), I would expect the resulting curve to then be defined as This is not the case however: I can see in HASS and on the device display itself that my return temperature target is about 2 degrees below where I expect it to be. I can see it actually using that target temperature, as exactly when the return temperature sunk 2 degrees below the target it started heating. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
|
I've since by chance found this link /**
* Calculate desired heating return value for given outdoor temperature and heatcurve.
*/
function calcHeatcurve(outdoorTemp, heatingEnd, heatingFoot, heatingDelta)
{
// Prevent DivisionByZero
if((outdoorTemp - heatingFoot) != 40)
return heatingFoot + (heatingEnd - 20) * (heatingFoot - outdoorTemp) / (20 - (outdoorTemp - heatingFoot) / 2) + heatingDelta;
else
return 0;
} |
Beta Was this translation helpful? Give feedback.
-
|
The room thermostate (RBE) temp also affects the calculated return temp. You can set the impact of it in %. Einflussfaktor RT (%) in German. |
Beta Was this translation helpful? Give feedback.
-
|
See this manual: 83032600bNL_RBE.pdf |
Beta Was this translation helpful? Give feedback.
The room thermostate (RBE) temp also affects the calculated return temp. You can set the impact of it in %. Einflussfaktor RT (%) in German.