Controllogix Time Synchronization

Lovell

Lifetime Supporting Member
Join Date
Feb 2013
Location
Saskatchewan, Canada
Posts
120
I am running into an issue with time synchronization between a 1756-L81E and 1756-L83E.
.
L83E is the system time master. Enable Time Synchronization is checked.
L81E is a synchronized time slave. Enable Time Synchronization is checked.
.
I have a DST instruction toggling Adjust for Daylight Savings time in the time master. It is currently checked.
.
The time slave Adjust for Daylight Savings time is not changing with the master. It is currently NOT checked.
.
. Time is in sync except it is an hour off while DST is happening.
.
Do I need a DST instruction in both?
.
Anyone have experience with this?
 
Last edited:
The TimeSync object has no knowledge of or bearing over DST. It deals in UTC.

DST is handled by the Logix WallClockTime object. Performing a GSV for its attributes, you can get the DateTime or LocalDateTime. The former is pure UTC (effectively governed by the TimeSync mechanism, when enabled), the latter is derived from UTC + Zone offset (hours and minutes) + DST offset (minutes, when DST is enabled).

You could set up a produce-consume block or message handler to "synchronize" the DST attribute between the two. This need not be deterministic since the LocalDateTime result is derived from the already-synchronized DateTime anyway.

I strongly encourage any and all timestamping you perform to be in UTC. It's universal and you only need to concern yourself with aspects of local time when presenting the data.
 
Last edited:
I like that idea. I will GSV the ApplyDST from WALLCLOCK in time master and produce to the slave PLC. Then SSV the value to WALLCLOCK ApplyDST.

Thanks!
 

Similar Topics

Hello everyone, has anyone managed to communicate Twido with Controllogix using the Ethernet connection?
Replies
1
Views
86
I'm trying to integrate a Beckhoff IPC with a Controllogix PLC. There is some documentation, on the Beckhoff website, on how to do a PLC-PLC comms...
Replies
0
Views
149
Why does the controllogix redundancy modules use a single mode fiber vs multimode fiber?
Replies
1
Views
117
Hello, I have two 16 point input cards and 1 16 point output card showing module faulted on my IO tree in Logix Designer. The fault code is...
Replies
7
Views
246
Hello, My associate and I are trying to sync up two ControlLogix racks (7-slot chassis) with identical modules. We are able to see the secondary...
Replies
4
Views
248
Back
Top Bottom