Jump to content

Recommended Posts

  • Seeq Team

Issues with different devices can lead to shutdowns and failures. In this example we want to monitor the duration of each operation mode of an input signal. This example can be used to monitor all the conditions that can lead to inefficient device performance.  

In order to monitor all operation modes we need to, 

1. Create all the modes using Value Search Tool.

a.       StartUp (input < 75)

b.       ShutDown (input > 95)

c.       SteadyState (75 < input < 95)

image.png    

image.png

 

2. Create a continuous condition called “Mode” comprising all three (startup, steady state, shutdown), and assign a property to each capsule to identify the mode.  

for more information please look at the following post: A Guide to Working with Capsule Properties

 

$ShutDown   = $Shutdown.setProperty("Mode", "ShutDown")
$StartUp     = $Start.setProperty("Mode", "StartUp")
$steady = $Steady.setProperty("Mode", "Steady")
combineWIth($StartUp, $steady, $ShutDown)

image.png

3. Finally, calculate the total time per mode using Histogram Tool.

For more information on Histogram Tool please see the following link: Histogram Tool

image.png

 

Content Verified DEC2023

Edited by Chris Harp
Updated links
  • 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...