Heishamon <> Node Red voor Panasonic warmtepompen

Pagina: 1 ... 110 ... 121 Laatste
Acties:

Acties:
  • +1 Henk 'm!

  • The-Source
  • Registratie: Augustus 2001
  • Laatst online: 16:12
Is het mogelijk om een soort van heartbeat mqtt out in de flow te bouwen of wellicht vanuit bestaand item en mqtt als custom erin te zetten.
Zelf heb ik al een keer gehad dat mijn nodered container niet up kwam @hemertje en keer een ip vergeten ;)
Zelf zou ik het topic willen bewaken met mijn home assistant. Heishamon module is wel te tracken maar, mocht mqtt broker het helemaal niet doen ook wel. Maar mis nog een optie om de werking van de flow, puur als in het is opgestart, om dat te bewaken.

Taal fouten inbegrepen ;)
Mijn AI Art YouTube kanaal


Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
Ik heb een MQTT tester gebouwd.

Afbeeldingslocatie: https://tweakers.net/i/7gn3J-Pe77Me6arlUgsoj94QKps=/800x/filters:strip_exif()/f/image/6ZkQCOFBVH8RIAzomGEAjfN4.png?f=fotoalbum_large

Je zou iets kunnen verzinnen als dat HA een mqtt topic plaatst, wat als verzoek voor de flow dient. De flow stuurt dan een antwoord terug.

Wat ik heb gebouwd onder de bovenstaande knop, is dat na het indrukken er een MQTT topic gestuurd wordt naar [broker/status]
Een andere node in de flow luistert weer naar dit topic.
Als er wat binnen komt na het drukken binnen 10 seconden, is het goed.
Als er binnen 10 seconden niks binnen komt, dan zie je een log bericht.


Om dit te vertalen voor HA, zou je eigenlijk een MQTT topic moeten zenden [nodered/status_request]
Als de flow een msg hierop binnen krijgt, dan een antwoord sturen naar [nodered/status] payload = 'online'.


Maar, aan de andere kant...
MQTT broker en NR zijn basis dingen welke altijd horen te werken.
Je kunt hier wel een heartbeat monitor op zetten, maar als je niet kijkt naar de monitor schiet je er nog niks mee op.

[ Voor 9% gewijzigd door edterbak op 26-01-2025 00:59 ]


Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@The-Source

Hier de flow..

Afbeeldingslocatie: https://tweakers.net/i/M05yumbxPcLC7lYLVpqOL2rWXG8=/800x/filters:strip_exif()/f/image/BP8qr2Za1jjK9bLBCIIabqgK.png?f=fotoalbum_large

Optie 1: Iedere X seconden automatisch een teken van leven laten geven via de trigger
Optie 2: via HA een verzoek doen voor een teken van leven.

Het antwoord wordt gestuurd naar de broker
Topic: "node_red/status"
Payload: "online"

Het verzoek (een willekeurig msg, maakt niet uit.) sturen naar
Topic: "node_red/status_request"
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[
    {
        "id": "de908357ebc1661a",
        "type": "mqtt in",
        "z": "d5fea67661261002",
        "name": "node_red/status_request",
        "topic": "node_red/status_request",
        "qos": "0",
        "datatype": "auto-detect",
        "broker": "92e5b2c.00a8b5",
        "nl": false,
        "rap": true,
        "rh": 0,
        "inputs": 0,
        "x": 390,
        "y": 2800,
        "wires": [
            [
                "f07e4a05bae15cfb"
            ]
        ]
    },
    {
        "id": "f07e4a05bae15cfb",
        "type": "function",
        "z": "d5fea67661261002",
        "name": "Create reply",
        "func": "let msg1={};\nmsg1.payload = 'online'\nreturn msg1;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 610,
        "y": 2800,
        "wires": [
            [
                "d289932852f2f7e1"
            ]
        ]
    },
    {
        "id": "d289932852f2f7e1",
        "type": "mqtt out",
        "z": "d5fea67661261002",
        "name": "",
        "topic": "node_red/status",
        "qos": "0",
        "retain": "false",
        "respTopic": "",
        "contentType": "",
        "userProps": "",
        "correl": "",
        "expiry": "",
        "broker": "92e5b2c.00a8b5",
        "x": 800,
        "y": 2800,
        "wires": []
    },
    {
        "id": "183fc86cee3e25b1",
        "type": "inject",
        "z": "d5fea67661261002",
        "name": "Auto trigger at interval",
        "props": [
            {
                "p": "topic",
                "vt": "str"
            }
        ],
        "repeat": "3600",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "trigger",
        "x": 390,
        "y": 2760,
        "wires": [
            [
                "f07e4a05bae15cfb"
            ]
        ]
    },
    {
        "id": "92e5b2c.00a8b5",
        "type": "mqtt-broker",
        "name": "MQTT (x.x.x.x)",
        "broker": "x.x.x.x",
        "port": "1883",
        "clientid": "",
        "autoConnect": true,
        "usetls": false,
        "compatmode": false,
        "protocolVersion": "4",
        "keepalive": "60",
        "cleansession": true,
        "autoUnsubscribe": true,
        "birthTopic": "",
        "birthQos": "0",
        "birthRetain": "false",
        "birthPayload": "",
        "birthMsg": {},
        "closeTopic": "",
        "closeQos": "0",
        "closeRetain": "false",
        "closePayload": "",
        "closeMsg": {},
        "willTopic": "",
        "willQos": "0",
        "willRetain": "false",
        "willPayload": "",
        "willMsg": {},
        "userProps": "",
        "sessionExpiry": ""
    }
]
Als node red down is, dan komt het antwoord ook niet.
Als je HA wat instrueert, heb je je hartbiet in HA.
Je zou een timer kunnen starten of resetten iedere keer dat 'online' wel binnen komt.
Na het aflopen van de timer gaan de lampen in je woonkamer knipperen, laat je je rook alarm afgaan, zet je de TV uit en de waterkoker aan en de rolluiken naar beneden.... :D :D :D

[ Voor 5% gewijzigd door edterbak op 26-01-2025 01:20 ]


Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@The-Source

De automations zouden er dan ongeveer zo uit moeten zien...

Stap 1 is het aanmaken van een helper : Timer. (te vinden in Settings > Devices en services> Helpers > Create helper.

Afbeeldingslocatie: https://tweakers.net/i/JQP7F6-VXxcwvg0U2ieYYckYLCo=/x800/filters:strip_exif()/f/image/vcYGXLcJQ4ltnA5GWUvJixb5.png?f=fotoalbum_large

Dan twee automations maken.
Automation - Timer Start
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
alias: Node Red HB - Timer start
description: >-
  Each time the mqtt topic 'node_red/status' receives a payload 'online', the
  timer is restarted
triggers:
  - trigger: mqtt
    topic: node_red/status
    payload: online
conditions: []
actions:
  - action: timer.start
    metadata: {}
    data:
      duration: "3600"
    target:
      entity_id: timer.node_red_heartbeat
mode: single



Automation - Timer End
code:
1
2
3
4
5
6
7
8
9
10
alias: Node Red HB - Timer end
description: ""
triggers:
  - trigger: event
    event_type: timer.finished
    event_data:
      entity_id: timer.node_red_heartbeat
conditions: []
actions: []
mode: single


Bij Timer End moet je alleen nog je eigen gewenste ACTION defineren. Je kunt hier een msg naar je telefoon doen bijvoorbeeld, of what ever.:)

Enjoy

[ Voor 27% gewijzigd door edterbak op 26-01-2025 02:22 ]


Acties:
  • +5 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29

Nieuwe versie beschikbaar:

versie 24.09 stable beta

Link:
https://github.com/edterb...flows/flows%20v24.09.json

Changelog
BUG: SoftStart function: After defrost, the softstart function always started
BUG: SoftStart function: The softstart function was able to keep looping in startup phase and never go to phase 2
Added extra trigger to all the function when the heatpump turns on/off and defrost is on/off

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zaterdag 25 januari 2025 @ 23:36:
Van @Pietjebel10 wel


Ik heb nu een hard coded counter op de Startup phase.
De startup phase wordt maximaal 5x doorlopen. Dus 5x3 minuten = 15 minuten dat hij probeert de pomp te laten relaxen. Als het na 15 minuten niet lukt, dan doorstappen.

Is dit realistisch na 15 minuten?

Ik ben nog even aan het testen. Het wordt waarschijnlijk laat vanacht, de upload. :+
We gaan het proberen Ed en kijken hoe de update werkt en reageert (y)

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
The-Source schreef op zondag 26 januari 2025 @ 00:39:
Is het mogelijk om een soort van heartbeat mqtt out in de flow te bouwen of wellicht vanuit bestaand item en mqtt als custom erin te zetten.
Zelf heb ik al een keer gehad dat mijn nodered container niet up kwam @hemertje en keer een ip vergeten ;)
Zelf zou ik het topic willen bewaken met mijn home assistant. Heishamon module is wel te tracken maar, mocht mqtt broker het helemaal niet doen ook wel. Maar mis nog een optie om de werking van de flow, puur als in het is opgestart, om dat te bewaken.
Goed idee om techniek in te zetten om menselijke handelingen te laten controleren als reminder

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zondag 26 januari 2025 @ 01:12:
@The-Source

Hier de flow..

[Afbeelding]

Optie 1: Iedere X seconden automatisch een teken van leven laten geven via de trigger
Optie 2: via HA een verzoek doen voor een teken van leven.

Het antwoord wordt gestuurd naar de broker
Topic: "node_red/status"
Payload: "online"

Het verzoek (een willekeurig msg, maakt niet uit.) sturen naar
Topic: "node_red/status_request"


[...]


Als node red down is, dan komt het antwoord ook niet.
Als je HA wat instrueert, heb je je hartbiet in HA.
Je zou een timer kunnen starten of resetten iedere keer dat 'online' wel binnen komt.
Na het aflopen van de timer gaan de lampen in je woonkamer knipperen, laat je je rook alarm afgaan, zet je de TV uit en de waterkoker aan en de rolluiken naar beneden.... :D :D :D
Dank voor het meedenken en je Flow

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zondag 26 januari 2025 @ 02:12:
@The-Source

De automations zouden er dan ongeveer zo uit moeten zien...

Stap 1 is het aanmaken van een helper : Timer. (te vinden in Settings > Devices en services> Helpers > Create helper.

[Afbeelding]

Dan twee automations maken.
Automation - Timer Start
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
alias: Node Red HB - Timer start
description: >-
  Each time the mqtt topic 'node_red/status' receives a payload 'online', the
  timer is restarted
triggers:
  - trigger: mqtt
    topic: node_red/status
    payload: online
conditions: []
actions:
  - action: timer.start
    metadata: {}
    data:
      duration: "3600"
    target:
      entity_id: timer.node_red_heartbeat
mode: single



Automation - Timer End
code:
1
2
3
4
5
6
7
8
9
10
alias: Node Red HB - Timer end
description: ""
triggers:
  - trigger: event
    event_type: timer.finished
    event_data:
      entity_id: timer.node_red_heartbeat
conditions: []
actions: []
mode: single


Bij Timer End moet je alleen nog je eigen gewenste ACTION defineren. Je kunt hier een msg naar je telefoon doen bijvoorbeeld, of what ever.:)

Enjoy
Ik doe ook graag mee ter leering en vermaek

Een push bericht op je telefoon bij geen communicatie lijkt me prima! d:)b

Nu eens uitzoeken hoe ik dat voor elkaar krijg?

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zondag 26 januari 2025 @ 02:32:

Nieuwe versie beschikbaar:

versie 24.09 stable beta

Link:
https://github.com/edterb...flows/flows%20v24.09.json

Changelog
BUG: SoftStart function: After defrost, the softstart function always started
BUG: SoftStart function: The softstart function was able to keep looping in startup phase and never go to phase 2
Added extra trigger to all the function when the heatpump turns on/off and defrost is on/off
Zo dat werd inderdaad een latertje @edterbak

Grote Dank weer voor al je werk die je belangeloos in dit project stopt en waar wij gebruik van mogen maken!

:*) _/-\o_ d:)b 7(8)7

Hopelijk heb je genoten van je nachtrust :Z

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
@edterbak had je mijn e-mail van de week gezien? Kan je er iets mee?


Als waardering een paar koppen koffie gedoneerd voor deze zondagochtend

Waardeer jij Ed ook!?

> https://ko-fi.com/edterbak

[ Voor 22% gewijzigd door hemertje op 26-01-2025 09:23 ]

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +2 Henk 'm!

  • MikeyMan
  • Registratie: Februari 2003
  • Laatst online: 18:59

MikeyMan

Vidi, Vici, Veni

@edterbak Netjes! Goed werk, hij draait weer.

Zie dat de condities op binnen en buitentemperatuur er ook in zitten, top!

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zondag 26 januari 2025 @ 02:32:

Nieuwe versie beschikbaar:

versie 24.09 stable beta

Link:
https://github.com/edterb...flows/flows%20v24.09.json

Changelog
BUG: SoftStart function: After defrost, the softstart function always started
BUG: SoftStart function: The softstart function was able to keep looping in startup phase and never go to phase 2
Added extra trigger to all the function when the heatpump turns on/off and defrost is on/off
Ben de MQTT broker nu niet vergeten :P

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Flow version 24.09 (stable beta)

26/01 11:50:19 - SYSTEM: TimeZone set to: Europe/Amsterdam
26/01 11:50:00 - SYSTEM: MQTT Broker: Node Red MQTT node connected
26/01 11:49:25 - SYSTEM - HEISHAMON Connection: Online
26/01 11:49:22 - Compressor: stopped
26/01 11:49:22 - Function SoftStart Quietmode: Compressor run ended, quiet mode is already set to level 3
26/01 11:49:22 - SYSTEM: WAR settings OK
26/01 11:49:22 - SYSTEM: Heatpump zone 2 is set to controle water temperature
26/01 11:49:22 - SYSTEM: Heatpump zone 1 is set to controle water temperature
26/01 11:49:22 - SYSTEM: Heatpump is in DIRECT mode
26/01 11:49:22 - SYSTEM - HEISHAMON Connection: Offline
26/01 11:48:45 - SYSTEM: MQTT Broker: WARNING - Node Red MQTT node not connected !
26/01 11:48:33 - SYSTEM: Persistent storage: OK
26/01 11:48:33 - Quiet mode manager: Function turned on. Restoring quietmode to level 3
26/01 11:48:33 - Function SoftStart: SoftStart function end
26/01 11:48:33 - Function - RTC: 1
26/01 11:48:33 - Function - SoftStart: 1
26/01 11:48:33 - Function - WAR: 1
26/01 11:48:32 - SYSTEM: MQTT block inactive, default block mode: UNRESTRICTED
26/01 11:48:32 - Function - Solar: 1
26/01 11:48:32 - Function NightReduction: 0
26/01 11:48:32 - SYSTEM: Start---------------------------------------------------------------

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +1 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
snelle evaluatie

voordat ik vlak voor de middag de update uitvoerde was het op de normale thermostaat in de woonkamer 21,1GrC, de digitale Zigbee sensor gaf 20.6GrC aan, deze wijkt dus een halve graad af

we vinden 20-21GrC prettig in de woonkamer dus 20,5GrC is een prima instelling
vanwege de halve graad afwijking kan het Setpoint naar 20.0GrC

wat me opvalt is ondanks er geen CV warmtevraag is, de woonkamer is op temperatuur en er is geen SWW vraag is, toch de compressor is gestart, enig idee waarom?

Afbeeldingslocatie: https://tweakers.net/i/k5owHFaB7Or-QcGlp7PAEMLB7fM=/800x/filters:strip_exif()/f/image/z4O9IriNx0hY0loqT79MWR8B.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/9iWD2nBIAmEgpvxXt8pyzUWOV7A=/800x/filters:strip_exif()/f/image/i9FhHOHmuHUWtozSUos7IUjf.png?f=fotoalbum_large

verzoekje:
kan je bij een volgende versie de de Temperature grafieken onder elkaar plaatsen op 1 scherm?
dan zijn ze beter afleesbaar naar mijn idee ipv 3 naast elkaar

de nieuwe counter werkt

code:
1
26/01 12:17:20 - Function SoftStart: --> Pump relaxing took too long... (51Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)


de log van afgelopen uur
SYSTEM
Flow version

24.09 (stable beta)

26/01 12:28:31 - MQTT Command: SetCurves: target: 27 (SP Calculation)
26/01 12:28:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
26/01 12:28:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.63 °C)
26/01 12:23:31 - MQTT Command: SetCurves: target: 28 (SP Calculation)
26/01 12:23:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
26/01 12:23:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)
26/01 12:17:42 - MQTT Command: SetCurves: target: 27
26/01 12:17:42 - MQTT Command: SetQuietMode: 3 (SP Calculation)
26/01 12:17:42 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
26/01 12:17:42 - Function SoftStart: SoftStart function end
26/01 12:17:42 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
26/01 12:17:42 - Compressor: stopped
26/01 12:17:42 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
26/01 12:17:42 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
26/01 12:17:32 - MQTT Command: SetCurves: target: 28 (SP Calculation)
26/01 12:17:20 - Function - Calculate new SP: New final SP calculated: Current setpoint: 34 °C. New calculated setpoint: 28 °C
26/01 12:17:20 - Function SoftStart: Correction: 8 > 1 °C - (STABLE) Freq: 51Hz, SP_Final: 19°C
26/01 12:17:20 - Function SoftStart: --> Pump relaxing took too long... (51Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
26/01 12:17:09 - Function SoftStart: Correction: 7 > 8 °C - (EVALUATING) Freq: 50Hz, SP_Final: 26°C
26/01 12:14:09 - Function SoftStart: Correction: 8 > 7 °C - (STARTUP) Freq: 56Hz, SP_Final: 25°C
26/01 12:14:09 - Function SoftStart: --> Pump did not yet relax (56Hz). Restarting Phase 1 again... (Count: 5/5)
26/01 12:13:59 - Function - Calculate new SP: New final SP calculated: Current setpoint: 34 °C. New calculated setpoint: 35 °C
26/01 12:13:59 - Function SoftStart: Correction: 7 > 8 °C - (EVALUATING) Freq: 56Hz, SP_Final: 26°C
26/01 12:10:58 - Function SoftStart: --> Pump did not yet relax (55Hz). Restarting Phase 1 again... (Count: 4/5)
26/01 12:10:48 - Function SoftStart: Correction: 7 > 7 °C - (EVALUATING) Freq: 56Hz, SP_Final: 25°C
26/01 12:08:07 - MQTT Command: SetCurves: target: 34 (SP Calculation)
26/01 12:08:07 - Function - Calculate new SP: New final SP calculated: Current setpoint: 33 °C. New calculated setpoint: 34 °C
26/01 12:08:04 - Function SoftStart: Correction: 6 > 7 °C - (STARTUP) Freq: 56Hz, SP_Final: 25°C
26/01 12:07:47 - Function SoftStart: --> Pump did not yet relax (55Hz). Restarting Phase 1 again... (Count: 3/5)
26/01 12:07:37 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 56Hz, SP_Final: 24°C
26/01 12:06:04 - MQTT Command: SetCurves: target: 33 (SP Calculation)
26/01 12:06:04 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 33 °C
26/01 12:06:04 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 55Hz, SP_Final: 24°C
26/01 12:05:31 - MQTT Command: SetCurves: target: 32 (SP Calculation)
26/01 12:05:06 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 32 °C
26/01 12:05:04 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 55Hz, SP_Final: 23°C
26/01 12:04:37 - Function SoftStart: --> Pump did not yet relax (56Hz). Restarting Phase 1 again... (Count: 2/5)
26/01 12:04:26 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 56Hz, SP_Final: 22°C
26/01 12:04:09 - MQTT Command: SetCurves: target: 31 (SP Calculation)
26/01 12:04:09 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
26/01 12:04:09 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 56Hz, SP_Final: 22°C
26/01 12:03:24 - MQTT Command: SetCurves: target: 30 (SP Calculation)
26/01 12:03:24 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
26/01 12:03:24 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 55Hz, SP_Final: 21°C
26/01 12:03:16 - Function SoftStart Quietmode: Timer ended, quiet mode is already set to level 2
26/01 12:02:39 - MQTT Command: SetCurves: target: 29 (SP Calculation)
26/01 12:02:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
26/01 12:02:39 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 56Hz, SP_Final: 20°C
26/01 12:01:26 - Function SoftStart: --> Pump did not yet relax (55Hz). Restarting Phase 1 again... (Count: 1/5)
26/01 12:01:16 - Function SoftStart: Correction: 1 > 1 °C - (EVALUATING) Freq: 55Hz, SP_Final: 19°C
26/01 12:01:09 - MQTT Command: SetCurves: target: 28 (SP Calculation)
26/01 12:01:09 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
26/01 12:01:09 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 55Hz, SP_Final: 19°C
26/01 12:00:39 - MQTT Command: SetCurves: target: 27 (SP Calculation)
26/01 12:00:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
26/01 12:00:39 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 55Hz, SP_Final: 18°C
26/01 12:00:24 - MQTT Command: SetCurves: target: 26 (SP Calculation)
26/01 12:00:24 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
26/01 12:00:24 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 50Hz, SP_Final: 17°C
26/01 12:00:09 - MQTT Command: SetCurves: target: 25 (SP Calculation)
26/01 12:00:09 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
26/01 12:00:09 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 46Hz, SP_Final: 16°C
26/01 11:59:49 - MQTT Command: SetCurves: target: 24 (SP Calculation)
26/01 11:59:49 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
26/01 11:59:49 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 39Hz, SP_Final: 15°C
26/01 11:59:34 - MQTT Command: SetCurves: target: 23 (SP Calculation)
26/01 11:59:34 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
26/01 11:59:34 - Function SoftStart: Correction: -5 > -4 °C - (STARTUP) Freq: 31Hz, SP_Final: 14°C
26/01 11:58:15 - MQTT Command: SetCurves: target: 22 (SP Calculation)
26/01 11:58:15 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 22 °C
26/01 11:58:15 - Function SoftStart: Correction: 0 > -5 °C - (STARTUP) Freq: 16Hz, SP_Final: 13°C
26/01 11:58:15 - Compressor: running
26/01 11:58:15 - Function SoftStart Quietmode: Timer started (5 minutes)
26/01 11:58:15 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
26/01 11:57:28 - MQTT Command: SetCurves: target: 27 (SP Calculation)
26/01 11:57:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
26/01 11:57:28 - Function RTC: Correction change: From 0 to -2 °C (Room actual: 20.61 °C)
26/01 11:57:25 - RTC: Room setpoint changed to: 20 °C
26/01 11:57:24 - RTC: Room setpoint changed to: 20.1 °C
26/01 11:57:24 - RTC: Room setpoint changed to: 20.2 °C
26/01 11:57:24 - RTC: Room setpoint changed to: 20.3 °C
26/01 11:57:24 - RTC: Room setpoint changed to: 20.4 °C
26/01 11:54:58 - Function NightReduction: New correction: 0 °C
26/01 11:54:58 - MQTT Command: SetQuietMode: 2 (GUI)
26/01 11:54:58 - Function WAR: Setpoint change: From 28.6 to 28.4 °C
26/01 11:54:55 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 29 °C
26/01 11:54:51 - TOP4_Operating_Mode_State: 4
26/01 11:54:50 - MQTT Command: SetOperationMode: 4 (QuietMode Manager)
26/01 11:53:31 - SETUP - Sensors: Custom outside temperature sensor FOUND and used
26/01 11:50:19 - SYSTEM: TimeZone set to: Europe/Amsterdam
26/01 11:50:00 - SYSTEM: MQTT Broker: Node Red MQTT node connected
26/01 11:49:25 - SYSTEM - HEISHAMON Connection: Online
26/01 11:49:22 - Compressor: stopped
26/01 11:49:22 - Function SoftStart Quietmode: Compressor run ended, quiet mode is already set to level 3
26/01 11:49:22 - SYSTEM: WAR settings OK
26/01 11:49:22 - SYSTEM: Heatpump zone 2 is set to controle water temperature
26/01 11:49:22 - SYSTEM: Heatpump zone 1 is set to controle water temperature
26/01 11:49:22 - SYSTEM: Heatpump is in DIRECT mode
26/01 11:49:22 - SYSTEM - HEISHAMON Connection: Offline
26/01 11:48:45 - SYSTEM: MQTT Broker: WARNING - Node Red MQTT node not connected !
26/01 11:48:33 - SYSTEM: Persistent storage: OK
26/01 11:48:33 - Quiet mode manager: Function turned on. Restoring quietmode to level 3
26/01 11:48:33 - Function SoftStart: SoftStart function end
26/01 11:48:33 - Function - RTC: 1
26/01 11:48:33 - Function - SoftStart: 1
26/01 11:48:33 - Function - WAR: 1
26/01 11:48:32 - SYSTEM: MQTT block inactive, default block mode: UNRESTRICTED
26/01 11:48:32 - Function - Solar: 1
26/01 11:48:32 - Function NightReduction: 0
26/01 11:48:32 - SYSTEM: Start---------------------------------------------------------------

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • The-Source
  • Registratie: Augustus 2001
  • Laatst online: 16:12
Ik zal morgen upgraden naar de nieuwe versie. Dan kan de boel nog hopelijk 2 dagen stabiel draaien voordat een paar dagen weg ben.

Taal fouten inbegrepen ;)
Mijn AI Art YouTube kanaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
De HvE schreef op dinsdag 21 januari 2025 @ 21:01:
Denk dat je dat beter aan @Dylantje2 kunt vragen, daar is die PVoutput toch van ?
Die zal ook wel weten welke waarden die bij V1 tot V6 heeft toegekend.

Maar denk dat je beter 24h kunt wachten, PVoutput moet wel de kans krijgen om deze op te bouwen.
krijg helaas geen 24 uurs grafiek op PVOutput

wil je eens verder met me meedenken?
ik heb de Domoticz code van @Dylantje2 via CoPilot omgezet naar Node Red

maar krijg geen informatie binnen op PVOutput.org?

wellicht dat jij ziet wat er anders moet?

code:
1
[{"id":"45998ba77fe5ed10","type":"tab","label":"PVOutput.org","disabled":false,"info":"","env":[]},{"id":"cron-node","type":"cronplus","z":"45998ba77fe5ed10","name":"Every 5 minutes","outputField":"payload","timeZone":"","storeName":"","commandResponseMsgOutput":"output1","defaultLocation":"","defaultLocationType":"default","outputs":1,"options":[{"name":"every_5_minutes","topic":"every_5_minutes","payloadType":"default","payload":"","expressionType":"cron","expression":"*/5 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"}],"x":240,"y":360,"wires":[["function-node"]]},{"id":"function-node","type":"function","z":"45998ba77fe5ed10","name":"Prepare Data","func":"const PVoutputApi = 'XXXXXXXXXXXX';\nconst PVoutputSystemID = 'YYYYYY';\nconst PVoutputURL = 'http://pvoutput.org/service/r2/addstatus.jsp';\n\nconst Heat_Power_Production = msg.payload.panasonic_heat_pump.main.Heat_Power_Production;\nconst Heat_Power_Consumption = msg.payload.panasonic_heat_pump.main.Heat_Power_Consumption;\nconst DHW_Power_Production = msg.payload.panasonic_heat_pump.main.DHW_Power_Production;\nconst DHW_Power_Consumption = msg.payload.panasonic_heat_pump.main.DHW_Power_Consumption;\nconst Cool_Power_Production = msg.payload.panasonic_heat_pump.main.Cool_Power_Production;\nconst Cool_Power_Consumption = msg.payload.panasonic_heat_pump.main.Cool_Power_Consumption;\nconst Compressor_Current = msg.payload.panasonic_heat_pump.main.Compressor_Current;\nconst Defrosting_State = msg.payload.panasonic_heat_pump.main.Defrosting_State;\nconst EnergyConsumption_Heatpump = msg.payload.panasonic_heat_pump.s0.Watt[1];\nconst EnergyConsumption_Backup_Heater = msg.payload.panasonic_heat_pump.s0.Watthour[2];\nconst Pump_Flow = msg.payload.panasonic_heat_pump.main.Pump_Flow;\nconst Temp_Inlet_Actual = msg.payload.panasonic_heat_pump.main.Main_Inlet_Temp;\nconst Temp_Outlet_Actual = msg.payload.panasonic_heat_pump.main.Main_Outlet_Temp;\nconst Temp_Diff = Math.abs(Temp_Inlet_Actual - Temp_Outlet_Actual);\nconst Outside_Temperature = msg.payload.sensor.knmi_temperatuur;\nconst Windchill = msg.payload.sensor.knmi_gevoelstemperatuur;\n\nconst url = `${PVoutputURL}?d=${new Date().toISOString().slice(0, 10).replace(/-/g, '')}&t=${new Date().toTimeString().slice(0, 5)}&v1=${Heat_Power_Production}&v2=${Heat_Power_Consumption}&v3=${DHW_Power_Production}&v4=${DHW_Power_Consumption}&v5=${Cool_Power_Production}&v6=${Cool_Power_Consumption}&v7=${Compressor_Current}&v8=${Defrosting_State}&v9=${EnergyConsumption_Heatpump}&v10=${EnergyConsumption_Backup_Heater}&v11=${Pump_Flow}&v12=${Temp_Inlet_Actual}&v13=${Temp_Outlet_Actual}&v14=${Temp_Diff}&v15=${Outside_Temperature}&v16=${Windchill}`;\n\nmsg.url = url;\nmsg.headers = {\n    'X-Pvoutput-Apikey': PVoutputApi,\n    'X-Pvoutput-SystemId': PVoutputSystemID\n};\nreturn msg;","outputs":1,"timeout":"","noerr":0,"initialize":"","finalize":"","libs":[],"x":440,"y":360,"wires":[["http-request-node"]]},{"id":"http-request-node","type":"http request","z":"45998ba77fe5ed10","name":"Send to PVOutput","method":"POST","ret":"txt","paytoqs":"ignore","url":"https://pvoutput.org/service/r2/addstatus.jsp","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":640,"y":360,"wires":[["response-node"]]},{"id":"response-node","type":"debug","z":"45998ba77fe5ed10","name":"Response","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":840,"y":360,"wires":[]}]

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
@hemertje, ik zou nog eens proberen via webhook site.

