MicroOcpp icon indicating copy to clipboard operation
MicroOcpp copied to clipboard

Saving the charging summary

Open chandan-ultraviolette opened this issue 1 year ago • 10 comments

I want to save the charging summary, basically one .jsn should be created at every new charging session and periodically gets updated while charging. I think something similar is already done with s-.jsn file, I enabled below but the stack is not creating the file sd-.jsn. Any suggestion.

image

image

image

chandan-ultraviolette avatar May 15 '24 08:05 chandan-ultraviolette

Are you sure the value of StopTxnSampledData was applied correcly? You can verify it with a GetConfiguration command from the server. Otherwise, I would believe that the microcontroller runs out of flash memory and therefore, the creation of the StopData JSON files fails. I verified this function here and couldn't reproduce the issue.

matth-x avatar May 18 '24 18:05 matth-x

By default, the number of StopData measurements is limited to 4 which could be too restrictive in your scenario. I quickly changed the corresponding definition. To keep more than 4 elements on flash, set the build flag MO_MAX_STOPTXDATA_LEN to a higher value.

matth-x avatar May 18 '24 18:05 matth-x

@matth-x I am bit confusion, I thought after 4 elements, code will erase the older ones and keep creating new log?

chandan-ultraviolette avatar May 21 '24 07:05 chandan-ultraviolette

@matth-x I recompiled my entire code working fine now, seems very strange. Also I don't want to create new file periodically, basically one file sd-connector_id-txNr-0 should update periodically so I can access only 1 file to know the history.

Also I checked the JSON sd-*.jsn, I was looking for JSON which has start time, end time (or duaration) and energy consumed wh till now, Arre you creating any such .jsn or any suggestion where to modify for same.

chandan-ultraviolette avatar May 21 '24 08:05 chandan-ultraviolette

The current strategy is to make a consecutive record of up to MO_MAX_STOPTXDATA_LEN -1 sd files and then to keep the most recent readings in the last sd file which gets updated afterwards. So the sd file with the highest sequence number always contains the most recent measurements.

matth-x avatar May 21 '24 19:05 matth-x

Understood, How can I access txNr so application can access the logs.

chandan-ultraviolette avatar May 22 '24 07:05 chandan-ultraviolette

The transaction store keeps track of all currently stored transactions. You can retrieve the range of corresponding txNr like that:

//necessary include
#include <MicroOcpp/Model/Transactions/TransactionStore.h>


if (auto context = getOcppContext()) {
    auto& model = context->getModel();

    if (auto txStore = model.getTransactionStore()) {
        int txNrBegin = txStore->getTxBegin(1 /* connectorId */); //first possible txNr
        unsigned int txNrCount= txStore->size(1 /* connectorId */); //number of stored transactions

        //iterate through all stored transactions by txNr
        for (unsigned int i = 0; i < txNrCount; i++) {
            int txNr = (txNrBegin + (int)i) % MAX_TX_CNT;
            //...
        }
    }
}

Edit: handle roll-over of txNrs, i.e. ranges like (99998, 99999, 0, 1)

matth-x avatar May 22 '24 09:05 matth-x

Thanks @matth-x , One doubt as post reboot if last state was charging, it continues the charging. I think mocpp also storing the energy consumed wh so how to fetch that number from mocpp stack so can start increasing the energy consumption from that number.

chandan-ultraviolette avatar May 31 '24 10:05 chandan-ultraviolette

@matth-x I noticed one bug related to SD files in 1.6.0 stack. Suppose StopTxnSampledData is false initially and after we do multiple transaction & enable enable StopTxnSampledData to true. It will not create the SD file for future transaction.

chandan-ultraviolette avatar Jun 05 '24 07:06 chandan-ultraviolette

Hi @chandan-ultraviolette, MicroOcpp does not terminate running transactions automatically when being initialized. This needs to be explicitly done by calling endTransaction() after mocpp_initialize() (not required to terminate it, but most chargers do it). Although the Start-/StopTx energy values are being stored by MicroOcpp once the operation has been initiated, that's not the case for the EnergyMeterInput over reboots. In general, the MeterValues, Start- and StopTx operations will always capture the original value of the EnergyMeterInput, there is no processing / correction step in between. It's the responsibility of the firmware to persist the energy register over reboots.

StopTxnSampledData should contain the measurands, like "Energy.Active.Import.Register".

matth-x avatar Jun 14 '24 18:06 matth-x