Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.
kWh Consumption
-
Hello, I have a point with instant power for a pump, in kW, is there a way to calculate total kWh consumption?
-
@georgestefan said in kWh Consumption:
Hello, I have a point with instant power for a pump, in kW, is there a way to calculate total kWh consumption?
I got the following from Energy Dashboard Demo;
return my.value + (InstantPower.past(MINUTE,1).average/60);
-
@morris What cron pattern should I use to run the script? Every hour?
-
That one is intended to run every minute (
.past(MINUTE, 1)
) so for a meta point you could doStart of minute
or0 * * * * ?
as your update event. -
Works well with this cron pattern, thank you!
-
Certainly!