
updated proxies renamed Definition class improved JSON definitions of entities and properties
140 lines
No EOL
3.2 KiB
PHP
140 lines
No EOL
3.2 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2010, The volkszaehler.org project
|
|
* @package default
|
|
* @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
|
|
*/
|
|
/*
|
|
* This file is part of volkzaehler.org
|
|
*
|
|
* volkzaehler.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* volkzaehler.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with volkszaehler.org. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace Volkszaehler\Interpreter;
|
|
|
|
/**
|
|
* Meter interpreter
|
|
*
|
|
* @package default
|
|
* @author Steffen Vogel (info@steffenvogel.de)
|
|
*
|
|
*/
|
|
use Volkszaehler;
|
|
|
|
class MeterInterpreter extends Interpreter {
|
|
|
|
/**
|
|
* Calculates the consumption for interval speciefied by $from and $to
|
|
*
|
|
* @todo untested
|
|
*/
|
|
public function getConsumption() {
|
|
$sql = 'SELECT SUM(value) AS count
|
|
FROM data
|
|
WHERE
|
|
channel_id = ' . (int) $this->id . ' &&
|
|
' . self::buildTimeFilterSQL($this->from, $this->to) . '
|
|
GROUP BY channel_id';
|
|
|
|
$result = $this->dbh->query($sql)->rewind();
|
|
|
|
return $result['count'] / $this->resolution / 1000; // returns Wh
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function getMin() {
|
|
$data = $this->getData();
|
|
|
|
$min = current($data);
|
|
foreach ($data as $reading) {
|
|
if ($reading['value '] < $min['value']) {
|
|
$min = $reading;
|
|
}
|
|
}
|
|
return $min;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getMax() {
|
|
$data = $this->getData();
|
|
|
|
$max = current($data);
|
|
foreach ($data as $reading) {
|
|
if ($reading['value '] > $max['value']) {
|
|
$max = $reading;
|
|
}
|
|
}
|
|
return $max;
|
|
}
|
|
|
|
/**
|
|
* @todo calculate timeinterval if no params were given
|
|
* @return float
|
|
*/
|
|
public function getAverage() {
|
|
return $this->getConsumption() / ($this->to - $this->from) / 1000; // return W
|
|
}
|
|
|
|
/**
|
|
* Just a passthrough of raw data
|
|
*/
|
|
public function getPulses($groupBy = NULL) {
|
|
return parent::getData($groupBy);
|
|
}
|
|
|
|
/**
|
|
* Raw pulses to power conversion
|
|
*
|
|
* @todo untested
|
|
* @return array with timestamp and values in [W]
|
|
*/
|
|
public function getValues($groupBy = NULL) {
|
|
$pulses = parent::getData($groupBy);
|
|
|
|
$values = array();
|
|
foreach ($pulses as $pulse) {
|
|
if (isset($last)) {
|
|
$values[] = $this->raw2differential($last, $pulse);
|
|
$last = $pulse;
|
|
}
|
|
else {
|
|
$last = $pulse;
|
|
}
|
|
}
|
|
|
|
return $values;
|
|
}
|
|
|
|
/**
|
|
* Calculates the differential quotient of two consecutive pulses
|
|
*
|
|
* @param array $last the last pulse
|
|
* @param array $next the next pulse
|
|
*/
|
|
protected function raw2differential(array $last, array $next) {
|
|
$delta = $next[0] - $last[0];
|
|
|
|
return array(
|
|
(int) ($next[0] - $delta / 2), // timestamp
|
|
$next[1] * (3600000 / (($this->channel->getProperty('resolution')->getValue() / 1000) * $delta)), // value
|
|
(isset($next[2])) ? $next[2] : 1
|
|
);
|
|
}
|
|
}
|
|
|
|
?>
|