Virtual Lunch & Learn: Studio5000 Tag Based Alarms

Поделиться
HTML-код
  • Опубликовано: 26 янв 2025

Комментарии • 12

  • @chegist
    @chegist 8 месяцев назад +2

    Would be really nice to see HMI portion of configuring logix Tag Based Alarms

  • @lorenzofabbri440
    @lorenzofabbri440 Год назад +1

    Really useful lesson. Thanks Jeff

  • @inigoelias5690
    @inigoelias5690 2 года назад

    So useful video. Thanks! 👍

    • @mcnaughtonmckay
      @mcnaughtonmckay  2 года назад

      Glad to hear this was helpful for you. Thank you for sharing this feedback, and be sure to subscribe for more content like this!

  • @MarcRobichaud-e3d
    @MarcRobichaud-e3d Год назад

    Can you use Alarm Group status to trigger an action in the PLC logic ? I.E. turn ON a horn when any alarm in an alarm group comes ON ?

    • @mcnaughtonmckay
      @mcnaughtonmckay  Год назад

      Hello, this is best done through View SE or with a PanelView 5000. You will find the options to trigger horns based on alarm groups in the object properties and could configure it to their liking. If you have further questions or concerns, we recommend reaching out to your local Rockwell Automation distributor for support.

  • @robertcanary7155
    @robertcanary7155 2 года назад

    Okay, so you say there is nothing to do in the PanelView. How do we associate this with the panelview, so it shows up in the panelview?

    • @Webcrawler45
      @Webcrawler45 2 года назад +1

      Robert, I has to be a Panelview 5510 or 5310. You will also need a 5580 ControlLogix Processor or a 5380 CompactLogix Processor. Then you only need to set up the Alarm and Events in the panelview to subscribe to the PLC’s alarm an events server. Then any Tag based alarm or any instruction based alarm you create will show up in the alarm event viewer without any further action in the Panelview.

  • @collinhodges8840
    @collinhodges8840 3 года назад

    How can you see the status of the alarm in the PLC? Meaning can I see if an alarm is on in the PLC?

    • @Webcrawler45
      @Webcrawler45 3 года назад +1

      In Studio 5000, you open the “Alarm Manager” from the Left side menu, then select the alarm and select “status” from the side menu option for the alarm.

    • @collinhodges8840
      @collinhodges8840 3 года назад

      @@Webcrawler45 thanks for the reply. That is helpful to see that it is on in there, but is there a way use the status of the alarm in your code.For example, in the video you mentioned that if the alarm comes on you could shut something down. How do I tie logic back to an alarm, or do you just put all your logic and then tie the alarm to that? I don’t want to set a high limit in the alarm and in the logic because at some point they will get changed and not sync.

    • @Webcrawler45
      @Webcrawler45 2 года назад

      @@collinhodges8840 Since this is an alarm tag, you can use it’s alarm attributes in the code. Logix Tag-Based Alarms use FactoryTalk Alarms and Events to deliver alarm tag status and condition. In FactoryTalk View SE, browse for the base tag, then type:
      .@Alarms
      .Alarm_Name
      .Alarm_Attribute (InAlarm, Limit, OperAck….)
      When complete the alarm tag will look similar to the following:
      /AreaName::
      I would refer to tech note IN7565 for more details.