-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AdsNotification cycle time deviation #216
Comments
Your first bullet point is the culprit. Remove TwinCAT and ADS from your benchmark and run it on a bare TCP connection. You will see most of your Jitter is systematic to TCP/IP. |
ADS is not a fieldbus and was designed for acyclic communication. ADS notifications provide the option to collect data from every PLC cycle and you will not miss a value (cmp. to polling) of your 1Khz signal. But TCP/IP (even if UDP is used) as already mentioned and the OS (UM/RT context switching) will cause a jitter, even if your ADS client and PLC runs on the same system. For deterministic TCP communication with TwinCAT systems you can use network variables (TwinCAT 2), EAP (TwinCAT 3) or TwinCAT 3 TCP/UDP RT function. |
Thanks ! I have a Linux PC on one side and a PC with Windows running a TwinCAT program on the other side. I'm also reading about EtherCAT Master software stacks, which uses cyclic data exchange via PDO mapping. I think I would need a real time driver + real-time kernel to match EAP deterministic communication... This acontis blog reviews 3 stacks (check the Supported EtherCAT Master Features section):
I will probably test out SOEM with a Linux PREEMPTED kernel to see if I can have more reliable data exchanges. Can EAP be implemented on Linux ? |
Hopefully, it should be supported by https://www.beckhoff.com/en-en/company/news/multimedia-twincat-runtime-for-linux-r-from-beckhoff.html |
This is similar to #215. I need to get a reliable stream of data (304 Bytes) at 1kHz using the
AdsNotification
approach. I get inconsistent timing (see timing below). This can be due to:For the benchmark below, I have reduce my Twincat program to be as fast as possible and the callback on linux does nothing.
Is there a way to have a better timing tolerance between each packets received. Could the server side use a pool of threads or something else entirely to improve this behavior ?
# Elapsed time between previous and current callback (1kHz -> 0.001 seconds) AdNotification= 0.00117044 seconds AdNotification= 0.00093865 seconds AdNotification= 0.000897969 seconds AdNotification= 0.0010241 seconds AdNotification= 0.000986944 seconds AdNotification= 0.00182602 seconds AdNotification= 0.000157791 seconds AdNotification= 0.00118531 seconds AdNotification= 0.000804247 seconds AdNotification= 0.000995989 seconds AdNotification= 0.00100133 seconds AdNotification= 0.00100328 seconds AdNotification= 0.00103729 seconds AdNotification= 0.00104816 seconds AdNotification= 0.000939896 seconds
The text was updated successfully, but these errors were encountered: