mirror of
https://github.com/openhp/HeatPumpController.git
synced 2024-11-18 12:33:59 +00:00
Update README.md
This commit is contained in:
parent
ec0a7022ff
commit
133a49b377
1 changed files with 49 additions and 52 deletions
101
README.md
101
README.md
|
@ -185,6 +185,55 @@ link
|
|||
| **HWP_ON** | Hot side pump powered on|
|
||||
| **Err:_errorcode_** | Error code: 1 = temperature sensor error, 2 = Hot side pressure too high 3 = cold side pressure too low|
|
||||
|
||||
## T sensors abbreviations
|
||||
Abbreviations used in the documentation and firmware <br><br>
|
||||
|
||||
Main sensors:
|
||||
| Abbr. | Full name |
|
||||
| ----- | -------------------- |
|
||||
| Tae | after evaporator |
|
||||
| Tbe | before evaporator |
|
||||
| Tci | cold side "input" |
|
||||
| Tco | cold side "output" |
|
||||
| Tbc | before condenser |
|
||||
| Tac | after condenser |
|
||||
| Thi | hot side "input" |
|
||||
| Tho | hot side "output" |
|
||||
| Tcrc | crankcase (compressor itself)|
|
||||
|
||||
Additional sensor used in "swiming pool heater" or "water tank heater" schemes:
|
||||
| Abbr. | Full name |
|
||||
| ----- | -------------------- |
|
||||
| Ts1 | additional sensor1 |
|
||||
|
||||
Additional sensors, disabled and not used by default:
|
||||
| Abbr. | Full name |
|
||||
| ----- | -------------------- |
|
||||
| Treg | regenerator temperature|
|
||||
| Ts2 | additional sensor2 |
|
||||
|
||||
## Hints
|
||||
For more information about Heat Pumps look at [Wikipedia about HP](https://en.wikipedia.org/wiki/Heat_pump).<br>
|
||||
If you are interested in questions like "how refrigeration systems works" read Patrick Kotzaoglanian books.<br>
|
||||
If you want more technical details, sophisticated scmemes, "how EEV can be driven by temperature" diagrams, etc. refer to vendors manuals (you can find a lot in Alfa Laval brochures, Danfoss guides, and so on).<br>
|
||||
For refrigerants and oils types comparison see wiki.<br><br>
|
||||
|
||||
## Personal experience
|
||||
Note that the SCT013 sensor and the current monitoring scheme cannot be used for accurate measurements and accurate COP calculations. Use wattmeter for accurate power measurements.<br>
|
||||
Measuring the temperature of a warm floor with sensor at one point is a bad idea - it's better to deal with temperature of the "hot in" water coming from all over the floor, as implemented in firmware.<br>
|
||||
The weather-dependent (both outdoor and indoor temperature dependent) system does not work fine for 30-150 m2 buildings. The system turns out to be difficult and works bad due to unpredictable ventilation. And also due to the unpredictability of heat emitted in the house by other sources.<br>
|
||||
I tried the scheme with a flooded evaporator in 2019 and found it extremely problematic, then refused to use it.<br>
|
||||
Deep regeneration schemes are useful only for some refrigerants and only in certain temperature ranges. I also tried deep regeneration, I was convinced that the theory coincides with the practice and then also refused this idea.<br>
|
||||
In general, it is possible by complicating the refrigeration scheme to win somewhere 1%, somewhere 3%, but all this leads to significant time and money costs, compared to not very much profit.<br>
|
||||
Summary: If you want experiments - Experiment. Want reliably and quickly - make system simple.<br>
|
||||
<br>
|
||||
## License
|
||||
GPLv3. <br>
|
||||
This product is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.<br>
|
||||
## Author
|
||||
<br>
|
||||
gonzho АТ web.de (c) 2018-2021<br>
|
||||
|
||||
## Firmware options and fine tunings
|
||||
|
||||
QA tests, uncomment to enable
|
||||
|
@ -320,55 +369,3 @@ Last option
|
|||
```c
|
||||
#define MAX_SEQUENTIAL_ERRORS 15 //max cycles to wait auto-clean error, ex: T sensor appears, stop compressor after counter exceeded (millis_cycle * MAX_SEQUENTIAL_ERRORS)
|
||||
```
|
||||
|
||||
## T sensors abbreviations
|
||||
Abbreviations used in the documentation and firmware <br><br>
|
||||
|
||||
Main sensors:
|
||||
| Abbr. | Full name |
|
||||
| ----- | -------------------- |
|
||||
| Tae | after evaporator |
|
||||
| Tbe | before evaporator |
|
||||
| Tci | cold side "input" |
|
||||
| Tco | cold side "output" |
|
||||
| Tbc | before condenser |
|
||||
| Tac | after condenser |
|
||||
| Thi | hot side "input" |
|
||||
| Tho | hot side "output" |
|
||||
| Tcrc | crankcase (compressor itself)|
|
||||
|
||||
Additional sensor used in "swiming pool heater" or "water tank heater" schemes:
|
||||
| Abbr. | Full name |
|
||||
| ----- | -------------------- |
|
||||
| Ts1 | additional sensor1 |
|
||||
|
||||
Additional sensors, disabled and not used by default:
|
||||
| Abbr. | Full name |
|
||||
| ----- | -------------------- |
|
||||
| Treg | regenerator temperature|
|
||||
| Ts2 | additional sensor2 |
|
||||
|
||||
## Hints
|
||||
For more information about Heat Pumps look at [Wikipedia about HP](https://en.wikipedia.org/wiki/Heat_pump).<br>
|
||||
If you are interested in questions like "how refrigeration systems works" read Patrick Kotzaoglanian books.<br>
|
||||
If you want more technical details, sophisticated scmemes, "how EEV can be driven by temperature" diagrams, etc. refer to vendors manuals (you can find a lot in Alfa Laval brochures, Danfoss guides, and so on).<br>
|
||||
For refrigerants and oils types comparison see wiki.<br><br>
|
||||
|
||||
## Personal experience
|
||||
Note that the SCT013 sensor and the current monitoring scheme cannot be used for accurate measurements and accurate COP calculations. Use wattmeter for accurate power measurements.<br>
|
||||
Measuring the temperature of a warm floor with sensor at one point is a bad idea - it's better to deal with temperature of the "hot in" water coming from all over the floor, as implemented in firmware.<br>
|
||||
The weather-dependent (both outdoor and indoor temperature dependent) system does not work fine for 30-150 m2 buildings. The system turns out to be difficult and works bad due to unpredictable ventilation. And also due to the unpredictability of heat emitted in the house by other sources.<br>
|
||||
I tried the scheme with a flooded evaporator in 2019 and found it extremely problematic, then refused to use it.<br>
|
||||
Deep regeneration schemes are useful only for some refrigerants and only in certain temperature ranges. I also tried deep regeneration, I was convinced that the theory coincides with the practice and then also refused this idea.<br>
|
||||
In general, it is possible by complicating the refrigeration scheme to win somewhere 1%, somewhere 3%, but all this leads to significant time and money costs, compared to not very much profit.<br>
|
||||
Summary: If you want experiments - Experiment. Want reliably and quickly - make system simple.<br>
|
||||
<br>
|
||||
## License
|
||||
|
||||
GPLv3. <br><br>
|
||||
|
||||
This product is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.<br>
|
||||
<br>
|
||||
## Author
|
||||
<br>
|
||||
gonzho АТ web.de (c) 2018-2021<br><br>
|
||||
|
|
Loading…
Reference in a new issue