A java simulator/parser/toolkit for the Dutch Smart Meter Requirements (DSMR)
DSMR are the Dutch Smart Meter Requirements; part of these requirements are the messages sent out via the P1 port that can be captured and processed on a computer.
Many tools already exist to do this but so far I have not found one that allows me to easily select the system the messages are to be sent to.
This is a set of Java based libraries and tools that should allow processing DSMR messages in a way that is as flexible and reusable as possible.
Parts in this toolkit:
I am using this software at home to read my own powermeter. So it works in my setup. I’m currently in the process of giving the software a thorough review and I expect to make some breaking changes while still in the 0.x version range.
The USB serial MUST be set to the right speed (115200 in my case) and set to ‘raw’ or the crc checksum will NEVER match.
stty -F /dev/ttyUSB0 115200 raw
Several of the components have been published to maven central and can now be easily used on other applications.
<dependency>
<groupId>nl.basjes.iot</groupId>
<artifactId>stream-record-splitter</artifactId>
<version>0.6</version>
</dependency>
<dependency>
<groupId>nl.basjes.dsmr</groupId>
<artifactId>dsmr-parser</artifactId>
<version>0.6</version>
</dependency>
The corresponding Nifi NAR files (built against Nifi 1.15.0 which should be compatible with MiNiFi 1.15.0) can be downloaded from Maven central as well.
https://repo1.maven.org/maven2/nl/basjes/iot/nifi-sensor-stream-cutter/0.6/nifi-sensor-stream-cutter-0.6.nar
<dependency>
<groupId>nl.basjes.iot</groupId>
<artifactId>nifi-sensor-stream-cutter</artifactId>
<type>nar</type>
<version>0.6</version>
</dependency>
and
https://repo1.maven.org/maven2/nl/basjes/dsmr/nifi-dsmr-parser/0.6/nifi-dsmr-parser-0.6.nar
<dependency>
<groupId>nl.basjes.dsmr</groupId>
<artifactId>nifi-dsmr-parser</artifactId>
<type>nar</type>
<version>0.6</version>
</dependency>
After building and installing the processors in this project in a (local) Apache Nifi installation you can build this very simple flow which simply read and parses the data from the P1 port of the smart meter and stores everything in InfluxDb.
Using Nifi I have created a template of this (DSMR-to-InfluxDb.xml) as a testing reference:
The steps in there:
Replacement value:
electricity,equipmentId=${dsmr.equipmentId},p1Version=${dsmr.p1Version} electricityReceivedLowTariff=${dsmr.electricityReceivedLowTariff},electricityReceivedNormalTariff=${dsmr.electricityReceivedNormalTariff},electricityReturnedLowTariff=${dsmr.electricityReturnedLowTariff},electricityReturnedNormalTariff=${dsmr.electricityReturnedNormalTariff},electricityTariffIndicator=${dsmr.electricityTariffIndicator}i,electricityPowerReceived=${dsmr.electricityPowerReceived},electricityPowerReturned=${dsmr.electricityPowerReturned},powerFailures=${dsmr.powerFailures}i,longPowerFailures=${dsmr.longPowerFailures}i,voltageSagsPhaseL1=${dsmr.voltageSagsPhaseL1}i,voltageSagsPhaseL2=${dsmr.voltageSagsPhaseL2}i,voltageSagsPhaseL3=${dsmr.voltageSagsPhaseL3}i,voltageSwellsPhaseL1=${dsmr.voltageSwellsPhaseL1}i,voltageSwellsPhaseL2=${dsmr.voltageSwellsPhaseL2}i,voltageSwellsPhaseL3=${dsmr.voltageSwellsPhaseL3}i,voltageL1=${dsmr.voltageL1},voltageL2=${dsmr.voltageL2},voltageL3=${dsmr.voltageL3},currentL1=${dsmr.currentL1},currentL2=${dsmr.currentL2},currentL3=${dsmr.currentL3},powerReceivedL1=${dsmr.powerReceivedL1},powerReceivedL2=${dsmr.powerReceivedL2},powerReceivedL3=${dsmr.powerReceivedL3},powerReturnedL1=${dsmr.powerReturnedL1},powerReturnedL2=${dsmr.powerReturnedL2},powerReturnedL3=${dsmr.powerReturnedL3} ${dsmr.timestamp.epochSecond}000000000
Warning about the timestamp in this replacement value!
The last field is the timestamp. Here the time (in seconds) from the data of the energy meter is used (i.e. ${dsmr.timestamp.epochSecond}000000000 ).
The meter I have has a clock that is off by about 7 seconds, this causes nasty effects in Grafana when I try to add/substract these values form other data streams I have (like from my solar inverter).
If you have a similar situation then I recommend using this timestamp instead that uses the clock of the local system (which I have synchronized using NTP) and is rounded to the whole second: ${now():toNumber():divide(1000)}000000000
When I then hook Grafana to this Influx Db database and make a graph I get something like this:
I have a Raspberry Pi Model B Plus Rev 1.2 on which I have this running using Minifi 1.15.0. In order to make it work I had to jump through some hoops.
Now MiNiFi is REALLY picky about versions of nar files.
Because MiNiFi 1.15.0 is build against NiFi 1.15.0 you need to download that exact version because we need some additional libraries from it.
The problem with Raspberry Pi systems is that they have an SD card as ‘disk’.
These suffer from wearing out quite fast.
Also (Mi)NiFi writes a lot of stuff that I do not care about (like Provenance data).
To avoid disk related problems as much as possible I reduced the writing to only what is needed and created a RamDisk to run MiNiFi on.
So after converting the flow into the MiNiFi yaml format I changed this
Provenance Repository:
provenance rollover time: 1 min
implementation: org.apache.nifi.provenance.MiNiFiPersistentProvenanceRepository
into
Provenance Repository:
provenance rollover time: 1 min
implementation: org.apache.nifi.provenance.NoOpProvenanceRepository
To avoid writing the Provenance data (which I don’t need).
First create the actual directory/mount point:
mkdir /minifi
Then in /etc/fstab I added this line to define a new 10MiB Ramdisk:
tmpfs /minifi tmpfs nodev,nosuid,size=10M 0 0
and run
mount -a
Now we put our MiNiFi setup somewhere on the SD card and we add this script as run.sh
#/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
RUNDIR=/minifi
if [ ! -e ${RUNDIR}/bin/minifi.sh ];
then
mkdir ${RUNDIR}/bin
cp ${DIR}/bin/*.sh ${RUNDIR}/bin
chmod 755 ${RUNDIR}/bin/*.sh
cp -rs ${DIR}/lib ${RUNDIR}
cp -rs ${DIR}/conf ${RUNDIR}
mkdir ${DIR}/work
ln -s ${DIR}/work ${RUNDIR}
fi
${RUNDIR}/bin/minifi.sh start
This script will effectively make MiNiFi read the ‘immutable’ stuff from the SD card and read/write the fast changing stuff to the ramdisk.
Copyright (C) 2019-2024 Niels Basjes
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.