als je daarheen gaat krijg je een eigen, tijdelijke, unique URL, iets als:
https://webhook.site/7119e1e5-9e6b-4513-ac3f-552d93d5b54c

die URL vul je in ipv http://pvoutput.org/service/r2/addstatus.jsp

als je dan een upload doe zie je exact wat je naar pvoutput zou sturen on de webhook site, headers, payload etc. Je kan dan goed foutzoeken.

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
helaas wordt ik daar ook niet wijzer van

code:
1
2
3
Date    26-01-2025 18:31:24 (2 minuten geleden)
Size    0 bytes
Time    0.000 sec

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
hemertje schreef op zondag 26 januari 2025 @ 09:22:
@edterbak had je mijn e-mail van de week gezien? Kan je er iets mee?
Oh, nee. Die had ik nog niet gezien. Goed dat je het zegt hier.
Ik heb 3 mailadressen in outlook, 3 mapjes. Ik kijk (bijna) nooit in die. Sorry.

Ik ga nu kijken. Ben benieuwd.

Acties:
  • +1 Henk 'm!

  • De HvE
  • Registratie: Oktober 2013
  • Laatst online: 15-09 21:32
hemertje schreef op zondag 26 januari 2025 @ 17:29:
[...]


krijg helaas geen 24 uurs grafiek op PVOutput
Heb jij een betalende account bij PVoutput ???

Acties:
  • +3 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
De HvE schreef op maandag 27 januari 2025 @ 09:32:
[...]


Heb jij een betalende account bij PVoutput ???
Volgens mij wordt 't tijd deze discussie te verplaatsen naar PVOutput info en discussie of opmerkingen topic

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • +1 Henk 'm!

  • The-Source
  • Registratie: Augustus 2001
  • Laatst online: 16:12
Heb vandaag even de boel geupdate (naast veel andere software)
@edterbak de extra flow lijkt te werken maar heb zelf de intterval van 60m wat kleiner gezet.
Verder lijkt de yaml code voor timer finished niet overéén te komen met yaml code die ik uit mijn automation krijg:
code:
1
2
3
4
trigger: state
entity_id:
  - timer.heartbeat_node_red
to: idle

Heb namelijk wel een To voorwaarde erin gezet (Idle). Met finished voorwaarde krijg je een topic key error.
code:
1
required key not provided @ data['triggers'][0]['trigger']


BTW mochten andere ook heishamon online status willen volgen, ik gebruik daar zelf "panasonic_heat_pump/LWT" voor aangezien ik niet de webserver van de heishamon wil 'belasten'.
En dit geeft ook gelijk goed beeld of data pad naar de broker goed werkt. En als de MQTT broker niet werkt dan krijg ik ook mijn bericht binnen (omdat de timers aflopen ;) )

Taal fouten inbegrepen ;)
Mijn AI Art YouTube kanaal


Acties:
  • +1 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
blb4 schreef op maandag 27 januari 2025 @ 09:36:
[...]

Volgens mij wordt 't tijd deze discussie te verplaatsen naar PVOutput info en discussie of opmerkingen topic
ja we gingen idd offtopic

dit draadje kende ik nog niet, gaan we daar verder

dank voor je tip!

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +2 Henk 'm!

  • imdos
  • Registratie: Maart 2000
  • Laatst online: 14:40

imdos

I use FreeNAS and Ubuntu

edterbak schreef op vrijdag 24 januari 2025 @ 23:20:
[...]


Ik zit te zoeken naar de vorige meldingen van je hier over. Ik kan ze niet vinden.
Kun je (iemand) mij hier mee helpen?

Ik moet weer even terug lezen, inlezen.
@edterbak Dit zijn twee berichten (24.05-07) waarin ik de log heb en de melding maak.
imdos in "Heishamon <> Node Red voor Panasonic warmtepompen"
edterbak in "Heishamon <> Node Red voor Panasonic warmtepompen"
Daarin wordt dus wel de functie uitgevoerd om te switchen tussen de modes en mqtt verstuurd. Maar gaat de WP niet aan.
In deze post zie je dus dat de powerUp v/d Wp de eerste stap is in de logica, althans voor de logica.

Hopelijk kun je hierdoor het probleem vinden. Of ons anders helpen zoeken ...

pvoutput. Waarom makkelijk doen, als het ook moeilijk kan! Every solution has a new problem


Acties:
  • 0 Henk 'm!

  • pc_freak1
  • Registratie: Maart 2018
  • Laatst online: 14:23
i would like to run the flow on another node red instance. specifically i would like to run this one seperate from my other automations that also run on node red.
is there a way to export the values in node red, and import them in a clean flow in another node red instance?
or would i have to reconfigure once i start fresh?


edit, nl forum dit. ik kom hier net vanuit engelse fora, denkkronkel 8)7

kan ik de instellingen uit de flow exporteren, en importeren in een schone flow op een nieuwe node red installatie?
ik draai de flow nu samen met wat andere automatiseringen in 1 node red installatie. maar elke keer als ik automatiseringen aanpas en de flows opsla dan herstart ook deze node red flow. wat natuurlijk niet nodig is.
niet dat ik verstoringen merk, maar ik vind het dan netter om deze flow zijn eigen installatie te geven.

[ Voor 44% gewijzigd door pc_freak1 op 27-01-2025 14:47 ]

Als je het niet probeert, kun je het sowieso niet.


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
De HvE schreef op maandag 27 januari 2025 @ 09:32:
[...]


Heb jij een betalende account bij PVoutput ???
offtopic: nee

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
pc_freak1 schreef op maandag 27 januari 2025 @ 14:45:
i would like to run the flow on another node red instance. specifically i would like to run this one seperate from my other automations that also run on node red.
is there a way to export the values in node red, and import them in a clean flow in another node red instance?
or would i have to reconfigure once i start fresh?


edit, nl forum dit. ik kom hier net vanuit engelse fora, denkkronkel 8)7

kan ik de instellingen uit de flow exporteren, en importeren in een schone flow op een nieuwe node red installatie?
ik draai de flow nu samen met wat andere automatiseringen in 1 node red installatie. maar elke keer als ik automatiseringen aanpas en de flows opsla dan herstart ook deze node red flow. wat natuurlijk niet nodig is.
niet dat ik verstoringen merk, maar ik vind het dan netter om deze flow zijn eigen installatie te geven.
Zie de Details onder https://github.com/edterb...adme-ov-file#howto_update

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
Aanvullend: vanwege de vele tabbladen heb ik deze tool direct al in een aparte node-red container gezet.

als 't niet noodzakelijk is al je history te behouden kan je gewoon een nieuwe node-red installatie configureren en daar dan gewoon weer deze tool in importeren. Als je wel history wil behouden moet je mogelijk iets doen als een kopie van je huidige node-red setup maken en dan uit 1 de Heishamon config slopen en uit de andere juist de rest.

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
@edterbak e.a.

kan iemand mij uitleggen waarom ik veel start / stops heb ipv 1 lange run nu het niet meer zo koud buiten is?

de temperatuur in de woonkamer is de hele dag vrijwel gelijk, de correctie staat op -2, maar waarom!?

Afbeeldingslocatie: https://tweakers.net/i/HlLGMrK1erK8SnhYC30sSa6zyMg=/800x/filters:strip_exif()/f/image/oukjkpTLiRlWNnXcrRclU4eT.png?f=fotoalbum_large


het lijkt wel hit en run ipv een lange dribbel van de Japanse kabouters

Afbeeldingslocatie: https://tweakers.net/i/IYZ7QsLeRy7N2FeeqYvEkVhab1k=/800x/filters:strip_exif()/f/image/WrHMPaxKnT0tGYQykChG50qB.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/9YMKoE4EPGJbeTaKpYoW7w9McT8=/800x/filters:strip_exif()/f/image/kyBTDDxi1PlWNUDGPBwnFxFe.png?f=fotoalbum_large

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
SYSTEM
Flow version

24.09 (stable beta)

