Digital Twins technology brings the exact replica in digital format of a process, a product, or a service. Basically, it takes real-world data about a physical object or system as inputs and produces outputs in the form of predictions or simulations of how that physical object or system will be affected by those inputs.
Some of the most common use cases across the industry are given below:
Sensors are the heart of any measurement, control, and diagnostic device. Device telemetry is collected using the smart sensors available on the hardware/software environment and then used to create the digital twin model of the physical equipment.
All of the data is then aggregated and compiled to generate actionable information. The digital twin model is then continuously updated to mirror the current state of the physical thing. It can then be used to effectively model, monitor, and manage devices from a remote location. It also enables continuous intelligence & estimated time for the next needed maintenance, which the maintenance system can use to schedule at the optimal time.
We can see in detail how to build digital twins in the next section.
In this section, we are going to look at how to build a digital twin model of an Intel NUC kit so that we can:
Some of the parameters that determine the health of the Intel NUC Kit are (this forms the basis for building digital twins):
For building a digital twin of the Intel NUC kit, we are going to leverage the Eclipse Ditto framework that enables us to work with, and manage, the state of digital twins.
Following are the key capabilities of the Ditto Framework:
The first step is to define things and features. Things are generic entities and can be used to depict multiple features belonging to a thing. For example, physical devices like the lawnmower, a sensor. In the below example, we are going to treat the entire Intel NUC Kit as a Thing.
Feature is used to manage all data and functionality of a thing that can also be grouped based on technical context. In the below example, we have CPU, Memory, etc.,
Once we have defined Things/Features, we can now use any of the client SDK (ex. Python) to pull the respective sensor values and publish them to Eclipse Ditto.
Before that use pre-built images of Ditto and start the server. You can also choose from several options to deploy Ditto.
The Ditto Protocol defines a JSON-based text protocol for communicating with digital twins and the actual physical devices they mirror. Below is a sample JSON format that is being used to represent the thing (here its Intel NUC Kit)
Each thing has a unique thingId and set of features that we discussed in the earlier section. We can also have attributes that describe the thing in more detail.
Also, we can find access control lists on who can perform read/write or use administer permissions.
{
"thingId": "org.eclipse.ditto.example:demothing",
"acl": {
"ditto": {
"READ": true,
"WRITE": true,
"ADMINISTRATE": true
}
},
"attributes": {
"manufacturer": "Demo Manfacturer",
"hostname": "Demohost"
},
"features": {
"TemperatureSensor": {
"properties": {
"temperatureValue": 20.5,
"lastUpdate": "2019-10-16 15:07:31.436733",
"samplingRate": 1
}
}, …..
}
}
}
The features section holds the current temperature value of the Temperature Sensor.
Ditto has hosted a sandbox server that may be used by anyone to try out Ditto without starting it locally.
Once we have the data about features/attributes from the sensors we can use Ditto APIs to retrieve or modify the state of Thing/Feature/Attribute. All the states and properties can be read, updated, and collated.
There is also an option to route a command/message towards an actual device.
Congrats! we have successfully built Digital Twin using Ditto!
More examples can be located here.
Now we have the time-series data available and stored in our Digital Twin Server, our next step is to build an ML model based on the data collected to predict failure based on core attributes such as CPU, Memory, Disk Space, connection state, or the performance of external interfacing systems.
We can use any of the ML algorithms to build a model that can predict failures based on the attributes.
Businesses are moving towards developing a predictive maintenance model using digital twins that optimizes the maintenance cycle with the advances in IoT space, extending the life of the part by reducing unplanned maintenance and labor costs. By using digital twins and the predictive maintenance strategy, companies gain cost savings and strategic advantages in the industry.
Like this post? Don’t forget to share it!
There are few things as valuable to a business as well-designed software. Organizations today rely…
The cryptocurrency industry is being reshaped by the fusion of blockchain technology and artificial intelligence…
Introduction Artificial Intelligence (AI) has also found its relevance in graphic design and is quickly…
Imagine a world where the brilliance of Artificial Intelligence (AI) meets the unbreakable security of…
In today’s fast-paced digital landscape, automation is not just a luxury but a necessity for…
The world of casino gaming has leveraged the emerging technology advancements to create immersive and…
This website uses cookies.