New Community Ranking System
Our Community ranking system has recently been updated. You may notice changes in user rankings and receive system messages or notifications. If you have questions about how the new ranking works, please refer to the announcement post for more details (click here).
Allen Bradley Communication
Digital Twin
This knowledge base is addressing usage of software Experior, Machine Expert Twin and future Automation Expert Twin. These softwares are used to create smaller instances of digital twins for use in industrial automation, warehouse management, design & engineering with more..
Search in
Improve your search experience:
Exact phrase→Use quotes " "(e.g., "error 404")
Wildcard→Use * for partial words(e.g., build*, *tion)
AND / OR→Combine keywords(e.g., login AND error, login OR sign‑in)
Keep it short→Use 2–3 relevant words, not full sentences
Filters→Narrow results by section(Knowledge Base, Users, Products)
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Experior communicates with Allen Bradley PLCs through the CIP protocol. The CIP protocol works by sending tables of data between Experior and the PLC. The datatype of these tables can be BOOL, SINT, INT, DINT or BIT64.
The PLC must have corresponding tables that contain the same datatype. At the start of the scan the values of PLC input tables can be mapped over to the correct variables in the PLC program. At the end of the scan the relevant output values can be mapped to the output tables.
The advantage of this approach is that input and output values will not change mid-cycle.
Experior Setup
First right-click in the communication panel and select EtherNet/IP – CIP
Select the connection. The properties for the connection will be shown in the properties window
The property of interest is the Size property. This property defines the data type of the tables for this connection. The corresponding tables in the PLC must be of the same datatype
Next create a lamp and a button in the Control Panel. Select the lamp
The properties window will either have a category called PLC Input or PLC Output (depending on if you chose the lamp or the button).
The Connection id property defines which connection is being used. Slot defines what table is being used. In this case Local_1, can be changed to anything. Address defines what entry of the table is being used (starting from 0). Bit No. defines that bit of the selected Address will be used (starting from 0). Bit No. can only be chosen for PLC input/outputs that are of the type bool.
Set a value for the Address and Bit No. Do the same for the other component in the Control Panel.
PLC setup Each table that is created in Experior has two corresponding tables in the PLC – one for inputs and one for outputs. This means that in the button and lamp example, both can use the same Address and Bit No. in the same table since they will be sent/received from two separate tables in the PLC. Experior will expect the PLC to have tables corresponding to the tables that are in Experior. The tables in the PLC must be names as follows:
Exp_datatype_Input_Experior table name Exp_datatype_Output_Experior table name