InTouch Historical Trend Scaling

Jhondo

Member
Join Date
Oct 2014
Location
Nebraska
Posts
2
I am trending several run signals as well as pressure on an 8 pen InTouch Historical Trend. The run signals scale to either a 1 or a 0 (running or off). When the 1 is displayed on the trend, the line is at the very top of the trend making it difficult for the operator to see. There is no way in the Tagname Directory to scale an I/O Digital so is there another way to scale the trend so the "run" would show up in the middle of the trend instead of at the top?

Thanks,
Jeff
 
I am trending several run signals as well as pressure on an 8 pen InTouch Historical Trend. The run signals scale to either a 1 or a 0 (running or off). When the 1 is displayed on the trend, the line is at the very top of the trend making it difficult for the operator to see. There is no way in the Tagname Directory to scale an I/O Digital so is there another way to scale the trend so the "run" would show up in the middle of the trend instead of at the top?

Thanks,
Jeff


You could use a script to copy the value of your discrete tag to a memory integer with an EU range of -1 to 2.
 
A little more info on Bit Bucket 07 post...

Make new Memory Integer tag "AnalogDigitalTag". Set Min Value = 0 and Max Value = 2

Build "Data Change" Script on DigitalTag

IF DigitalTag == 1 THEN
AnalogDigitalTag = 1;
IF DigitalTag == 0 THEN
AnalogDigitalTag = 0;
ENDIF;
ENDIF;

Warning....a "Data Change" script only acts if it SEES the data change. It may not react when you start Intouch, until the digital tag changes state.
There are some other alternatives if this is an issue.

You can adjust Min and Max value on Analog tag, and also change AnalogTag = # in script to different numbers to place line on chart where you want.
You can expand on this for different locations on chart for different Digital Tags.
 
Last edited:

Similar Topics

Hi !!! I'm getting rid of the old IT10.6 that was working on Workstation. I'm using servers with ThinClient (NAD enable). If I run the app, now...
Replies
2
Views
1,390
Hello, I am working on a SCADA system using Wonderware Intouch 2014 R2 and have a small glitch with the historical trend feature. Every time I...
Replies
5
Views
2,851
Hi! I have problem with Historical Trend, it always shows me a black graph, if I right click on the graph and go into "Historical Trend Setup...
Replies
1
Views
2,632
Dear All, We have WinXP_Sp3, and Intouch V10.1. PLC Siemens S7 400+300. Problem1: Today we had power failure in One of two HMI stations. When...
Replies
1
Views
7,473
Hi,friends i tried to make historical trend in intouch 10.i have assign 2 memory integer tags as pen, In historical trend i use black as border...
Replies
7
Views
9,584
Back
Top Bottom