Skip to Main Content
AVEVA™ PI System™ Feedback Portal

Welcome to our new feedback site!


We created this site to hear your enhancement ideas, suggestions and feedback about AVEVA products and services. All of the feedback you share here is monitored and reviewed by the AVEVA product managers.

To start, take a look at the ideas in the list below and VOTE for your favorite ideas submitted by other users. POST your own idea if it hasn’t been suggested yet. Include COMMENTS and share relevant business case details that will help our product team get more information on the suggestion. Please note that your ideas and comments are visible to all other users.


This page is for feedback specifically for AVEVA PI System. For links to our other feedback portals, please see the tab RESOURCES below.

Status No Status
Created by Guest
Created on Aug 19, 2022

Use calculation as tags

It would be nice to be able to propagate calculations within PI by calling for other calculated variables within a new calculation. For example, where X, Y, and Z are PI Tags, I have a calculation A = X+Y. I would like to add a new calculation B = A/Z without having to redo calculation A (i.e. B = [X+Y]/Z ). This would be VERY helpful for longer equations with multiple calculated variables! Thank you very much!
  • Attach files
  • Lucas Barker
    Reply
    |
    Sep 28, 2023

    This would be very helpful... for example to easily create a voltage/current imbalance calculation from power system data. This is what I have to input in the tiny box:

    max(abs('ADOBE _1 25 A PHASE BUS KV-A'-avg('ADOBE _1 25 A PHASE BUS KV-A','ADOBE _1 25 B PHASE BUS KV-B','ADOBE _1 25 C PHASE BUS KV-C')),abs('ADOBE _1 25 B PHASE BUS KV-B'-avg('ADOBE _1 25 A PHASE BUS KV-A','ADOBE _1 25 B PHASE BUS KV-B','ADOBE _1 25 C PHASE BUS KV-C')),abs('ADOBE _1 25 C PHASE BUS KV-C'-avg('ADOBE _1 25 A PHASE BUS KV-A','ADOBE _1 25 B PHASE BUS KV-B','ADOBE _1 25 C PHASE BUS KV-C')))

    Preferred, something like this would greatly enhance readability and potential for errors:

    AVG = avg('ADOBE _1 25 A PHASE BUS KV-A', 'ADOBE _1 25 B PHASE BUS KV-B', 'ADOBE _1 25 C PHASE BUS KV-C')

    DEV_A = 'ADOBE _1 25 A PHASE BUS KV-A' - AVG

    DEV_B = 'ADOBE _1 25 B PHASE BUS KV-B' - AVG

    DEV_C = 'ADOBE _1 25 C PHASE BUS KV-C' - AVG

    IMBAL = max(DEV_A, DEV_B, DEV_C)

    Thanks for your consideration.