I need to log temperature from more than 300 thermocouple points connected to dt80's and cem module and need to activate alarm if any exceeds temperature 50 degc.
As a trial run i tried a small program with 3 thermocouple sensors ie if any of the sensor goes above 30 then 1dso should go low.but when i program using dex the alarm is working properly with the last or the third thermocouple but with the first and second thermocouple the 1dso will go low only for a fraction of a second when the condition is achieved at each scan.with the third one it stays low as long as the temperature returns back normal.i hope this happens because i cannot combine alarms using "or" condition in dex.
i need to program using dex because i want the alarm indication in the channel list to work in order to identify the alarming channel.
BEGIN"NEW"
RA2S
1..1-TK
ALARM(1TK>30)OR ALARM(1+TK>30)OR ALARM(1-TK>30)1DSO
1DS
END
this above program i wrote on dtransfer is working fine but did not provide me alarm indication on channel list.