Seeq Team Shamus Cunningham Posted July 21, 2021 Seeq Team Posted July 21, 2021 Question through the support channel Quote I want to create a condition to catch when my density increased or decreased by more than X kg/m3 within 15 minutes Great use case which can be captured in a two quick steps Step 1 - Create a signal in the Formula tool with your custom aggregation. In this case we are going to use the periods() function to create capsules every 15 minutes and the delta() function to plot the change indensity from the start of the 15minute capsule to the end of the 15 minute capsule. Another alternative is to use the range() function which would return the absolute min - max of any values within the 15 minute interval. $myInterval = 15min $delta = $signal.aggregate(delta(),periods($myInterval),durationkey()) abs($delta) Step 2 - Create a Value Search to identify the periods of interest where the density change signal exceeds your desired threshold
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now