Skip to main content

Connecting Motion Control in the Factory: Implementing Communication Protocols

Connecting Motion Control in the Factory, KollmorgenThe need for Ethernet-based communication within the factory has grown over the last 10 years. Detailed information about the tasks and performance of machines at every stage is critical to productivity. As capabilities have expanded from performance reporting to predictive maintenance warnings and beyond, the need to connect multiple controllers within the same machine and elsewhere in the factory has also grown.

This paper reviews options that are available for Ethernet and non-Ethernet connections within the motion controller. We will begin with a summary of what information can be transferred in and out of the motion controller followed by network and non-network examples for communicating with controllers. Finally, we will present the factors that need to be considered when choosing the right solutions for your factory.

Machine Control Formats

There are two formats when incorporating high-performance servo motion control in a machine.

In the example above, the motion and machine controllers are separate. The motion controller focuses on motion, and the machine control—a resident programmable logic controller (PLC) or personal computer (PC)—handles the rest of the machine control. The advantage of having a separate motion controller is that it will often have more functionality and processing power dedicated to motion performance. More motion types such as camming and more operational modes such as torque speed, gearing, and more time-critical input/output (I/O) are a benefit of standalone motion controllers. In addition, with motion control as the central focus, higher motion performance and precision is often possible when motion and machine controllers are separate.

The second type of machine control combines both the machine and motion control into one controller as shown in the example below.

Thanks to increasingly powerful processors, there are now motion controllers that include PLC functionality. This can eliminate the need for the PLC or a PC-based machine controller, potentially lowering total machine control cost.

Information Transferred

Motion controllers are used in a variety of industries including medical, laboratory automation, robotics, printing, labeling, material forming, pharmaceutical, packaging, food and beverage, tire and rubber, and postal sorting.

The primary data out of the motion controller is performance-related. The data can include how efficiently the machine is making product, how much product has been made, warnings about machine errors or limitations, and unexpected variations such as a heater in the machine operating at the incorrect temperature.

While knowing that a machine is operating properly and at peak efficiency provides peace of mind, knowing when it is not running properly can save money, time and resources.

Suppose you have a motor drawing more current than it should, indicating a mechanical problem, or a cut-to-length machine making improper cuts. Having a system programmed to provide real-time machine performance data is critical to identifying and fixing these issues quickly.

Information moving from the machine controller to the motion controller is command-focused. These commands could be instructions or recipes for machine setup—for instance, part numbers—or the parameters for making a specific widget. They could also include motion specs such as distance, speed, camming motion points and other operational details like periodic reminders for machine operators to perform routine maintenance.

 

Three Types of Information Transfer Mediums

Ethernet - PLC Oriented: These are the common industrial Ethernet fieldbuses incorporated into traditional PLCs such as Ethernet/IP, Profinet, EtherCAT®, SERCOSIII®, vendor-specific and others.

Ethernet-PC Oriented: These are traditional PC-based networks such as TCP, UDP and HTTP

Non-Ethernet Methods: Web servers, SD cards, remote memory, FTP and VPN/remote web access.

 

Ethernet Communications Basics

  • Transportation medium is copper wire, CAT5 or CAT6 cable with RJ45 termination. Cables can be up to 100 meters in length between each node.
  • Connection topology can be a line, a star or a ring, although many network implementations only support a subset of the three.
  • Built-in electrical isolation is needed in many motion or machine applications to help eliminate part variances and maintain precision motion control.
  • Transfer of information can be deterministic or nondeterministic, depending on the network and how it is configured.
  • Update times can be 500 milliseconds or higher, and down to 250 microseconds depending on the applications and the networks.
  • Automatic network configuration and integrity checks are available to ensure the quality of the network transmission.
  • Information passed between the motion controller and the machine controller or external controller is often called parameters, variables, or tags, in the form of single objects or in the form of data array or structure.

Modbus TCP/IP

The Ethernet-based Modbus® TCP/IP is built on the Modbus RTU protocol. It is an industrial standard used with and supported by a variety of devices and control products. Modbus TCP/IP has a standard address block scheme for transferring binary and non-binary data in 32-bit or 16-bit formats. It is non-deterministic, and the data update time can vary. In general, the performance range for update times between two devices is 20 to 200 milliseconds.

To integrate a Modbus TCP/IP interface into a motion controller, there will typically be a configuration setup in the motion controller’s programming software. In the example above, there is a selection for inserting a network into a Fieldbus editor.

