TOTALS examples
- Last UpdatedFeb 18, 2025
- 1 minute read
Example 1
The following expression returns the calculated statistical total volume flowing through a pump over a 10 minute interval.
TOTALS(Pump102.Flow, 10 minute)
Example 2
The following expression returns the calculated statistical total volume for all streams with a tag name that includes "Flow" over a 10 minute interval.
TOTALS(SELECT("TagName","Flow"), 10 minute)
Example 3
The following expression returns the calculated statistical total energy produced by a turbine over the query period.
TOTALS(Turbine306.Output)
Example 4
The following expression returns the calculated statistical total energy for all streams with a tag name that starts with "Turbine" and ends with ".Output" over the query period.
TOTALS(SELECT("TagName","Turbine*.Output"))