27/01 20:32:37 - SETUP - Sensors: Custom outside temperature sensor FOUND and used
27/01 20:22:42 - SYSTEM: MQTT Broker: Node Red MQTT node connected
27/01 20:22:41 - SYSTEM - HEISHAMON Connection: Online
27/01 20:22:39 - MQTT Command: SetQuietMode: 3 (SoftStart Quietmode)
27/01 20:22:39 - Quiet mode manager: Function turned on. Restoring quietmode to level 3
27/01 20:22:39 - SYSTEM: Persistent storage: OK
27/01 20:22:39 - Function - RTC: 1
27/01 20:22:39 - Function - SoftStart: 1
27/01 20:22:39 - Function - WAR: 1
27/01 20:22:38 - SYSTEM: MQTT block inactive, default block mode: UNRESTRICTED
27/01 20:22:38 - SYSTEM: MQTT block inactive, default block mode: UNRESTRICTED
27/01 20:22:38 - Function NightReduction: New correction: 0 °C
27/01 20:22:38 - Function SoftStart: SoftStart function end
27/01 20:22:38 - Compressor: stopped
27/01 20:22:38 - Function WAR: Setpoint change: From 20 to 26.7 °C
27/01 20:22:38 - Function - Solar: 1
27/01 20:22:38 - Function SoftStart Quietmode: Compressor run ended, quiet mode is already set to level 3
27/01 20:22:38 - Function NightReduction: 0
27/01 20:22:38 - SYSTEM: WAR settings OK
27/01 20:22:38 - SYSTEM: Heatpump zone 2 is set to controle water temperature
27/01 20:22:38 - SYSTEM: Heatpump zone 1 is set to controle water temperature
27/01 20:22:38 - SYSTEM: Heatpump is in DIRECT mode
27/01 20:22:38 - TOP20_ThreeWay_Valve_State: 0
27/01 20:22:38 - TOP2_Force_DHW_State: 0
27/01 20:22:38 - SYSTEM - HEISHAMON Connection: Offline
27/01 20:22:38 - SYSTEM: Start---------------------------------------------------------------
------------------------------------------------------------------------------------------------
27/01 20:15:15 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 20:15:15 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 20:15:15 - Function SoftStart: SoftStart function end
27/01 20:15:15 - MQTT Command: SetQuietMode: 3
27/01 20:15:15 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 20:15:15 - Compressor: stopped
27/01 20:15:15 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 20:15:15 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 20:12:18 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 20:12:18 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 26 °C
27/01 20:12:18 - Function SoftStart: Correction: 4 > 1 °C - (STABLE) Freq: 29Hz, SP_Final: 19°C
27/01 20:12:18 - Function SoftStart: --> Pump relaxing took too long... (29Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 20:12:08 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 29Hz, SP_Final: 22°C
27/01 20:12:05 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 20:12:05 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 20:12:05 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 29Hz, SP_Final: 22°C
27/01 20:11:48 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 20:11:48 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 20:11:48 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C
27/01 20:11:25 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 28Hz, SP_Final: 22°C
27/01 20:11:24 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C
27/01 20:11:20 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 20:11:20 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 20:11:20 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 28Hz, SP_Final: 22°C
27/01 20:11:13 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 20:11:13 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 20:11:13 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C
27/01 20:09:07 - Function SoftStart: --> Pump did not yet relax (28Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 20:08:57 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 29Hz, SP_Final: 22°C
27/01 20:05:56 - Function SoftStart: --> Pump did not yet relax (28Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 20:05:46 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 28Hz, SP_Final: 22°C
27/01 20:05:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 20:05:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 20:05:38 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 29Hz, SP_Final: 22°C
27/01 20:02:46 - Function SoftStart: --> Pump did not yet relax (29Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 20:02:35 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 29Hz, SP_Final: 21°C
27/01 20:00:54 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 20:00:54 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 20:00:42 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 28Hz, SP_Final: 21°C
27/01 20:00:39 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 20:00:33 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
27/01 20:00:23 - Function SoftStart: Correction: 3 > 2 °C - (STARTUP) Freq: 28Hz, SP_Final: 20°C
27/01 20:00:22 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 20:00:22 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 20:00:22 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 28Hz, SP_Final: 21°C
27/01 19:59:35 - Function SoftStart: --> Pump did not yet relax (28Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 19:59:25 - Function SoftStart: Correction: 2 > 2 °C - (EVALUATING) Freq: 28Hz, SP_Final: 20°C
27/01 19:58:14 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 19:58:14 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 19:57:42 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 19:57:42 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 19:57:42 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 28Hz, SP_Final: 20°C
27/01 19:57:29 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 19:57:29 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 19:57:29 - Function SoftStart: Correction: 2 > 1 °C - (STARTUP) Freq: 28Hz, SP_Final: 19°C
27/01 19:57:12 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 19:57:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 19:57:12 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 29Hz, SP_Final: 20°C
27/01 19:56:49 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 19:56:49 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 19:56:49 - Function SoftStart: Correction: 2 > 1 °C - (STARTUP) Freq: 29Hz, SP_Final: 19°C
27/01 19:56:30 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 19:56:30 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 19:56:24 - Function SoftStart: --> Pump did not yet relax (29Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 19:56:19 - Function SoftStart: Correction: 1 > 2 °C - (EVALUATING) Freq: 28Hz, SP_Final: 20°C
27/01 19:56:19 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 19:56:19 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 19:56:19 - Function SoftStart: Correction: 2 > 1 °C - (EVALUATING) Freq: 28Hz, SP_Final: 19°C
27/01 19:56:14 - Function SoftStart: Correction: 2 > 2 °C - (EVALUATING) Freq: 28Hz, SP_Final: 20°C
27/01 19:55:32 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 19:55:32 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 19:55:32 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 29Hz, SP_Final: 20°C
27/01 19:55:17 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 19:55:17 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 19:55:17 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 32Hz, SP_Final: 19°C
27/01 19:55:02 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 19:55:02 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 19:55:02 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 35Hz, SP_Final: 18°C
27/01 19:54:52 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 19:54:52 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
27/01 19:54:52 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 34Hz, SP_Final: 17°C
27/01 19:54:32 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 19:54:32 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 19:54:32 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 30Hz, SP_Final: 16°C
27/01 19:54:07 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 19:54:07 - Function - Calculate new SP: New final SP calculated: Current setpoint: 21 °C. New calculated setpoint: 22 °C
27/01 19:54:07 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 15°C
27/01 19:53:14 - MQTT Command: SetCurves: target: 21 (SP Calculation)
27/01 19:53:14 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 21 °C
27/01 19:53:14 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 16Hz, SP_Final: 14°C
27/01 19:53:14 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 19:53:14 - Compressor: running
27/01 19:53:14 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 19:53:14 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 19:03:15 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 19:03:15 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 19:03:15 - Function SoftStart: SoftStart function end
27/01 19:03:15 - MQTT Command: SetQuietMode: 3
27/01 19:03:15 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 19:03:15 - Compressor: stopped
27/01 19:03:15 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 19:03:15 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 19:00:15 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 19:00:15 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 26 °C
27/01 19:00:15 - Function SoftStart: Correction: 3 > 1 °C - (STABLE) Freq: 22Hz, SP_Final: 19°C
27/01 19:00:15 - Function SoftStart: --> Pump relaxing took too long... (22Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 19:00:10 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 19:00:10 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 19:00:10 - Function SoftStart: Correction: 4 > 3 °C - (EVALUATING) Freq: 22Hz, SP_Final: 21°C
27/01 19:00:05 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 24Hz, SP_Final: 22°C
27/01 19:00:01 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 19:00:01 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 19:00:01 - Function SoftStart: Correction: 3 > 4 °C - (EVALUATING) Freq: 24Hz, SP_Final: 22°C
27/01 18:59:25 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:59:25 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:59:20 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 25Hz, SP_Final: 21°C
27/01 18:59:18 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:59:18 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:59:18 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 24Hz, SP_Final: 22°C
27/01 18:57:01 - Function SoftStart: --> Pump did not yet relax (24Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 18:56:55 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 25Hz, SP_Final: 21°C
27/01 18:56:51 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 24Hz, SP_Final: 21°C
27/01 18:53:50 - Function SoftStart: --> Pump did not yet relax (25Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 18:53:40 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 25Hz, SP_Final: 21°C
27/01 18:53:20 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:53:20 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:53:20 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 24Hz, SP_Final: 21°C
27/01 18:53:03 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:53:03 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:53:03 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 27Hz, SP_Final: 22°C
27/01 18:52:40 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:52:40 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:52:40 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 27Hz, SP_Final: 21°C
27/01 18:52:28 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:52:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:52:28 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 27Hz, SP_Final: 22°C
27/01 18:52:00 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:52:00 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:52:00 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 27Hz, SP_Final: 21°C
27/01 18:51:48 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:51:48 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:51:48 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 27Hz, SP_Final: 22°C
27/01 18:51:22 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:51:22 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:51:13 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 27Hz, SP_Final: 21°C
27/01 18:51:13 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:51:13 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:51:13 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 27Hz, SP_Final: 22°C
27/01 18:50:45 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:50:45 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:50:45 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 28Hz, SP_Final: 21°C
27/01 18:50:39 - Function SoftStart: --> Pump did not yet relax (27Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 18:50:35 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 27Hz, SP_Final: 22°C
27/01 18:50:26 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 28Hz, SP_Final: 22°C
27/01 18:50:26 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:50:26 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:50:26 - Function SoftStart: Correction: 3 > 4 °C - (EVALUATING) Freq: 27Hz, SP_Final: 22°C
27/01 18:50:10 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:50:10 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:50:10 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 27Hz, SP_Final: 21°C
27/01 18:49:58 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:49:58 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:49:58 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 18:49:29 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:49:29 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:49:29 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 31Hz, SP_Final: 21°C
27/01 18:49:23 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:49:23 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:49:23 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 18:47:46 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:47:46 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:47:38 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 31Hz, SP_Final: 21°C
27/01 18:47:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:47:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:47:38 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 18:47:25 - Function SoftStart: --> Pump did not yet relax (31Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 18:47:15 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 30Hz, SP_Final: 21°C
27/01 18:47:14 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:47:14 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 18:47:14 - Function SoftStart: Correction: 4 > 3 °C - (EVALUATING) Freq: 30Hz, SP_Final: 21°C
27/01 18:47:03 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 18:47:03 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 18:47:03 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 18:46:04 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 18:46:04 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 18:44:22 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 18:44:22 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 18:44:22 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 34Hz, SP_Final: 21°C
27/01 18:44:14 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 18:44:04 - Function SoftStart: Correction: 2 > 2 °C - (EVALUATING) Freq: 34Hz, SP_Final: 20°C
27/01 18:43:22 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 18:43:22 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 18:43:22 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 35Hz, SP_Final: 20°C
27/01 18:43:07 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 18:43:07 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 18:43:07 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 34Hz, SP_Final: 19°C
27/01 18:42:52 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 18:42:52 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 18:42:52 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 34Hz, SP_Final: 18°C
27/01 18:42:42 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 18:42:42 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
27/01 18:42:42 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 34Hz, SP_Final: 17°C
27/01 18:42:17 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 18:42:17 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 18:42:17 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 27Hz, SP_Final: 16°C
27/01 18:41:52 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 18:41:52 - Function - Calculate new SP: New final SP calculated: Current setpoint: 21 °C. New calculated setpoint: 22 °C
27/01 18:41:52 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 15°C
27/01 18:41:04 - MQTT Command: SetCurves: target: 21 (SP Calculation)
27/01 18:41:04 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 21 °C
27/01 18:41:04 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 5Hz, SP_Final: 14°C
27/01 18:41:04 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 18:41:04 - Compressor: running
27/01 18:41:04 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 18:41:04 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 17:59:31 - Function WAR: Setpoint change: From 26.6 to 26.7 °C
27/01 17:23:39 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 17:23:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 17:23:39 - Function SoftStart: SoftStart function end
27/01 17:23:39 - MQTT Command: SetQuietMode: 3
27/01 17:23:39 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 17:23:39 - Compressor: stopped
27/01 17:23:39 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 17:23:39 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 17:22:49 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 17:22:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 26 °C
27/01 17:22:47 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 28Hz, SP_Final: 19°C
27/01 17:22:47 - Function SoftStart: --> Pump relaxing took too long... (28Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 17:22:39 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 28Hz, SP_Final: 23°C
27/01 17:22:37 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 29Hz, SP_Final: 23°C
27/01 17:19:36 - Function SoftStart: --> Pump did not yet relax (29Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 17:19:29 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 29Hz, SP_Final: 23°C
27/01 17:19:29 - Function WAR: Setpoint change: From 26.5 to 26.6 °C
27/01 17:19:26 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 28Hz, SP_Final: 23°C
27/01 17:16:47 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 17:16:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 17:16:41 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C
27/01 17:16:33 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 17:16:33 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 17:16:33 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 28Hz, SP_Final: 22°C
27/01 17:16:25 - Function SoftStart: --> Pump did not yet relax (28Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 17:16:23 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 17:16:23 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 17:16:23 - Function SoftStart: Correction: 4 > 5 °C - (EVALUATING) Freq: 28Hz, SP_Final: 23°C
27/01 17:16:15 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 28Hz, SP_Final: 22°C
27/01 17:13:15 - Function SoftStart: --> Pump did not yet relax (29Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 17:13:04 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 29Hz, SP_Final: 22°C
27/01 17:10:31 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 17:10:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 17:10:31 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 28Hz, SP_Final: 22°C
27/01 17:10:04 - Function SoftStart: --> Pump did not yet relax (28Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 17:09:54 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 29Hz, SP_Final: 21°C
27/01 17:08:43 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 17:08:43 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 17:08:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 17:08:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 17:08:34 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 28Hz, SP_Final: 21°C
27/01 17:08:31 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 17:08:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
27/01 17:08:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.61 °C)
27/01 17:07:31 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 17:07:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 17:07:31 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 28Hz, SP_Final: 21°C
27/01 17:07:13 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 17:07:13 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
27/01 17:07:13 - Function SoftStart: Correction: 2 > 1 °C - (STARTUP) Freq: 29Hz, SP_Final: 20°C
27/01 17:06:57 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 17:06:57 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 17:06:57 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 28Hz, SP_Final: 21°C
27/01 17:06:53 - Function SoftStart: --> Pump did not yet relax (28Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 17:06:43 - Function SoftStart: Correction: 1 > 1 °C - (EVALUATING) Freq: 28Hz, SP_Final: 20°C
27/01 17:06:33 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 17:06:33 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
27/01 17:06:33 - Function SoftStart: Correction: 2 > 1 °C - (STARTUP) Freq: 28Hz, SP_Final: 20°C
27/01 17:05:56 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 17:05:56 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 17:05:56 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 29Hz, SP_Final: 21°C
27/01 17:05:41 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 17:05:41 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 17:05:41 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 35Hz, SP_Final: 20°C
27/01 17:05:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 17:05:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 17:05:31 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 34Hz, SP_Final: 19°C
27/01 17:05:11 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 17:05:11 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 17:05:11 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 34Hz, SP_Final: 18°C
27/01 17:04:41 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 17:04:41 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
27/01 17:04:41 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 20Hz, SP_Final: 17°C
27/01 17:04:26 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 17:04:26 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 17:04:26 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 16°C
27/01 17:03:43 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 17:03:43 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 22 °C
27/01 17:03:43 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 6Hz, SP_Final: 15°C
27/01 17:03:43 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 17:03:43 - Compressor: running
27/01 17:03:43 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 17:03:43 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 17:03:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 17:03:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 17:03:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.59 °C)
27/01 16:44:26 - Function WAR: Setpoint change: From 26.4 to 26.5 °C
27/01 16:38:01 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 16:38:01 - MQTT Command: SetQuietMode: 3
27/01 16:38:01 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 16:38:01 - Function SoftStart: SoftStart function end
27/01 16:38:01 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 16:38:01 - Compressor: stopped
27/01 16:38:01 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 16:38:01 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 16:37:49 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 16:37:49 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 26 °C
27/01 16:37:49 - Function SoftStart: Correction: 7 > 1 °C - (STABLE) Freq: 34Hz, SP_Final: 19°C
27/01 16:37:49 - Function SoftStart: --> Pump relaxing took too long... (34Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 16:37:39 - Function SoftStart: Correction: 7 > 7 °C - (EVALUATING) Freq: 35Hz, SP_Final: 25°C
27/01 16:35:09 - MQTT Command: SetCurves: target: 32 (SP Calculation)
27/01 16:35:09 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 32 °C
27/01 16:35:09 - Function SoftStart: Correction: 6 > 7 °C - (STARTUP) Freq: 35Hz, SP_Final: 25°C
27/01 16:34:56 - Function SoftStart: Correction: 7 > 6 °C - (STARTUP) Freq: 35Hz, SP_Final: 24°C
27/01 16:34:54 - Function SoftStart: Correction: 6 > 7 °C - (STARTUP) Freq: 34Hz, SP_Final: 25°C
27/01 16:34:51 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 16:34:51 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 31 °C
27/01 16:34:51 - Function SoftStart: Correction: 7 > 6 °C - (STARTUP) Freq: 34Hz, SP_Final: 24°C
27/01 16:34:38 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 16:34:36 - MQTT Command: SetCurves: target: 32 (SP Calculation)
27/01 16:34:36 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 32 °C
27/01 16:34:36 - Function SoftStart: Correction: 6 > 7 °C - (EVALUATING) Freq: 34Hz, SP_Final: 25°C
27/01 16:34:28 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 35Hz, SP_Final: 24°C
27/01 16:34:21 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 16:34:21 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 31 °C
27/01 16:34:16 - Function SoftStart: Correction: 7 > 6 °C - (STARTUP) Freq: 35Hz, SP_Final: 24°C
27/01 16:34:04 - MQTT Command: SetCurves: target: 32 (SP Calculation)
27/01 16:34:04 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 32 °C
27/01 16:34:04 - Function SoftStart: Correction: 6 > 7 °C - (STARTUP) Freq: 34Hz, SP_Final: 25°C
27/01 16:33:44 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 16:33:44 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 16:33:34 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 35Hz, SP_Final: 24°C
27/01 16:33:31 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 16:33:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 16:33:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
27/01 16:31:27 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 16:31:17 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 35Hz, SP_Final: 24°C
27/01 16:28:54 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 16:28:54 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 16:28:54 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 35Hz, SP_Final: 24°C
27/01 16:28:40 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 16:28:40 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 16:28:40 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 23°C
27/01 16:28:31 - Function SoftStart: Correction: 6 > 5 °C - (STARTUP) Freq: 35Hz, SP_Final: 24°C
27/01 16:28:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)
27/01 16:28:24 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 16:28:24 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 16:28:24 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 34Hz, SP_Final: 24°C
27/01 16:28:17 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 16:28:06 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 16:28:06 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 16:28:06 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 35Hz, SP_Final: 23°C
27/01 16:27:59 - Function SoftStart: Correction: 6 > 5 °C - (STARTUP) Freq: 35Hz, SP_Final: 23°C
27/01 16:27:59 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 16:27:59 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 16:27:59 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 35Hz, SP_Final: 24°C
27/01 16:25:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 16:25:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 16:25:38 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 34Hz, SP_Final: 23°C
27/01 16:25:25 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 16:25:25 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 16:25:25 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 35Hz, SP_Final: 22°C
27/01 16:25:15 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 30 °C
27/01 16:25:09 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 16:25:09 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 16:25:09 - Function SoftStart: Correction: 1 > 5 °C - (STARTUP) Freq: 34Hz, SP_Final: 23°C
27/01 16:25:06 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 16:25:05 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 16:25:05 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 26 °C
27/01 16:25:05 - Function SoftStart: Correction: 4 > 1 °C - (STABLE) Freq: 34Hz, SP_Final: 19°C
27/01 16:24:56 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 16:24:56 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 16:24:56 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 35Hz, SP_Final: 22°C
27/01 16:24:49 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 35Hz, SP_Final: 22°C
27/01 16:24:48 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 16:24:48 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 16:24:48 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 34Hz, SP_Final: 23°C
27/01 16:23:45 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 16:23:45 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 16:23:40 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 16:23:40 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 16:23:34 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 16:23:31 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 16:23:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 16:23:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.63 °C)
27/01 16:22:23 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 16:22:23 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 16:22:23 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 16:21:55 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 16:21:45 - Function SoftStart: Correction: 2 > 2 °C - (EVALUATING) Freq: 34Hz, SP_Final: 21°C
27/01 16:21:03 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 16:21:03 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 16:21:03 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 34Hz, SP_Final: 21°C
27/01 16:20:43 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 16:20:43 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 16:20:43 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 35Hz, SP_Final: 20°C
27/01 16:20:28 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 16:20:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 16:20:28 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 34Hz, SP_Final: 19°C
27/01 16:20:08 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 16:20:08 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 16:20:08 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 33Hz, SP_Final: 18°C
27/01 16:19:38 - MQTT Command: SetCurves: target: 24 (SP Calculation)

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
27/01 16:19:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
27/01 16:19:38 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 19Hz, SP_Final: 17°C
27/01 16:19:28 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 16:19:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 16:19:28 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 16°C
27/01 16:18:45 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 16:18:45 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 22 °C
27/01 16:18:45 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 14Hz, SP_Final: 15°C
27/01 16:18:45 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 16:18:45 - Compressor: running
27/01 16:18:45 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 16:18:45 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 16:18:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 16:18:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 16:18:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.59 °C)
27/01 16:14:24 - Function WAR: Setpoint change: From 26.5 to 26.4 °C
27/01 16:04:24 - Function WAR: Setpoint change: From 26.4 to 26.5 °C
27/01 15:48:31 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 15:48:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 15:48:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.62 °C)
27/01 15:44:23 - Function WAR: Setpoint change: From 26.3 to 26.4 °C
27/01 15:38:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 15:38:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 15:38:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.59 °C)
27/01 15:28:01 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 15:28:01 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 15:28:01 - MQTT Command: SetQuietMode: 3
27/01 15:28:01 - Function SoftStart: SoftStart function end
27/01 15:28:01 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 15:28:01 - Compressor: stopped
27/01 15:28:01 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 15:28:01 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 15:27:55 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 15:27:55 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 26 °C
27/01 15:27:55 - Function SoftStart: Correction: 7 > 1 °C - (STABLE) Freq: 30Hz, SP_Final: 19°C
27/01 15:27:55 - Function SoftStart: --> Pump relaxing took too long... (30Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 15:27:51 - MQTT Command: SetCurves: target: 32 (SP Calculation)
27/01 15:27:51 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 32 °C
27/01 15:27:51 - Function SoftStart: Correction: 6 > 7 °C - (EVALUATING) Freq: 30Hz, SP_Final: 25°C
27/01 15:27:44 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 30Hz, SP_Final: 24°C
27/01 15:24:44 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 15:24:36 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 31Hz, SP_Final: 24°C
27/01 15:24:34 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 30Hz, SP_Final: 24°C
27/01 15:21:33 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 15:21:23 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 30Hz, SP_Final: 24°C
27/01 15:19:10 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 15:19:10 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 31 °C
27/01 15:19:00 - Function SoftStart: Correction: 7 > 6 °C - (STARTUP) Freq: 31Hz, SP_Final: 24°C
27/01 15:18:59 - MQTT Command: SetCurves: target: 32 (SP Calculation)
27/01 15:18:59 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 32 °C
27/01 15:18:59 - Function SoftStart: Correction: 6 > 7 °C - (STARTUP) Freq: 31Hz, SP_Final: 25°C
27/01 15:18:44 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 15:18:44 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 15:18:34 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 34Hz, SP_Final: 24°C
27/01 15:18:31 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 15:18:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 15:18:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.65 °C)
27/01 15:18:22 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 15:18:12 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 34Hz, SP_Final: 24°C
27/01 15:15:34 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 15:15:34 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 15:15:34 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 34Hz, SP_Final: 24°C
27/01 15:15:16 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 15:15:16 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 15:15:16 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 35Hz, SP_Final: 23°C
27/01 15:15:12 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 15:15:06 - Function SoftStart: Correction: 4 > 5 °C - (EVALUATING) Freq: 35Hz, SP_Final: 24°C
27/01 15:15:01 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 35Hz, SP_Final: 23°C
27/01 15:15:01 - Function SoftStart: Correction: 5 > 4 °C - (EVALUATING) Freq: 35Hz, SP_Final: 23°C
27/01 15:15:01 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 15:15:01 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 15:15:01 - Function SoftStart: Correction: 4 > 5 °C - (EVALUATING) Freq: 35Hz, SP_Final: 24°C
27/01 15:13:51 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 15:13:51 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 15:13:29 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 15:13:29 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 15:13:29 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 23°C
27/01 15:13:16 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 15:13:16 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 15:13:16 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 15:13:04 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 15:13:04 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 15:13:04 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 35Hz, SP_Final: 23°C
27/01 15:12:12 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 15:12:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 29 °C
27/01 15:12:04 - Function SoftStart: Correction: 1 > 3 °C - (STARTUP) Freq: 35Hz, SP_Final: 22°C
27/01 15:12:01 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 15:12:01 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 15:12:00 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 27 °C
27/01 15:12:00 - Function SoftStart: Correction: 3 > 1 °C - (STABLE) Freq: 34Hz, SP_Final: 20°C
27/01 15:11:51 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 34Hz, SP_Final: 22°C
27/01 15:11:09 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 15:11:09 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 15:11:09 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 15:10:39 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 15:10:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 15:10:39 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 35Hz, SP_Final: 21°C
27/01 15:10:29 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 15:10:29 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 15:10:29 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 34Hz, SP_Final: 20°C
27/01 15:09:59 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 15:09:59 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 15:09:59 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 26Hz, SP_Final: 19°C
27/01 15:09:34 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 15:09:34 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 15:09:34 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 19Hz, SP_Final: 18°C
27/01 15:09:22 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 15:09:22 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 24 °C
27/01 15:09:22 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 20Hz, SP_Final: 17°C
27/01 15:09:19 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 15:09:19 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 15:09:19 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 16°C
27/01 15:08:50 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 15:08:50 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 22 °C
27/01 15:08:50 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 15Hz, SP_Final: 15°C
27/01 15:08:50 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 15:08:50 - Compressor: running
27/01 15:08:50 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 15:08:50 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 15:08:35 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 15:08:35 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 15:08:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.59 °C)
27/01 15:03:31 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 15:03:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 15:03:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
27/01 14:58:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 14:58:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 14:58:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.59 °C)
27/01 14:48:31 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 14:48:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 25 °C
27/01 14:48:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.62 °C)
27/01 14:48:29 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 14:48:29 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 14:48:29 - Function SoftStart: SoftStart function end
27/01 14:48:29 - MQTT Command: SetQuietMode: 3
27/01 14:48:29 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 14:48:29 - Compressor: stopped
27/01 14:48:29 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 14:48:29 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 14:48:09 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 14:47:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 27 °C
27/01 14:47:47 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 30Hz, SP_Final: 20°C
27/01 14:47:47 - Function SoftStart: --> Pump relaxing took too long... (30Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 14:47:37 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 30Hz, SP_Final: 24°C
27/01 14:44:36 - Function SoftStart: --> Pump did not yet relax (31Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 14:44:26 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 31Hz, SP_Final: 24°C
27/01 14:43:31 - Function SoftStart: Correction: 6 > 5 °C - (STARTUP) Freq: 31Hz, SP_Final: 24°C
27/01 14:43:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)
27/01 14:41:26 - Function SoftStart: --> Pump did not yet relax (31Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 14:41:15 - Function SoftStart: Correction: 6 > 6 °C - (EVALUATING) Freq: 31Hz, SP_Final: 24°C
27/01 14:40:32 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 14:40:32 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 14:40:32 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 31Hz, SP_Final: 24°C
27/01 14:40:14 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:40:14 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 14:40:14 - Function SoftStart: Correction: 6 > 5 °C - (STARTUP) Freq: 30Hz, SP_Final: 23°C
27/01 14:40:02 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 14:40:02 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 14:40:02 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 31Hz, SP_Final: 24°C
27/01 14:39:39 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:39:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 14:39:39 - Function SoftStart: Correction: 6 > 5 °C - (STARTUP) Freq: 30Hz, SP_Final: 23°C
27/01 14:39:32 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 14:39:32 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 14:39:32 - Function SoftStart: Correction: 5 > 6 °C - (STARTUP) Freq: 31Hz, SP_Final: 24°C
27/01 14:39:19 - Function WAR: Setpoint change: From 26.4 to 26.3 °C
27/01 14:38:44 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:38:44 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 14:38:34 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 31Hz, SP_Final: 23°C
27/01 14:38:34 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:38:34 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 14:38:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.63 °C)
27/01 14:38:15 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 14:38:05 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 30Hz, SP_Final: 23°C
27/01 14:37:42 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:37:42 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 14:37:37 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 30Hz, SP_Final: 23°C
27/01 14:37:28 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:37:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 14:37:28 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 14:37:12 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:37:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 14:37:12 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 30Hz, SP_Final: 23°C
27/01 14:36:53 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:36:53 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 14:36:53 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 31Hz, SP_Final: 22°C
27/01 14:36:37 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:36:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 14:36:37 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 31Hz, SP_Final: 23°C
27/01 14:36:23 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:36:23 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 14:36:18 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 14:36:07 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 14:36:07 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 14:36:07 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 30Hz, SP_Final: 23°C
27/01 14:35:15 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:35:15 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 29 °C
27/01 14:35:08 - Function SoftStart: Correction: 1 > 3 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 14:35:04 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 14:35:03 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 14:35:03 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 27 °C
27/01 14:35:03 - Function SoftStart: Correction: 3 > 1 °C - (STABLE) Freq: 30Hz, SP_Final: 20°C
27/01 14:34:58 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 30Hz, SP_Final: 22°C
27/01 14:34:54 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 31Hz, SP_Final: 22°C
27/01 14:33:43 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 14:33:43 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 14:33:27 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:33:27 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 14:33:27 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 14:33:08 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 14:33:08 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
27/01 14:33:08 - Function SoftStart: Correction: 3 > 2 °C - (STARTUP) Freq: 31Hz, SP_Final: 21°C
27/01 14:33:02 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 14:33:02 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 14:33:02 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 30Hz, SP_Final: 22°C
27/01 14:31:53 - Function SoftStart: --> Pump did not yet relax (31Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 14:31:43 - Function SoftStart: Correction: 2 > 2 °C - (EVALUATING) Freq: 30Hz, SP_Final: 21°C
27/01 14:31:12 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 14:31:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 14:31:12 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 31Hz, SP_Final: 21°C
27/01 14:30:47 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 14:30:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 14:30:47 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 31Hz, SP_Final: 20°C
27/01 14:30:27 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 14:30:27 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 14:30:27 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 30Hz, SP_Final: 19°C
27/01 14:29:46 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 14:29:46 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 14:29:46 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 22Hz, SP_Final: 18°C
27/01 14:29:31 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 14:29:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
27/01 14:29:31 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 19Hz, SP_Final: 17°C
27/01 14:29:21 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 14:29:21 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 14:29:21 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 16°C
27/01 14:28:43 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 14:28:43 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 22 °C
27/01 14:28:43 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 5Hz, SP_Final: 15°C
27/01 14:28:43 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 14:28:43 - Compressor: running
27/01 14:28:43 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 14:28:43 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 14:28:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 14:28:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 14:28:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.59 °C)
27/01 14:14:17 - Function WAR: Setpoint change: From 26.3 to 26.4 °C
27/01 13:44:25 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 13:44:25 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 13:44:25 - Function SoftStart: SoftStart function end
27/01 13:44:25 - MQTT Command: SetQuietMode: 3 (SoftStart)
27/01 13:44:25 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 13:44:25 - Compressor: stopped
27/01 13:44:25 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 13:44:25 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 13:41:24 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 13:41:24 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 26 °C
27/01 13:41:24 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 34Hz, SP_Final: 19°C
27/01 13:41:24 - Function SoftStart: --> Pump relaxing took too long... (34Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 13:41:13 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 34Hz, SP_Final: 23°C
27/01 13:41:05 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 13:41:05 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 13:41:03 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 35Hz, SP_Final: 23°C
27/01 13:40:55 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 13:40:55 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
27/01 13:40:55 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 35Hz, SP_Final: 22°C
27/01 13:40:28 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 35Hz, SP_Final: 23°C
27/01 13:40:24 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 13:40:23 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 13:40:23 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 13:40:23 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 35Hz, SP_Final: 23°C
27/01 13:39:15 - Function WAR: Setpoint change: From 26.4 to 26.3 °C
27/01 13:38:13 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 13:38:03 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 34Hz, SP_Final: 22°C
27/01 13:35:02 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 13:34:52 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 34Hz, SP_Final: 22°C
27/01 13:33:31 - Function WAR: Setpoint change: From 26.3 to 26.4 °C
27/01 13:31:51 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 13:31:41 - Function SoftStart: Correction: 4 > 4 °C - (EVALUATING) Freq: 34Hz, SP_Final: 22°C
27/01 13:29:15 - MQTT Command: SetCurves: target: 29 (SP Calculation)
27/01 13:29:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 13:29:12 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 13:28:41 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 13:28:30 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 35Hz, SP_Final: 21°C
27/01 13:27:20 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 13:27:20 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 13:25:41 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 13:25:41 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 28 °C
27/01 13:25:33 - Function SoftStart: Correction: 1 > 3 °C - (STARTUP) Freq: 35Hz, SP_Final: 21°C
27/01 13:25:30 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 13:25:30 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 13:25:30 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 26 °C
27/01 13:25:30 - Function SoftStart: Correction: 3 > 1 °C - (STABLE) Freq: 35Hz, SP_Final: 19°C
27/01 13:25:20 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 34Hz, SP_Final: 21°C
27/01 13:24:18 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 13:24:18 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 13:24:18 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 35Hz, SP_Final: 21°C
27/01 13:24:14 - Function WAR: Setpoint change: From 26.5 to 26.3 °C
27/01 13:23:53 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 13:23:53 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 13:23:53 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 35Hz, SP_Final: 20°C
27/01 13:23:31 - Function SoftStart: Correction: 2 > 1 °C - (STARTUP) Freq: 27Hz, SP_Final: 19°C
27/01 13:23:31 - Function RTC: Correction change: From -3 to -2 °C (Room actual: 20.74 °C)
27/01 13:22:58 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 13:22:58 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 13:22:58 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 19Hz, SP_Final: 19°C
27/01 13:22:48 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 13:22:48 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 25 °C
27/01 13:22:48 - Function SoftStart: Correction: -1 > 1 °C - (STARTUP) Freq: 20Hz, SP_Final: 18°C
27/01 13:22:19 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 13:22:19 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 23 °C
27/01 13:22:19 - Function SoftStart: Correction: 0 > -1 °C - (STARTUP) Freq: 15Hz, SP_Final: 16°C
27/01 13:22:19 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 13:22:19 - Compressor: running
27/01 13:22:19 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 13:22:19 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 13:19:14 - TOP4_Operating_Mode_State: 4
27/01 13:19:13 - MQTT Command: SetOperationMode: 4
27/01 13:19:13 - Auto-start-DHW function: Operating mode reverted to 4
27/01 13:14:20 - Function Solar: Cooldown period (15 minutes) has ended. Solar function done for today
27/01 13:04:13 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
27/01 13:03:18 - MQTT Command: SetQuietMode: 3
27/01 13:03:18 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 13:03:18 - Quiet mode manager: Detected 3-way valve set to HEAT position again. Restoring quiet mode to level 3
27/01 13:03:18 - Compressor: stopped
27/01 13:03:18 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 13:03:18 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 13:03:18 - TOP20_ThreeWay_Valve_State: 0
27/01 12:59:20 - Function Solar: DHW temperature has reached SP high
27/01 11:59:04 - Function SoftStart Quietmode: Timer ended, quiet mode is already set to level 2
27/01 11:54:04 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
27/01 11:54:04 - Compressor: running
27/01 11:54:04 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 11:54:04 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
27/01 11:53:44 - MQTT Command: SetQuietMode: 2 (QuietMode Manager)
27/01 11:53:44 - Quiet mode manager: Detected 3-way valve set to DHW. Disabling the quiet mode function during DHW. Restored to level 2
27/01 11:53:44 - TOP20_ThreeWay_Valve_State: 1
27/01 11:53:32 - TOP4_Operating_Mode_State: 3
27/01 11:53:31 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 11:53:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 24 °C
27/01 11:53:31 - Function RTC: Correction change: From -2 to -3 °C (Room actual: 20.91 °C)
27/01 11:53:29 - MQTT Command: SetOperationMode: 3
27/01 11:53:29 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
27/01 11:38:31 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 11:38:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 11:38:31 - Function RTC: Correction change: From -3 to -2 °C (Room actual: 20.89 °C)
27/01 11:28:31 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 11:28:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 24 °C
27/01 11:28:31 - Function RTC: Correction change: From -2 to -3 °C (Room actual: 20.9 °C)
27/01 11:08:31 - Function WAR: Setpoint change: From 26.6 to 26.5 °C
27/01 10:46:29 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 10:46:29 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 10:46:29 - Function SoftStart: SoftStart function end
27/01 10:46:29 - MQTT Command: SetQuietMode: 3 (SoftStart)
27/01 10:46:29 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 10:46:29 - Compressor: stopped
27/01 10:46:29 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 10:46:29 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 10:43:24 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 10:42:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 26 °C
27/01 10:42:47 - Function SoftStart: Correction: 3 > 1 °C - (STABLE) Freq: 31Hz, SP_Final: 19°C
27/01 10:42:47 - Function SoftStart: --> Pump relaxing took too long... (31Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 10:42:37 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 30Hz, SP_Final: 21°C
27/01 10:39:36 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 5/5)
27/01 10:39:26 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 30Hz, SP_Final: 21°C
27/01 10:38:49 - Function SoftStart: Correction: 4 > 3 °C - (STARTUP) Freq: 31Hz, SP_Final: 21°C
27/01 10:38:22 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
27/01 10:38:22 - Function SoftStart: Correction: 3 > 4 °C - (STARTUP) Freq: 34Hz, SP_Final: 22°C
27/01 10:36:26 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 4/5)
27/01 10:36:19 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 35Hz, SP_Final: 21°C
27/01 10:36:15 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 34Hz, SP_Final: 21°C
27/01 10:33:15 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 3/5)
27/01 10:33:05 - Function SoftStart: Correction: 3 > 3 °C - (EVALUATING) Freq: 34Hz, SP_Final: 21°C
27/01 10:33:03 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 10:33:03 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 10:32:57 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 35Hz, SP_Final: 21°C
27/01 10:32:49 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 10:32:49 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
27/01 10:32:49 - Function SoftStart: Correction: 3 > 2 °C - (STARTUP) Freq: 34Hz, SP_Final: 20°C
27/01 10:32:24 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 10:32:24 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 10:32:22 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 34Hz, SP_Final: 21°C
27/01 10:31:54 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 10:31:54 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
27/01 10:31:54 - Function SoftStart: Correction: 3 > 2 °C - (STARTUP) Freq: 35Hz, SP_Final: 20°C
27/01 10:31:47 - MQTT Command: SetCurves: target: 28 (SP Calculation)
27/01 10:31:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
27/01 10:31:47 - Function SoftStart: Correction: 2 > 3 °C - (STARTUP) Freq: 34Hz, SP_Final: 21°C
27/01 10:30:04 - Function SoftStart: --> Pump did not yet relax (34Hz). Restarting Phase 1 again... (Count: 2/5)
27/01 10:29:53 - Function SoftStart: Correction: 2 > 2 °C - (EVALUATING) Freq: 34Hz, SP_Final: 20°C
27/01 10:28:43 - MQTT Command: SetQuietMode: 2 (SoftStart Quietmode)
27/01 10:28:43 - Function SoftStart Quietmode: Timer ended, restoring quiet mode to level 2
27/01 10:28:39 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 10:28:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 10:28:34 - Function SoftStart: Correction: 1 > 2 °C - (STARTUP) Freq: 35Hz, SP_Final: 20°C
27/01 10:28:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 10:28:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 10:28:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
27/01 10:27:39 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 10:27:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 10:27:37 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 34Hz, SP_Final: 20°C
27/01 10:27:28 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 10:27:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 10:27:28 - Function SoftStart: Correction: 1 > 0 °C - (STARTUP) Freq: 34Hz, SP_Final: 19°C
27/01 10:27:12 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 10:27:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 10:27:12 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 34Hz, SP_Final: 20°C
27/01 10:26:53 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 10:26:53 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 10:26:53 - Function SoftStart: --> Pump did not yet relax (35Hz). Restarting Phase 1 again... (Count: 1/5)
27/01 10:26:43 - Function SoftStart: Correction: 0 > 0 °C - (EVALUATING) Freq: 34Hz, SP_Final: 19°C
27/01 10:26:42 - Function SoftStart: Correction: 1 > 0 °C - (STARTUP) Freq: 34Hz, SP_Final: 19°C
27/01 10:26:41 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 10:26:41 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
27/01 10:26:41 - Function SoftStart: Correction: 0 > 1 °C - (STARTUP) Freq: 34Hz, SP_Final: 20°C
27/01 10:25:51 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 10:25:51 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 10:25:51 - Function SoftStart: Correction: -1 > 0 °C - (STARTUP) Freq: 35Hz, SP_Final: 19°C
27/01 10:25:11 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 10:25:11 - Function - Calculate new SP: New final SP calculated: Current setpoint: 24 °C. New calculated setpoint: 25 °C
27/01 10:25:11 - Function SoftStart: Correction: -2 > -1 °C - (STARTUP) Freq: 35Hz, SP_Final: 18°C
27/01 10:24:21 - MQTT Command: SetCurves: target: 24 (SP Calculation)
27/01 10:24:21 - Function - Calculate new SP: New final SP calculated: Current setpoint: 23 °C. New calculated setpoint: 24 °C
27/01 10:24:21 - Function SoftStart: Correction: -3 > -2 °C - (STARTUP) Freq: 20Hz, SP_Final: 17°C
27/01 10:24:11 - MQTT Command: SetCurves: target: 23 (SP Calculation)
27/01 10:24:11 - Function - Calculate new SP: New final SP calculated: Current setpoint: 22 °C. New calculated setpoint: 23 °C
27/01 10:24:11 - Function SoftStart: Correction: -4 > -3 °C - (STARTUP) Freq: 19Hz, SP_Final: 16°C
27/01 10:23:43 - MQTT Command: SetCurves: target: 22 (SP Calculation)
27/01 10:23:43 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 22 °C
27/01 10:23:43 - Function SoftStart: Correction: 0 > -4 °C - (STARTUP) Freq: 15Hz, SP_Final: 15°C
27/01 10:23:43 - MQTT Command: SetMaxPumpDuty: 132 (pump speed)
27/01 10:23:43 - Compressor: running
27/01 10:23:43 - Function SoftStart Quietmode: Timer started (5 minutes)
27/01 10:23:43 - Function Pump speed: Max pumpspeed set to 132 (36%) (HEAT)
27/01 10:23:31 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 10:23:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
27/01 10:23:31 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.55 °C)
27/01 10:18:31 - MQTT Command: SetCurves: target: 25 (SP Calculation)
27/01 10:18:31 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
27/01 10:18:31 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
27/01 10:04:02 - Function WAR: Setpoint change: From 26.7 to 26.6 °C
27/01 09:51:36 - MQTT Command: SetQuietMode: 3
27/01 09:51:36 - Function SoftStart: SoftStart function end
27/01 09:51:36 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
27/01 09:51:36 - Compressor: stopped
27/01 09:51:36 - Function SoftStart Quietmode: Compressor run ended, quiet mode set to level 3 for next run
27/01 09:51:36 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
27/01 09:09:20 - Function Solar: Stored next operating mode is set to 4
27/01 09:01:48 - MQTT Command: SetCurves: target: 26 (SP Calculation)
27/01 09:01:25 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
27/01 09:01:25 - Function SoftStart: Correction: 1 > 0 °C - (ENDING) Freq: 20Hz, SP_Final: 19°C
27/01 08:58:58 - Function WAR: Setpoint change: From 26.6 to 26.7 °C
27/01 08:49:35 - MQTT Command: SetCurves: target: 27 (SP Calculation)
27/01 08:49:35 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 27 °C
27/01 08:49:35 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 31Hz, SP_Final: 20°C
27/01 08:49:35 - Function SoftStart: --> Pump relaxing took too long... (31Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
27/01 08:49:32 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 31Hz, SP_Final: 24°C
27/01 08:49:25 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 30Hz, SP_Final: 24°C
27/01 08:48:25 - MQTT Command: SetCurves: target: 31 (SP Calculation)
27/01 08:48:25 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 31 °C
27/01 08:48:25 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 31Hz, SP_Final: 24°C
27/01 08:47:12 - MQTT Command: SetCurves: target: 30 (SP Calculation)
27/01 08:47:12 - Function - Calculate new SP: New final SP calculated: Current setpoint: 31 °C. New calculated setpoint: 30 °C
27/01 08:47:01 - Function SoftStart: Correction: 5 > 4 °C - (STARTUP) Freq: 31Hz, SP_Final: 23°C
27/01 08:47:00 - MQTT Command: SetCurves: target: 31 (SP Calculation)

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
hemertje schreef op maandag 27 januari 2025 @ 20:42:
@edterbak e.a.

kan iemand mij uitleggen waarom ik veel start / stops heb ipv 1 lange run nu het niet meer zo koud buiten is?

de temperatuur in de woonkamer is de hele dag vrijwel gelijk, de correctie staat op -2, maar waarom!?

[Afbeelding]


het lijkt wel hit en run ipv een lange dribbel van de Japanse kabouters

[Afbeelding]

[Afbeelding]
Wat ik zie:

27/01 17:22:39 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 28Hz, SP_Final: 23°C
vervolgens
27/01 17:22:47 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 28Hz, SP_Final: 19°C

Kun je de kale softstart functie eens een tijdje proberen.
Geen quite mode
Geen pumpspeed.
Just keep is simple for now.

Kun je daar naast ook je WAR lijn in de WAR tab controleren?
Het lijkt alsof deze niet in sync is met wat er in je controller staat.
code:
1
2
27/01 17:16:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 17:16:41 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C


Er lijkt 7°C verschil in te zitten wat ik niet kan verklaren.

Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
imdos schreef op maandag 27 januari 2025 @ 14:11:
[...]

@edterbak Dit zijn twee berichten (24.05-07) waarin ik de log heb en de melding maak.
imdos in "Heishamon <> Node Red voor Panasonic warmtepompen"
edterbak in "Heishamon <> Node Red voor Panasonic warmtepompen"
Daarin wordt dus wel de functie uitgevoerd om te switchen tussen de modes en mqtt verstuurd. Maar gaat de WP niet aan.
In deze post zie je dus dat de powerUp v/d Wp de eerste stap is in de logica, althans voor de logica.

Hopelijk kun je hierdoor het probleem vinden. Of ons anders helpen zoeken ...
Ik heb hier nu een kleine correctie uitgevoerd in de flow om te kijken of dat helpt.
Volgende update zit dit er in.

Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
pc_freak1 schreef op maandag 27 januari 2025 @ 14:45:
i would like to run the flow on another node red instance. specifically i would like to run this one seperate from my other automations that also run on node red.
is there a way to export the values in node red, and import them in a clean flow in another node red instance?
or would i have to reconfigure once i start fresh?


edit, nl forum dit. ik kom hier net vanuit engelse fora, denkkronkel 8)7

kan ik de instellingen uit de flow exporteren, en importeren in een schone flow op een nieuwe node red installatie?
ik draai de flow nu samen met wat andere automatiseringen in 1 node red installatie. maar elke keer als ik automatiseringen aanpas en de flows opsla dan herstart ook deze node red flow. wat natuurlijk niet nodig is.
niet dat ik verstoringen merk, maar ik vind het dan netter om deze flow zijn eigen installatie te geven.
Je hebt waarschijnlijk "FULL" als standaar deploy methode geselecteerd.
Ik heb dat veranderd naar "Modified Nodes". Die scheelt idd een volledige herstart van de flow. :)
Afbeeldingslocatie: https://tweakers.net/i/iiCfMWpj1bijSz317vNNa_a8eMg=/fit-in/4000x4000/filters:no_upscale():strip_exif()/f/image/EO3CTQMRlRme2TNFfa7teDh8.png?f=user_large

Echo charly foxtrot charly.... click the 'unfold' icon on the deploy button, om in het Engels te blijven :D

[ Voor 4% gewijzigd door edterbak op 27-01-2025 21:59 ]


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op maandag 27 januari 2025 @ 21:52:
[...]

Wat ik zie:

27/01 17:22:39 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 28Hz, SP_Final: 23°C
vervolgens
27/01 17:22:47 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 28Hz, SP_Final: 19°C

Kun je de kale softstart functie eens een tijdje proberen.
Geen quite mode
Geen pumpspeed.
Just keep is simple for now.

Kun je daar naast ook je WAR lijn in de WAR tab controleren?
Het lijkt alsof deze niet in sync is met wat er in je controller staat.
code:
1
2
27/01 17:16:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 17:16:41 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C


Er lijkt 7°C verschil in te zitten wat ik niet kan verklaren.
Had gisteravond voor jou reactie hier de SoftStart al uitgezet in het Tabblad SoftStart, los van de SWW run een lange CV run vannacht tot nu toe van bijna 6 uur

Afbeeldingslocatie: https://tweakers.net/i/6UqJ-PHM0QeJBWL3-mrgk5Yf6yw=/800x/filters:strip_exif()/f/image/WnzFp7y9Cats0yXZshrZZzw0.png?f=fotoalbum_large

Tabblad WAR:

Afbeeldingslocatie: https://tweakers.net/i/-1t0VJqMXgc4qCUoqnuRlQX486w=/800x/filters:strip_exif()/f/image/yxy4Zo6NY39QqD9BZxUdmcad.png?f=fotoalbum_large

de Pana Bedrijfsinstellingen:

Afbeeldingslocatie: https://tweakers.net/i/mxhKLGVXSh8KO1aWz49JUfCrGOc=/800x/filters:strip_exif()/f/image/uO0kIG9BZ3Pqcu0k7vnlbxyx.png?f=fotoalbum_large

Wil je hebben dat ik de SoftStart weer aan zet maar dan zonder QuietMode add-on geactiveerd?

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • pc_freak1
  • Registratie: Maart 2018
  • Laatst online: 14:23
edterbak schreef op maandag 27 januari 2025 @ 21:58:
[...]

Je hebt waarschijnlijk "FULL" als standaar deploy methode geselecteerd.
Ik heb dat veranderd naar "Modified Nodes". Die scheelt idd een volledige herstart van de flow. :)
[Afbeelding]

Echo charly foxtrot charly.... click the 'unfold' icon on the deploy button, om in het Engels te blijven :D
ha, kijk, dat is ook een oplossing. dankjewel!

Als je het niet probeert, kun je het sowieso niet.


Acties:
  • 0 Henk 'm!

  • ercolano
  • Registratie: Juli 2006
  • Laatst online: 18:17
Ik ben de laatste weken geïtereerd van versie 24.01 stable naar 24.03 naar 24.09.
Het valt mij op dat het afronden van SP-Final in zowel 24.01 als 24.09 net zo werkt als de WAR in de Pana zelf, namelijk 29.4 :=30, terwijl in versie 24.03 de SP_Final uitkomst wordt afgerond naar dichtsbij, oftewel 29.4 :=29

Er zit in verschil in de code, de math.ceil.

24.03
SP_Final = Number(SP_Final).toFixed(0);
SP_Final = parseFloat(SP_Final);

24.09
SP_Final = Math.ceil(SP_Final);
SP_Final = Number(SP_Final).toFixed(0);
SP_Final = parseFloat(SP_Final);\n\n


Is dit een bewuste keuze @edterbak of een feature ?

Gasloos | Pana 9J | 300l boiler | 8000wp | PHEV


Acties:
  • +1 Henk 'm!

  • De HvE
  • Registratie: Oktober 2013
  • Laatst online: 15-09 21:32
Dan zit daar al een groot deel van je probleem !
De opties die jij wilt zitten in de betalende account.

Acties:
  • 0 Henk 'm!

  • RvdM87
  • Registratie: Oktober 2021
  • Laatst online: 11-08 20:44
Hoi Ed,

ik gebruik al een aantal jaar dankbaar de flows die je gemaakt hebt. Laatst ben ik geupgrade naar 24.05 en deze week naar 24.09 vanwege de optimalisaties aan de soft start.

Nu heb ik ontdekt dat de scheduler de warmtepomp niet aan zet bij een "power on" override.

dit is de output van de log:

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
28/01 15:45:01 - MQTT Command: SetOperationMode: 0
28/01 15:45:00 - Scheduler: Stored next operating mode empty. Setting new operating mode to: 0
28/01 15:30:00 - Scheduler condition: Outside temperature: 9. Condition: below 15°C. Scheduled action blocked
28/01 14:00:05 - MQTT Command: SetOperationMode: 4
28/01 14:00:05 - TOP4_Operating_Mode_State: 4
28/01 14:00:01 - MQTT Command: SetOperationMode: 4 (scheduler)
28/01 14:00:00 - Scheduler: Stored next operating mode empty. Setting new operating mode to: 4
28/01 11:40:58 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 31 °C
28/01 11:40:58 - Function WAR: Setpoint change: From 31.5 to 30.9 °C
28/01 09:00:06 - Function SoftStart: SoftStart function end
28/01 09:00:06 - Compressor: stopped
28/01 09:00:00 - MQTT Command: SetHeatpump: 0
28/01 09:00:00 - Scheduler - Power: 0



Hij gaat eerst om 9.00 uit zoals gepland met een heatpump off command. Om 14.00 wil ik graag heat+DHW activeren met een power on override, maar dat doet ie dus niet. :+

Ik los het nu even op met een heatpump on command extra. Hopelijk kun je met deze feedback de zaken verder optimaliseren

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Beste ‘Node Red voor Panasonic warmtepompen’ Tweakers,

Een tijdje geleden hebben we het hier met zijn allen het over de ‘Homely’ gehad.

hemertje in "Heishamon <> Node Red voor Panasonic warmtepompen"


De kracht hiervan hebben we volop besproken:
Uurprijssturing, peak shaving en CO2 besparing
Homely voorziet de warmtepomp 24/7 iedere 30 minuten van nieuwe instructies. Hiermee houdt het zelflerende algoritme van Homely rekening de reeds opgeslagen energie in de thermische massa en de verwachte zoninstraling in het pand. Besparende invloeden van de zon z n doorgaans het sterkste in het voor en na seizoen. Andere waardes waar Homely rekening mee houdt z n de binnen en buiten temperatuur en de energieprijzen. Met Homely bent u in staat om uw klanten maximaal comfort te bieden in combinatie een lagere energierekening.

Het energieverbruik is duurzamer wanneer de EPEX prijzen lager zijn door het aanbod zon en wind energie.
Wat me bij is gebleven dat de Tweakers hier in dit draadje er wel positief over waren om dit in @edterbak ‘s Node Red te krijgen omdat sturen op de goedkopere dagdelen zeer zinvol is.

De duurdere dagdelen zijn duur omdat de duurste component(en) van de gebruikte energiemix om de kWh op te wekken de uurprijs bepalen, de duurste component(e) zijn de fossiele componenten.

En volgens mij willen we juist van de fossiele componenten in onze energiemix af met zijn allen?
Dat zal ook bij jouw 1 van de redenen zijn geweest om aan de warmtepomp te gaan?

Met even op minimaal vermogen op de warmtepomp draaien lever je niet gelijk aan comfort in.

Wanneer je dus kan sturen op de goedkopere dagdelen is het niet alleen goed voor je portemonnee maar ook goed voor de klimaatwinst!


Nu kan @edterbak dit implementeren in zijn Node Red natuurlijk niet alleen en zelf ben ik helaas ook geen programmeur maar wel een enthousiasteling :P

Maar er zijn wel een aantal Tweakers hier die zelf al met dynamisch sturen mee bezig zijn of anderen die wel kunnen programmeren en die @edterbak wellicht willen helpen?


Vanavond kom ik deze github Day Ahead Optimizer (DAO) tool tegen:

https://github.com/corneel27/day-ahead
Het programma Day Ahead Optimizer (DAO) voert de volgende acties, berekeningen en bewerkingen uit:
• ophalen dynamische energie tarieven bij Entsoe en/of NordPool
• ophalen van meteogegevens bij Meteoserver
• berekenen van de optimale inzet van een aanwezige batterij, wp-boiler en elektrische auto.

Optimization
De optimalisering van het verbruik gebeurt met behulp van een generiek wiskundig algoritme met de naam "Mixed-Integer lineair Programming". Meer daarover kun je lezen op de website die ook het algoritme en allerlei bijbehorende hulpmiddelen aanbiedt: https://python-mip.com/
Deze implementatie berekent een optimale inzet van je batterij, boiler en e.v., waarbij naar keuze wordt gestreefd naar minimalisering van je kosten, naar minimalisering van je inkoop (nul op de meter) of een combinatie van beide. Daarvoor worden de volgende zaken berekend:

• uit de prognose van het weer (globale straling) per uur wordt een voorspelling berekend van de productie van je zonnepanelen
• met de tarieven van je dynamische leverancier (incl. opslag, belastingen en btw) worden per uur de kosten en opbrengsten van het verbruik c.q. teruglevering berekend
• m.b.v. de karakteristieken van je accu worden per uur het laad- c.q. ontlaadvermogen berekend
• wanneer moet je elektrische auto worden geladen

Dit resulteert (in de mip-module) in enkele honderden vergelijkingen en idem dito variabelen(onbekenden). Aan de hand van de gekozen strategie kan met behulp van het algoritme de meest optimale setting van al deze variabelen worden berekend. Dit zijn:

• per uur verbruik en kosten op de inkoopmeter
• per uur teruglevering en opbrengst op de inkoopmeter
• per uur laad- cq ontlaadvermogen van de batterij en de SoC aan het einde van het uur
• tijdstip waarop de boiler moet worden opgewarmd
• uurvakken waarin de elektrische auto moet worden geladen

Het geheel kan grafisch worden weergegeven:

Afbeeldingslocatie: https://tweakers.net/i/dEWUeHi9oVKYFG5CWbeayTfC6kk=/x800/filters:strip_exif()/f/image/rUPNUlaCqXjzMP8KssyIAMom.png?f=fotoalbum_large
Ik kan het mis hebben maar volgens mij doet dit wat ook de ‘Homely’ nastreeft waarover we het eerder gehad hebben?


Zou het mogelijk zijn om deze functionaliteit als een losse module toe te voegen en te integreren in @edterbak’s Node Red?


Wie van de programmeurs onder ons wil de kar mee gaan trekken om een dergelijke sturing voor elkaar te krijgen?

_/-\o_ d:)b

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@hemertje
Mijn ervaring is dat het goed is om de volgende stappen te doorlopen.
1 - Technische scope bepalen. Grenzen
2 - Ontwerp (sketch) en review of de gebruiker het ziet zitten zo
3 - Technische POC en review of de gebruiker het nog steeds ziet zitten zo...
4 - Finalizing de bouw.


1: Technische scope. Ik denk dat er op dit moment nog meerdere wensen of verwachtingen zijn en dat er dus nog niet één visie ontwikkeld.


Er zijn namelijk meerdere scenario's mogelijk. En zoveel mensen, zoveel wensen.

Eerste vraag: Wat willen we allemaal kunnen beïnvloeden?
- DHW temperatuur / cyclus
- RTC kamertemperatuur
- HEAT watertemperatuur
- ... nog meer?

Tweede vraag: Hoe willen we dat beïnvloeden
- Een trigger, simpel link in op de standaard zonder dashboard (instellen in flow-editor)
- Een trigger, minder simpel met link in en wel een dashboard (instellen in GUI)
--- Als je een GUI verlangt, wat is dan hetgeen je wilt zien of wilt instellen?

De variaties welke er zijn in hardware, maken deze vragen nog complexer.
- heb je een losse elektrische boiler of alleen buffervat
- heb je een dynamisch contract of vast met salderen
- heb je zonnepanelen
- heb je een batterij
- heb je andere apparaten zoals een elektrische auto
- wil je kunnen handelen op de energie markt


Wat goed is om mee te nemen in de keuze, is dat alle wensen er zo simpel mogelijk en flexibel in passen.
Als we alle informatie gelijk goed op tafel hebben, dan is het makkelijker de juiste route te kiezen en er een goed plan voor maken.
Wat ook niet te vergeten is, is dat het goed onderhoudbaar moet zijn. Niet dat als ik een flow update uitrol, dat gelijk een hoop ellende veroorzaakt.


Vul maar aan wat jullie hier allemaal over denken.
Het is voor mij vrij lastig in te beelden wat jullie graag zouden willen zien.
Waar trek je een streep tussen standaard NodeRed flow / add-on flow en vooral Hoe...


Zou het mogelijk zijn om deze functionaliteit als een losse module toe te voegen?
Ja, dit zou mogelijk moeten zijn. Een los te importeren flow als add-on of plugin.
Ik wil dan best de JSON op de github pagina weergeven. Een verwijzing of een dedicated plugin pagina maken.


SHOOT. :D

Acties:
  • +3 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
Mooi "projectje" maar volgens mij behoorlijk uitdagend.

Gezien Corneel27 er al 2 jaar aan gesleuteld heeft kan ik me voorstellen dat 't handiger is deze HA add-on als input te gebruiken. Wel zal er nog van alles bijgebouwd moeten worden omdat je ook rekening moet houden met traagheid van ieders systeem en de grenzen qua comfort gevoel (hoeveel mag 't afkoelen om kosten te besparen).

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@blb4
Ik wilde niet impliceren dat ik de logica, de regeling, zelf in NR ga bouwen. I lack the skills... En er zijn al meerdere mensen hier die dit hebben gedaan.

Het heeft ook mijn voorkeur de NR flow ook zo instellen dat deze alleen doet wat gevraagd wordt. De logica van wanneer iets moet gebeuren er achter, dat volledig buiten beschouwing laten. Als ik maar zorg dat de connectoren aanwezig zijn. Dit is de meest eenvoudige oplossing.

Dus de vraag is meer:
1 - Wat willen we kunnen aansturen. Welke connectoren zijn er nodig.
2 - Is hier uberhaupt 'iets' van een GUI voor nodig? Zo ja, wat.

laatste vraag is uiteraard of iedereen hier dan mee tevreden is.

Acties:
  • +2 Henk 'm!

  • Hieke
  • Registratie: September 2010
  • Laatst online: 16-09 19:38
Ik lees uit het voorstel andere (financiële) belangen die niet zullen stroken met mijn situatie.
Mijn configuratie redt het maar net tot paar graden vorst bijvoorbeeld en voldoet prima met enkele graden boven nul. Wat mij betreft een belemmering dit concept van Ed op zijn kop te gooien. Komende jaren ook geen redenen om energie in te steken.

Laat hem deze flows (eerst) vervolmaken, waarvoor alle lof!
Ik draai WAR, soms RTC erbij en Solar2DHW en dat voldoet aardig.
Een huis uit jaren negentig en geen vloerverwarming, er is geen buffer. Dus voorstel heeft voor mij geen toegevoegde waarde.
Lees elders dat HeishaMon ook doorontwikkelt, het kost Ed ook kruim om die aanpassingen bij te houden.
Daarnaast: verleden heeft aangetoond dat deze programmeeromgeving niet optimaal is voor gezamenlijk ontwikkelen.

Nogmaals alle lof hoe Ed dit uitwerkt en onderhoudt. d:)b Scope is al complex genoeg..
Er zullen elders wel ontwikkelaars zijn die hier op inspelen, zoals HA.

Panasonic K-series split 9 kW, gasloos sinds dec 23 | EV | PV 9,6 kWp | Zendure SF 2400 AC, 12 kWh


Acties:
  • +2 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
Volledig eens. Bij mij draaien de flows van Ed alleen nog op de achtergrond (ik stuur de WP aan via HeishaMon Rules) maar mijn indruk is dat het de - verschillende modellen - WPs heel goed laat presteren met behoorlijk wat opties voor individuele wensen. Een topprestatie idd!!
Er zijn vast nog wat kleine tweaks mogelijk en de ontwikkeling van nieuwe modellen of extra opties in HeishaMon vergt al ‘t nodige.

Optimaliseren voor dynamische prijzen is, zoals @edterbak zelf al aangeeft iets dat gebruikt zou kunnen worden als input voor verschillende functies als WAR of RTC, tijdens ongunstige periodes de temperatuur naar beneden, tijdens gunstige periodes juist naar boven. Wanneer ‘t gunstig of juist ongunstig is moet dan van extern komen.

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • +2 Henk 'm!

  • MikeyMan
  • Registratie: Februari 2003
  • Laatst online: 18:59

MikeyMan

Vidi, Vici, Veni

Wat mij betreft ook niet aan beginnen. De complexiteit is al enorm en het is echt bewonderenswaardig hoe goed en stabiel dit nu werkt. Dit nu helemaal overhoop gooien is m.i. een enorm risico.

Wellicht is er nog iets te bedenken met het toevoegen van een externe input of twee om wat acties te triggeren, maar hele nieuwe logica toevoegen zou ik niet doen. Zeker niet als degenen die er wel mee aan de slag zouden willen niet een zekere kennis van node red hebben om ed een beetje uit de brand te gelpen. No offence uiteraard.

[ Voor 4% gewijzigd door MikeyMan op 29-01-2025 10:52 ]


Acties:
  • +1 Henk 'm!

  • Aziona
  • Registratie: April 2000
  • Laatst online: 18:01
edterbak schreef op woensdag 29 januari 2025 @ 09:15:
@blb4 2 - Is hier uberhaupt 'iets' van een GUI voor nodig? Zo ja, wat.
In voorbereiding op het ophouden van salderen wilde ik dat mijn 5J extra warmte in de vv zou stoppen bij terugleveren. Daarbij had ik in jouw NR-oplossing iets gemaakt waardoor de temperatuur van de externe sensor van de buitenteperatuur met een x-antal graden verlaagd werd naar gelang de hoeveelheid kW die teruggeleverd werd.

Het viel mij op dat ook als ik in NR de buitentermperatuur met 10 graden verlaagde (van 5 naar -5 graden bijvoorbeeld) dit niet betekende dat de WP zoveel warmte ging produceren dat het verbruik opeens van 400 naar 1400 watt steeg (even als uiterste). Het effect was klein.
Ik heb de indruk dat dit alleen gebeurd als je de WAR-instelling dynamisch kunt beinvloeden waardoor de WP in plaats van water van 27 graden nu water van 35 graden gaat produceren.

Ik realiseer mij dat het dan erg warm kan worden in huis maar is meestal maar tijdelijk omdat dit meestal pas in de middag gebeurde en het vrij snel weer voorbij was door de korte dagen en anders zetten we gewoon even de tuindeuren open (het is tenslotte dan toch lekker weer).

Ik heb een aparte WPB die al geschakeld wordt met terugleveren dus ik ben met name geïnteresseerd in het HEAT-gedeelte.

WP: WH-MDC05J3E5,WH-MDC07J3E5, WPB: Atlantic Explore v4, PV: Solaredge (6,8kW) en SMA (4,3kW), 2 x Heishamon OT v3.1, Rpi v5, Rpi v4, 2 x Rpi v3, ESP32, Domoticz, EV: Nissan Leaf, ESS: Deye, Luyuan, 32kWh


Acties:
  • +1 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
Aziona schreef op woensdag 29 januari 2025 @ 13:11:
[...]

In voorbereiding op het ophouden van salderen wilde ik dat mijn 5J extra warmte in de vv zou stoppen bij terugleveren. Daarbij had ik in jouw NR-oplossing iets gemaakt waardoor de temperatuur van de externe sensor van de buitenteperatuur met een x-antal graden verlaagd werd naar gelang de hoeveelheid kW die teruggeleverd werd.

Het viel mij op dat ook als ik in NR de buitentermperatuur met 10 graden verlaagde (van 5 naar -5 graden bijvoorbeeld) dit niet betekende dat de WP zoveel warmte ging produceren dat het verbruik opeens van 400 naar 1400 watt steeg (even als uiterste). Het effect was klein.
Ik heb de indruk dat dit alleen gebeurd als je de WAR-instelling dynamisch kunt beinvloeden waardoor de WP in plaats van water van 27 graden nu water van 35 graden gaat produceren.

Ik realiseer mij dat het dan erg warm kan worden in huis maar is meestal maar tijdelijk omdat dit meestal pas in de middag gebeurde en het vrij snel weer voorbij was door de korte dagen en anders zetten we gewoon even de tuindeuren open (het is tenslotte dan toch lekker weer).

Ik heb een aparte WPB die al geschakeld wordt met terugleveren dus ik ben met name geïnteresseerd in het HEAT-gedeelte.
Daarom lijkt 't mij idd mooi als er een soort universele manier is waarop je HEAT productie extern kunt beïnvloeden met als uiterste grens het uit zetten daarvan.

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@Aziona en @blb4
Je wens is dus om in HEAT modus de Ta te kunnen beïnvloeden. + x°C (variabel in te stellen wellicht)

Ok.

Nog op/aanmerkingen over wat je verwacht in de GUI.?

Acties:
  • 0 Henk 'm!

  • Aziona
  • Registratie: April 2000
  • Laatst online: 18:01
edterbak schreef op woensdag 29 januari 2025 @ 14:07:
@Aziona en @blb4 Nog op/aanmerkingen over wat je verwacht in de GUI.?
Ik ben een enthousiaste gebruiker en geen NR-expert maar wellicht eerst wachten totdat gebruikers een dergelijke functionaliteit gebruikt hebben met hulp van alleen een connector op de juiste plek (en een stukje uitleg) totdat het bewezen is dat dit een goed idee is.
Oviergens heb ik de indruk dat dit stukje script bij mij de afgelopen maanden nauwelijks is aangesproken door een gebrek aan zonneschijn.

WP: WH-MDC05J3E5,WH-MDC07J3E5, WPB: Atlantic Explore v4, PV: Solaredge (6,8kW) en SMA (4,3kW), 2 x Heishamon OT v3.1, Rpi v5, Rpi v4, 2 x Rpi v3, ESP32, Domoticz, EV: Nissan Leaf, ESS: Deye, Luyuan, 32kWh


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
GHeheh..
Gebrek aan zonneschij ja... hier ook zo... Ik zelf geef meer licht dan een vuurvlieg in de chernobielcentrale. En voor de energie opwek had je beter zelf je crossfit bike kunnen aansluiten op het net :D :D

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Hallo @edterbak

vandaag is rond 11u de Pana gestopt?

In de Log houdt de communicatie om 29/01 11:17:10 op?

Afbeeldingslocatie: https://tweakers.net/i/N6KQ6Cd2mxolqeA2448r7kzJ0iw=/800x/filters:strip_exif()/f/image/x3n0eCq6YHx7EcFvj04GX4ja.png?f=fotoalbum_large
Flow version 24.09 (stable beta)

29/01 11:17:10 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 11:17:10 - Compressor: stopped
29/01 11:17:10 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 11:17:05 - TOP4_Operating_Mode_State: 3
29/01 11:17:04 - MQTT Command: SetOperationMode: 3
29/01 11:17:04 - Auto-start-DHW function: Operating mode reverted to 3
29/01 11:08:29 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 11:08:29 - Compressor: running
29/01 11:08:29 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 11:02:04 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
29/01 10:58:49 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 10:58:49 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 10:58:49 - Function WAR: Setpoint change: From 27.1 to 27 °C
29/01 10:58:49 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 10:58:49 - Compressor: stopped
29/01 10:58:49 - TOP20_ThreeWay_Valve_State: 0
29/01 10:58:49 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 09:52:01 - TOP4_Operating_Mode_State: 4
29/01 09:51:59 - MQTT Command: SetOperationMode: 4
29/01 09:51:59 - Auto-start-DHW function: Operating mode reverted to 4
29/01 09:51:50 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
29/01 09:51:50 - Compressor: running
29/01 09:51:50 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
29/01 09:48:45 - TOP20_ThreeWay_Valve_State: 1
29/01 09:48:35 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
29/01 09:36:59 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
29/01 09:32:59 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 09:32:59 - Compressor: stopped
29/01 09:32:59 - TOP20_ThreeWay_Valve_State: 0
29/01 09:32:59 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 08:43:06 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
29/01 08:43:06 - Compressor: running
29/01 08:43:06 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
29/01 08:40:01 - TOP20_ThreeWay_Valve_State: 1
29/01 08:17:24 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 08:17:24 - Compressor: stopped
29/01 08:17:24 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 08:17:24 - TOP4_Operating_Mode_State: 3
29/01 08:17:19 - MQTT Command: SetOperationMode: 3
29/01 08:17:19 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
29/01 06:06:47 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 06:06:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 06:06:47 - Function WAR: Setpoint change: From 27 to 27.1 °C
29/01 05:46:20 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 05:46:20 - Compressor: running
29/01 05:46:20 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 05:16:09 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 05:16:09 - Compressor: stopped
29/01 05:16:09 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 03:52:53 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 03:52:53 - Compressor: running
29/01 03:52:53 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 03:25:21 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 03:25:21 - Compressor: stopped
29/01 03:25:21 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 02:52:37 - Function WAR: Setpoint change: From 26.9 to 27 °C
29/01 02:22:37 - Function WAR: Setpoint change: From 27 to 26.9 °C
29/01 02:01:56 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 02:01:56 - Compressor: running
29/01 02:01:56 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 01:38:00 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 01:38:00 - Compressor: stopped
29/01 01:38:00 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 01:37:37 - Function WAR: Setpoint change: From 26.9 to 27 °C
29/01 01:27:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 01:27:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 01:27:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.31 °C)
29/01 00:57:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 00:57:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 00:57:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.27 °C)
29/01 00:37:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 00:37:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 00:37:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.3 °C)
29/01 00:27:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 00:27:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 00:27:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.29 °C)
29/01 00:22:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 00:22:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 00:22:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.32 °C)
29/01 00:07:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 00:07:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 00:07:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.26 °C)
29/01 00:00:00 - Function Solar: New day; Reset Solar function. DHW SP = 45
29/01 00:00:00 - SYSTEM: Total amount of offline messages today: 0
in het MQTT Tabblad is er op dit moment nog steeds een MQTT verbinding