Linking Modbus addresses to preset tags or variables is straightforward as there is no text programming required. Links are established either by the drag-and-drop method or by adding them via a dropdown dialog box.

Setting up the Modbus connection on the machine controller side requires the configuration of an IP address. Then, by importing a tag file, motion parameters are available for use in the machine controller’s tag or variable dictionary and application program.

Ethernet/IP

Ethernet/IP™ is widely used because of its flexibility, scalability and ease of integration. Possible configurations include Polled I/O, Flex I/O and Explicit Messaging. It can be built into motion controllers and can provide direct access to the motion controller’s machine and process parameters. Transmission update rates can go as low as 10 milliseconds with the Kollmorgen PDMM or PCMM controller, although many applications work well with update rates in the 30 to 100 milliseconds range.

Implementation on the motion control side is accomplished through a setup screen on which a user sets parameters pertinent to Ethernet/IP, and easily ties in the application program.

Built-in screens on the machine controller’s side allow for node and data table setup.

UDP (User Datagram Protocol)

UDP is gaining acceptance within the industrial automation world due to the simplicity and speed it delivers to machine control applications. UDP is often used in applications developed with Visual Basic (VB), Visual Studio (VS) C++, C# and others. These languages have typically been used outside the machine automation world, but the low communication overhead makes the protocol appealing to automation applications. It can provide very fast update rates as low as 1–4 milliseconds.

 
 
Function Description
udpAddrMake Build an address buffer for UDP functions
udpClose Close a socket
udpCreate Create a UDP socket
udpIsValid Test if a socket is valid
udpRcvFrom Receive a telegram
udpRcvFromArray Receive a byte array through UDP
udpRcvFromVar Receives the contents of a variable through UDP
udpSendTo Send a telegram
udpSendToArray Send a byte array through UDP
udpSendToVar Sends the contents of a local variable through UDP

Unlike in an Ethernet/IP setup, a UDP connection in a Kollmorgen PDMM motion controller is implemented without a fieldbus screen. Communication is established via PLC function blocks directly in the application program. Incoming information is read and parsed into motion control parameters.

HTTP (Hypertext Transfer Protocol)

HTTP has been called the protocol that makes the web work. Although not specifically developed for machine automation, HTTP can also be used in the factory automation world. Languages used in PC-based controllers such as Visual Basic (VB), Visual Studio (VS), Excel, C#, C++ and Java offer HTTP communications support. HTTP is non-deterministic, with communication rates of 50 to 300 milliseconds. This works well in applications that don’t need to pass time-critical information at the servo update rate, such as when communicating machine setup information.

In a motion controller, implementing the HTTP interface is done through the controller setup screen, making all of the variables in the dictionary available through the HTTP network. HTTP setup and communication of external controllers is simple, with transmissions only requiring the IP address of the motion controller and the parameter name.

The following is an example of HTTP communication from a VB2008 platform to the motion controller. It is a control screen/panel with controls to both read and write machine parameters. The data from the motion controller is read using a cyclic read command. Data transferred or written to the motion controller is event-driven when a user clicks on a button or enters a motion parameter value.

TCP (Transmission Control Protocol)

TCP/IP is one of the most popular networks in the world, commonly used in the office environment but also usable in the factory. In the motion controller, TCP/IP communications are implemented using dedicated function blocks.

EtherCAT

The speed and accuracy of EtherCAT makes it ideal for connecting devices such as remote I/O or drives to the motion controller. A common format in industrial automation applications is CAN Over EtherCAT (CoE), which enables data to be sent deterministically with update times as fast as one-fourth millisecond, or 250 microseconds. Data such as the type of part being made doesn’t need to be transferred during every cycle, so a non-deterministic side of the protocol, called SDO or Mailbox, handles those data transfers.

On the device side, a predefined ESI (EtherCAT Slave Information) file from the device vendor defines a set of parameters that can be transferred. Some parameters, called process data objects (PDO), are updated cyclically. Other parameters that are transferred at a slower rate in the background (SDO or Mailbox channel) can also be defined. Additionally, the motion controller, containing the EtherCAT master, can set device parameters when the network is initialized to configure the device for how it will be used in the application, as well as to scan for devices on the network.

