PLC Programming HandbooksPopular ArticlesNavigationUser login |
An Introduction to RSLogix5000 TagsTags are the method for assigning and referencing memory locations in Allen Bradley Logix5000 controllers. No longer are there any physical addresses such as N7:0 or F8:7 which use symbols to describe them. These have been replaced with tags which are a pure text based addressing scheme. This is a departure from the more conventional ways of programming PLC’s, which includes Allen Bradley’s earlier line of PLC5 and SLC 500 controllers. One of the hardest transitions from the older systems is realizing how the tag database works. The person with experience in Allen Bradley systems will recognize many of the instructions and be at home with the editor in RSLogix 5000. Understanding the tag database is the first major hurdle in becoming comfortable with the ControlLogix and CompactLogix systems. So let’s dig in and get started. The Way We Used To BeEarlier Allen Bradley PLCs programmed with RSLogix 5 and RSLogix 500 software had data files to store I/O and other internal values. These different data files could only hold one data type. A data type defines the format and the size of the stored value. Default Data Files Data File Descriptions
While this method made it easy for using instructions, it provided a challenge for logically grouping different data types together according to function. For instance, in machine control, a motor may have a start, stop, speed and alarm code each with its own data type. Thus, the data was “scattered†throughout the data files.
Comparing the Old and NewThe Logix5000 controllers have done away with data files and in its place is the tag database. The tag database organizes memory locations in one place. Each tag is assigned its own data type. The table below shows the association between the current data types and the older systems with data files.
Creating a TagOne way to create a new tag is right click on the Controller Tags in the Controller Organizer and select New Tag. Even faster is the Ctrl+W hot key.
The following dialog box pops up.
The Name given to the tag has the following rules:
While tags are not case sensitive, it is good practice to mix cases for readability. It is much easier to read Line1_Start then LINE1START or line1start. In addition, the tag database list sorts alphabetically. Therefore, it is best to use similar starting characters when you want tags to be together in the monitor list.
Use the Description field for a longer description of the tag. It is best to keep names short yet not cryptic. Tag names are downloaded and stored in the controller but the description is not as it is part of the documentation of the project. The tag Type defines how the tag operates in the project
Alias tags mirror the base tag to which they refer. When the base tag value changes so does the alias tag. Use aliases in the following situations:
Produced and consumed tags make it possible to share tags between controllers in the same rack or over a network. This article does not cover this aspect. Select a Data Type for the tag by typing it in or by clicking on the ellipsis button and selecting it from the list. A data type is a definition of the size and layout of memory allocated for the created tag. Data types define how many bits, bytes, or words of data a tag will use. The term Atomic Data Type refers to the most basic data types. They form the building blocks for all other data types.
Logix5000 controllers are true 32-bit controllers, meaning the memory words are 32-bits wide. No matter what, a tag always reserves 32 bits of memory even if it is a Boolean or integer data type. For this reason, it is best to use a DINT when dealing with integers. Furthermore, a Logix5000 controller typically compares or manipulates values as 32-bit values (DINTs or REALs). A Logix5000 controller lets you divide your application into multiple programs, each with its own data. The Scope of the tag defines if a tag is global (controller tags) and therefore available to all programs or local (program tags) to a select program group. Pay careful attention to this field as creating it in the wrong area may lead to some confusion later on as to its location.
Controller Tags are available to all programs. You cannot go wrong using controller scoped tags unless you easily want to copy and paste programs. A tag must be controller scoped when used in a Message (MSG) instruction, to produce or consume data and to communicate with a PanelView terminal. Program Tags are isolated from other programs. Routines cannot access data that is at the program scope of another program. Having program tags make it easy to copy/paste programs and not have to worry about conflicting tag names. Make sure though that no controller tags are named the same as program tags. Style is the form in which to display the tag by default. The following table provides you with information on the base and notation used for each style.
Edit and Monitor TagsTo edit existing tags select the Logic > Edit Tags menu item. A spread sheet like view lets you create and edit tags.
Clicking the + sign next to a tag reveals its structure. For a DINT tag this is the 32 individual bits that make up the tag which will not be of interest if you are using the tag as a number rather then individual bits. If you do wish to use the individual bits then you can address them in this way with the tag name followed by a period and then the bit position (e.g. MyTag.5). Shown below is the expanded structure for a TIMER. Notice it is made of two DINTs and three BOOLs. In this case, the Booleans are packed into one DINT and therefore a timer uses three DINTs of memory.
An Easier Way to Create TagsThe easiest way to create tags is on the fly while programming. When an instruction is first used a “?†will indicated the need for a tag. There are three options at this point:
The nice thing about all these methods is that RSLogix5000 will automatically fill in the correct data type according to the instruction used. Another quick method is to drag and drop an existing tag to a new instruction. Make sure to click on the tag name rather then the instruction.
ConclusionThese are the basics of tags. The advantages are:
Advance subjects include arrays, user defined data types (UDT) and Add-On Instructions. Hopefully, you will continue to learn more about the power of tags. There is no doubt that if you grasp the principles presented here you will be well on your way to using and troubleshooting any Logix5000 controller. ( categories: )
|
plc softwear
dear Sir,
I have many plcs (omron,mitsubishi,simmens,toshiba)i need the softwear that reads all the obove PLC's .
Regards,
Alezz Zak
Many people ask me about
Many people ask me about getting the programming software for different PLCs. You'll have to contact a local distributor, talk to their sales people and buy the right package for your needs. PLC software is typically not free.
With the exception of the AB
With the exception of the AB Micro 800 family that you can download FREE software for THAT FAMILY only (Micro 800, 830 & soon to be released 850). Also ask your AB distributor for a CD if you don't want to download it.
many plc
try openplc (iec1131) this can do your job
http://www.plcopen.org
Had you got it?
Had you got it?
many PLCs
:) wouldn't we all :(
There is no single software
There is no single software program that will run all the different PLC types, or even all the PLC's of a single manufacturer. You have to get the software for the specific manufacturer, family and version of PLC you want to program.
Emulator
Actually I want a plc emulator software for practice.
So how i get this?
It's the same with a
It's the same with a software emulator in that you'll have to talk to the vendor of the equipment. Some manufacturers sell an emulator and some don't.
plc simulator
i want it immediattly!!!!!!!!!!!!!!!thanks!!!!!!!!
simulador de plc
para hacer mis practicas de estudios y poder aplicarlos por que es un buen programa
PLC simulator
PLC simulator is an electronic interfacing device to simulate PLC I/O in different ways like to enable or disable the signals
plc emulator
were you able t get the emulator
knowledge
I am interested in learning PLC programming.
After years of SLC and PLC5,
After years of SLC and PLC5, I have a week to get up to speed on logix5000. I have to admit, i dont get the tagging....doh!
Excellent write up! THANK
Excellent write up! THANK YOU !
"Tags are the method for
"Tags are the method for assigning and referencing memory locations in Allen Bradley Logix5000 controllers. No longer are there any physical addresses such as N7:0 or F8:7 which use symbols to describe them. "
N7:0 and F8:7 are not physical addresses. They're logial addresses. Only I and O addresses are physical.
"These have been replaced with tags which are a pure text based addressing scheme. This is a departure from the more conventional ways of programming PLC’s, which includes Allen Bradley’s earlier line of PLC5 and SLC 500 controllers."
A tag is simply an alphanumeric string that points to a location in memory. That's all. It is no different than the fact that data table locations in PLC-5/SLC500/MicroLogix controllers contain alphanumeric strings that point to locations in memory.
There are NO differences between a tag and a data table address. Both are an alphanumeric string that points to a location in memory.
The only difference is that the alphanumeric string is pre-assigned a name and structure in the PLC-5/SLC500/MicroLogix that doesn't afford renaming and doesn't allow for the symbol associted with it (if used), to be downloaded into the controller.
Too many people are gettign hung up on what they perceive or have been taught with respect to tags in ALL of these processors. It would not be programmatically or logically incorrect to refer to N7:28 or F8:27 as a tag in a PLC-5.
Great to hear from someone who actualy knows
Who actually knows and understands what they are talking about. He is correct, Tags just point to memory locations, just like symbols always have. A PAC (IE: Controllogix/RSLogix 5000) is just the evolution of the PLC more closer to computers, where it has more memory and can store symbols/tags and where the internal physical addresses are hidden by higher level operating system and all you see and have access to is the tag, just like computers and windows does.
Also someone was wanting more training on PLC (not PAC), see http://www.bin95.com/Troubleshooting-PLC-Controls-Simulator.htm to gain years of troubleshooting experience with PLC simulator in just days. Same site has PAC training CD too, to introduce you to differences.
I remember my first Reliance
I remember my first Reliance DS. It was all tags in the early 90's. Rockwell bought out Reliance and years later AB is using what every Reliance programmer already knows how to do. Small world.
I remember my first Reliance
I remember my first Reliance DS. It was all tags in the early 90's. Rockwell bought out Reliance and years later AB is using what every Reliance programmer already knows how to do. Small world.
info abut plc prograning
Sir i m new user here.plz sujjest me.i dont know abut any language.becoz language r not easily understoodable for everyone.can anyone tell me which type of this plc language i m so confused..that will i take admisson or not.this plc language is easily understandble for me or not..plz tell me anyone..
PLCdev | Tools for PLC programming
Hey There. I found your blog using msn. This is an extremely well written article.
I'll make sure to bookmark it and return to read more of your useful info. Thanks for the post. I will definitely return.