code:
1
2
MQTT node Connected
Last verified working 29/01 21:48


hoe krijg ik het systeem op de juiste manier weer herstart?

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
de Pana is niet uit de Solar2DHW gekomen zo lijkt het?

Afbeeldingslocatie: https://tweakers.net/i/w4bB2xDi_m0A4S33TsiUlK7X6M4=/800x/filters:strip_exif()/f/image/R7NjvYvz74kcta8fTysnifkE.png?f=fotoalbum_large

code:
1
2
3
4
5
6
7
8
9
10
29/01 11:17:10 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 11:17:10 - Compressor: stopped
29/01 11:17:10 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 11:17:05 - TOP4_Operating_Mode_State: 3
29/01 11:17:04 - MQTT Command: SetOperationMode: 3
29/01 11:17:04 - Auto-start-DHW function: Operating mode reverted to 3
29/01 11:08:29 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 11:08:29 - Compressor: running
29/01 11:08:29 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 11:02:04 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
heb onder Settings de Operation mode handmatig gewijzigd naar Heat+DHW (4)

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
de Pana kabouters zijn weer wakker geworden :P


code:
1
2
3
4
5
6
7
8
9
10
11
12
Flow version 24.09 (stable beta)

29/01 22:42:49 - Function WAR: Setpoint change: From 27.1 to 27.2 °C
29/01 22:29:53 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 22:29:53 - Compressor: running
29/01 22:29:53 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 22:26:48 - MQTT Command: SetCurves: target: 28 (SP Calculation)
29/01 22:26:48 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 28 °C
29/01 22:26:48 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 19.8 °C)
29/01 22:26:48 - Function WAR: Setpoint change: From 27 to 27.1 °C
29/01 22:26:48 - TOP4_Operating_Mode_State: 4
29/01 22:26:44 - MQTT Command: SetOperationMode: 4 (GUI)

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +2 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
hemertje schreef op woensdag 29 januari 2025 @ 22:46:
de Pana kabouters zijn weer wakker geworden :P
Kunnen ze 't mooi van jou overnemen :)

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • 0 Henk 'm!

  • Hieke
  • Registratie: September 2010
  • Laatst online: 16-09 19:38
hemertje schreef op woensdag 29 januari 2025 @ 22:00:
de Pana is niet uit de Solar2DHW gekomen zo lijkt het?
Waaruit concludeer je zo zeker dat het Solar2DHW is?
En niet dat DHW boosdoener is?

Welke operation mode gebruik je dan in Settings?

Panasonic K-series split 9 kW, gasloos sinds dec 23 | EV | PV 9,6 kWp | Zendure SF 2400 AC, 12 kWh


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Hieke schreef op donderdag 30 januari 2025 @ 09:26:
[...]


Waaruit concludeer je zo zeker dat het Solar2DHW is?
En niet dat DHW boosdoener is?

Welke operation mode gebruik je dan in Settings?
Goedemorgen @Hieke ,

gezien ik de zin afsluit met een vraagteken stel ik een vraag , maak ik niet een zekere conclusie. :P

Laat ik nogmaals kenbaar maken dat ik zeker geen expert ben in Programmeren, Warmtepompen of Node Red. Ik ben eerdere een veredelde leek / eindgebruiker die het allemaal probeert de techniek te doorgronden en te snappen vanuit mijn elektrotechnische achtergrond

Ik zag dat de zonnepanelen rond 11:00 gistermorgen flink wat vermogen leverden dus mijn lekenbrein maakte de link met dat dit de trigger was om DHW te starten vanuit de functie Solar2DHW.

Afbeeldingslocatie: https://tweakers.net/i/gRxaR3QimL73lZ72MwrpOGObXNg=/x800/filters:strip_exif()/f/image/jARwOsRlZWbN4aRdWSW8B6pm.png?f=fotoalbum_large

Standaard gebruik ik Operation mode Heat+DHW (4) en laat ik DHW over aan Node Red

Denk ik hier in de goede richting of maak ik een denkfout?

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +1 Henk 'm!

  • Hieke
  • Registratie: September 2010
  • Laatst online: 16-09 19:38
@hemertje Mijn vraag was niet aanvallend bedoeld :o

Ook ik heb afgelopen maanden enkele malen vastgesteld met (24.05 Stable) dat WP niet meer opstart na DHW-proces. Heb daarbij schuifje voor Solar2DH afgelopen maanden niet actief.. Weet niet welke versie jij draait.

