no message

This commit is contained in:
belevo\mh
2025-10-02 13:08:25 +02:00
parent 80ee868263
commit e81e880bcc
2 changed files with 1 additions and 31 deletions

View File

@@ -37,18 +37,6 @@
"name": "IdleCounterMax", "name": "IdleCounterMax",
"caption": "Zyklen zwischen zwei Leistungsänderungen (Multipliziert sich mit Interval)", "caption": "Zyklen zwischen zwei Leistungsänderungen (Multipliziert sich mit Interval)",
"suffix": "" "suffix": ""
},
{
"type": "NumberSpinner",
"name": "PufferLeistung",
"caption": "Puffer Volllast",
"suffix": "Watt"
},
{
"type": "NumberSpinner",
"name": "PufferTeilLeistung",
"caption": "Puffer Teillast",
"suffix": "Watt"
}, },
{ {
"type":"List", "type":"List",
@@ -87,7 +75,6 @@
] ]
}, },
{ {
"type": "Label", "type": "Label",
"caption": "Endpunkte der Pufferfunktion bestimmen: VT = f(AT)" "caption": "Endpunkte der Pufferfunktion bestimmen: VT = f(AT)"
@@ -122,18 +109,6 @@
"caption": "Variable für Pufferfühler PT1", "caption": "Variable für Pufferfühler PT1",
"test": true "test": true
}, },
{
"type": "SelectVariable",
"name": "Heizkontakt1_Puffer",
"caption": "Heizkontakt Puffer 1.Stufe",
"test": true
},
{
"type": "SelectVariable",
"name": "Heizkontakt2_Puffer",
"caption": "Heizkontakt Puffer 2.Stufe",
"test": true
},
{ {
"type": "SelectVariable", "type": "SelectVariable",
"name": "Aussentemp", "name": "Aussentemp",

View File

@@ -8,13 +8,10 @@ class Puffer_Speicher extends IPSModule
{ {
parent::Create(); parent::Create();
$this->RegisterPropertyInteger("PufferLeistung", 6000);
$this->RegisterPropertyInteger("PufferTeilLeistung", 3000);
$this->RegisterPropertyString("LeistungsStufen", json_encode([])); // Bezeichnung der Liste $this->RegisterPropertyString("LeistungsStufen", json_encode([])); // Bezeichnung der Liste
$this->RegisterPropertyInteger("ZeitKonstante", 120); $this->RegisterPropertyInteger("ZeitKonstante", 120);
$this->RegisterPropertyInteger("Pufferfuehler_PT1", 0); $this->RegisterPropertyInteger("Pufferfuehler_PT1", 0);
$this->RegisterPropertyInteger("Heizkontakt2_Puffer", 0);
$this->RegisterPropertyInteger("Heizkontakt1_Puffer", 0);
$this->RegisterPropertyInteger("Aussentemp", 20); $this->RegisterPropertyInteger("Aussentemp", 20);
$this->RegisterPropertyInteger("MinVT_Temp", 20); $this->RegisterPropertyInteger("MinVT_Temp", 20);
$this->RegisterPropertyInteger("MaxVT_Temp", 80); $this->RegisterPropertyInteger("MaxVT_Temp", 80);
@@ -240,8 +237,6 @@ class Puffer_Speicher extends IPSModule
} }
$this->SetValue("Maximaltemperatur", $VT ); $this->SetValue("Maximaltemperatur", $VT );
$boilerTemp = $this->GetValue("Puffertemperatur"); $boilerTemp = $this->GetValue("Puffertemperatur");
$pufferLeistung = $this->ReadPropertyInteger("PufferLeistung");
$pufferTeilLeistung = $this->ReadPropertyInteger("PufferTeilLeistung");
$hyst = $this->GetValue("Hysterese"); $hyst = $this->GetValue("Hysterese");
if($VT < $boilerTemp){ if($VT < $boilerTemp){