DEV Community

sanghivivek
sanghivivek

Posted on

Is OPC UA the future of IIOT?

Since we are discussing OPC-UA as the future of IIOT, We need to first understand the definition of IIOT. As per Wikipedia, IIOT is The interconnected sensors, instruments, and other devices networked together with computers’ industrial applications, including manufacturing and energy management.

In a nutshell, the Industrial Internet of Things is getting all the data in digital format within the manufacturing facility /unit/ Enterprise. Any consumer of data can get access to the data when they need it.
The IIoT is enabled by technologies like cloud computing, cybersecurity, edge computing, mobile technologies, machine-to-machine, 3D printing, advanced robotics, internet of things, RFID technology, and cognitive computing.
What is OPC UA?

Now we need to understand what OPC-UA is so that we can better understand how it is related to IIOT. Let’s see the definition of OPC-UA by Wikipedia,

OPC Unified Architecture (OPC UA) is a machine to machine communication protocol for industrial automation developed by the OPC(Open platform communications) Foundation.

It is an industrial standard for packaging the data from the edge, Edge is machined in industrial units, PLCs, Pneumatic controls. OPC-UA is standard for how you communicate between servers and the devices placed in industrial units, how data should be packaged in its payload.

OPC-UA is the grandchild of OPC-DA( Data Acquisition). OPC is all about data exchange. While OPC-DA is based on D-COM and can work only with Windows products. It is not compatible with Linux or MAC. OPC-UA is the advancement of OPC -DA, OPC-UA is technology agnostic. One can run on Linux, Windows or MAC.

Both standards are written by the OPC Foundation. The OPC Foundation is an industry association that creates and maintains standards for the open connectivity of industrial automation devices and systems.

Let’s focus on the question under discussion “is the OPC-UA Future of IIOT”? , In my opinion, any IIOT protocol should have the following three qualities:

OPEN – It should be open protocol, should be open to communication with other products. There are multiple open source for connectivity available, it should have the option to integrate.

Reports by Exception – It should be edge-driven and should send updates to the server which is saving the data that clients will consume. There is no point to publish the data that has not been changed. 

Lightweight and stable – It should be lightweight and stable, It can not consume tons of bandwidth on the network.
Enter fullscreen mode Exit fullscreen mode

OPC-UA satisfies all the features which IIOT protocols should have. OPC UA could deliver an architecture appropriate for the Internet age, delivering modern transports, security technologies, data, and transaction specifications. The last two items are the key to a complete solution and were the defining criteria for its selection as an IIoT (Industrial Internet of Things) ready Dream Report interface.

There are multiple alternate IoT Protocols such as MQTT, AMQP, CoAP among others, but many only define transports and not data structures. As a communication protocol for industrial automation, the OPC Unified Architecture (OPC-UA) has quickly become the protocol of choice as the number of Industrial Internet of Things (IIoT) deployments continue to grow.

Production Dashboard : Hashstudioz Technologies delivered this project for Canadian customers. The customer is using WinCC -RT which is a Siemens automation/monitoring platform. WinCC-Rt is used to manage communications with PLC. It has a built-in OPC-UA server. Customers will enable OPC-UA on WinCC-RT and share the connection endpoint. The Hashstudioz team developed and deployed an OPC-UA client which connects to the PC-UA server and fetches the required tags. Customers are now able to supply the list of tags that need to be read from WinCC-RT. The component which will be developed and design by Hashstudioz development team is following:
Enter fullscreen mode Exit fullscreen mode

OPC UA Role with Win CC-RT

We used an open-source OPC-UA python client and saved the data in the database. We used the Django framework to create the JSON API which is consumed by the frontend to create a dashboard.

  1. Kepware OPC-UA integration : This project was similar to the previous project wherein the WinCC customer was using kepware. We created an OPC-UA client in node.js In contrast to permanently reading information (polling), OPC UA provides a more elegant functionality, a so-called Subscription. A UA client can subscribe to a selection of Nodes of interest and let the server monitor these items. Only in case of changes, e.g. to their values, the server alerts the client about such changes. This mechanism reduces the amount of transferred data immensely. In addition to the reduction of bandwidth, this mechanism introduces further advantages and is the recommended mechanism to “read” information from a UA Server. This feature is mentioned in the basic requirement for IIOT protocols. The client and server should work on a change of data and should not send all the data.

  2. Adapter between API and OPC-UA :

This is an interesting project HashStudioz developed for a German customer. The customer has an indoor asset tracking platform that can receive the data through API. The Client ‘s end client was not technical enough to consume API and send the data but was good in publishing the data as OPC-UA Client. We achieved this by setting up an open-source node.js based OPC-UA server.

OPC-UA server creates a function named APICALL, this function will have two parameters 1) API name 2) Argument list, OPC-UA client can call this function, and pass the API and parameters, System will call the API and will return the response to Client.

Source : https://hashstudioz.com/blog/is-opc-ua-the-future-of-iiot/

Top comments (0)