Jump to content

Sepide

Seeq Team
  • Posts

    7
  • Joined

  • Last visited

  • Days Won

    3

Sepide last won the day on August 19 2020

Sepide had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Sepide's Achievements

Rookie

Rookie (2/14)

  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

6

Reputation

  1. 1. The raw signal is the compressor power and we used Manual condition to identify some periods over time during which we would like to find the maximym of the compressor power. Identify the max value using Signal from Condition during the investigation time. 2. Create a Condition when the max value happened. 3. Create a signal in a way that the values show the time stamp of the maximum during each capsule. We could also combine step 2 and 3 into 1 condition. 4. Summarize the results in a table format. 5. Show the results in Trend view.
  2. a. Add the property of the day of the year to the daily condition. 1. From Tools>>Identify select Periodic Condition >> Daily and click execute. The daily condition automatically includes the properties of the Day of the week, month and the day of the year. 2. From the Capsules pane select the required properties. b. Add the property if the week of the year to the weekly condition. 1. Use the following Formula to create a weekly condition with the property of the week of the year. round(timesince(years(),1week).tostep() + 1).toCondition('Week') 2. From the Capsules pane select the Week property.
  3. Felix, Please let me know if this is the problem you have: Here is the result of adding two signals when one of them has gaps in it: Solution Step1: Identify the gaps in Signal1 using the following formula: $s1.isNotValid() Step 2: Substitute the gaps in Signal1 with zero using the Splice function: $Signal1.splice(0.tosignal(),$Gap) Step3: Use the newly created signal(Without gaps) and add it to the second signal: $Signal1NoGap+$Signal2 Please let us know if this answers your question. Thank you
  4. For more information on this topic please look at this post: Extracting A Substring From a Capsule Property
  5. In this example we want to plot both temperature signal and a model signal vs relative humidity in one scatter plot using Seeq. Here are the Steps: RAW Data: Temperature (Area A) Temperature (Area B) X axis - Rel humidity (Area A) Step 1. Delay one of the signals to make sure the data points for both signals are not aligned Model (Area B) $TempAreaB.delay(1min) Step2. Combine the model and the temperature into one signal and set the max interpolation to 1 sec so it doesn't draw a line in between samples Model & Temp Combined (Area A) $Temp.combinewith($Model).setmaxinterpolation(1sec) Step3. Create a condition per each sample in the Temperature and Model Signal Temp Condition (Area A) $Temp.setmaxinterpolation(1sec).isvalid() Model Condition (Area B) $Model.setmaxinterpolation(1sec).isvalid() Step 4. Go to Scatter plot and select "Relative Humidity" as the X-Axis and "Model &Temp Combined" as the Y Axis Step 5. In Scatter Plot, select Model condition and Temperature condition for condition based coloring the sample points
  6. Goal is to create a string signal that shows the different operation modes in a device at each time. Step 1. Create the sample modes using Values Search Tool, Advanced Search: Value Search Tool, Advanced Search Step 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 link: Set property to a capsule Formula for creating the mode with property condition: $ShutDown = $Shutdown.setProperty("Mode", "ShutDown") $StartUp = $Startup.setProperty("Mode", "StartUp") $steady = $Steady.setProperty("Mode", "Steady") combineWIth($StartUp, $steady, $ShutDown) Step 3. Use the Formula Tool to create a string signal using the "mode with property" condition and shows the mode of the input signal at each time. Here is the formula for creating the string signal (Mode is the Mode with property condition in here) : $inputsignal.transformToSamples( $capsule -> sample($capsule.getStart(), $capsule.getproperty('Mode')), 10d)
  7. 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) 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) 3. Finally, calculate the total time per mode using Histogram Tool. For more information on Histogram Tool please see the following link: Histogram Tool Content Verified DEC2023
×
×
  • Create New...