Probeer een verklaring voor te vinden en dan is het lastig omdat er zoveel opties zijn...
Speelt versienummer flows, het soort programma (WAR, RTC), een of meerdere scheduled tasks, Solar2DHW, legionellarun, de cloud, een programma in de WP zelf, buitentemperatuur, of het type WP een rol?

Ik kom er maar niet achter. En 3 op de 4 keren gaat het goed. Kan het euvel niet reproduceren. Zou graag de vinger op de zere plek willen leggen of uit willen sluiten.

Panasonic K-series split 9 kW, gasloos sinds dec 23 | EV | PV 9,6 kWp | Zendure SF 2400 AC, 12 kWh


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Ik draai Flow version 24.09 (stable beta) met Heishamon v3.8 met de volgende instellingen:

Afbeeldingslocatie: https://tweakers.net/i/t-x1F6ICqMB3jrHiLPKWZ450VgQ=/800x/filters:strip_exif()/f/image/2GWUzvuSwYkWUUXttp6Cg2Ex.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/7VbdqpikG5XqIja3sf4L5OVJlkg=/800x/filters:strip_exif()/f/image/gudxYRgg1qh2goFo0Ms1Hjw5.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/qDG4PRxVfTrdoKCBIYgJn6wsd6o=/800x/filters:strip_exif()/f/image/jKmr4H3tus9F6che1PzYvWgk.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/ZGpX4BX4yU9JFOThN7V-h644kNA=/800x/filters:strip_exif()/f/image/MlWBjHDtB6RjfLiRLMSn6WKQ.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/lZcw1XfS7nns3JEu5EdqHKMj52I=/800x/filters:strip_exif()/f/image/46n4tCfq7gdUMGT9wxmBQfrD.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/70e7elAbp8BL2RTevjIfcrIZdW8=/800x/filters:strip_exif()/f/image/xDglg5RKVT6pOjvTZjXrXxkM.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/9_kknVSofMXObFfz_PrAHjDQyDA=/800x/filters:strip_exif()/f/image/85jG4znj46pyLWwXlUTJJeff.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/7cIhHPkLbrsRZejkU6-fDX_sez8=/800x/filters:strip_exif()/f/image/mM4MMuUQuEDlLyJ8eTR71a1r.png?f=fotoalbum_large

Wanneer iemand verbeterpunten ziet in de instellingen dan verneem ik ze graag!

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • ercolano
  • Registratie: Juli 2006
  • Laatst online: 18:17
blb4 schreef op woensdag 25 oktober 2023 @ 01:00:
[...]


Ik denk dat er wel een use-case is voor combinatie RTC functie met thermostaat, ik ben er net weer mee bezig om een externe "thermostaat" aan te sluiten. in mijn geval gewoon een relais dat ik vanuit eigen automatisering kan bedienen. Ik wil dit relais vooral gebruiken om de waterpomp uit te zetten. Zonder thermostaat blijft de WP water rondpompen of je de WP uit zetten (Heatpump_State = 0) of b.v. OM schakelen naar b.v. alleen DHW. Heatpump_State naar 0 is weer lastig vanwege DHW en omschakelen OM is weer lastig omdat er dan direct DHW geproduceerd gaat worden. Daar zit ik de hele tijd een beetje mee te klooien en ik denk dat de externe thermostaatfunctie dit mooi kan oplossen.

.....
Wilde even terug komen op een oude discussie, namelijk de WP mbv (een externe thermostaat) uit zetten via CN2. Voordelen zoals beschreven door @blb4 zijn dat de waterpomp stopt en dat de DHW functie niet getriggered wordt bij weer aanspringen.

Het gebruik van de huidige automation "change operating mode" triggered helaas ook direct een DHW run.
De nieuwste Heishamon beschikt over 2 relays waarmee het 230v CN2 circuit dmv een mqtt opdracht bestuurd kan worden.
Mijn vraag dus, is het een idee om een automation action toe te voegen, namelijk een 1/0 flippen in topic "panasonic_heat_pump/gpio/relay/one" ?
Zal eerdaags zelf het relay eens aansluiten en manipuleren, maar via het bestaande dashboard met instelbare temperaturen is natuurlijk veel cleaner.

Gasloos | Pana 9J | 300l boiler | 8000wp | PHEV


Acties:
  • 0 Henk 'm!

  • wervisser
  • Registratie: Oktober 2006
  • Laatst online: 13-09 09:16
[Opgelost]
Probleem gezocht in de herstart van HA, MQTT, Heishamon en het uit- en inschakelen van de WP. Geen oplossing.
Zoals in het laatste log ook stond vermeld was er geen communicatie tussen Heishamon en de WP. Het loskoppelen van de Heishamon heeft niet geholpen, maar het spanningsloos (10 minuten) maken van de WP wel.

*****

Iemand dit al eens gezien? Heb vanmorgen MQTT unblocked, maar hij gaat weer vrolijk verder.

Heishamon draait 3.9 en de flow is 24.07 stable

Het begin

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
30/01 09:45:35 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:45:07 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:44:39 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:44:11 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:43:43 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:43:15 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:42:47 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:42:19 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:41:51 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:41:51 - *** Function Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
30/01 09:41:46 - Function WAR: Setpoint change: From 28.2 to 28 °C
30/01 09:30:16 - Compressor: stopped
30/01 09:26:54 - Function WAR: Setpoint change: From 28.4 to 28.2 °C
30/01 08:47:10 - Compressor: running
30/01 08:13:05 - Compressor: stopped


Het einde

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
30/01 13:34:16 - SYSTEM: MQTT block active, default block mode: BLOCK ALL
30/01 13:34:16 - [WARNING]: 500 MQTT-commands send today! MQTT sending blocked (limit 500 msg/day)
30/01 13:34:16 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:33:48 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:33:20 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:32:52 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:32:24 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:31:56 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:31:28 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:31:00 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:30:32 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:30:04 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:29:36 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:29:08 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:28:40 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:28:12 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:27:44 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:27:16 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:26:48 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:26:20 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:25:52 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:25:24 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:24:56 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:24:28 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:24:00 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:23:32 - MQTT Command: SetCurves: target: 28 (SP Calculation)


Na een herstart van Heishamon staat het onderstaande in het log.

code:
1
2
3
4
5
Thu Jan  1 01:00:42 1970 (42919): SetCurves JSON received ok
Thu Jan  1 01:00:42 1970 (42920): sent bytes: 111 including checksum value: 246 
Thu Jan  1 01:00:44 1970 (44922): Previous read data attempt failed due to timeout!
Thu Jan  1 01:00:44 1970 (44923): Received 0 bytes data
Thu Jan  1 01:00:44 1970 (45029): Heishamon stats: Uptime: 0 days 0 hours 0 minutes 45 seconds ## Free memory: 77% ## Heap fragmentation: 13% ## Max free block: 26752 bytes ## Free heap: 30888 bytes ## Wifi: 100% (RSSI: -39) ##


Na de herstart blijft de TOP0 status op -1 staan. Volgens Heishamon staat de WP uit, maar hij staat volgens de controller echt aan. De temperatuur in huis is goed, enkel SWW schakelt niet in.

[ Voor 14% gewijzigd door wervisser op 31-01-2025 17:09 ]


Acties:
  • +1 Henk 'm!

  • Guy-Manuel
  • Registratie: September 2009
  • Laatst online: 17-09 20:19
blb4 schreef op woensdag 29 januari 2025 @ 13:35:
[...]

Daarom lijkt 't mij idd mooi als er een soort universele manier is waarop je HEAT productie extern kunt beïnvloeden met als uiterste grens het uit zetten daarvan.
In de Heishamon zit een optie om de optionele PCB te emuleren, heeft iemand daar al ervaring mee?

@edterbak Zou het SG Ready contact daarmee beschikbaar kunnen komen in Node-red? Wellicht kun je de besproken use case (regelen vermogen) hier gedeeltelijk mee afdekken, gebruikmakend van de logica van de Pana (en hoef je miss alleen twee bitjes en een 0-10V contact te simuleren)?


Afbeeldingslocatie: https://tweakers.net/i/gKJUK6I-n7UiQLshDJgg2bkw7cM=/800x/filters:strip_icc():strip_exif()/f/image/zwEVGIvkRYRVZoipp8oBAPhC.jpg?f=fotoalbum_large


Afbeeldingslocatie: https://tweakers.net/i/bMYskYIpAP4Nxyn6JcJHDMCtUgk=/x800/filters:strip_icc():strip_exif()/f/image/e5LT63E36rehHEE1uQBsnfk9.jpg?f=fotoalbum_large

@hemertje Ik probeer altijd op zoek te gaan naar de hoofdlijnen van zo'n Homely oplossing en wat me bijstaat is dat als je de piekmomenten kunt omzeilen (ochtend en einde middag), dat je dan al een heel eind bent.

[ Voor 18% gewijzigd door Guy-Manuel op 31-01-2025 14:01 ]

WH-MDC09J3E5


Acties:
  • 0 Henk 'm!

  • blb4
  • Registratie: April 2008
  • Nu online
Guy-Manuel schreef op vrijdag 31 januari 2025 @ 13:58:
[...]


In de Heishamon zit een optie om de optionele PCB te emuleren, heeft iemand daar al ervaring mee?

@edterbak Zou het SG Ready contact daarmee beschikbaar kunnen komen in Node-red? Wellicht kun je de besproken use case (regelen vermogen) hier gedeeltelijk mee afdekken, gebruikmakend van de logica van de Pana (en hoef je miss alleen twee bitjes en een 0-10V contact te simuleren)?


[Afbeelding]


[Afbeelding]

@hemertje Ik probeer altijd op zoek te gaan naar de hoofdlijnen van zo'n Homely oplossing en wat me bijstaat is dat als je de piekmomenten kunt omzeilen (ochtend en einde middag), dat je dan al een heel eind bent.
Ik weet niet meer wie en in welk topic, maar er zijn hiermee wel experimenten gedaan maar de kabouters geven zich niet zo maar gewonnen; eenvoudig bepalen hoeveel % vermogen de WP moet leveren is er volgens mij niet bij. ff zoeken naar SG ready, hoop dat 't dan te vinden zal zijn.

Panasonic J 7kW WP, boiler & HeishaMon, 6022 Wp PV, Enphase+ST GW, SOLAX SK-SU3000E 13kWh BESS, ITHO Qualityflow WTW, Elvi Smart Charging+ laadpunt, Kia EV6 84kWh EA MY25, gasloos '23


Acties:
  • 0 Henk 'm!

  • Dewim1
  • Registratie: Januari 2020
  • Laatst online: 17-09 16:28
Guy-Manuel schreef op vrijdag 31 januari 2025 @ 13:58:
[...]


In de Heishamon zit een optie om de optionele PCB te emuleren, heeft iemand daar al ervaring mee?

@edterbak Zou het SG Ready contact daarmee beschikbaar kunnen komen in Node-red? Wellicht kun je de besproken use case (regelen vermogen) hier gedeeltelijk mee afdekken, gebruikmakend van de logica van de Pana (en hoef je miss alleen twee bitjes en een 0-10V contact te simuleren)?


[Afbeelding]


[Afbeelding]

@hemertje Ik probeer altijd op zoek te gaan naar de hoofdlijnen van zo'n Homely oplossing en wat me bijstaat is dat als je de piekmomenten kunt omzeilen (ochtend en einde middag), dat je dan al een heel eind bent.
Ik heb dat wel een getest. met onderstaand kan je max vermogen terug zetten van 48 tot 255
Als je pomp al rustig draait merk je het verschil niet maar mischien wel bij mensen waar de pomp altijd op hoog vermogen draait

http://192.168.1.101/command?SetDemandControl=48
http://192.168.1.101/command?SetDemandControl=255

Acties:
  • 0 Henk 'm!

  • Dewim1
  • Registratie: Januari 2020
  • Laatst online: 17-09 16:28
Dewim1 schreef op vrijdag 31 januari 2025 @ 16:38:
[...]


Ik heb dat wel een getest. met onderstaand kan je max vermogen terug zetten van 48 tot 255
Als je pomp al rustig draait merk je het verschil niet maar mischien wel bij mensen waar de pomp altijd op hoog vermogen draait

http://192.168.1.101/command?SetDemandControl=48
http://192.168.1.101/command?SetDemandControl=255
Oh ja als de heishmon in storing/offline valt dan gaat je pomp ook na een tijdje in storing omdat hij dan de optionele PCB mist

Acties:
  • +1 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
NEN start met ontwikkelen norm voor slimme warmtepompen
Het Nederlands Normalisatie Instituut (NEN) is gestart met de ontwikkeling van een norm voor slimme warmtepompen. Bovendien wordt een overkoepelende norm of normenstelsel voor alle slimme apparaten onderzocht.


https://solarmagazine.nl/...-voor-slimme-warmtepompen

[ Voor 55% gewijzigd door hemertje op 31-01-2025 22:42 ]

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • sjampeter
  • Registratie: November 2021
  • Laatst online: 15-09 19:21
net mijn binnentemperatuurmeter gebricked. geen zin meer om dat ding te reanimeren (oud esp 8266 boardje)
ik meen mij te herinneren dat hier wat gebruikers zijn van out of the box sensoren met mqtt.
kan het echter niet zo snel terug vinden.
wat gebruiken jullie als binnentemp meter?

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Ik heb laatst deze gekocht want usb voeding ipv batterij

Ik heb dit zojuist gevonden op AliExpress:
Tuya Zigbee Temperatuur Vochtigheid Sensor Indoor Hygrometer Thermometer Detector Lcd-Scherm Smart Life App Batterij Of Usb Aangedreven

https://a.aliexpress.com/_EuZRcb6

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
Ik heb wat aangepast voor FW 3.9.
moet nu goed werken.

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Hoi @edterbak

Mooi werk weer….

De aanpassingen voor Heishamon v3.9 is gedaan in NodeRed v24.09?

Bij de download link staat qua datum nog steeds

https://github.com/edterb...flows/flows%20v24.09.json

History for
NodeRed_Heishamon_controlold_flowsflows v24.09.json


Commit History
Commits on Jan 26, 2025

Ipv 1 februari 2025!?

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • MikeyMan
  • Registratie: Februari 2003
  • Laatst online: 18:59

MikeyMan

Vidi, Vici, Veni

edterbak schreef op zaterdag 1 februari 2025 @ 23:21:
Ik heb wat aangepast voor FW 3.9.
moet nu goed werken.
De moeite waard om naar 3.9 te gaan?

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op maandag 27 januari 2025 @ 21:52:
[...]

Wat ik zie:

27/01 17:22:39 - Function SoftStart: Correction: 5 > 5 °C - (EVALUATING) Freq: 28Hz, SP_Final: 23°C
vervolgens
27/01 17:22:47 - Function SoftStart: Correction: 5 > 1 °C - (STABLE) Freq: 28Hz, SP_Final: 19°C

Kun je de kale softstart functie eens een tijdje proberen.
Geen quite mode
Geen pumpspeed.
Just keep is simple for now.

Kun je daar naast ook je WAR lijn in de WAR tab controleren?
Het lijkt alsof deze niet in sync is met wat er in je controller staat.
code:
1
2
27/01 17:16:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
27/01 17:16:41 - Function SoftStart: Correction: 4 > 5 °C - (STARTUP) Freq: 28Hz, SP_Final: 23°C


Er lijkt 7°C verschil in te zitten wat ik niet kan verklaren.
Log update met de SoftStart uit:

en de bijbehorende statistieken van deze log

Afbeeldingslocatie: https://tweakers.net/i/8ycanI382btaF_nJ1DW5fXcnbj0=/800x/filters:strip_exif()/f/image/8Uu76oPPt3chlsrf2Avs1gqR.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/hE-AWLPoFY2REnyJ1Ms4B0J1stA=/800x/filters:strip_exif()/f/image/aYd9p0yLISjwVMwXGTnFtt6i.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/RjN2OvbNYPDjGutZpXSOcK-yOHM=/800x/filters:strip_exif()/f/image/IdrThJohGhsIIKjMHXsm2Hws.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/3Kw9xpTK7OrAnAwTOUqALhK5osI=/800x/filters:strip_exif()/f/image/lSiwOR1z9IvXRQI0B7a2dR9a.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/CEeHIKcyflon0wuClnUUy7FQhnE=/800x/filters:strip_exif()/f/image/bJsSV5jJJBO3fEZyHlPwmbkz.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/tuB_-s93WiAtnsR-atYbb5bht28=/800x/filters:strip_exif()/f/image/4ipK0X7872jzTk4V75Qa2Qgr.png?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/FmdVXqT2DvJjZ8Y9hKHHf0iGrSI=/800x/filters:strip_exif()/f/image/GIOqJ1G7Z7GMXO2JavPiVHyx.png?f=fotoalbum_large

ik lees langere runs af dan voorheen met de SoftStart Aan?

@edterbak had je voor de langere runs icm SoftStart al een aanpassing voor gemaakt?

mbt de 7 graden verschil waar je het over had, kan je aangeven waar ik naar moet kijken of anders in moet stellen?
SYSTEM
Flow version

24.09 (stable beta)

