Jump to content

Recommended Posts

FAQ:

I've got a signal for which the average and standard deviation are believed to be drifting over time. When I view the average and standard deviation in calendar time, it isn't helpful because they are highly dependent upon the production grade that I am running. Is there a better way that I could be viewing my data to get a sense of the drift of the average and standard deviation by production grade over time?

Solution 1: Histogram

1. Add your signal of interest and your production grade code signal to the display.

image.png

2. Create a condition for all production grades using formula: $gradeCode.toCondition()

image.png

3. Use the Histogram tool to calculate the average reactor temperature during each grade campaign and display them aggregated over production grade, and time.

image.png

The same methods from step 3 can be applied to get a second histogram of the distribution of the standard deviation of the signal of interest by grade over time.

Solution 2: Chain View

1. Add your signal of interest and your operating state signal to the display.

image.png

2. Use Formula to create a condition for all operating states: $stateSignal.toCondition()

image.png

3. Use the Signal from Condition tool to calculate the average temperature over the all operating states condition.

image.png

4. Use the Signal from Condition tool to calculate the standard deviation of temperature over the all operating states condition.

image.png

5. Use Formula to calculate two new signals for “Avg + 2 SD” and “Avg – 2 SD”.

image.png

image.png

6. Filter your all operating states condition for only the state that you are interested in viewing. In this example we want to view only the capsules during which the compressor is in stage 2, for which the syntax is:

$AllOperatingStates.removeLongerThan(7d).removeShorterThan(4h).filter($capsule -> $capsule.getProperty('Value').isEqualTo('STAGE 2'))

This formula is taking our condition for all operating states, keeping only capsules that are between 4h and 7d in length, then filtering those capsules to include only those for which the value is equal to stage 2.

image.png

7. Swap to chain view and view a longer time range.

image.png

 

image.png

  • Like 1
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...