From a77c0a9505063ce3e30c7f69f2dad16f463bce0c Mon Sep 17 00:00:00 2001 From: Thorsten Zoerner Date: Sat, 27 Jan 2024 10:21:58 +0100 Subject: [PATCH] Fix: detach from metering call for balancing removed to allow tracing. (temp) --- README.md | 3 +-- framework/README.md | 3 ++- framework/docs | 2 +- framework/services/loadprofile.service.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e58564f..b67b9f2 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,7 @@ [![codecov](https://codecov.io/gh/energychain/STROMDAO_EAFs/graph/badge.svg?token=O04DB3uPAJ)](https://codecov.io/gh/energychain/STROMDAO_EAFs) ![GitHub issues](https://img.shields.io/github/issues/energychain/STROMDAO_EAFs) -# EAFs - Zählerstandsgangmessung für dynamische Stromtarife -**Referenzimplementierung der STROMDAO GmbH** +**Das [STROMDAO Energy Application Framework (EAF)](https://energy.js.org) ist eine Open-Source-Referenzimplementierung für digitale Energieinfrastruktur. Es dient zur Modellierung, Analyse und Entwicklung von Energiesystemen und -anwendungen. Das EAF wird in verschiedenen Kontexten eingesetzt, darunter für die Entwicklung maßgeschneiderter Energieanwendungen für Endnutzer und zur Förderung nachhaltigen Verhaltens. Es handelt sich um ein Werkzeug, das eine offene und interoperable Umgebung für Energieanwendungen schafft. Darüber hinaus ist das EAF Teil eines größeren Vorhabens zur Schaffung eines Referenzrahmens für energiebezogene Anwendungen und Einsparungen.** Das STROMDAO Energy Application Framework (EAF) adressiert die Aspekte der Implementierung dynamischer Tarife wie folgt: diff --git a/framework/README.md b/framework/README.md index ff5eeb3..4d4c096 100644 --- a/framework/README.md +++ b/framework/README.md @@ -4,7 +4,8 @@ ![GitHub issues](https://img.shields.io/github/issues/energychain/STROMDAO_EAFs) # STROMDAO-EAF -The [STROMDAO Energy Application Framework (EAF)](https://github.com/energychain/STROMDAO_EAFs) provides an innovative platform for electricity providers to implement and offer dynamic, event-variable electricity tariffs. + +The [STROMDAO Energy Application Framework (EAF)](https://github.com/energychain/STROMDAO_EAFs) is an open source reference implementation for digital energy infrastructure. It is used to model, analyze and develop energy systems and applications. The EAF is used in various contexts, including the development of customized energy applications for end users and the promotion of sustainable behavior. It is a tool that creates an open and interoperable environment for energy applications. In addition, the EAF is part of a larger project to create a common European reference framework for energy-related applications and savings. ## Demo diff --git a/framework/docs b/framework/docs index d20274b..b0ff455 160000 --- a/framework/docs +++ b/framework/docs @@ -1 +1 @@ -Subproject commit d20274b8d7885ed70d1117e1385a7fb96c37d35d +Subproject commit b0ff4552885a3152b59998faf7fa2a80c5764380 diff --git a/framework/services/loadprofile.service.js b/framework/services/loadprofile.service.js index 540eb3d..a692c67 100644 --- a/framework/services/loadprofile.service.js +++ b/framework/services/loadprofile.service.js @@ -88,7 +88,7 @@ module.exports = { } // Forward to balancing (asynchronously) ctx.params.autoseal = 1; // Auto seal for meter readings the previous epoch - ctx.call("balancing.addSettlement",ctx.params); + await ctx.call("balancing.addSettlement",ctx.params); return; } },