138 lines
4.5 KiB
PHP
138 lines
4.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
class PV_Visu extends IPSModule
|
|
{
|
|
public function Create()
|
|
{
|
|
parent::Create();
|
|
// Vier Zähler-Variablen
|
|
$this->RegisterPropertyInteger('VarProduction', 0);
|
|
$this->RegisterPropertyInteger('VarConsumption', 0);
|
|
$this->RegisterPropertyInteger('VarFeedIn', 0);
|
|
$this->RegisterPropertyInteger('VarGrid', 0);
|
|
// HTML-SDK Tile aktivieren
|
|
$this->SetVisualizationType(3);
|
|
}
|
|
|
|
public function ApplyChanges()
|
|
{
|
|
parent::ApplyChanges();
|
|
$this->UpdateData();
|
|
}
|
|
|
|
/**
|
|
* Liefert das HTML-Template und injiziert initiale Tagesdaten
|
|
*/
|
|
public function GetVisualizationTile()
|
|
{
|
|
// Tageswerte berechnen
|
|
$start = strtotime('today 00:00');
|
|
$end = time();
|
|
|
|
$prodID = $this->ReadPropertyInteger('VarProduction');
|
|
$consID = $this->ReadPropertyInteger('VarConsumption');
|
|
$feedID = $this->ReadPropertyInteger('VarFeedIn');
|
|
$gridID = $this->ReadPropertyInteger('VarGrid');
|
|
|
|
$prod = $this->GetDailyTotal($prodID, $start, $end);
|
|
$cons = $this->GetDailyTotal($consID, $start, $end);
|
|
$feed = $this->GetDailyTotal($feedID, $start, $end);
|
|
$grid = $this->GetDailyTotal($gridID, $start, $end);
|
|
|
|
// Prozent-Quoten
|
|
$prodCons = $prod > 0 ? ($cons / $prod) * 100 : 0;
|
|
$prodFeed = $prod > 0 ? ($feed / $prod) * 100 : 0;
|
|
$consPV = $cons > 0 ? min($prod, $cons) / $cons * 100 : 0;
|
|
$consGrid = $cons > 0 ? ($grid / $cons) * 100 : 0;
|
|
|
|
$initialData = [
|
|
'prodCons' => round($prodCons, 1),
|
|
'prodFeed' => round($prodFeed, 1),
|
|
'consPV' => round($consPV, 1),
|
|
'consGrid' => round($consGrid, 1),
|
|
'value' => [
|
|
'prod' => round($prod, 2),
|
|
'cons' => round($cons, 2),
|
|
'feed' => round($feed, 2),
|
|
'grid' => round($grid, 2),
|
|
],
|
|
];
|
|
|
|
// Script zur Injektion der initialen Daten
|
|
$message = '<script>handleMessage(' . json_encode($initialData) . ');</script>';
|
|
|
|
// HTML-Template laden
|
|
$htmlPath = __DIR__ . '/module.html';
|
|
if (!file_exists($htmlPath)) {
|
|
$this->LogMessage("module.html nicht gefunden in $htmlPath", KL_ERROR);
|
|
return '';
|
|
}
|
|
$html = file_get_contents($htmlPath);
|
|
|
|
return $html . $message;
|
|
}
|
|
|
|
/**
|
|
* Callback vom HTML: sendet frische Daten
|
|
*/
|
|
public function RequestAction($Ident, $Value)
|
|
{
|
|
if ($Ident === 'update') {
|
|
$this->UpdateData();
|
|
} else {
|
|
throw new \UnexpectedValueException("Unknown Ident $Ident");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Aktualisiert Daten und sendet an Tile
|
|
*/
|
|
public function UpdateData()
|
|
{
|
|
$start = strtotime('today 00:00');
|
|
$end = time();
|
|
|
|
$prod = $this->GetDailyTotal($this->ReadPropertyInteger('VarProduction'), $start, $end);
|
|
$cons = $this->GetDailyTotal($this->ReadPropertyInteger('VarConsumption'), $start, $end);
|
|
$feed = $this->GetDailyTotal($this->ReadPropertyInteger('VarFeedIn'), $start, $end);
|
|
$grid = $this->GetDailyTotal($this->ReadPropertyInteger('VarGrid'), $start, $end);
|
|
|
|
$prodCons = $prod > 0 ? ($cons / $prod) * 100 : 0;
|
|
$prodFeed = $prod > 0 ? ($feed / $prod) * 100 : 0;
|
|
$consPV = $cons > 0 ? min($prod, $cons) / $cons * 100 : 0;
|
|
$consGrid = $cons > 0 ? ($grid / $cons) * 100 : 0;
|
|
|
|
$data = [
|
|
'prodCons' => round($prodCons, 1),
|
|
'prodFeed' => round($prodFeed, 1),
|
|
'consPV' => round($consPV, 1),
|
|
'consGrid' => round($consGrid, 1),
|
|
'value' => [
|
|
'prod' => round($prod, 2),
|
|
'cons' => round($cons, 2),
|
|
'feed' => round($feed, 2),
|
|
'grid' => round($grid, 2),
|
|
],
|
|
];
|
|
|
|
$this->UpdateVisualizationValue($data);
|
|
}
|
|
|
|
/**
|
|
* Holt Tages-Aggregat aus dem IPS-Archiv
|
|
*/
|
|
private function GetDailyTotal(int $varID, int $start, int $end)
|
|
{
|
|
if ($varID <= 0) {
|
|
return 0.0;
|
|
}
|
|
$archives = IPS_GetInstanceListByModuleID('{43192F11-5B02-4B5D-9B53-8B4DBD4769E9}');
|
|
if (empty($archives)) {
|
|
return 0.0;
|
|
}
|
|
$values = AC_GetAggregatedValues($archives[0], $varID, 1, $start, $end, 1);
|
|
return empty($values) ? 0.0 : (float) $values[0]['Avg'];
|
|
}
|
|
} |