Visual Process Intelligence.

Advanced Process and APC Analytics, at a glance.

Image Description
Image Description
Image Description
Image Description
Image Description

Aggregate Data Sources

Integrate and organise data from real-time and offline data sources:

  • Process Data

  • APC Data

  • Laboratory Data

  • Manual inputs and any structured text

Integrate data from historians, enterprise real-time data managers, and structured files.

Image Description

Advanced Visual Analytics

  • View one timestamp across multiple tags

  • Generate layers to define bounds of each variable

  • Scrub data and reorder axes to visualise better

  • Generate selections of groups of data points

  • Filter out data either locally on only that chart, or globally throughout the application

  • View multiple tags across timestamps

  • View selections coloured differently in the background

  • Zoom in to the data to pinpoint critical sections

  • View multiple axes of data and order tags by axis

  • Filter data and interpolate sections of the trend from within VPI

  • Select a normal of cumulative distribution

  • View APC performance mean and standard deviation instantly

  • Access statastics for each distribution

  • Show gaussian curve of any selection

  • See distribution of each selection overlayed within the chart

  • View the relationship between two tags within a scatter plot

  • See each selection coloured differently within the scatter

  • Charts available in a square or rectangle relationship

  • Generate repeatability and reproducability plots within the scatter

  • Add regressions to the chart

Data Monitoring

Connect to live data sources and interact with Parallel Coordinates plots in real time.

  • Live connection to historians

  • Live Charts

  • Live Applications

Live updating across our feature charts allow for the fastest analysis possible.

Image Description

Data Analysis

Use VPI to generate interactive charts with any type of data, instantly.

  • Parallel Coordinates

  • Trendline

  • Frequency Plot

  • Scatter Plot

  • Standalone Statistics Table

View the same timestamp across multiple variables in our Parallel Coordinates.

Parallel Coordinates

Special Applications

Use our applications to accurately model parts of a plant and easily run calculations on them.

  • Main Fractionator (Near Rigorous Model)

  • Light Ends (Near Rigorous Model)

  • Partial Least Squares

Design a column, assign variables, and run calculations.

Integrations & APIs

You can integrate VPI with your favourite real-time data aggregation service through our REST APIs. Read VPI-organised and processed process and APC data as well as model data and KPIs. You can also integrate VPI's advanced charting tools in any HTML5-enabled dashboarding tool, including Parallel Coordinates and multi-chart panels.

VPI includes a HTTP data API which allow you to access your data externally. You can access data for real DCS tags, calculated tags, KPIs, inferential predictors and more. Simply initiate a request to the VPI data API:


                GET /api/114/data?
                  auth_token={Auth Token}&
                  tags[]=2.REAL&
                  tags[]=3.REAL&
                  start_timestamp=2019-09-01 00:00:00&
                  end_timestamp=2019-09-03 00:00:00
              

And receive a JSON or CBOR formatted repsonse:

            
            [
              {
                "timestamp": 1567382400,
                "TC666": 113.567,
                "QC666" :88.5093
              },
              {
                "timestamp" :1567382460,
                "TC666": 116.331,
                "QC666": 88.4133
              },
              {...}
            ]
            
              

VPI includes a HTTP KPI API which allow you to interact with an external historian. You can access data for real DCS tags, calculated tags, KPIs, inferential predictors and more. Simply initiate a request to the VPI data API:


          GET /api/114/data?
            auth_token={Auth Token}&
            tags[]=2.REAL&
            tags[]=3.REAL&
            start_timestamp=2019-09-01 00:00:00&
            end_timestamp=2019-09-03 00:00:00
              

And receive a JSON or CBOR formatted repsonse:

            
            [
              {
                "timestamp": 1567382400,
                "TC666": 113.567,
                "QC666" :88.5093
              },
              {
                "timestamp" :1567382460,
                "TC666": 116.331,
                "QC666": 88.4133
              },
              {...}
            ]
            
              

VPI's charts API allows you to request any of it's visualisation utilities by URL. These can be embedded in external dashboards or used for monitoring. Simply make a request to VPI's charts API:


                    GET /analysis/137/cases/2/scatter/7?
                      auth_token={Auth Token}&
                      embedded=true&
                      standalone=true
                  

And receive a frame-less fully interactive chart as a response:

VPI Scatter Plot

Unfortunately, our charts are still being optimised to run on smaller screens. To view the interactive chart, please visit on a larger screen.