![]() |
Energy calculation and data saving - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Energy calculation and data saving (/showthread.php?tid=3328) |
Energy calculation and data saving - Domoticatorino - 28.04.2021 Dear all, I manage some energy counters (energy produced by photovoltaic, energy sold to the network) and in the meanwhile I calculate the self-consumption energy. Daily and total. Here below is shown the script I did and I would like to ask you if there's a best way to improve it. The system works fine but I would like to know if there's a better way to manage this process. 1. Scheduled script to read the value of energy instrument at the beginning of the day (energy counter of instrument cannot be reset). Hence I find this method to obtain daily data. Code: -- script run every day at 0:0 am. 2. Scheduled script to calculate energy product by photovoltaic and self-consumption energy. Code: -- script runs every day, every hour at 59 minutes 3. Scheduled script to calculate the total self-consumption energy. Code: -- script runs all days, at 11 pm at 59 minutes. Thanks. BR RE: Energy calculation and data saving - admin - 29.04.2021 Looks good to me. It can also be done without the third script by adding this to the end of the second script that runs every hour at 59 minutes: Code: -- run only on the last hour of the day RE: Energy calculation and data saving - Domoticatorino - 29.04.2021 (29.04.2021, 07:57)admin Wrote: Looks good to me. It can also be done without the third script by adding this to the end of the second script that runs every hour at 59 minutes: Thank you. Further to save the data do you suggest to NOT use the "storage"? Group address is data retain in any case? Thanks. RE: Energy calculation and data saving - admin - 29.04.2021 There's no big difference which method to use. Object values are synced the same way as storage is. Just make sure that the object data type can store the value without overflowing. Use either 4 byte floating point or 8 byte signed integer depending on your data. |