02/02 13:39:14 - Compressor: stopped
02/02 13:00:32 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
02/02 13:00:32 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
02/02 13:00:27 - TOP69_Sterilization_State: 1
02/02 13:00:27 - TOP20_ThreeWay_Valve_State: 1
02/02 12:58:22 - Function WAR: Setpoint change: From 28 to 27.5 °C
02/02 12:56:41 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
02/02 12:56:41 - Compressor: running
02/02 12:56:41 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
02/02 12:53:21 - TOP4_Operating_Mode_State: 4
02/02 12:53:20 - MQTT Command: SetOperationMode: 4
02/02 12:53:20 - Auto-start-DHW function: Operating mode reverted to 4
02/02 12:38:20 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
02/02 12:37:35 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
02/02 12:37:35 - Compressor: stopped
02/02 12:37:35 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
02/02 12:37:35 - TOP20_ThreeWay_Valve_State: 0
02/02 11:10:14 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
02/02 11:10:14 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
02/02 11:10:04 - Function SoftStart: SoftStart function end
02/02 11:10:04 - *DEFROSTING: Finished
02/02 11:09:09 - TOP20_ThreeWay_Valve_State: 1
02/02 11:09:09 - TOP4_Operating_Mode_State: 3
02/02 11:09:04 - MQTT Command: SetOperationMode: 3
02/02 11:09:04 - Auto-start-DHW function: DHW temperature: 36°C. Lower threshold: 40°C. Starting DHW run.
02/02 11:08:04 - Compressor: running
02/02 11:07:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
02/02 11:07:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
02/02 11:07:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.3 °C)
02/02 11:07:04 - Compressor: stopped
02/02 11:02:48 - Compressor: running
02/02 11:01:48 - Compressor: stopped
02/02 11:00:48 - Function SoftStart: Defrost - Correction: 0
02/02 11:00:48 - *DEFROSTING: Started
02/02 10:53:13 - MQTT Command: SetCurves: target: 28 (SP Calculation)
02/02 10:53:13 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
02/02 10:53:13 - Function WAR: Setpoint change: From 28.1 to 28 °C
02/02 10:38:12 - Function WAR: Setpoint change: From 28.2 to 28.1 °C
02/02 10:23:11 - Function WAR: Setpoint change: From 28.3 to 28.2 °C
02/02 09:58:09 - Function WAR: Setpoint change: From 28.4 to 28.3 °C
02/02 09:48:08 - Function WAR: Setpoint change: From 28.5 to 28.4 °C
02/02 09:38:08 - Function WAR: Setpoint change: From 28.6 to 28.5 °C
02/02 09:33:07 - Function WAR: Setpoint change: From 28.7 to 28.6 °C
02/02 09:12:38 - Function WAR: Setpoint change: From 28.8 to 28.7 °C
02/02 09:08:51 - Function SoftStart: SoftStart function end
02/02 09:08:51 - *DEFROSTING: Finished
02/02 09:07:00 - Compressor: running
02/02 09:06:00 - Compressor: stopped
02/02 09:02:20 - Compressor: running
02/02 09:01:15 - Compressor: stopped
02/02 09:00:15 - Function SoftStart: Defrost - Correction: 0
02/02 09:00:15 - *DEFROSTING: Started
02/02 08:42:38 - Function WAR: Setpoint change: From 28.9 to 28.8 °C
02/02 08:12:38 - Function WAR: Setpoint change: From 29 to 28.9 °C
02/02 07:52:41 - Function SoftStart: SoftStart function end
02/02 07:52:41 - *DEFROSTING: Finished
02/02 07:50:51 - Compressor: running
02/02 07:49:51 - Compressor: stopped
02/02 07:46:21 - Compressor: running
02/02 07:45:16 - Compressor: stopped
02/02 07:44:16 - Function SoftStart: Defrost - Correction: 0
02/02 07:44:16 - *DEFROSTING: Started
02/02 07:32:38 - Function WAR: Setpoint change: From 28.9 to 29 °C
02/02 07:07:59 - Function WAR: Setpoint change: From 29 to 28.9 °C
02/02 07:02:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
02/02 07:02:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
02/02 07:02:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.71 °C)
02/02 06:57:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
02/02 06:57:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
02/02 06:57:38 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.7 °C)
02/02 06:45:02 - Function SoftStart: SoftStart function end
02/02 06:45:02 - *DEFROSTING: Finished
02/02 06:43:02 - Compressor: running
02/02 06:42:57 - Function WAR: Setpoint change: From 28.9 to 29 °C
02/02 06:42:02 - Compressor: stopped
02/02 06:38:37 - Compressor: running
02/02 06:37:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
02/02 06:37:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
02/02 06:37:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.72 °C)
02/02 06:37:37 - Compressor: stopped
02/02 06:36:37 - Function SoftStart: Defrost - Correction: 0
02/02 06:36:37 - *DEFROSTING: Started
02/02 06:32:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
02/02 06:32:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
02/02 06:32:38 - Function WAR: Setpoint change: From 28.8 to 28.9 °C
02/02 06:32:38 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.68 °C)
02/02 06:12:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
02/02 06:12:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
02/02 06:12:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.71 °C)
02/02 06:02:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
02/02 06:02:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
02/02 06:02:38 - Function WAR: Setpoint change: From 28.7 to 28.8 °C
02/02 06:02:38 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.67 °C)
02/02 05:57:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
02/02 05:57:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
02/02 05:57:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.71 °C)
02/02 05:40:03 - Function SoftStart: SoftStart function end
02/02 05:40:03 - *DEFROSTING: Finished
02/02 05:38:13 - Compressor: running
02/02 05:37:13 - Compressor: stopped
02/02 05:33:48 - Compressor: running
02/02 05:32:48 - Compressor: stopped
02/02 05:31:48 - Function SoftStart: Defrost - Correction: 0
02/02 05:31:48 - *DEFROSTING: Started
02/02 05:12:51 - Function WAR: Setpoint change: From 28.8 to 28.7 °C
02/02 04:57:50 - Function WAR: Setpoint change: From 28.9 to 28.8 °C
02/02 04:46:45 - Function SoftStart: SoftStart function end
02/02 04:46:45 - *DEFROSTING: Finished
02/02 04:44:44 - Compressor: running
02/02 04:43:44 - Compressor: stopped
02/02 04:40:29 - Compressor: running
02/02 04:39:29 - Compressor: stopped
02/02 04:38:29 - Function SoftStart: Defrost - Correction: 0
02/02 04:38:29 - *DEFROSTING: Started
02/02 03:59:42 - Function SoftStart: SoftStart function end
02/02 03:59:42 - *DEFROSTING: Finished
02/02 03:57:47 - Function WAR: Setpoint change: From 28.8 to 28.9 °C
02/02 03:57:47 - Compressor: running
02/02 03:56:47 - Compressor: stopped
02/02 03:53:26 - Compressor: running
02/02 03:52:26 - Compressor: stopped
02/02 03:51:26 - Function SoftStart: Defrost - Correction: 0
02/02 03:51:26 - *DEFROSTING: Started
02/02 03:47:46 - Function WAR: Setpoint change: From 28.7 to 28.8 °C
02/02 03:22:38 - Function WAR: Setpoint change: From 28.6 to 28.7 °C
02/02 03:13:24 - Function SoftStart: SoftStart function end
02/02 03:13:24 - *DEFROSTING: Finished
02/02 03:11:24 - Compressor: running
02/02 03:10:24 - Compressor: stopped
02/02 03:07:44 - Function WAR: Setpoint change: From 28.5 to 28.6 °C
02/02 03:06:49 - Compressor: running
02/02 03:05:49 - Compressor: stopped
02/02 03:04:49 - Function SoftStart: Defrost - Correction: 0
02/02 03:04:49 - *DEFROSTING: Started
02/02 03:02:43 - Function WAR: Setpoint change: From 28.4 to 28.5 °C
02/02 02:47:43 - Function WAR: Setpoint change: From 28.3 to 28.4 °C
02/02 02:42:47 - MQTT Command: SetCurves: target: 30 (SP Calculation)
02/02 02:42:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
02/02 02:42:42 - Function WAR: Setpoint change: From 28 to 28.3 °C
02/02 02:42:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
02/02 02:42:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 29 °C
02/02 02:42:38 - Function RTC: Correction change: From -1 to 1 °C (Room actual: 19.64 °C)
02/02 02:40:47 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
02/02 02:40:47 - Compressor: running
02/02 02:40:47 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
02/02 02:37:42 - TOP4_Operating_Mode_State: 4
02/02 02:37:41 - MQTT Command: SetOperationMode: 4
02/02 02:37:41 - Auto-start-DHW function: Operating mode reverted to 4
02/02 02:22:41 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
02/02 02:20:16 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
02/02 02:20:16 - Compressor: stopped
02/02 02:20:16 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
02/02 02:20:11 - TOP20_ThreeWay_Valve_State: 0
02/02 01:17:57 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
02/02 01:17:57 - Compressor: running
02/02 01:17:57 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
02/02 01:14:52 - TOP20_ThreeWay_Valve_State: 1
02/02 00:00:00 - Function Solar: New day; Reset Solar function. DHW SP = 45
02/02 00:00:00 - SYSTEM: Total amount of offline messages today: 0
------------------------------------------------------------------------------------------------
01/02 23:07:28 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
01/02 23:07:28 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
01/02 23:07:13 - Function SoftStart: SoftStart function end
01/02 23:07:13 - *DEFROSTING: Finished
01/02 23:07:13 - Compressor: stopped
01/02 23:06:28 - TOP4_Operating_Mode_State: 3
01/02 23:06:23 - MQTT Command: SetOperationMode: 3
01/02 23:06:23 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
01/02 23:05:18 - Compressor: running
01/02 23:04:13 - Compressor: stopped
01/02 23:00:18 - Compressor: running
01/02 22:59:18 - Compressor: stopped
01/02 22:58:18 - Function SoftStart: Defrost - Correction: 0
01/02 22:58:18 - *DEFROSTING: Started
01/02 22:57:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
01/02 22:57:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
01/02 22:57:38 - Function WAR: Setpoint change: From 28.1 to 28 °C
01/02 22:57:28 - MQTT Command: SetCurves: target: 28 (SP Calculation)
01/02 22:57:28 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
01/02 22:57:28 - Function WAR: Setpoint change: From 28 to 28.1 °C
01/02 22:47:27 - Function WAR: Setpoint change: From 27.9 to 28 °C
01/02 22:42:27 - Function WAR: Setpoint change: From 27.8 to 27.9 °C
01/02 21:17:22 - Function WAR: Setpoint change: From 27.9 to 27.8 °C
01/02 21:02:20 - Function WAR: Setpoint change: From 28 to 27.9 °C
01/02 20:52:20 - MQTT Command: SetCurves: target: 27 (SP Calculation)
01/02 20:52:20 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
01/02 20:52:20 - Function WAR: Setpoint change: From 28.1 to 28 °C
01/02 20:47:20 - Function WAR: Setpoint change: From 28.2 to 28.1 °C
01/02 20:12:17 - Function WAR: Setpoint change: From 28.1 to 28.2 °C
01/02 19:52:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
01/02 19:52:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
01/02 19:52:38 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.55 °C)
01/02 19:42:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
01/02 19:42:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
01/02 19:42:38 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
01/02 19:27:14 - MQTT Command: SetCurves: target: 28 (SP Calculation)
01/02 19:27:14 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
01/02 19:27:14 - Function WAR: Setpoint change: From 28 to 28.1 °C
01/02 19:17:13 - Function WAR: Setpoint change: From 27.9 to 28 °C
01/02 19:07:12 - Function WAR: Setpoint change: From 27.8 to 27.9 °C
01/02 18:47:11 - Function WAR: Setpoint change: From 27.7 to 27.8 °C
01/02 18:37:10 - Function WAR: Setpoint change: From 27.6 to 27.7 °C
01/02 18:32:10 - Function WAR: Setpoint change: From 27.5 to 27.6 °C
01/02 18:27:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
01/02 18:27:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
01/02 18:27:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.32 °C)
01/02 18:17:08 - Function WAR: Setpoint change: From 27.4 to 27.5 °C
01/02 17:47:38 - Function WAR: Setpoint change: From 27.3 to 27.4 °C
01/02 17:02:03 - Function WAR: Setpoint change: From 27.2 to 27.3 °C
01/02 16:47:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
01/02 16:47:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 32 °C. New calculated setpoint: 28 °C
01/02 16:47:38 - Function RTC: Correction change: From 4 to 0 °C (Room actual: 20.05 °C)
01/02 16:37:38 - MQTT Command: SetCurves: target: 32 (SP Calculation)
01/02 16:37:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 32 °C
01/02 16:37:38 - Function RTC: Correction change: From 0 to 4 °C (Room actual: 11.85 °C)
01/02 14:06:52 - Function WAR: Setpoint change: From 27.3 to 27.2 °C
01/02 14:05:02 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
01/02 14:05:02 - Compressor: running
01/02 14:05:02 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
01/02 14:02:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
01/02 14:02:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
01/02 14:02:38 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.1 °C)
01/02 14:01:52 - TOP4_Operating_Mode_State: 4
01/02 14:01:51 - MQTT Command: SetOperationMode: 4
01/02 14:01:51 - Auto-start-DHW function: Operating mode reverted to 4
01/02 13:46:51 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
01/02 13:46:15 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
01/02 13:46:15 - Compressor: stopped
01/02 13:46:15 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
01/02 13:46:11 - TOP20_ThreeWay_Valve_State: 0
01/02 12:55:27 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
01/02 12:55:27 - Compressor: running
01/02 12:55:27 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
01/02 12:52:22 - TOP20_ThreeWay_Valve_State: 1
01/02 12:52:02 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
01/02 12:52:02 - Compressor: stopped
01/02 12:52:02 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
01/02 12:52:02 - TOP4_Operating_Mode_State: 3
01/02 12:51:57 - MQTT Command: SetOperationMode: 3
01/02 12:51:57 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
01/02 12:26:45 - Function WAR: Setpoint change: From 27.4 to 27.3 °C
01/02 12:02:38 - Function WAR: Setpoint change: From 27.5 to 27.4 °C
01/02 11:52:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
01/02 11:52:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
01/02 11:52:38 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.55 °C)
01/02 11:46:43 - Function WAR: Setpoint change: From 27.6 to 27.5 °C
01/02 11:42:38 - MQTT Command: SetCurves: target: 26 (SP Calculation)
01/02 11:42:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
01/02 11:42:38 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.68 °C)
01/02 11:26:42 - Function WAR: Setpoint change: From 27.7 to 27.6 °C
01/02 11:21:47 - MQTT Command: SetCurves: target: 27 (SP Calculation)
01/02 11:21:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
01/02 11:21:42 - Function WAR: Setpoint change: From 28.6 to 27.7 °C
01/02 11:19:47 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
01/02 11:19:47 - Compressor: running
01/02 11:19:47 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
01/02 11:17:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
01/02 11:17:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
01/02 11:17:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.51 °C)
01/02 11:16:42 - TOP4_Operating_Mode_State: 4
01/02 11:16:40 - MQTT Command: SetOperationMode: 4
01/02 11:16:40 - Auto-start-DHW function: Operating mode reverted to 4
01/02 11:01:40 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
01/02 10:59:10 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
01/02 10:59:10 - Compressor: stopped
01/02 10:59:10 - TOP20_ThreeWay_Valve_State: 0
01/02 10:59:10 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
01/02 10:03:52 - Function SoftStart: SoftStart function end
01/02 10:03:52 - *DEFROSTING: Finished
01/02 10:02:02 - Compressor: running
01/02 10:01:02 - Compressor: stopped
01/02 09:57:21 - Compressor: running
01/02 09:56:16 - Compressor: stopped
01/02 09:55:21 - Function SoftStart: Defrost - Correction: 0
01/02 09:55:21 - *DEFROSTING: Started
01/02 09:16:54 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
01/02 09:16:54 - Compressor: running
01/02 09:16:54 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
01/02 09:13:33 - TOP20_ThreeWay_Valve_State: 1
01/02 09:12:43 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
01/02 09:12:43 - Compressor: stopped
01/02 09:12:43 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
01/02 09:12:43 - TOP4_Operating_Mode_State: 3
01/02 09:12:38 - MQTT Command: SetOperationMode: 3
01/02 09:12:38 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
01/02 09:06:33 - Function WAR: Setpoint change: From 28.5 to 28.6 °C
01/02 08:51:32 - Function WAR: Setpoint change: From 28.4 to 28.5 °C
01/02 08:41:31 - Function WAR: Setpoint change: From 28.5 to 28.4 °C
01/02 08:24:30 - Function SoftStart: SoftStart function end
01/02 08:24:30 - *DEFROSTING: Finished
01/02 08:22:35 - Compressor: running
01/02 08:21:35 - Compressor: stopped
01/02 08:18:00 - Compressor: running
01/02 08:17:00 - Compressor: stopped
01/02 08:16:00 - Function SoftStart: Defrost - Correction: 0
01/02 08:16:00 - *DEFROSTING: Started
01/02 08:06:29 - Function WAR: Setpoint change: From 28.6 to 28.5 °C
01/02 07:51:28 - Function WAR: Setpoint change: From 28.7 to 28.6 °C
01/02 07:36:27 - Function WAR: Setpoint change: From 28.6 to 28.7 °C
01/02 07:26:12 - Function SoftStart: SoftStart function end
01/02 07:26:12 - *DEFROSTING: Finished
01/02 07:24:12 - Compressor: running
01/02 07:23:11 - Compressor: stopped
01/02 07:22:38 - Function WAR: Setpoint change: From 28.7 to 28.6 °C
01/02 07:19:41 - Compressor: running
01/02 07:18:41 - Compressor: stopped
01/02 07:17:41 - Function SoftStart: Defrost - Correction: 0
01/02 07:17:41 - *DEFROSTING: Started
01/02 07:01:25 - Function WAR: Setpoint change: From 28.6 to 28.7 °C
01/02 06:52:38 - Function WAR: Setpoint change: From 28.5 to 28.6 °C
01/02 06:36:24 - Function WAR: Setpoint change: From 28.6 to 28.5 °C
01/02 06:28:23 - Function SoftStart: SoftStart function end
01/02 06:28:23 - *DEFROSTING: Finished
01/02 06:26:28 - Compressor: running
01/02 06:25:28 - Compressor: stopped
01/02 06:21:48 - Compressor: running
01/02 06:20:48 - Compressor: stopped
01/02 06:19:48 - Function SoftStart: Defrost - Correction: 0
01/02 06:19:48 - *DEFROSTING: Started
01/02 06:16:23 - Function WAR: Setpoint change: From 28.5 to 28.6 °C
01/02 05:52:38 - Function WAR: Setpoint change: From 28.6 to 28.5 °C
01/02 05:36:20 - Function WAR: Setpoint change: From 28.5 to 28.6 °C
01/02 05:29:30 - Function SoftStart: SoftStart function end
01/02 05:29:30 - Function WAR: Setpoint change: From 28.4 to 28.5 °C
01/02 05:29:30 - *DEFROSTING: Finished
01/02 05:27:39 - Compressor: running
01/02 05:26:39 - Compressor: stopped
01/02 05:22:59 - Compressor: running
01/02 05:22:38 - Function WAR: Setpoint change: From 28.5 to 28.4 °C
01/02 05:21:59 - Compressor: stopped
01/02 05:20:59 - Function SoftStart: Defrost - Correction: 0
01/02 05:20:59 - *DEFROSTING: Started
01/02 05:16:19 - Function WAR: Setpoint change: From 28.6 to 28.5 °C
01/02 05:06:18 - Function WAR: Setpoint change: From 28.7 to 28.6 °C
01/02 04:51:17 - Function WAR: Setpoint change: From 28.6 to 28.7 °C
01/02 04:31:41 - Function SoftStart: SoftStart function end
01/02 04:31:41 - *DEFROSTING: Finished
01/02 04:29:51 - Compressor: running
01/02 04:28:51 - Compressor: stopped
01/02 04:25:01 - Compressor: running
01/02 04:24:01 - Compressor: stopped
01/02 04:23:00 - Function SoftStart: Defrost - Correction: 0
01/02 04:23:00 - *DEFROSTING: Started
01/02 04:06:14 - Function WAR: Setpoint change: From 28.5 to 28.6 °C
01/02 03:51:13 - Function WAR: Setpoint change: From 28.4 to 28.5 °C
01/02 03:18:31 - Function SoftStart: SoftStart function end
01/02 03:18:31 - *DEFROSTING: Finished
01/02 03:16:36 - Compressor: running
01/02 03:15:36 - Compressor: stopped
01/02 03:11:40 - Compressor: running
01/02 03:10:40 - Compressor: stopped
01/02 03:09:40 - Function SoftStart: Defrost - Correction: 0
01/02 03:09:40 - *DEFROSTING: Started
01/02 03:01:10 - Function WAR: Setpoint change: From 28.3 to 28.4 °C
01/02 02:46:09 - Function WAR: Setpoint change: From 28.2 to 28.3 °C
01/02 02:02:21 - Function SoftStart: SoftStart function end
01/02 02:02:21 - *DEFROSTING: Finished
01/02 02:00:26 - Compressor: running
01/02 01:59:26 - Compressor: stopped
01/02 01:55:30 - Compressor: running
01/02 01:54:30 - Compressor: stopped
01/02 01:53:30 - Function SoftStart: Defrost - Correction: 0
01/02 01:53:30 - Function WAR: Setpoint change: From 28.1 to 28.2 °C
01/02 01:53:30 - *DEFROSTING: Started
01/02 01:36:04 - Function WAR: Setpoint change: From 28.2 to 28.1 °C
01/02 01:12:38 - Function WAR: Setpoint change: From 28.3 to 28.2 °C
01/02 00:49:01 - Function SoftStart: SoftStart function end
01/02 00:49:01 - Function WAR: Setpoint change: From 28.2 to 28.3 °C
01/02 00:49:01 - *DEFROSTING: Finished
01/02 00:47:06 - Compressor: running
01/02 00:46:01 - Compressor: stopped
01/02 00:42:11 - Compressor: running
01/02 00:41:11 - Compressor: stopped
01/02 00:40:11 - Function SoftStart: Defrost - Correction: 0
01/02 00:40:11 - *DEFROSTING: Started
01/02 00:21:00 - Function WAR: Setpoint change: From 28.3 to 28.2 °C
01/02 00:00:00 - Function Solar: New day; Reset Solar function. DHW SP = 45
01/02 00:00:00 - SYSTEM: Total amount of offline messages today: 0
------------------------------------------------------------------------------------------------

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
Vervolg:
31/01 23:47:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 23:47:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
31/01 23:47:38 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.23 °C)
31/01 23:37:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 23:37:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
31/01 23:37:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.32 °C)
31/01 23:33:12 - Function SoftStart: SoftStart function end
31/01 23:33:12 - Function WAR: Setpoint change: From 28.4 to 28.3 °C
31/01 23:33:12 - *DEFROSTING: Finished
31/01 23:31:16 - Compressor: running
31/01 23:30:16 - Compressor: stopped
31/01 23:27:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 23:27:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
31/01 23:27:38 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.29 °C)
31/01 23:26:01 - Compressor: running
31/01 23:25:01 - Compressor: stopped
31/01 23:24:01 - Function SoftStart: Defrost - Correction: 0
31/01 23:24:01 - Function WAR: Setpoint change: From 28.3 to 28.4 °C
31/01 23:24:01 - *DEFROSTING: Started
31/01 22:57:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 22:57:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
31/01 22:57:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.32 °C)
31/01 22:55:55 - Function WAR: Setpoint change: From 28.2 to 28.3 °C
31/01 22:52:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 22:52:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
31/01 22:52:38 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.29 °C)
31/01 22:25:48 - Function WAR: Setpoint change: From 28.1 to 28.2 °C
31/01 22:00:46 - Function WAR: Setpoint change: From 28.2 to 28.1 °C
31/01 21:55:46 - Function WAR: Setpoint change: From 28.1 to 28.2 °C
31/01 21:45:46 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 21:45:46 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
31/01 21:45:45 - Function WAR: Setpoint change: From 28 to 28.1 °C
31/01 21:00:43 - Function WAR: Setpoint change: From 27.9 to 28 °C
31/01 20:15:40 - Function WAR: Setpoint change: From 27.8 to 27.9 °C
31/01 19:40:38 - Function WAR: Setpoint change: From 27.7 to 27.8 °C
31/01 19:37:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
31/01 19:37:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
31/01 19:37:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.35 °C)
31/01 19:20:37 - Function WAR: Setpoint change: From 27.6 to 27.7 °C
31/01 19:10:36 - Function WAR: Setpoint change: From 27.5 to 27.6 °C
31/01 18:15:33 - Function WAR: Setpoint change: From 27.4 to 27.5 °C
31/01 17:45:31 - Function WAR: Setpoint change: From 27.3 to 27.4 °C
31/01 17:30:30 - Function WAR: Setpoint change: From 27.2 to 27.3 °C
31/01 17:08:38 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
31/01 17:08:38 - Compressor: running
31/01 17:08:38 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
31/01 17:05:33 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 17:05:33 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 28 °C
31/01 17:05:33 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.2 °C)
31/01 17:05:33 - Function WAR: Setpoint change: From 27 to 27.2 °C
31/01 17:05:33 - TOP4_Operating_Mode_State: 4
31/01 17:05:28 - MQTT Command: SetOperationMode: 4
31/01 17:05:28 - Auto-start-DHW function: Operating mode reverted to 4
31/01 16:50:28 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
31/01 16:45:52 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
31/01 16:45:52 - Compressor: stopped
31/01 16:45:52 - TOP20_ThreeWay_Valve_State: 0
31/01 16:45:52 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
31/01 15:12:57 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
31/01 15:12:57 - Compressor: running
31/01 15:12:57 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
31/01 15:09:36 - TOP20_ThreeWay_Valve_State: 1
31/01 15:09:16 - TOP4_Operating_Mode_State: 3
31/01 15:09:11 - MQTT Command: SetOperationMode: 3
31/01 15:09:11 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
31/01 15:00:21 - Function WAR: Setpoint change: From 26.9 to 27 °C
31/01 14:55:21 - Function WAR: Setpoint change: From 27 to 26.9 °C
31/01 14:50:20 - MQTT Command: SetCurves: target: 26 (SP Calculation)
31/01 14:50:20 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
31/01 14:50:20 - Function WAR: Setpoint change: From 27.1 to 27 °C
31/01 14:30:24 - MQTT Command: SetCurves: target: 27 (SP Calculation)
31/01 14:30:24 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
31/01 14:30:19 - Function WAR: Setpoint change: From 27 to 27.1 °C
31/01 14:20:44 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
31/01 14:20:44 - Compressor: stopped
31/01 14:20:44 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
31/01 14:17:38 - MQTT Command: SetCurves: target: 26 (SP Calculation)
31/01 14:17:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
31/01 14:17:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.31 °C)
31/01 14:07:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
31/01 14:07:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
31/01 14:07:38 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.27 °C)
31/01 14:05:18 - MQTT Command: SetCurves: target: 26 (SP Calculation)
31/01 14:05:18 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
31/01 14:05:18 - Function WAR: Setpoint change: From 27.1 to 27 °C
31/01 14:02:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
31/01 14:02:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
31/01 14:02:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.31 °C)
31/01 13:45:17 - Function WAR: Setpoint change: From 27.2 to 27.1 °C
31/01 13:42:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 13:42:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
31/01 13:42:38 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.29 °C)
31/01 13:40:16 - Function WAR: Setpoint change: From 27.3 to 27.2 °C
31/01 13:37:38 - MQTT Command: SetCurves: target: 27 (SP Calculation)
31/01 13:37:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
31/01 13:37:38 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.32 °C)
31/01 13:32:38 - Function WAR: Setpoint change: From 27.4 to 27.3 °C
31/01 13:30:16 - Function WAR: Setpoint change: From 27.5 to 27.4 °C
31/01 13:25:15 - Function WAR: Setpoint change: From 27.4 to 27.5 °C
31/01 13:20:15 - Function WAR: Setpoint change: From 27.3 to 27.4 °C
31/01 12:45:13 - Function WAR: Setpoint change: From 27.4 to 27.3 °C
31/01 12:30:12 - Function WAR: Setpoint change: From 27.5 to 27.4 °C
31/01 11:55:10 - Function WAR: Setpoint change: From 27.6 to 27.5 °C
31/01 11:32:38 - Function WAR: Setpoint change: From 27.7 to 27.6 °C
31/01 11:02:38 - Function WAR: Setpoint change: From 27.8 to 27.7 °C
31/01 10:56:01 - Function SoftStart: SoftStart function end
31/01 10:56:01 - *DEFROSTING: Finished
31/01 10:54:06 - Compressor: running
31/01 10:53:06 - Compressor: stopped
31/01 10:49:00 - Compressor: running
31/01 10:48:00 - Compressor: stopped
31/01 10:47:00 - Function SoftStart: Defrost - Correction: 0
31/01 10:47:00 - *DEFROSTING: Started
31/01 10:30:05 - Function WAR: Setpoint change: From 27.9 to 27.8 °C
31/01 09:32:11 - Function SoftStart: SoftStart function end
31/01 09:32:11 - *DEFROSTING: Finished
31/01 09:30:21 - Compressor: running
31/01 09:29:21 - Compressor: stopped
31/01 09:25:20 - Compressor: running
31/01 09:24:20 - Compressor: stopped
31/01 09:23:20 - Function SoftStart: Defrost - Correction: 0
31/01 09:23:20 - *DEFROSTING: Started
31/01 08:24:22 - Function SoftStart: SoftStart function end
31/01 08:24:22 - *DEFROSTING: Finished
31/01 08:22:26 - Compressor: running
31/01 08:21:26 - Compressor: stopped
31/01 08:17:31 - Compressor: running
31/01 08:16:31 - Compressor: stopped
31/01 08:15:31 - Function SoftStart: Defrost - Correction: 0
31/01 08:15:31 - *DEFROSTING: Started
31/01 07:59:55 - Function WAR: Setpoint change: From 28 to 27.9 °C
31/01 07:54:55 - Function WAR: Setpoint change: From 27.9 to 28 °C
31/01 07:44:54 - Function WAR: Setpoint change: From 28 to 27.9 °C
31/01 07:29:53 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 07:29:53 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
31/01 07:29:53 - Function WAR: Setpoint change: From 28.1 to 28 °C
31/01 07:24:53 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 07:24:53 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
31/01 07:24:53 - Function WAR: Setpoint change: From 28 to 28.1 °C
31/01 07:13:32 - Function SoftStart: SoftStart function end
31/01 07:13:32 - Function WAR: Setpoint change: From 27.9 to 28 °C
31/01 07:13:32 - *DEFROSTING: Finished
31/01 07:11:37 - Compressor: running
31/01 07:10:37 - Compressor: stopped
31/01 07:06:42 - Compressor: running
31/01 07:05:41 - Compressor: stopped
31/01 07:04:42 - Function SoftStart: Defrost - Correction: 0
31/01 07:04:41 - *DEFROSTING: Started
31/01 06:49:51 - Function WAR: Setpoint change: From 28 to 27.9 °C
31/01 06:08:38 - MQTT Command: SetCurves: target: 28 (SP Calculation)
31/01 06:08:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
31/01 06:08:38 - Function SoftStart: SoftStart function end
31/01 06:08:38 - Function WAR: Setpoint change: From 28.1 to 28 °C
31/01 06:08:38 - *DEFROSTING: Finished
31/01 06:06:48 - Compressor: running
31/01 06:05:48 - Compressor: stopped
31/01 06:01:53 - Compressor: running
31/01 06:00:53 - Compressor: stopped
31/01 05:59:53 - Function SoftStart: Defrost - Correction: 0
31/01 05:59:53 - *DEFROSTING: Started
31/01 05:37:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 05:37:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
31/01 05:37:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.79 °C)
31/01 05:32:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
31/01 05:32:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
31/01 05:32:38 - Function WAR: Setpoint change: From 28 to 28.1 °C
31/01 05:19:45 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 05:19:45 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
31/01 05:19:45 - Function WAR: Setpoint change: From 28.1 to 28 °C
31/01 05:11:39 - Function SoftStart: SoftStart function end
31/01 05:11:39 - *DEFROSTING: Finished
31/01 05:09:49 - Compressor: running
31/01 05:08:49 - Compressor: stopped
31/01 05:07:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
31/01 05:07:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
31/01 05:07:38 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.65 °C)
31/01 05:04:59 - Compressor: running
31/01 05:03:59 - Compressor: stopped
31/01 05:02:59 - Function SoftStart: Defrost - Correction: 0
31/01 05:02:59 - *DEFROSTING: Started
31/01 05:02:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 05:02:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
31/01 05:02:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.74 °C)
31/01 04:54:43 - Function WAR: Setpoint change: From 28.2 to 28.1 °C
31/01 04:32:38 - Function WAR: Setpoint change: From 28.1 to 28.2 °C
31/01 04:26:31 - Function SoftStart: SoftStart function end
31/01 04:26:31 - *DEFROSTING: Finished
31/01 04:24:41 - Compressor: running
31/01 04:23:36 - Compressor: stopped
31/01 04:19:41 - Function WAR: Setpoint change: From 28.2 to 28.1 °C
31/01 04:19:11 - Compressor: running
31/01 04:18:11 - Compressor: stopped
31/01 04:17:11 - Function SoftStart: Defrost - Correction: 0
31/01 04:17:11 - *DEFROSTING: Started
31/01 04:07:38 - MQTT Command: SetCurves: target: 30 (SP Calculation)
31/01 04:07:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 30 °C
31/01 04:07:38 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.68 °C)
31/01 03:54:40 - Function WAR: Setpoint change: From 28.1 to 28.2 °C
31/01 03:44:39 - MQTT Command: SetCurves: target: 29 (SP Calculation)
31/01 03:44:39 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 29 °C
31/01 03:44:39 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 19.76 °C)
31/01 03:44:39 - Function WAR: Setpoint change: From 27.8 to 28.1 °C
31/01 03:42:44 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
31/01 03:42:44 - Compressor: running
31/01 03:42:44 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
31/01 03:39:38 - TOP4_Operating_Mode_State: 4
31/01 03:39:37 - MQTT Command: SetOperationMode: 4
31/01 03:39:37 - Auto-start-DHW function: Operating mode reverted to 4
31/01 03:24:37 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
31/01 03:20:12 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
31/01 03:20:12 - Compressor: stopped
31/01 03:20:12 - TOP20_ThreeWay_Valve_State: 0
31/01 03:20:12 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
31/01 02:21:43 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
31/01 02:21:43 - Compressor: running
31/01 02:21:43 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
31/01 02:18:38 - TOP20_ThreeWay_Valve_State: 1
31/01 00:00:00 - Function Solar: New day; Reset Solar function. DHW SP = 45
31/01 00:00:00 - SYSTEM: Total amount of offline messages today: 0
------------------------------------------------------------------------------------------------
30/01 23:52:29 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
30/01 23:52:29 - Compressor: stopped
30/01 23:52:29 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
30/01 23:52:29 - TOP4_Operating_Mode_State: 3
30/01 23:52:24 - MQTT Command: SetOperationMode: 3
30/01 23:52:24 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
30/01 22:34:19 - Function WAR: Setpoint change: From 27.7 to 27.8 °C
30/01 21:49:17 - Function WAR: Setpoint change: From 27.6 to 27.7 °C
30/01 21:14:14 - Function WAR: Setpoint change: From 27.7 to 27.6 °C
30/01 20:34:11 - Function WAR: Setpoint change: From 27.6 to 27.7 °C
30/01 20:09:10 - Function WAR: Setpoint change: From 27.5 to 27.6 °C
30/01 19:17:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
30/01 19:17:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
30/01 19:17:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.56 °C)
30/01 19:07:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
30/01 19:07:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
30/01 19:07:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
30/01 19:04:06 - Function WAR: Setpoint change: From 27.4 to 27.5 °C
30/01 18:57:51 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
30/01 18:57:51 - Compressor: running
30/01 18:57:51 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
30/01 18:57:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
30/01 18:57:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
30/01 18:57:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)
30/01 18:39:05 - Function WAR: Setpoint change: From 27.5 to 27.4 °C
30/01 18:29:04 - Function WAR: Setpoint change: From 27.6 to 27.5 °C
30/01 18:24:04 - Function WAR: Setpoint change: From 27.5 to 27.6 °C
30/01 18:17:37 - Function WAR: Setpoint change: From 27.4 to 27.5 °C
30/01 18:15:43 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
30/01 18:15:43 - Compressor: stopped
30/01 18:15:43 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
30/01 18:14:03 - Function WAR: Setpoint change: From 27.3 to 27.4 °C
30/01 18:12:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
30/01 18:12:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
30/01 18:12:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.62 °C)
30/01 17:59:02 - Function WAR: Setpoint change: From 27.2 to 27.3 °C
30/01 15:53:55 - Function WAR: Setpoint change: From 27.1 to 27.2 °C
30/01 15:37:37 - Function WAR: Setpoint change: From 27.2 to 27.1 °C
30/01 14:37:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
30/01 14:37:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
30/01 14:37:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.33 °C)
30/01 14:27:37 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 14:27:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
30/01 14:27:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.29 °C)
30/01 14:03:48 - Function WAR: Setpoint change: From 27.1 to 27.2 °C
30/01 13:47:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
30/01 13:47:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
30/01 13:47:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.3 °C)
30/01 13:37:37 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:37:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 28 °C
30/01 13:37:37 - Function WAR: Setpoint change: From 27.2 to 27.1 °C
30/01 13:37:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.27 °C)
30/01 13:12:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
30/01 13:12:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 27 °C
30/01 13:12:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.33 °C)
30/01 12:48:43 - Function WAR: Setpoint change: From 27.1 to 27.2 °C
30/01 12:48:37 - MQTT Command: SetDHWTemp: 45 (GUI)
30/01 12:48:29 - MQTT Command: SetDHWTemp: 46 (GUI)
30/01 11:02:37 - Function WAR: Setpoint change: From 27.2 to 27.1 °C
30/01 10:51:35 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
30/01 10:51:35 - Compressor: running
30/01 10:51:35 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
30/01 10:48:15 - TOP4_Operating_Mode_State: 4
30/01 10:48:14 - MQTT Command: SetOperationMode: 4
30/01 10:48:14 - Auto-start-DHW function: Operating mode reverted to 4
30/01 10:33:14 - Auto-start-DHW function: DHW temperature: 47°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
30/01 10:29:54 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
30/01 10:29:54 - Compressor: stopped
30/01 10:29:54 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
30/01 10:29:49 - TOP20_ThreeWay_Valve_State: 0
30/01 09:53:32 - TOP4_Operating_Mode_State: 3
30/01 09:53:31 - MQTT Command: SetOperationMode: 3 (GUI)
30/01 09:53:26 - TOP4_Operating_Mode_State: 4
30/01 09:53:25 - MQTT Command: SetOperationMode: 4 (GUI)
30/01 09:53:16 - TOP4_Operating_Mode_State: 3
30/01 09:53:14 - MQTT Command: SetOperationMode: 3 (GUI)
30/01 09:53:11 - TOP4_Operating_Mode_State: 4
30/01 09:53:08 - MQTT Command: SetOperationMode: 4 (GUI)
30/01 09:40:21 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
30/01 09:40:21 - Compressor: running
30/01 09:40:21 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
30/01 09:37:25 - TOP20_ThreeWay_Valve_State: 1
30/01 09:37:21 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
30/01 09:37:21 - Compressor: stopped
30/01 09:37:21 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
30/01 09:37:20 - TOP4_Operating_Mode_State: 3
30/01 09:37:15 - MQTT Command: SetOperationMode: 3
30/01 09:37:15 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
30/01 09:01:33 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
30/01 09:01:33 - Compressor: running
30/01 09:01:33 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
30/01 08:58:28 - TOP4_Operating_Mode_State: 4
30/01 08:58:27 - MQTT Command: SetOperationMode: 4
30/01 08:58:27 - Auto-start-DHW function: Operating mode reverted to 4
30/01 08:43:27 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
30/01 08:39:42 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
30/01 08:39:42 - Compressor: stopped
30/01 08:39:42 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
30/01 08:39:37 - TOP20_ThreeWay_Valve_State: 0
30/01 07:13:11 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
30/01 07:13:11 - Compressor: running
30/01 07:13:11 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
30/01 07:10:11 - TOP20_ThreeWay_Valve_State: 1
30/01 04:32:46 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
30/01 04:32:46 - Compressor: stopped
30/01 04:32:46 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
30/01 04:32:46 - TOP4_Operating_Mode_State: 3
30/01 04:32:41 - MQTT Command: SetOperationMode: 3
30/01 04:32:41 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
30/01 03:42:37 - Function WAR: Setpoint change: From 27.1 to 27.2 °C
30/01 01:07:37 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 01:07:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
30/01 01:07:37 - Function WAR: Setpoint change: From 27.2 to 27.1 °C
30/01 01:07:37 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.71 °C)
30/01 00:00:00 - Function Solar: New day; Reset Solar function. DHW SP = 45
30/01 00:00:00 - SYSTEM: Total amount of offline messages today: 0
------------------------------------------------------------------------------------------------
29/01 23:17:37 - MQTT Command: SetCurves: target: 29 (SP Calculation)
29/01 23:17:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
29/01 23:17:37 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.66 °C)
29/01 23:12:37 - MQTT Command: SetCurves: target: 28 (SP Calculation)
29/01 23:12:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
29/01 23:12:37 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.71 °C)
29/01 22:57:37 - MQTT Command: SetCurves: target: 29 (SP Calculation)
29/01 22:57:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
29/01 22:57:37 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.68 °C)
29/01 22:42:49 - Function WAR: Setpoint change: From 27.1 to 27.2 °C
29/01 22:29:53 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 22:29:53 - Compressor: running
29/01 22:29:53 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 22:26:48 - MQTT Command: SetCurves: target: 28 (SP Calculation)
29/01 22:26:48 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 28 °C
29/01 22:26:48 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 19.8 °C)
29/01 22:26:48 - Function WAR: Setpoint change: From 27 to 27.1 °C
29/01 22:26:48 - TOP4_Operating_Mode_State: 4
29/01 22:26:44 - MQTT Command: SetOperationMode: 4 (GUI)
29/01 21:56:14 - SYSTEM: TimeZone set to: Europe/Amsterdam
29/01 11:17:10 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 11:17:10 - Compressor: stopped
29/01 11:17:10 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 11:17:05 - TOP4_Operating_Mode_State: 3
29/01 11:17:04 - MQTT Command: SetOperationMode: 3
29/01 11:17:04 - Auto-start-DHW function: Operating mode reverted to 3
29/01 11:08:29 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 11:08:29 - Compressor: running
29/01 11:08:29 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 11:02:04 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
29/01 10:58:49 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 10:58:49 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 10:58:49 - Function WAR: Setpoint change: From 27.1 to 27 °C
29/01 10:58:49 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 10:58:49 - Compressor: stopped
29/01 10:58:49 - TOP20_ThreeWay_Valve_State: 0
29/01 10:58:49 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 09:52:01 - TOP4_Operating_Mode_State: 4
29/01 09:51:59 - MQTT Command: SetOperationMode: 4
29/01 09:51:59 - Auto-start-DHW function: Operating mode reverted to 4
29/01 09:51:50 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
29/01 09:51:50 - Compressor: running
29/01 09:51:50 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
29/01 09:48:45 - TOP20_ThreeWay_Valve_State: 1
29/01 09:48:35 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
29/01 09:36:59 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
29/01 09:32:59 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 09:32:59 - Compressor: stopped
29/01 09:32:59 - TOP20_ThreeWay_Valve_State: 0
29/01 09:32:59 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 08:43:06 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
29/01 08:43:06 - Compressor: running
29/01 08:43:06 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
29/01 08:40:01 - TOP20_ThreeWay_Valve_State: 1
29/01 08:17:24 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 08:17:24 - Compressor: stopped
29/01 08:17:24 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 08:17:24 - TOP4_Operating_Mode_State: 3
29/01 08:17:19 - MQTT Command: SetOperationMode: 3
29/01 08:17:19 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
29/01 06:06:47 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 06:06:47 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 06:06:47 - Function WAR: Setpoint change: From 27 to 27.1 °C
29/01 05:46:20 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 05:46:20 - Compressor: running
29/01 05:46:20 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 05:16:09 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 05:16:09 - Compressor: stopped
29/01 05:16:09 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 03:52:53 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 03:52:53 - Compressor: running
29/01 03:52:53 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 03:25:21 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 03:25:21 - Compressor: stopped
29/01 03:25:21 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 02:52:37 - Function WAR: Setpoint change: From 26.9 to 27 °C
29/01 02:22:37 - Function WAR: Setpoint change: From 27 to 26.9 °C
29/01 02:01:56 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
29/01 02:01:56 - Compressor: running
29/01 02:01:56 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
29/01 01:38:00 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
29/01 01:38:00 - Compressor: stopped
29/01 01:38:00 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
29/01 01:37:37 - Function WAR: Setpoint change: From 26.9 to 27 °C
29/01 01:27:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 01:27:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 01:27:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.31 °C)
29/01 00:57:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 00:57:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 00:57:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.27 °C)
29/01 00:37:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 00:37:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 00:37:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.3 °C)
29/01 00:27:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 00:27:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 00:27:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.29 °C)
29/01 00:22:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
29/01 00:22:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 27 °C. New calculated setpoint: 26 °C
29/01 00:22:37 - Function RTC: Correction change: From 0 to -1 °C (Room actual: 20.32 °C)
29/01 00:07:37 - MQTT Command: SetCurves: target: 27 (SP Calculation)
29/01 00:07:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 27 °C
29/01 00:07:37 - Function RTC: Correction change: From -1 to 0 °C (Room actual: 20.26 °C)
29/01 00:00:00 - Function Solar: New day; Reset Solar function. DHW SP = 45
29/01 00:00:00 - SYSTEM: Total amount of offline messages today: 0
------------------------------------------------------------------------------------------------
28/01 23:39:28 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
28/01 23:39:28 - Compressor: running
28/01 23:39:28 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
28/01 23:36:23 - TOP4_Operating_Mode_State: 4
28/01 23:36:22 - MQTT Command: SetOperationMode: 4
28/01 23:36:22 - Auto-start-DHW function: Operating mode reverted to 4
28/01 23:21:22 - Auto-start-DHW function: DHW temperature: 46°C reached. End Auto-start-DHW. Reverting operating mode in 15 minutes.
28/01 23:17:21 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
28/01 23:17:21 - Compressor: stopped
28/01 23:17:21 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
28/01 23:17:16 - TOP20_ThreeWay_Valve_State: 0
28/01 22:28:39 - MQTT Command: SetMaxPumpDuty: 205 (pump speed)
28/01 22:28:39 - Compressor: running
28/01 22:28:39 - Function Pump speed: Max pumpspeed set to 205 (74%) (DHW)
28/01 22:25:33 - TOP20_ThreeWay_Valve_State: 1
28/01 22:15:18 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
28/01 22:15:18 - Compressor: stopped
28/01 22:15:18 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
28/01 22:15:18 - TOP4_Operating_Mode_State: 3
28/01 22:15:13 - MQTT Command: SetOperationMode: 3
28/01 22:15:13 - Auto-start-DHW function: DHW temperature: 40°C. Lower threshold: 40°C. Starting DHW run.
28/01 22:02:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 22:02:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 22:02:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.57 °C)
28/01 21:57:37 - MQTT Command: SetCurves: target: 25 (SP Calculation)
28/01 21:57:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
28/01 21:57:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
28/01 21:52:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 21:52:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 21:52:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.57 °C)
28/01 21:51:21 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
28/01 21:51:21 - Compressor: running
28/01 21:51:21 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
28/01 20:23:51 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
28/01 20:23:51 - Compressor: stopped
28/01 20:23:51 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
28/01 20:12:37 - MQTT Command: SetCurves: target: 25 (SP Calculation)
28/01 20:12:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
28/01 20:12:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
28/01 19:32:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 19:32:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 19:32:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.54 °C)
28/01 19:17:37 - MQTT Command: SetCurves: target: 25 (SP Calculation)
28/01 19:17:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
28/01 19:17:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.62 °C)
28/01 19:12:47 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
28/01 19:12:47 - Compressor: running
28/01 19:12:47 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
28/01 19:12:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 19:12:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 19:12:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.56 °C)
28/01 18:37:37 - Function WAR: Setpoint change: From 26.8 to 26.9 °C
28/01 18:12:58 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
28/01 18:12:58 - Compressor: stopped
28/01 18:12:58 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
28/01 18:02:37 - MQTT Command: SetCurves: target: 25 (SP Calculation)
28/01 18:02:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
28/01 18:02:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.6 °C)
28/01 16:47:47 - MQTT Command: SetMaxPumpDuty: 134 (pump speed)
28/01 16:47:47 - Compressor: running
28/01 16:47:47 - Function Pump speed: Max pumpspeed set to 134 (37%) (HEAT)
28/01 16:47:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 16:47:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 16:47:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)
28/01 15:32:37 - MQTT Command: SetCurves: target: 25 (SP Calculation)
28/01 15:32:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
28/01 15:32:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.64 °C)
28/01 15:17:42 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 15:17:42 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 15:17:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)
28/01 15:17:17 - MQTT Command: SetMaxPumpDuty: 94 (pump speed)
28/01 15:17:17 - Compressor: stopped
28/01 15:17:17 - Function Pump speed: Max pumpspeed set to 94 (16%) (Low)
28/01 15:12:41 - MQTT Command: SetCurves: target: 25 (SP Calculation)
28/01 15:12:41 - Function - Calculate new SP: New final SP calculated: Current setpoint: 26 °C. New calculated setpoint: 25 °C
28/01 15:12:37 - Function RTC: Correction change: From -1 to -2 °C (Room actual: 20.61 °C)
28/01 14:32:37 - MQTT Command: SetCurves: target: 26 (SP Calculation)
28/01 14:32:37 - Function - Calculate new SP: New final SP calculated: Current setpoint: 25 °C. New calculated setpoint: 26 °C
28/01 14:32:37 - Function RTC: Correction change: From -2 to -1 °C (Room actual: 20.58 °C)

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
MikeyMan schreef op zondag 2 februari 2025 @ 08:42:
[...]


