cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

Manage an Engine Analytical Model Part 1

No ratings

 

 

Use Analytics Manager to automatically perform engine analytical calculations.

 

Guide Concept

 

This guide will use ThingWorx Analytics Manager to compare external-data from an Edge MicroServer (EMS) "Engine Simulator" to a previously-built analytical model.

 

Following the steps in this guide, you will learn how to deploy the model which you created in the earlier Builder guide.

 

We will teach you how to utilize this deployed model to investigate whether or not live data indicates a potential engine failure.

 

You'll learn how to

 

  • Deploy and execute computational models
  • Define and trigger Analysis Events
  • Map incoming data to the Model
  • Map analytic outputs to applications

 

NOTE: This guide's content aligns with ThingWorx 9.3. The estimated time to complete this guide is 60 minutes

 

 

 

Step 1: Scenario

 

In this guide, we're continuing the same MotorCo scenario, where an engine can fail catastrophically in a low-grease condition.

 

In previous guides, you've gathered and exported engine vibration-data from an Edge MicroServer (EMS) and used it to build an engine analytics model.

 

The goal of this guide is to now operationalize that previously-created model to analyze individual, external readings to see if the "low grease" condition is currently happening.

 

57-esim-engine.jpg

 

Analytical model creation can be extremely helpful for the automotive segment in particular. For instance, each car that comes off the factory line could have an EMS constantly sending data from which an analytical model could automatically detect engine trouble.

 

This could enable your company to offer an engine monitoring subscription service to your customers.

 

This guide will show you how to put an analytic model of your engine into service to actively monitor performance.

 

 

 

Step 2: Configure Provider

 

In ThingWorx terminology, an Analysis Provider is a mathematical analysis engine.

 

Analytics Manager can use a variety of Providers, such as Excel, Mathcad, or even Analytics Server pre-built ones.

 

In this guide, we use the built-in AnalyticsServerConnector, a Provider that has been specifically created to work seamlessly in Manager and to use Builder Models.

 

  1. From the ThingWorx Composer Analytics tab, click Analytics Manager > Analysis Providers > New....

    01-meamv92-analysis-providers.png

     

  2. In the Provider Name field, type Vibration_Provider.
  3. In the Connector field, search for and select TW.AnalysisServices.AnalyticsServer.AnalyticsServerConnector.

    11_am_provider_popup_filled_out.png

     

  4. Leave the rest of the options at default and click Save.

    02-meamv92-new-provider.png
     

     

Step 3: Publish Analysis Model

 

Once you have configured an Analysis Provider, you can publish Models from Analytics Builder to Analytics Manager.

  1. On the ThingWorx Composer Analytics tab, click Analytics Builder > Models.

    03-meamv92-models.png

     

  2. Select vibration_model_s1_only and click Publish.

    04-elpm-publish-popup.png

     

  3. On the Publish Model? pop-up, click Yes.
    • A new browser tab will open with the Analytics Manager's Analysis Models menu.

  4. Close that new browser tab, and instead click Analysis Models in the ThingWorx Composer Analytics navigation.

    • This is the same interface as the auto-opened tab which you closed.

    04-meamv92-analysis-models.png
     
  5. Click the model to select it.
  6. At the top, click Enable.

    • Note the pop-up indicating that the Enable was successful.
     

    06-elpm-model-enabled.png

 
 

Step 4: Modify EdgeThing

 

In previous guides in this Vehicle Predictive Pre-Failure Detection Learning Path, you have created various Entities, including Things such as EdgeThing.

 

In order to automate the process of pushing data from EdgeThing to Analytics Manager, we need to add a few more Properties to EdgeThing.

 

These Properties are simple STRING variables, and we'll also set Default Values for them to configure parameters of Analytics Manager.

 

The first is causalTechnique, which tells Analytics Manager which criteria to use when measuring the impact of a feature on a range of goal values.

 

The second is goalField, which is simply the data field for which Analytics Manager should try to identify the correlation. In this case, it'll be our primary issue, i.e. low_grease.

 

It is not mandatory that these suggested Property names match, but they are the names used within ThingWorx Analytics. You could use any Property name you wanted, as you'll be mapping from a particular Property to the functionality within Analytics in a later step.

 

  1. Return to EdgeThing > Properties and Alerts.

    07-elpm-edgething-props.png

     

  2. Click + Add.

    02-meam-properties-add.png

     

  3. In the Name field, type causalTechnique.
  4. Check Has Default Value.
  5. In the text field under "Has Default Value", type FULL_RANGE.
    • Note that you MUST type FULL_RANGE, including capitalization, as that is a command within Analytics Server.

      03-mean-causaltechnique.png

       

  6. Click the "Check with a +" icon for Done and Add.
  7. In the Name field, type goalField.
  8. Check Has Default Value.
  9. In the text field under "Has Default Value", type low_grease.
    • Note that you MUST type low_grease, including being all lower-case, as that is the exact name of the Analytics Server goal.

      04-meam-goalfield.png

       

  10. Click the "Check" icon for Done.
  11. Click Save.

    08-elpm-edgething-saved.png

     

Results Storage

 

We also need a place in which to store the results that Analytics Manager returns.

We'll utilize a few additional Properties for that as well.

 

  1. On the EdgeThing > Properties and Alerts tab, click + Add.
  2. In the Name field, type Result_low_grease.
  3. Check the Base Type to BOOLEAN.
  4. Check Persistent.

    06-meam-result-low-grease.png

     

  5. Click the "Check with a +" icon for Done and Add.
  6. In the Name field, type Result_low_grease_mo.
  7. Change the Base Type to NUMBER.
  8. Check Persistent.

    07-meam-result-low-grease-mo.png

     

  9. Click the "Check" icon for Done.
  10. Click Save.

    09-elpm-saved-again.png

     

 
 


Step 5: Create Event

 

Events are automatic analysis jobs which are submitted based on a pre-defined condition.

In this step, we'll configure an Analysis Event, which will execute automatically whenever there is a data-change in our simulated engine.

 

  1. On the ThingWorx Composer Analytics tab, click Analytics Manager > Analysis Events.

    05-meamv92-analysis-events.png

     

  2. Click New....
  3. If not already selected, change Source Type (Required) to Thing.

    28_am_new_event_popup.png

     

  4. In Source, search for and select EdgeThing.
  5. In Event, select DataChange.
  6. In Property, select s1_fb1.
    • If there are multiple s1_fb1 Properties, select the first one, as the second one is the s1_fb1 entry in the Info Table Property.
  7. In Provider Name, select Vibration_Provider.
  8. In Model Name, select the published Model.

    06-meamv92-new-analysis-event.png

     

  9. Click Save.

    07-meanv92-new-event.png
     

     

 
Click here to view Part 2 of this guide.

 

Version history
Last update:
‎Mar 07, 2023 02:59 PM
Updated by:
Labels (2)
Contributors