user defined data type in rslogix 5000

md.abdullah

Member
Join Date
Sep 2011
Location
motihari
Posts
168
hello every one
as i am new to this forum
i want to know detial of udt in rslogix 5000
does all tags in udt get in my program?
if i have to write program still then what is benefits of udt
simply we can make tags differentially.
i am making instrument calibration interpolar by udt
give me some idea about it
 
UDT's are a convenient way to combine all the storage required for some function in a single place, and promote easier reuse of code.

They are just data structures, why would you think that they would obviate the need to write a program using the data?
 
thanks for the quick response rd
can i make calculation tag in udt
if yes then how
please provide me some useful link for the detail
thanks agian
 
After reading the Allen Bradley material you may come to realize that a UDT is not a tag, it is the template for a (possibly) complex tag. Just as INT and DINT and STRING are not of themselves tags but are the definition of the structure of a tag, your UDT is the description of a structure. After making your UDT, when creating your tags you can select your UDT from the list of types just as you can select DINT or REAL.

In a like concept, and AOI is a definition of a logic structure with its acceptable types of variables. You create it then, at the appropriate point in the program you create an 'Instance' of it (much like creating a tag using the UDT as the template).
 

Similar Topics

Hi all, is there an easy way to reset a user defined shift register to 0? i have a data type containing 8 bools for an array of 10 and would like...
Replies
12
Views
3,195
Guys, I need some advice. I'm trying to use for the first time "UDT" on a CLX processor. I have this pneumatic valve with an E/P transducer that...
Replies
18
Views
5,118
Hello everybody. Currently I am doing a project for my masters degree in EE, and one of my tasks is displaying data log on a user defined web...
Replies
0
Views
2,699
Hi, I am a complete newbie to PLC programming. I have been asked to create a database for program modules which in future can be useful in saving...
Replies
1
Views
1,966
Is there a command that you can use against a UDT that will fill it with zeros? Of course the UDT has dint, bool and strings... EX: FLL...
Replies
14
Views
11,303
Back
Top Bottom