Jump to content

Recommended Posts

FAQ: 

We have various conditions that are calculated from signals on a variety of different equipment and assets. We would like to view them in a histogram that is broken out by month, and for each month each asset has a separate bar in the histogram. 

Example Solution:

1. For three signals, we want to create a histogram that is the total time per month spent above some threshold. In this example, each signal is associated with a different cooling tower Area.

image.png

2. We have a condition for when each signal is above it's threshold value. These conditions were created using the value search tool.

image.png

3. The three conditions can be combined into a single condition (here it is called "Combined In High Mode w Area as Property"). In the formula tool, before combining the conditions, we assign each condition a property called 'Area' and set the value as that particular asset area. Once the properties are set we use the combineWith() function to combine them into one final signal. The formula syntax below will achieve this:

//Create a new condition for each original condition that has a property of 'Area'. 
$A=$AHigh.setProperty('Area','Area A')
$G=$GHigh.setProperty('Area','Area G')
$I=$IHigh.setProperty('Area','Area I')

//Combine the new conditions created into a new condition with all of the high power modes where each capsule
//has a property of 'Area' that describes the signal that was searched to identify that original condition.
combineWith($A,$G,$I)

***Note: the combineWith() function in Seeq Formula is required here because it will retain capsule properties of individual conditions when combining them. Using union() or any other composite condition type logic will NOT retain the capsule properties of the individual condition.*** 

image.png

4. Use the Histogram tool and the multiple grouping functionalities to aggregate over both time, and the capsule property of 'Area'.
image.pngimage.png

Final Result: (remove other items from the details pane to view just the histogram)

image.png

 

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...