Have issue in response time, reading from power meters connected over RS485 network in Ignition (8.1.42). 14 meters connected over RS485 -> gateway -> Ignition modbus TCP OPC.
Good meters - Switched on
Bad meters - Switched off
Now when:
When all meter devices are enabled in Ignition - Response time is slow for good meters and quality of all meter tags is good.
When bad meters are disabled in Ignition - Response time is fast for good meters and quality of all meter tags is good.
Ignition is slowing down reading of modbus tags when bad meters are enabled. Playing around with settings, highlighted in 'red' in the screenshots.
What could be the ways to improve the response time when all meters are enabled in Ignition? Appreciate any help..
Modbus on serial or RS-485 is fundamentally slow. You show a baud rate of 9600. That's going to kill performance, even in the best circumstances.
RS-485 is a shared bus. Only one device can be interrogated at a time. If it doesn't respond (there's a timeout setting you can adjust), all the other devices must wait. This is also fundamental to shared busses.
IA's driver will keep sending all requests for a poll group to a broken device, despite the failures. My alternate driver short-circuits this, failing all pending requests to a particular slave when a request times out. Speeding up access to the other devices. You might get acceptable performance by switching drivers.