Condition

A condition defines a boolean expression. If this condition is fulfilled (true), then a notification is created which eventually then is going to be delivered to the customer.

This condition shall trigger when the predicted power generation for tomorrow is lower then yesterday's power consumption, and car charges only with photovoltaics.

The condition can be expressed as a mathematical expression producing a boolean value, which consists of:

  • dataset references E.g. $MyConsumption refers to the dataset with name MyConsumption

  • values E.g. number 1000

  • operators E.g. plus operator +, or comparison operator =

  • functions E.g. average function AVG(...), which calculates the average of specified time series

Have a look at Rule Language to see the full feature set of the expression language.

Last updated