Jump to content

Shutdown and Restart Events


Recommended Posts

I am hoping to develop a reporting tool for shutdown and start ups of units.

I am able to build capsules for RPM < 10 (unit down) and RPM >10 (unit running).

There is also a shutdown code that accompanies a shutdown (a number 1 - 54). The shutdown code does not latch, if the unit is left down the shutdown code eventually goes to zero.

 

My ultimate goal is to easily identify the shutdown event and code, duration of downtime (I already have this much) and date/time at startup. The hardest part is identifying when a unit goes from its operating speed to zero, and going from zero to operating speed.

 

image.png

Link to comment
Share on other sites

  • Seeq Team

Hello,

Based on your question, there are 2 conditions that define your down time periods. 

  1.  Speed RPM < 10 
    •  image.thumb.png.fe9b830a235c14a2e619bd8d13faa52f.png
  2. Code = 0
    • image.thumb.png.d9d1f553d6e3b363baef686f11f5d8c1.png

Next, to identify period when the unit down ends to the starts of code down period, you can use composite condition (Join) which result in red condition below.

image.thumb.png.d4466d1473c451479fca2415dececfa0.png

Then repeat the same composite condition to identify period when the  code down ends to the starts of unit down period, which result in yellow condition below.

  • You can choose to include or exclude A or B condition if needed. 
  • Adjust the maximum capsule duration depending on the gap between A to B condition. 

image.thumb.png.2c2e46efe509c608b55f953aff1afad4.png

 

Let me know if this helps.

Edited by Siti Tay
Link to comment
Share on other sites

  • Seeq Team

I understand that the example didn't suit your case. Please try these two methods and see which one better suits your data.

Method 1 : 

1. Calculate the derivative for the speed data.

image.thumb.png.16c7665b459b991c27981d7cd0f7bcc8.png

2. Apply value search when the derivative is not equal to 0 (you might need to adjust this value search criteria depending on your derivative signal).

This result in red conditions before and after the unit is down, with a duration of 0 seconds, as displayed in the capsule pane.

image.thumb.png.904cf8748a29fd7459cc43a5ff8a746c.png

Method 2 :

Use beforeStart() and afterEnd() functions as shown below. You will need to specify the duration of the capsule, and in this example, the duration is 1 minute before and after the unit down. 

$before_down = $unit_down.beforeStart(1min)
$restart = $unit_down.afterEnd(1min)
$before_down.combineWith($restart)

image.thumb.png.8564a4c3567f5965f1dd20955a10bde9.png

 

Give these methods a try, and let me know if you encounter any issues or you can also join our Seeq Office Hours (https://info.seeq.com/office-hours) for further discussion. 

Edited by Siti Tay
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...