In the motion controller interface, a window shows which parameters are PDO parameters and can be sent cyclically. In the setup, the user can link the cyclical parameters to PLC variables in an application. Parameters coming through the EtherCAT network can also be linked to PLC programming variables through specific controller function blocks. For example, if you need to read the position of a servo axis, a standard PLC open function block can be used, such as MC_ReadActPosition. On the motion controller side, a wide range of variables can be passed non-cyclically.

Multiple Connections

Some applications require multiple Ethernet-based network interfaces to connect to the motion controller. One way to accomplish this is through an external Ethernet switch connected to a single RJ45 port on the motion controller. In the example below, there are three connections: Modbus TCP/IP, Ethernet/IP and UDP. Modbus TCP/IP goes to the HMI. External controller #1 is connected via Ethernet IP, and a third connection uses UDP to connect to external controller #2 for SCADA implementation. One practical question to ask is how using three networks will affect performance. Users should carefully plan the networks in use, optimizing the update rate for each and the information transferred, as well as the update rates of the programs in the motion controller, to minimize any negative effects on performance.

New technologies such as 5G fast connections between factory devices are becoming commonplace. A motion controller that supports multiple networks helps users fit it in the Internet of Things (IoT) with their choice of network, allowing the motion controller information to travel around the factory and around the world.

Web Server

A web server can also be used to process information in and out of motion controllers simply by entering the IP address. Once connected, machine operation information is available as well as a certain amount of remote control.

The screenshot is from a web server on a PDMM series controller showing log files that can be opened to provide information on the state of the controller and how it’s running. These log files can help a controls engineer troubleshoot issues with the controller.

Operational data generated by the motion controller during machine operation can also be exported through the web server.

Memory Card

Another common way to access information is with a memory card. This method is not network-based, but a memory card allows users to import data into the motion controller and move operational data from the controller to a file. In addition, an SD (Secure Digital) card can be used to transfer controller, system and drive configuration information from one motion controller to another. This provides a time-efficient setup method for duplication of the controller’s firmware, application software and parameters from one machine to the next.

Remote Memory

Connecting to an external hard drive through an Ethernet connection is another option to pass information. To make the connection, the motion controller’s web server is used to set up the IP address and other information. An external hard drive can be accessed in the same building or from elsewhere, making it easier for the user to put information on a remote central memory location that stores factory-wide operation information. Also in the motion controller’s program, the remote memory files with operational information can be read when running the machine.

Which Network to Choose?

With all the options available, which one makes the most sense for your application? Considerations include:

  • What network protocols are on the present controllers you are using?
  • What is your personal experience with a particular network? For example, experience with Ethernet/IP or HTTP will help minimize the time to get the network up and working.
  • What is your supplier’s experience with a specific network? Do they have the application experience that is often critical for a timely integration?
  • Can the network update at the rates the machine requires? Look at your application specifics to determine what update times you need to pass the information. In many applications, there will be two levels—for example, information that needs to get there in 1 to 5 milliseconds and information that can get there in 50 to 200 milliseconds.
  • What is the network’s effect on other areas of motion controller performance? Will the network loading compromise other areas of machine performance?
  • Tools: For a particular network, what tools and documentation does the product/vendor have to help establish communications and monitor information that is passed?
  • What technical support (human interaction) does the supplier have in case you need it?
  • What third-party tools are available? With Modbus or HTTP or UDP, for example, there are free tools available online for setting up an interface to communicate with the motion controller.
  • What security and safety measures do they have in place?

Commissioning

Steps to getting the network to work and achieve the desired performance goals.

  • Define the need. What information needs to be passed through the network: Motion, process, IO, status, etc.?
  • What is the required update rate of each parameter?
  • Use an industrial grade Ethernet cable. The extra cost is well worth it to prevent any noise issues and machine downtime.
  • Set up communication parameters such as update rate, data size and IP address on the controller to establish the connection.
  • Start small. Get basic communication working first. Pick one or a few parameters to send and receive successfully. It is faster to make adjustments to a few parameters during the development process.
  • Add the rest of the parameters.
  • Verify machine performance on both sides of the network. Is all the information getting there and at the needed update rate? Are there any effects on motion or other aspects of the control?

Concluding Thoughts

Transferring information in and out of motion controllers is a function that is critical to the daily operation and overall productivity of today’s factories. This paper has presented many of the setup options that are available and many of the factors that need to be considered when determining which one works best for you.