De moeite waard om naar 3.9 te gaan?
Vanuit het perspectief van de node red flow zelf niet.
de heishamon zelf heeft mogelijk fixes en extra TOPxx read outs.
maar daar doet de flow nog niks mee.

Dus als je stabiel draait zonder gekke dingen is er geen noodzaak vanuit de NodeRed flow gezien.
Maar als je wel naar 3.9 gaat, dan is de volgende versie flow (nog niet online) wel compatible

[ Voor 10% gewijzigd door edterbak op 02-02-2025 17:03 ]


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
hemertje schreef op zondag 2 februari 2025 @ 08:38:
Hoi @edterbak

Mooi werk weer….

De aanpassingen voor Heishamon v3.9 is gedaan in NodeRed v24.09?

Bij de download link staat qua datum nog steeds

https://github.com/edterb...flows/flows%20v24.09.json

History for
NodeRed_Heishamon_controlold_flowsflows v24.09.json


Commit History
Commits on Jan 26, 2025

Ipv 1 februari 2025!?
Ik heb dat local gefixt. Nog niet gepushed naar git.

Acties:
  • 0 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
mbt de 7 graden verschil waar je het over had, kan je aangeven waar ik naar moet kijken of anders in moet stellen?
Je hebt in je controller ingesteld dat je Compensation curve gebruikt voor je HEAT Zone 1.
Je hebt toen ook de lijn moeten invullen in de controller. Vergelijkbaar met wat je in de NodeRed flow ziet.

Het is 'lastig' om uit te lezen wat de ingestelde settings (de lijn) zijn in de controller. Daarom is het ook lastig om te bepalen wat het Setpoint van het water zou moeten zijn door de controller bepaald. Deze tmperatuur is wel fijn om te weten omdat dit gebruikt wordt in de grafieken en de berekening.

Om dit op te lossen gebruik ik de WAR functie in NodeRed.
Als je zorgt dat de WAR functie in NodeREd de zelfde lijn heeft als in de controller, gebruik ik de vergelijking van die lijn om het werkelijke water setpoint te bepalen.

Dus wat je zou moeten doen is de controller in duiken en kijken naar de lijn hoe je de compensation curve hebt geprogrammeerd.
Dit moet overeen komen met de lijn in Node red.

Acties:
  • 0 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
write:

code:
1
2
SET5    SetZ1HeatRequestTemperature Set Z1 heat shift or direct heat temperature    -5 to 5 or 20 to max
SET16   SetCurves   Set zones heat/cool curves  JSON document (see below)


Read:
code:
1
2
3
4
5
6
7
TOP7    main/Main_Target_Temp   Main outlet water target temperature (°C)
TOP27   main/Z1_Heat_Request_Temp   Zone 1 Heat Requested shift temp (-5 to 5) or direct heat temp (20 to max)

TOP29   main/Z1_Heat_Curve_Target_High_Temp Target temperature at lowest point on the heating curve (°C)
TOP30   main/Z1_Heat_Curve_Target_Low_Temp  Target temperature at highest point on the heating curve (°C)
TOP31   main/Z1_Heat_Curve_Outside_High_Temp    Lowest outside temperature on the heating curve (°C)
TOP32   main/Z1_Heat_Curve_Outside_Low_Temp Highest outside temperature on the heating curve (°C)


Om de curve te reconstrueren zou je zeggen dat TOP 29 t/m 32 hiervoor gebruikt kunnen worden. Zo heb ik het eerst ook geprobeerd. Echter...
Dit werkt in 75% van de situaties.
In 25% van de situaties bleek TOP29 dan evengoed variabel op basis van de actuele waarde.
Heeft een tijd geduurt tot ik dat door had...

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zondag 2 februari 2025 @ 17:30:
[...]


Je hebt in je controller ingesteld dat je Compensation curve gebruikt voor je HEAT Zone 1.
Je hebt toen ook de lijn moeten invullen in de controller. Vergelijkbaar met wat je in de NodeRed flow ziet.

Het is 'lastig' om uit te lezen wat de ingestelde settings (de lijn) zijn in de controller. Daarom is het ook lastig om te bepalen wat het Setpoint van het water zou moeten zijn door de controller bepaald. Deze tmperatuur is wel fijn om te weten omdat dit gebruikt wordt in de grafieken en de berekening.

Om dit op te lossen gebruik ik de WAR functie in NodeRed.
Als je zorgt dat de WAR functie in NodeREd de zelfde lijn heeft als in de controller, gebruik ik de vergelijking van die lijn om het werkelijke water setpoint te bepalen.

Dus wat je zou moeten doen is de controller in duiken en kijken naar de lijn hoe je de compensation curve hebt geprogrammeerd.
Dit moet overeen komen met de lijn in Node red.
in de bedrijfsinstellingen zie ik onderstaande dat deze op Direct staat met een Delta T van 3GrC

Afbeeldingslocatie: https://tweakers.net/i/K9He6LLfgXKOsDxGlKvWqwJjGoo=/800x/filters:strip_icc():strip_exif()/f/image/GQ3vixwjyPPnd3ceZZfvF0Bt.jpg?f=fotoalbum_large

Afbeeldingslocatie: https://tweakers.net/i/q69svYRSxSb1eAIX6xkejBW_27U=/800x/filters:strip_icc():strip_exif()/f/image/SjY6IKzRS2gNDC13BWgkEzPA.jpg?f=fotoalbum_large

maar ik heb het idee dat je dit niet bedoelt?

[ Voor 25% gewijzigd door hemertje op 02-02-2025 20:44 ]

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@hemertje
Kun je een keer screenshots van alle schermen maken voor mij. De node red schermen broek ik.
In system is hardware genoeg

[ Voor 12% gewijzigd door edterbak op 02-02-2025 21:04 ]


Acties:
  • +2 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
hemertje schreef op dinsdag 28 januari 2025 @ 21:57:
Beste ‘Node Red voor Panasonic warmtepompen’ Tweakers,

Een tijdje geleden hebben we het hier met zijn allen het over de ‘Homely’ gehad.

hemertje in "Heishamon <> Node Red voor Panasonic warmtepompen"


De kracht hiervan hebben we volop besproken:


[...]


Wat me bij is gebleven dat de Tweakers hier in dit draadje er wel positief over waren om dit in @edterbak ‘s Node Red te krijgen omdat sturen op de goedkopere dagdelen zeer zinvol is.

De duurdere dagdelen zijn duur omdat de duurste component(en) van de gebruikte energiemix om de kWh op te wekken de uurprijs bepalen, de duurste component(e) zijn de fossiele componenten.

En volgens mij willen we juist van de fossiele componenten in onze energiemix af met zijn allen?
Dat zal ook bij jouw 1 van de redenen zijn geweest om aan de warmtepomp te gaan?

Met even op minimaal vermogen op de warmtepomp draaien lever je niet gelijk aan comfort in.

Wanneer je dus kan sturen op de goedkopere dagdelen is het niet alleen goed voor je portemonnee maar ook goed voor de klimaatwinst!


Nu kan @edterbak dit implementeren in zijn Node Red natuurlijk niet alleen en zelf ben ik helaas ook geen programmeur maar wel een enthousiasteling :P

Maar er zijn wel een aantal Tweakers hier die zelf al met dynamisch sturen mee bezig zijn of anderen die wel kunnen programmeren en die @edterbak wellicht willen helpen?


Vanavond kom ik deze github Day Ahead Optimizer (DAO) tool tegen:

https://github.com/corneel27/day-ahead


[...]


Ik kan het mis hebben maar volgens mij doet dit wat ook de ‘Homely’ nastreeft waarover we het eerder gehad hebben?


Zou het mogelijk zijn om deze functionaliteit als een losse module toe te voegen en te integreren in @edterbak’s Node Red?


Wie van de programmeurs onder ons wil de kar mee gaan trekken om een dergelijke sturing voor elkaar te krijgen?

_/-\o_ d:)b
Hallo mede-Tweakers,

ik heb het idee dat mijn Disney droom, lees 'hardop dromen zonder in belemmeringen te denken', bij een aantal personen koudwatervrees heeft opgeroepen dat dit mogelijk leidt tot het stilvallen van de ontwikkeling van @edterbak aan Node Red?

dat is natuurlijk niet de bedoeling :N

zelf ben ik al meer dan 20 jaar actief in het Open Source wereldje, niet als programmeur maar als veredeld eindgebruiker en tester en ik weet uit eigen ervaring dat je als programmeur niet alles alleen kunt omdat je in je eigen thuissituatie niet alles kunt simuleren of het gedrag van anderen kunt nabootsen
wel komen initiatieven zoals dat van @edterbak hier vaak van de individuen die zelf iets voor zichzelf willen maken en er later voor kiezen dit publiek te delen zodat anderen er vrij ook gebruik van kunnen maken.

HULDE voor deze personen waaronder Ed die inmiddels al 4 jaar? aan dit project werkt


waar ik op doelde is dat je alleen sneller bij je doel komt maar met meerderen kom je verder, vandaar mijn Disney droom die ik hardop met jullie deelde

ik heb het idee dat Ed op dezelfde golflengte als ik zat gezien zijn reactie, eerst de (gezamenlijke) doelstellingen en vervolgens de route bepalen, daarna kan je er (samen) aan gaan werken, mits de eigenaar / programmeur hiervoor openstaat

wat verdere achtergrondinformatie over mezelf
sinds 2018 ben ik tevens als vrijwilliger energiecoach bij de energiecoöperatie hier in het dorp die geïnteresseerden helpt hun woning te verduurzamen
daarvoor pas ik de IOC methode toe
  • Inventariseren
  • Optimaliseren
  • Compenseren
de laatste stap is compenseren, middels zonnepanelen en/of een full electric warmtepomp
sinds januari 2019 en ik dan ook al voorzien van een Panasonic L/W WP
ik wilde destijds al starten met de Heishamon, helaas afgelopen najaar pas opgepakt

Ed's Node Red is een geweldige tool en je kunt er veel mee
Toch mis ik nog een paar zaken die ik van de week al aangaf
  • sturen op dynamische tarieven (vermijden dure piekmomenten), dit is niet financieel gedreven maar de hogere kosten komen doordat er op deze uren juist in verhouding een grote hoeveelheid fossiele brandstoffen in de energiemix zijn opgenomen, dus als je die kunt vermijden ben je in eerste instantie lekker groen bezig, in de regel heb je in de ochtend en de vroege avond een energiemix met een groot aandeel fossiele brandstoffen
  • Solar2HEAT, vandaag hadden we eindelijk weer een heerlijke zonnige dag met een mooie kW/kWh opbrengst, wanneer je deze zonne opbrengst kunt inzetten om de temperatuur in je woning (Setpoint Thermostaat verhogen?) wat te verhogen kan je daarmee de dure fossiele energiemix van de avond overbruggen
d:)b

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op zondag 2 februari 2025 @ 21:04:
@hemertje
Kun je een keer screenshots van alle schermen maken voor mij. De node red schermen broek ik.
In system is hardware genoeg
deze bedoel je?

Zie:
hemertje in "Heishamon <> Node Red voor Panasonic warmtepompen"

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
en System

Afbeeldingslocatie: https://tweakers.net/i/S-owN2lqWTyxYXkZOjHxwRSWEEI=/800x/filters:strip_exif()/f/image/1S3fyJl9hRCUztT7xfZjUbcC.png?f=fotoalbum_large

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
m.b.t. de Defrosts las ik van de week deze opmerking van @denneappel

denneappel in "Panasonic + Heishamon + Home assistant optimalisatie topic"
Er komt weer een defrost ochtendje aan volgens de KNMI api... Home Assistant heeft vandaag de radiator ventilatoren uitgezet en is de Ta rustig aan het opvoeren van 26 naar inmiddels 31 graden. De bedoeling is dat hij morgen de compressor rustig kan houden door de Ta te verlagen en daarmee hoop ik defrosts te voorkomen.

De inhoud van mijn CV is wel vrij fors en ik maak zowel gebruik van radiatoren als vloerverwarming. Door de radiator ventilatoren uit te zetten duurt het heel lang voordat het huis te ver opwarmt.
op mijn vraag hoe hij dit doet antwoord hij het volgende, een samenvatting:
Ik zet eerst de temperatuur voor de komende uren uit de weersverwachting om naar sensors

Vervolgens daar via combine sensors. Een sensor maken die de laagste waarde (MIN) laat zien.
Dat is bij mij: sensor.forecast_temperature_minimal_in_next_18_hours

Dan is er nog een template sensor die max Ta bepaalt om een beetje te beperken hoe ver die doorschiet met opstoken: sensor.heatpump_defrost_max_ta_lift

En onderstaande automation verhoogt dan de Ta zodra dat kan. Gisteren en vandaag lijkt dat redelijk goed te gaan.

Hieronder nog een begin waarmee ik de Ta verlaag als het koud wordt 's nachts / 's ochtends.

Afgelopen nacht ging dat niet snel genoeg dus verlaag ik de Ta nu sneller (2x)
Wat vinden jullie hiervan om de Defrosts tegen te gaan, te compenseren?

voor zijn Yam's en code hoe hij dit doet zie:
denneappel in "Panasonic + Heishamon + Home assistant optimalisatie topic"

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
@hemertje
Ik snap nog steeds niet waar die afwijking in SP vandaan komt.
Kun je een verse log-tekst geven van een regel of 20 waarin je ziet dat het SP aangepast wordt. ?
... koudwatervrees heeft opgeroepen dat dit mogelijk leidt tot het stilvallen van de ontwikkeling van @edterbak aan Node Red?
Vanuit mijn idee hier over kan ik zeggen: "Ongegrond" :)
Ik ben ook voor een duidelijk beleid voorwaarts.
k heb het idee dat Ed op dezelfde golflengte als ik zat gezien zijn reactie, eerst de (gezamenlijke) doelstellingen en vervolgens de route bepalen, daarna kan je er (samen) aan gaan werken, mits de eigenaar / programmeur hiervoor openstaat
_/-\o_ ... Amen. Could not have said it better myself.

[ Voor 62% gewijzigd door edterbak op 03-02-2025 08:51 ]


Acties:
  • 0 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
wervisser schreef op vrijdag 31 januari 2025 @ 09:17:
[Opgelost]
Probleem gezocht in de herstart van HA, MQTT, Heishamon en het uit- en inschakelen van de WP. Geen oplossing.
Zoals in het laatste log ook stond vermeld was er geen communicatie tussen Heishamon en de WP. Het loskoppelen van de Heishamon heeft niet geholpen, maar het spanningsloos (10 minuten) maken van de WP wel.

*****

Iemand dit al eens gezien? Heb vanmorgen MQTT unblocked, maar hij gaat weer vrolijk verder.

Heishamon draait 3.9 en de flow is 24.07 stable

Het begin

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
30/01 09:45:35 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:45:07 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:44:39 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:44:11 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:43:43 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:43:15 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:42:47 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:42:19 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:41:51 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 09:41:51 - *** Function Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
30/01 09:41:46 - Function WAR: Setpoint change: From 28.2 to 28 °C
30/01 09:30:16 - Compressor: stopped
30/01 09:26:54 - Function WAR: Setpoint change: From 28.4 to 28.2 °C
30/01 08:47:10 - Compressor: running
30/01 08:13:05 - Compressor: stopped


Het einde

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
30/01 13:34:16 - SYSTEM: MQTT block active, default block mode: BLOCK ALL
30/01 13:34:16 - [WARNING]: 500 MQTT-commands send today! MQTT sending blocked (limit 500 msg/day)
30/01 13:34:16 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:33:48 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:33:20 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:32:52 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:32:24 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:31:56 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:31:28 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:31:00 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:30:32 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:30:04 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:29:36 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:29:08 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:28:40 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:28:12 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:27:44 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:27:16 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:26:48 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:26:20 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:25:52 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:25:24 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:24:56 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:24:28 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:24:00 - MQTT Command: SetCurves: target: 28 (SP Calculation)
30/01 13:23:32 - MQTT Command: SetCurves: target: 28 (SP Calculation)


Na een herstart van Heishamon staat het onderstaande in het log.

code:
1
2
3
4
5
Thu Jan  1 01:00:42 1970 (42919): SetCurves JSON received ok
Thu Jan  1 01:00:42 1970 (42920): sent bytes: 111 including checksum value: 246 
Thu Jan  1 01:00:44 1970 (44922): Previous read data attempt failed due to timeout!
Thu Jan  1 01:00:44 1970 (44923): Received 0 bytes data
Thu Jan  1 01:00:44 1970 (45029): Heishamon stats: Uptime: 0 days 0 hours 0 minutes 45 seconds ## Free memory: 77% ## Heap fragmentation: 13% ## Max free block: 26752 bytes ## Free heap: 30888 bytes ## Wifi: 100% (RSSI: -39) ##


Na de herstart blijft de TOP0 status op -1 staan. Volgens Heishamon staat de WP uit, maar hij staat volgens de controller echt aan. De temperatuur in huis is goed, enkel SWW schakelt niet in.
Het is mij niet duidelijk of je problemen nu weg zijn.
Er staat in je post [opgelost]..
Is dat de huidige eindstatus? Daar ging ik wel van uit toen ik je post las. Maar klopt dat?

Acties:
  • +1 Henk 'm!

  • wervisser
  • Registratie: Oktober 2006
  • Laatst online: 13-09 09:16
edterbak schreef op maandag 3 februari 2025 @ 08:44:
[...]

Het is mij niet duidelijk of je problemen nu weg zijn.
Er staat in je post [opgelost]..
Is dat de huidige eindstatus? Daar ging ik wel van uit toen ik je post las. Maar klopt dat?
Ja, de problemen zijn opgelost. Als ik wat meer had gelezen in plaats van gepost had ik het sneller gevonden. Uiteindelijk was het een optelsom van problemen met als oorzaak dat de Heishamon geen informatie meer ontving van de WP. Het enkel uit- en inschakelen is geen oplossing voor dit probleem, hiervoor moet echt de spanning van de buitenunit af.

Maar bedankt voor het verifiëren :)

Acties:
  • 0 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
wervisser schreef op maandag 3 februari 2025 @ 10:26:
[...]


Ja, de problemen zijn opgelost. Als ik wat meer had gelezen in plaats van gepost had ik het sneller gevonden. Uiteindelijk was het een optelsom van problemen met als oorzaak dat de Heishamon geen informatie meer ontving van de WP. Het enkel uit- en inschakelen is geen oplossing voor dit probleem, hiervoor moet echt de spanning van de buitenunit af.

Maar bedankt voor het verifiëren :)
Oke, geen probleem.

Maar in heishamon zelf (web interface) kun je ook een reboot doen. Werkte dat niet?

Acties:
  • +1 Henk 'm!

  • Nnoitra
  • Registratie: December 2000
  • Laatst online: 19:39
@edterbak en/of anderen,
Ik zie in de log dat ie tijdens softStart, na een calculatie, niet altijd of een hele tijd niet MQTT bericht stuurt om de shift aan te passen.

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
03/02 12:59:12 - Function - Calculate new SP: New final T shift calculated: Current T shift: 1 °C. New calculated T shift: 2 °C
03/02 12:59:12 - Function SoftStart: Correction: -1 > 0 °C - (ENDING) Freq: 24Hz, SP_Final: 2°C
03/02 12:44:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: 0 °C. New calculated T shift: 1 °C
03/02 12:44:11 - Function SoftStart: Correction: -2 > -1 °C - (ENDING) Freq: 23Hz, SP_Final: 1°C
03/02 12:29:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: 0 °C
03/02 12:29:11 - Function SoftStart: Correction: -3 > -2 °C - (ENDING) Freq: 23Hz, SP_Final: 0°C
03/02 12:14:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -1 °C
03/02 12:14:11 - Function SoftStart: Correction: -4 > -3 °C - (ENDING) Freq: 23Hz, SP_Final: -1°C
03/02 11:59:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: -3 °C. New calculated T shift: -2 °C
03/02 11:59:11 - Function SoftStart: Correction: -5 > -4 °C - (ENDING) Freq: 29Hz, SP_Final: -2°C
03/02 11:47:21 - Function SoftStart: --> Pump relaxing took too long... (30Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
03/02 11:47:11 - Function SoftStart: Correction: -5 > -5 °C - (EVALUATING) Freq: 29Hz, SP_Final: -3°C
03/02 11:44:11 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 5/5)
03/02 11:44:00 - Function SoftStart: Correction: -5 > -5 °C - (EVALUATING) Freq: 30Hz, SP_Final: -3°C
03/02 11:43:32 - MQTT Command: SetZ1HeatRequestTemperature: -3 (SoftStart)
03/02 11:43:32 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -3 °C
03/02 11:43:28 - Function SoftStart: Correction: -4 > -5 °C - (STARTUP) Freq: 30Hz, SP_Final: -3°C
03/02 11:42:38 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SoftStart)
03/02 11:42:38 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: -2 °C
03/02 11:42:38 - Function SoftStart: Correction: -3 > -4 °C - (STARTUP) Freq: 29Hz, SP_Final: -2°C
03/02 11:42:31 - MQTT Command: SetZ1HeatRequestTemperature: -1 (SoftStart)



