Jump to content
OMRON Forums

Localizing ECAT link outages


jhenning

Recommended Posts

We have a CK3E (FW 2.7.0.0)  with 31 EtherCAT slaves attached in a tree topology.  In case a station is lost due to cable problems or power loss we would like to identify where in the tree the problem occurs.  Our code is all in BGCPLCs, so a solution using C language constructs is desirable.

I have code that works:

    for (j=0; j<31; j++) {
        pshm->P[10] = j;
        Command ("L0 = P10");
        Command ("P11 = ECAT[0].Slave[L0].Online");
        if (! pshm->P[11]) { fault handling }

   }

Unfortunately it is very compute intensive, ~600us to complete the loop.  Given all the information gathering in Acontis, is there a PMAC variable or command that would immediately recognize and localize a station loss?

We could probably approach this in a more hardware-oriented way: since all stations have a digital input terminal, one line could be made always active, so if it reads 0 a station outage would be indicated, but this would be a fallback solution.

Thanks!

John

 

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

You may be able to identify a “gross” EtherCAT device “issue” in a PLC looking at one or more of the following elements and then run your BGCPLC to identify which slave is the offender:

Motor[x].AmpFault

ECAT[i].Error

ECAT[i].LineCrossed

ECAT[i].NotAllDevsOperational

ECAT[i].RTDomainOutputState

ECAT[i].Status[i] ;i=0-3

 

Link to comment
Share on other sites

Yes, using pshm->ECAT[0].NotAllDevsOperational to detect slave loss does make this PLC much more efficient (25% decrease in BG CPU usage) under normal conditions.

    if (pshm->ECAT[0].NotAllDevsOperational) {
        for (j=0; j<31; j++) {
            pshm->P[10] = j;
            Command ("L0 = P10");
            Command ("P11 = ECAT[0].Slave[L0].Online");
            if (! pshm->P[11]) { fault handling }

       }

   }

Thank you.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...