Ethernet-based communication within factories has been on the rise over the last 10 years, and as more capabilities are developed to measure and track machine performance it is sure to keep growing. The diversity of applications and information available can provide a competitive edge for those factories making use of the technology. Building the expertise of your staff to include the most current technologies will put you in position to capitalize on new advancements.

 

FOR ANSWERS, PARTNER WITH KOLLMORGEN

Kollmorgen is more than a supplier. We’re a partner, dedicated to your success. We give you direct engineer-to-engineer access to the designers who create our motion systems and who understand how to address specialized material-forming requirements. Our self-guided design tools help you model, choose and optimize products online. And with our global footprint of manufacturing, design, application and service centers, you always have access to dependable supply, co-engineering expertise, and personalized support that no other partner can provide. Whether you’re upgrading an existing machine or designing the next-generation machine that will define the state of the art for your customers, we can help you engineer the exceptional.

Talk to a Motion Expert

Fill out this short form

to view this White Paper

-OR-

Login / Register

to gain access to Kollmorgen content

Privacy Statement - By sending us your contact details you agree that your personal data/user behavior can be electronically stored and processed. If you no longer wish to receive the enewsletter, you can unsubscribe at any time.

CAPTCHA

Kollmorgen Direct Drive Technology Enhances the Accuracy and Throughput of Electric Vehicle Battery Production

As electric vehicles promise cleaner, more sustainable transportation, the need for reliable lithium-ion batteries is skyrocketing. Battery manufacturers are looking for innovative ways to maximize production quality and speed.
Learn More

Kollmorgen Automation Suite™ Overview

Kollmorgen Automation Suite (KAS) includes all the software and hardware you need to bring truly differentiated, high-performance machines to market faster. KAS has been proven to measurably accelerate development, increase throughput, minimize scrap and maximize overall equipment effectiveness.

Learn More

Engineer the Exceptional

Learn how to engineer exceptional machines, robots and vehicles with the highest-performing, most reliable motors, drives, automation solutions and more.

Learn More

Related Resources

Kollmorgen Direct Drive Technology Enhances the Accuracy and Throughput of Electric Vehicle Battery Production

Kollmorgen Direct Drive Technology Enhances the Accuracy and Throughput of Electric Vehicle Battery Production >

As electric vehicles promise cleaner, more sustainable transportation, the need for reliable lithium-ion batteries is skyrocketing. Battery manufacturers are looking for innovative ways to maximize production quality and speed.
Ask The Experts: Kollmorgen Automation Suite

Ask The Experts: Kollmorgen Automation Suite >

Have you ever had a tough motion control question, wondering who you can turn to for expert advice? Our Ask the Experts series brings together Kollmorgen motion specialists to provide proven answers to the most common and challenging questions we…
How the Kollmorgen Automation Suite Helps Achieve Dynamic Motion Control

How the Kollmorgen Automation Suite Helps Achieve Dynamic Motion Control  >

High-speed registration, torque and tension control, camming, and circular interpolation are a handful of the motion challenges machine designers need to address in their high-quality machines. The Kollmorgen Automation Suite (KAS) combines our…
Kollmorgen Automation Suite injects some pace into metalworking

Pipes cut to order >

Cut to length in no time at all, with no shavings and hardly any burs: Kollmorgen Automation Suite injects some pace into metalworking
KOLLMORGEN FREYMATIC LeanCut Machine Brick Industry

Bricks that can put in an appearance >

Motion Control by KOLLMORGEN makes fast and precise cuts from the column of clay

Kollmorgen Automation Solutions and Product Catalog EMEA >

Kollmorgen Automation and Motion Control Kollmorgen: Your partner. In Motion. Every solution comes from a real understanding of the challenges facing machine designers and users.

Jakob Graphics Services GmbH Application Story EN >

The RC-500J jumbo roll collator, manufactured by the German-based Jakob Graphic Services GmbH, is raising the bar when it comes to processing a wide variety of printed continuous paper products.
Servo solution for tube extrusion

Breyer - Kollmorgen servo solution for tube extrusion >

Servo solution by KOLLMORGEN: Clean cuts with linear motor and rotating blades.
Kollmorgen Automation and Motion Control - Full line catalog

Kollmorgen Full-line Catalog >

At Kollmorgen, we know that OEM engineers can achieve a lot more when obstacles aren’t in the way. With direct sales, engineering support, manufacturing facilities, and distributors spanning the Americas, Europe, the Middle East, and Asia, we’re…