Bij een volgende softStart run (na bv een defrost) kan ie dan wel weer een tijd gewoon goed lopen en de MQTTs versturen.
Tot ie op een geven moment wéér geen MQTTs wil versturen.


code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
03/02 14:56:36 - Function - Calculate new SP: New final T shift calculated: Current T shift: 0 °C. New calculated T shift: 1 °C
03/02 14:56:36 - Function SoftStart: Correction: -1 > 0 °C - (ENDING) Freq: 21Hz, SP_Final: 1°C
03/02 14:41:36 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: 0 °C
03/02 14:41:36 - Function SoftStart: Correction: -2 > -1 °C - (ENDING) Freq: 24Hz, SP_Final: 0°C
03/02 14:26:35 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -1 °C
03/02 14:26:35 - Function SoftStart: Correction: -3 > -2 °C - (ENDING) Freq: 20Hz, SP_Final: -1°C
03/02 14:11:35 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SP Calculation)
03/02 14:11:35 - Function - Calculate new SP: New final T shift calculated: Current T shift: -3 °C. New calculated T shift: -2 °C
03/02 14:11:35 - Function SoftStart: Correction: -4 > -3 °C - (ENDING) Freq: 20Hz, SP_Final: -2°C
03/02 14:01:33 - MQTT Command: SetZ1HeatRequestTemperature: -3 (SoftStart)
03/02 14:01:33 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -3 °C
03/02 14:01:33 - Function SoftStart: Correction: -3 > -4 °C - (STABLE) Freq: 20Hz, SP_Final: -3°C
03/02 13:59:46 - Function SoftStart: --> Pump relaxed... (19Hz) Continuing with Phase 2
03/02 13:59:36 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SP Calculation)
03/02 13:59:36 - Function - Calculate new SP: New final T shift calculated: Current T shift: -3 °C. New calculated T shift: -2 °C
03/02 13:59:36 - Function SoftStart: Correction: -4 > -3 °C - (EVALUATING) Freq: 19Hz, SP_Final: -2°C
03/02 13:58:12 - MQTT Command: SetZ1HeatRequestTemperature: -3 (SoftStart)
03/02 13:58:12 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -3 °C
03/02 13:58:12 - Function SoftStart: Correction: -3 > -4 °C - (STARTUP) Freq: 20Hz, SP_Final: -3°C
03/02 13:56:53 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SoftStart)
03/02 13:56:41 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: -2 °C
03/02 13:56:35 - Function SoftStart: Correction: -2 > -3 °C - (STARTUP) Freq: 24Hz, SP_Final: -2°C
03/02 13:56:35 - Function SoftStart: --> Pump did not yet relax (24Hz). Restarting Phase 1 again... (Count: 5/5)


ik draai nu 24.09 maar ik zag dit gedrag ook al bij 24.03.
Bij eerdere versies heb ik softStart niet gebruikt.
weet jij zo in welke hoek ik dit moeten zoeken

[ Voor 36% gewijzigd door Nnoitra op 03-02-2025 17:35 ]

Sarcasm is my superpower! What's yours?


Acties:
  • 0 Henk 'm!

  • wervisser
  • Registratie: Oktober 2006
  • Laatst online: 13-09 09:16
edterbak schreef op maandag 3 februari 2025 @ 11:05:
[...]

Oke, geen probleem.

Maar in heishamon zelf (web interface) kun je ook een reboot doen. Werkte dat niet?
Ja, die reboot werkte, maar soms is spanningsloos maken beter. Het was enkel de buitenunit die spanning moest verliezen.

Acties:
  • 0 Henk 'm!

  • wervisser
  • Registratie: Oktober 2006
  • Laatst online: 13-09 09:16
Gisteren viel mij op dat Boost DHW niet juist lijkt te werken. Ik draai flow 24.09.

Wanneer ik Boost aanzet wordt het onderstaande in het log geschreven, maar hij gaat bijna direct weer uit. Het schuifje Boost DHW blijft wel aan staan. Kan dit een bug zijn in de huidige flow?

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
03/02 15:45:47 - TOP20_ThreeWay_Valve_State: 1
03/02 15:45:47 - TOP4_Operating_Mode_State: 4
03/02 15:45:44 - MQTT Command: SetOperationMode: 4 (GUI)
03/02 15:45:17 - TOP20_ThreeWay_Valve_State: 0
03/02 15:45:17 - TOP4_Operating_Mode_State: 0
03/02 15:45:12 - Scheduler: End ForceDHW cycle detected. Reverting Operating Mode in 15 minutes...
03/02 15:45:12 - TOP2_Force_DHW_State: 0
03/02 15:45:02 - TOP20_ThreeWay_Valve_State: 1
03/02 15:45:02 - TOP4_Operating_Mode_State: 3
03/02 15:45:02 - TOP2_Force_DHW_State: 1
03/02 15:44:56 - MQTT Command: SetForceDHW: 1
03/02 15:44:56 - Scheduler - Force DHW: 1
03/02 15:44:56 - Scheduler: Enable ForceDHW
03/02 15:44:46 - Scheduler - Operation Mode: 3
03/02 15:44:46 - Scheduler: Operation mode change to (3)DHW-Only
03/02 15:44:42 - MQTT Command: SetOperationMode: 3
03/02 15:44:42 - MQTT Command: SetDHWTemp: 57
03/02 15:44:42 - DHW Boost: Operating mode changed to (3)DHW-Only
03/02 15:44:42 - DHW Boost: Manually started DHW cycle to boost temperature to (57°C)

Acties:
  • 0 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
wervisser schreef op dinsdag 4 februari 2025 @ 12:05:
Gisteren viel mij op dat Boost DHW niet juist lijkt te werken. Ik draai flow 24.09.

Wanneer ik Boost aanzet wordt het onderstaande in het log geschreven, maar hij gaat bijna direct weer uit. Het schuifje Boost DHW blijft wel aan staan. Kan dit een bug zijn in de huidige flow?

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
03/02 15:45:47 - TOP20_ThreeWay_Valve_State: 1
03/02 15:45:47 - TOP4_Operating_Mode_State: 4
03/02 15:45:44 - MQTT Command: SetOperationMode: 4 (GUI)
03/02 15:45:17 - TOP20_ThreeWay_Valve_State: 0
03/02 15:45:17 - TOP4_Operating_Mode_State: 0
03/02 15:45:12 - Scheduler: End ForceDHW cycle detected. Reverting Operating Mode in 15 minutes...
03/02 15:45:12 - TOP2_Force_DHW_State: 0
03/02 15:45:02 - TOP20_ThreeWay_Valve_State: 1
03/02 15:45:02 - TOP4_Operating_Mode_State: 3
03/02 15:45:02 - TOP2_Force_DHW_State: 1
03/02 15:44:56 - MQTT Command: SetForceDHW: 1
03/02 15:44:56 - Scheduler - Force DHW: 1
03/02 15:44:56 - Scheduler: Enable ForceDHW
03/02 15:44:46 - Scheduler - Operation Mode: 3
03/02 15:44:46 - Scheduler: Operation mode change to (3)DHW-Only
03/02 15:44:42 - MQTT Command: SetOperationMode: 3
03/02 15:44:42 - MQTT Command: SetDHWTemp: 57
03/02 15:44:42 - DHW Boost: Operating mode changed to (3)DHW-Only
03/02 15:44:42 - DHW Boost: Manually started DHW cycle to boost temperature to (57°C)
Weet je wat de watertemperatuur was van de DHW tank op dat moment?

Ik was hier al naar aan het kjiken, deze melding hoor ik vaker namelijk. Dank je voor het LOG. !!

Acties:
  • +1 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
Nnoitra schreef op maandag 3 februari 2025 @ 13:24:
@edterbak en/of anderen,
Ik zie in de log dat ie tijdens softStart, na een calculatie, niet altijd of een hele tijd niet MQTT bericht stuurt om de shift aan te passen.

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
03/02 12:59:12 - Function - Calculate new SP: New final T shift calculated: Current T shift: 1 °C. New calculated T shift: 2 °C
03/02 12:59:12 - Function SoftStart: Correction: -1 > 0 °C - (ENDING) Freq: 24Hz, SP_Final: 2°C
03/02 12:44:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: 0 °C. New calculated T shift: 1 °C
03/02 12:44:11 - Function SoftStart: Correction: -2 > -1 °C - (ENDING) Freq: 23Hz, SP_Final: 1°C
03/02 12:29:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: 0 °C
03/02 12:29:11 - Function SoftStart: Correction: -3 > -2 °C - (ENDING) Freq: 23Hz, SP_Final: 0°C
03/02 12:14:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -1 °C
03/02 12:14:11 - Function SoftStart: Correction: -4 > -3 °C - (ENDING) Freq: 23Hz, SP_Final: -1°C
03/02 11:59:11 - Function - Calculate new SP: New final T shift calculated: Current T shift: -3 °C. New calculated T shift: -2 °C
03/02 11:59:11 - Function SoftStart: Correction: -5 > -4 °C - (ENDING) Freq: 29Hz, SP_Final: -2°C
03/02 11:47:21 - Function SoftStart: --> Pump relaxing took too long... (30Hz) Continuing with Phase 2. (Count: 5/5. Resetting counter)
03/02 11:47:11 - Function SoftStart: Correction: -5 > -5 °C - (EVALUATING) Freq: 29Hz, SP_Final: -3°C
03/02 11:44:11 - Function SoftStart: --> Pump did not yet relax (30Hz). Restarting Phase 1 again... (Count: 5/5)
03/02 11:44:00 - Function SoftStart: Correction: -5 > -5 °C - (EVALUATING) Freq: 30Hz, SP_Final: -3°C
03/02 11:43:32 - MQTT Command: SetZ1HeatRequestTemperature: -3 (SoftStart)
03/02 11:43:32 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -3 °C
03/02 11:43:28 - Function SoftStart: Correction: -4 > -5 °C - (STARTUP) Freq: 30Hz, SP_Final: -3°C
03/02 11:42:38 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SoftStart)
03/02 11:42:38 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: -2 °C
03/02 11:42:38 - Function SoftStart: Correction: -3 > -4 °C - (STARTUP) Freq: 29Hz, SP_Final: -2°C
03/02 11:42:31 - MQTT Command: SetZ1HeatRequestTemperature: -1 (SoftStart)



Bij een volgende softStart run (na bv een defrost) kan ie dan wel weer een tijd gewoon goed lopen en de MQTTs versturen.
Tot ie op een geven moment wéér geen MQTTs wil versturen.


code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
03/02 14:56:36 - Function - Calculate new SP: New final T shift calculated: Current T shift: 0 °C. New calculated T shift: 1 °C
03/02 14:56:36 - Function SoftStart: Correction: -1 > 0 °C - (ENDING) Freq: 21Hz, SP_Final: 1°C
03/02 14:41:36 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: 0 °C
03/02 14:41:36 - Function SoftStart: Correction: -2 > -1 °C - (ENDING) Freq: 24Hz, SP_Final: 0°C
03/02 14:26:35 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -1 °C
03/02 14:26:35 - Function SoftStart: Correction: -3 > -2 °C - (ENDING) Freq: 20Hz, SP_Final: -1°C
03/02 14:11:35 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SP Calculation)
03/02 14:11:35 - Function - Calculate new SP: New final T shift calculated: Current T shift: -3 °C. New calculated T shift: -2 °C
03/02 14:11:35 - Function SoftStart: Correction: -4 > -3 °C - (ENDING) Freq: 20Hz, SP_Final: -2°C
03/02 14:01:33 - MQTT Command: SetZ1HeatRequestTemperature: -3 (SoftStart)
03/02 14:01:33 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -3 °C
03/02 14:01:33 - Function SoftStart: Correction: -3 > -4 °C - (STABLE) Freq: 20Hz, SP_Final: -3°C
03/02 13:59:46 - Function SoftStart: --> Pump relaxed... (19Hz) Continuing with Phase 2
03/02 13:59:36 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SP Calculation)
03/02 13:59:36 - Function - Calculate new SP: New final T shift calculated: Current T shift: -3 °C. New calculated T shift: -2 °C
03/02 13:59:36 - Function SoftStart: Correction: -4 > -3 °C - (EVALUATING) Freq: 19Hz, SP_Final: -2°C
03/02 13:58:12 - MQTT Command: SetZ1HeatRequestTemperature: -3 (SoftStart)
03/02 13:58:12 - Function - Calculate new SP: New final T shift calculated: Current T shift: -2 °C. New calculated T shift: -3 °C
03/02 13:58:12 - Function SoftStart: Correction: -3 > -4 °C - (STARTUP) Freq: 20Hz, SP_Final: -3°C
03/02 13:56:53 - MQTT Command: SetZ1HeatRequestTemperature: -2 (SoftStart)
03/02 13:56:41 - Function - Calculate new SP: New final T shift calculated: Current T shift: -1 °C. New calculated T shift: -2 °C
03/02 13:56:35 - Function SoftStart: Correction: -2 > -3 °C - (STARTUP) Freq: 24Hz, SP_Final: -2°C
03/02 13:56:35 - Function SoftStart: --> Pump did not yet relax (24Hz). Restarting Phase 1 again... (Count: 5/5)


ik draai nu 24.09 maar ik zag dit gedrag ook al bij 24.03.
Bij eerdere versies heb ik softStart niet gebruikt.
weet jij zo in welke hoek ik dit moeten zoeken
Ik had dit ook al gezien. Ik was er ook al naar aan het kijken.
Ik ga de logging aanpassen met meer details zodat het duidelijker wordt de oorzaak te vinden.
wip.

Acties:
  • 0 Henk 'm!

  • wervisser
  • Registratie: Oktober 2006
  • Laatst online: 13-09 09:16
edterbak schreef op dinsdag 4 februari 2025 @ 12:12:
[...]

Weet je wat de watertemperatuur was van de DHW tank op dat moment?

Ik was hier al naar aan het kjiken, deze melding hoor ik vaker namelijk. Dank je voor het LOG. !!
Ja, die was 51-52 graden. Het verschil was te laag voor HEAT+DHW, die is ingesteld op 7 graden verschil. Maar goed, mijn idee bij Boost is dat hij ondanks toch naar de ingestelde waarde gaat.

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
edterbak schreef op maandag 3 februari 2025 @ 08:41:
@hemertje
Ik snap nog steeds niet waar die afwijking in SP vandaan komt.
Kun je een verse log-tekst geven van een regel of 20 waarin je ziet dat het SP aangepast wordt. ?
waar kan ik het verschil van de 7 graden nazien?

kan je hier wat mee?
04/02 12:51:18 - Function WAR: Setpoint change: From 27.6 to 27.5 °C
04/02 12:46:18 - Function WAR: Setpoint change: From 27.7 to 27.6 °C
04/02 12:42:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
04/02 12:42:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 28 °C. New calculated setpoint: 29 °C
04/02 12:42:38 - Function RTC: Correction change: From 0 to 1 °C (Room actual: 19.66 °C)
04/02 12:38:02 - MQTT Command: SetCurves: target: 28 (SP Calculation)
04/02 12:38:02 - Function - Calculate new SP: New final SP calculated: Current setpoint: 29 °C. New calculated setpoint: 28 °C
04/02 12:37:38 - Function RTC: Correction change: From 1 to 0 °C (Room actual: 19.72 °C)
04/02 12:32:38 - Function WAR: Setpoint change: From 27.8 to 27.7 °C
04/02 12:28:27 - Function SoftStart: SoftStart function end
04/02 12:28:27 - *DEFROSTING: Finished
04/02 12:26:32 - Compressor: running
04/02 12:26:17 - Function WAR: Setpoint change: From 27.7 to 27.8 °C
04/02 12:25:27 - Compressor: stopped
04/02 12:21:27 - Compressor: running
04/02 12:20:26 - Compressor: stopped
04/02 12:19:27 - Function SoftStart: Defrost - Correction: 0
04/02 12:19:27 - *DEFROSTING: Started
04/02 12:16:16 - Function WAR: Setpoint change: From 27.6 to 27.7 °C
04/02 12:11:16 - Function WAR: Setpoint change: From 27.7 to 27.6 °C
04/02 11:32:38 - MQTT Command: SetCurves: target: 29 (SP Calculation)
04/02 11:32:38 - Function - Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
04/02 11:32:38 - Function RTC: Correction change: From 2 to 1 °C (Room actual: 19.42 °C)
04/02 11:21:13 - Function WAR: Setpoint change: From 27.8 to 27.7 °C
04/02 11:13:27 - Function SoftStart: SoftStart function end
04/02 11:13:27 - *DEFROSTING: Finished
04/02 11:11:32 - Compressor: running
04/02 11:10:32 - Compressor: stopped
04/02 11:06:47 - Compressor: running
04/02 11:05:47 - Compressor: stopped
04/02 11:04:47 - Function SoftStart: Defrost - Correction: 0
04/02 11:04:47 - *DEFROSTING: Started
04/02 10:21:34 - Function SoftStart: SoftStart function end
04/02 10:21:34 - *DEFROSTING: Finished
04/02 10:19:44 - Compressor: running
04/02 10:18:44 - Compressor: stopped
04/02 10:14:54 - Compressor: running
04/02 10:13:53 - Compressor: stopped
04/02 10:12:53 - Function SoftStart: Defrost - Correction: 0
04/02 10:12:53 - *DEFROSTING: Started
04/02 09:46:07 - Function WAR: Setpoint change: From 27.9 to 27.8 °C
04/02 09:34:16 - Function SoftStart: SoftStart function end
04/02 09:34:16 - *DEFROSTING: Finished

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • +2 Henk 'm!

  • edterbak
  • Registratie: Maart 2006
  • Laatst online: 19:29
wervisser schreef op dinsdag 4 februari 2025 @ 12:05:
Gisteren viel mij op dat Boost DHW niet juist lijkt te werken. Ik draai flow 24.09.
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---Feedback Pomp--- 03/02 15:45:47 - TOP20_ThreeWay_Valve_State: 1
---Feedback Pomp--- 03/02 15:45:47 - TOP4_Operating_Mode_State: 4
---NodeRed---       03/02 15:45:44 - MQTT Command: SetOperationMode: 4 (GUI)
---Feedback Pomp--- 03/02 15:45:17 - TOP20_ThreeWay_Valve_State: 0
---Feedback Pomp-- -03/02 15:45:17 - TOP4_Operating_Mode_State: 0
---NodeRed---       03/02 15:45:12 - Scheduler: End ForceDHW cycle detected. Reverting Operating Mode in 15 minutes...


---Feedback Pomp--- 03/02 15:45:12 - TOP2_Force_DHW_State: 0
---Feedback Pomp--- 03/02 15:45:02 - TOP20_ThreeWay_Valve_State: 1
---Feedback Pomp--- 03/02 15:45:02 - TOP4_Operating_Mode_State: 3
---Feedback Pomp--- 03/02 15:45:02 - TOP2_Force_DHW_State: 1


---NodeRed---       03/02 15:44:56 - MQTT Command: SetForceDHW: 1
---NodeRed---       03/02 15:44:56 - Scheduler - Force DHW: 1
---NodeRed---       03/02 15:44:56 - Scheduler: Enable ForceDHW
---NodeRed---       03/02 15:44:46 - Scheduler - Operation Mode: 3
---NodeRed---       03/02 15:44:46 - Scheduler: Operation mode change to (3)DHW-Only
---NodeRed---       03/02 15:44:42 - MQTT Command: SetOperationMode: 3
---NodeRed---       03/02 15:44:42 - MQTT Command: SetDHWTemp: 57
---NodeRed---       03/02 15:44:42 - DHW Boost: Operating mode changed to (3)DHW-Only
---NodeRed---       03/02 15:44:42 - DHW Boost: Manually started DHW cycle to boost temperature to (57°C)


Het gekke is, als ik naar je log kijk, dan is er vanuit Node Red geen signaal welke het teurg gaan triggered.

Je ziet een aantal TOP berichten.
die worden gelezen door nodered en in het log gezet.
Dus hij zegt eerst, ik ben ForceDHW = 1
Daarna zegt hij zonder een node red regel er tussen, ik ben ForceDHW = 0


Het gebeurt dus in ieder geval buiten de wetenschap van Node REd om.

Het is denk ik dus een logica in de pomp zelf
of er is een programma op de achtergrond bezig (niet via MQTT) aan het bijsturen

Het is lastig te zien dit.
HEb je zelf een idee of er iets op de achtergrond aan de touwtjes kan trekken?

Acties:
  • 0 Henk 'm!

  • wervisser
  • Registratie: Oktober 2006
  • Laatst online: 13-09 09:16
Nee, ik heb verder niets anders draaien, maar mijn WP staat normaal gesproken standaard op HEAT en niet op HEAT+DHW.

De boiler was nu afgekoeld naar 38 graden en heb zojuist weer Boost DHW ingeschakeld. Op dit moment draait hij al een kwartier. Het log is momenteel enkel een beetje karig en niet geheel eerlijk, want ik zie dat hij ook automatisch is gestart op basis van minimaal temperatuur.

Ik test nog even verder :)

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
04/02 19:10:21 - SYSTEM - HEISHAMON Connection: Online
04/02 19:10:19 - SYSTEM - HEISHAMON Connection: Offline
04/02 19:07:49 - SYSTEM - HEISHAMON Connection: Online
04/02 19:07:49 - SYSTEM - HEISHAMON Connection: Offline
04/02 19:04:02 - Function SoftStart: SoftStart function end
04/02 19:04:01 - TOP20_ThreeWay_Valve_State: 1
04/02 19:04:01 - TOP4_Operating_Mode_State: 3
04/02 19:04:01 - TOP2_Force_DHW_State: 1
04/02 19:03:55 - MQTT Command: SetForceDHW: 1
04/02 19:03:55 - Scheduler - Force DHW: 1
04/02 19:03:55 - Scheduler: Enable ForceDHW
04/02 19:03:45 - Scheduler - Operation Mode: 3
04/02 19:03:45 - Scheduler: Operation mode change to (3)DHW-Only
04/02 19:03:41 - MQTT Command: SetOperationMode: 3
04/02 19:03:41 - MQTT Command: SetDHWTemp: 57
04/02 19:03:41 - DHW Boost: Operating mode changed to (3)DHW-Only
04/02 19:03:41 - DHW Boost: Manually started DHW cycle to boost temperature to (57°C)
04/02 19:03:11 - SYSTEM - HEISHAMON Connection: Online
04/02 19:03:01 - SYSTEM - HEISHAMON Connection: Offline
04/02 19:00:22 - MQTT Command: SetCurves: target: 29 (SP Calculation)
04/02 19:00:22 - *** Function Calculate new SP: New final SP calculated: Current setpoint: 30 °C. New calculated setpoint: 29 °C
04/02 19:00:22 - Function SoftStart: Correction: 1 > 0 °C - (ENDING) Freq: 41Hz, SP_Final: 20°C
04/02 18:59:15 - Function WAR: Setpoint change: From 28.6 to 28.4 °C
04/02 18:57:07 - MQTT Command: SetOperationMode: 3
04/02 18:57:07 - Auto-start-DHW function: DHW temperature: 48°C. Lower threshold: 48°C. Starting DHW run.

Acties:
  • 0 Henk 'm!

  • hemertje
  • Registratie: Juli 2015
  • Laatst online: 20:08
hemertje schreef op zaterdag 1 februari 2025 @ 15:36:
Ik heb laatst deze gekocht want usb voeding ipv batterij

Ik heb dit zojuist gevonden op AliExpress:
Tuya Zigbee Temperatuur Vochtigheid Sensor Indoor Hygrometer Thermometer Detector Lcd-Scherm Smart Life App Batterij Of Usb Aangedreven

https://a.aliexpress.com/_EuZRcb6
kan je er wat mee @sjampeter ?

Gasloos 2019 + WP Panasonic H-serie 7kW + 300 liter boilervat + PV 12.415Wp + Home Assistant + Hyundai Ioniq 6 First Edition + Zaptec laadpaal


Acties:
  • 0 Henk 'm!

  • Aziona
  • Registratie: April 2000
  • Laatst online: 18:01
Ik heb iets vreemds met mijn 5J monobloc wat ik niet begrijp. Hij lijkt niet hoger te willen verwarmen dan 34 graden. Toen het onlangs rond het vriespunt lag, dacht ik het te kunnen wijten aan onvoldoende capaciteit.

Ik stuur m aan met de Node-Red oplossing, alleen op WAR. Ook als het Outlet setpoint op 39 graden staat, gaat ie niet hoger dan 33/34 graden. De kW-afname past daar ook bij namelijk 600/800 watt de hele dag en geen defrosts natuurlijk op zo'n dag als vandaag. Wat zou de reden kunnen zijn dat ie niet hoger gaat dan 34 graden? Dit is wat ik zie in Heishamon. Kan het zijn dat Node-Red een Outlet setpoint laat zien van 39 graden maar dat ie stiekem toch op 33 graden stuurt?
Wat is bijvoorbeeld het verschil tussen TOP7/TOP42 en TOP34/TOP43?
Topic Name Value Description
TOP5 Main_Inlet_Temp 27.25 °C
TOP6 Main_Outlet_Temp 33.75 °C
TOP7 Main_Target_Temp 39 °C
TOP8 Compressor_Freq 33 Hz
TOP14 Outside_Temp 8 °C
TOP15 Heat_Power_Production 5600 Watt
TOP16 Heat_Power_Consumption 800 Watt
TOP29 Z1_Heat_Curve_Target_High_Temp 39 °C
TOP30 Z1_Heat_Curve_Target_Low_Temp 26 °C
TOP31 Z1_Heat_Curve_Outside_High_Temp 15 °C
TOP32 Z1_Heat_Curve_Outside_Low_Temp -5 °C
TOP33 Room_Thermostat_Temp 23 °C
TOP34 Z2_Heat_Request_Temp 33 °C
TOP42 Z1_Water_Target_Temp 39 °C
TOP43 Z2_Water_Target_Temp 33 °C
TOP49 Main_Hex_Outlet_Temp 33 °C
TOP56 Z1_Temp 33 °C
TOP81 Cooling_Mode 1 Direct
TOP82 Z2_Heat_Curve_Target_High_Temp 33 °C
TOP83 Z2_Heat_Curve_Target_Low_Temp 35 °C
TOP84 Z2_Heat_Curve_Outside_High_Temp 15 °C
TOP85 Z2_Heat_Curve_Outside_Low_Temp -5 °C
TOP86 Z2_Cool_Curve_Target_High_Temp 10 °C
TOP87 Z2_Cool_Curve_Target_Low_Temp 10 °C
TOP88 Z2_Cool_Curve_Outside_High_Temp 30 °C
TOP89 Z2_Cool_Curve_Outside_Low_Temp 20 °C

WP: WH-MDC05J3E5,WH-MDC07J3E5, WPB: Atlantic Explore v4, PV: Solaredge (6,8kW) en SMA (4,3kW), 2 x Heishamon OT v3.1, Rpi v5, Rpi v4, 2 x Rpi v3, ESP32, Domoticz, EV: Nissan Leaf, ESS: Deye, Luyuan, 32kWh


Acties:
  • +1 Henk 'm!

  • ConQuestador
  • Registratie: November 2000
  • Laatst online: 20:19
Aziona schreef op woensdag 5 februari 2025 @ 16:15:
Ik heb iets vreemds met mijn 5J monobloc wat ik niet begrijp. Hij lijkt niet hoger te willen verwarmen dan 34 graden. Toen het onlangs rond het vriespunt lag, dacht ik het te kunnen wijten aan onvoldoende capaciteit.

Ik stuur m aan met de Node-Red oplossing, alleen op WAR. Ook als het Outlet setpoint op 39 graden staat, gaat ie niet hoger dan 33/34 graden. De kW-afname past daar ook bij namelijk 600/800 watt de hele dag en geen defrosts natuurlijk op zo'n dag als vandaag. Wat zou de reden kunnen zijn dat ie niet hoger gaat dan 34 graden? Dit is wat ik zie in Heishamon. Kan het zijn dat Node-Red een Outlet setpoint laat zien van 39 graden maar dat ie stiekem toch op 33 graden stuurt?
Wat is bijvoorbeeld het verschil tussen TOP7/TOP42 en TOP34/TOP43?


[...]
simpel:
TOP15 Heat_Power_Production 5600 Watt

Je WP is maximaal vermogen aan het produceren. Als je warmer wilt had je geen 5J moeten kopen

Panasonic 12J T-CAP | Atlantic Explorer 270L | 4 x MHI SRK24ZS-WF + SRF35ZS-W | 12.000 Wp Enphase | Home Assistant, Heishamon, Mhi-ctrl | Alfa Romeo Giulia Veloce

Pagina: 1 ... 110 ... 121 Laatste