TOTAL examples
- Last UpdatedFeb 07, 2025
- 1 minute read
Example 1
The following expression returns the total volume flowing through a pump over 1 hour intervals.
TOTAL(Pump101.Flow, hour)
Example 2
The following expression returns the total volume of all streams measured in the volumetric flow dimension over 1 hour intervals.
TOTAL(SELECT("Dimension","Volumetric Flow"), hour)
Example 3
The following expression returns the total energy produced by a turbine over the query period.
TOTAL(Turbine306.Output)
Example 4
The following expression returns the total energy for all streams with a tag name that starts with "Turbine" and ends with ".Output" over the query period.
TOTAL(SELECT("TagName","Turbine*.Output"))