Replies: 8 comments 49 replies
-
Do we think there is a bug, or do I just need to make these signed variables? |
Beta Was this translation helpful? Give feedback.
-
@revk Let me show you what I mean by DeltaT Management: You see pretty steady inlet temps and the room is keeping it's temperature and I also can cool it down a bit (this only works for cooler outdoor temperatures. it's 5°C this morning) So, to conclude: Your faikin logic isn't wrong, let me say that at first. |
Beta Was this translation helpful? Give feedback.
-
@revk When I try to build the software, I end with "ninja: error: '/home/user/ESP32-Faikin/ESP32/secure_boot_signing_key_ecdsa.pem', needed by 'signature_verification_key.bin', missing and no known rule to make it" |
Beta Was this translation helpful? Give feedback.
-
Any Insights on this new setting? :-D |
Beta Was this translation helpful? Give feedback.
-
Nothing yet. Going to try to implement a kind of special logic for the Perfera. |
Beta Was this translation helpful? Give feedback.
-
He will not be doing anything on this branch, it will be a merge later, if it makes sense. And we have a beta test process as well. |
Beta Was this translation helpful? Give feedback.
-
@revk I made a first shot of FTXM Control logic. See main...miniluma:ESP32-Faikin:ftxm_testing Do you want me to make a PR or would you build a testing version so that I can test it first? |
Beta Was this translation helpful? Give feedback.
-
I've just discovered this thread and wanted to add some information. It's possible to change the 4 degrees offset of the Perfera units using the remote. https://www.manualslib.com/manual/2160120/Daikin-Perfera-Rxm-R-Series.html?page=251#manual |
Beta Was this translation helpful? Give feedback.
-
Hi, first of all, I really love this project! Great work.
Regarding Perfera heating logic, I have a problem with heatover. I noticed an error when setting negative values for heatover. ("must be positive").
Here is how Perfera wall mounted units work in heat mode (This is proven. I can provide more details an links, if you want):
So the optimal case for a long-running system with very low power consumption, a good SCOP (aka. low liquid temps) and low or no on/off cycles is to manage the deltaT.
Your current heating logic (with heatover=switchtemp=pushtemp=0) makes set = max + reference - current which is like inlet+1. (heatover and swichtemp increase is, right?)
But heating will start already at inlet-3.5. So you are requesting a lot of heat from the system
My first proposal: Please allow negative values for heatover
My second proposal:
Adapt the logic to Perfera behavior (at least as an option)
E.g. at current < min, set the unit target temp to inlet-2.
Let the algorithm readjust this as soon as inlet changes (always set=inlet-2)
If the room temp comes close to the desired temp (e.g. desired-0.1) reduce to inlet-3 (and follow any inlet changes)
As an experiment, you could set the target temp to inlet-3.5 if the desired temp is reached and keep it until current>max.
(It depends how quick you get the inlet in S21 to avoid the deltaT=4K and how fast the indoor unit deactivates if deltaT=4K. That needs to be tested)
Beta Was this translation helpful? Give feedback.
All reactions