Ryalat 2023 Design of A Smart Factory Based On Cyber Physical Systems and Internet of Things Towards Industry 4.0
Ryalat 2023 Design of A Smart Factory Based On Cyber Physical Systems and Internet of Things Towards Industry 4.0
sciences
Article
Design of a Smart Factory Based on Cyber-Physical Systems
and Internet of Things towards Industry 4.0
Mutaz Ryalat * , Hisham ElMoaqet and Marwa AlFaouri
Abstract: The rise of Industry 4.0, which employs emerging powerful and intelligent technologies and
represents the digital transformation of manufacturing, has a significant impact on society, industry,
and other production sectors. The industrial scene is witnessing ever-increasing pressure to improve
its agility and versatility to accommodate the highly modularized, customized, and dynamic demands
of production. One of the key concepts within Industry 4.0 is the smart factory, which represents a
manufacturing/production system with interconnected processes and operations via cyber-physical
systems, the Internet of Things, and state-of-the-art digital technologies. This paper outlines the
design of a smart cyber-physical system that complies with the innovative smart factory framework
for Industry 4.0 and implements the core industrial, computing, information, and communication
technologies of the smart factory. It discusses how to combine the key components (pillars) of a
smart factory to create an intelligent manufacturing system. As a demonstration of a simplified smart
factory model, a smart manufacturing case study with a drilling process is implemented, and the
feasibility of the proposed method is demonstrated and verified with experiments.
Keywords: cyber-physical systems (CPS); Industry 4.0; Internet of Things (IoT); robotics; smart factory
1. Introduction
The following subsections will highlight the major pillars and enablers of Industry 4.0;
cyber-physical systems, Internet of Things, Big Data, cloud computing, artificial intelligence,
robotics, and Smart Factory.
based approaches have an impact on Industry 4.0 by enabling intelligent devices to conduct
functions such as self-monitoring, interpretation, diagnosis, and analysis autonomously,
resulting in increased agility, productivity, and sustainability.
There have been a number of industrial applications recently that have focused on how
to incorporate and embed AI techniques and concepts within Industry 4.0. Some examples
of these applications include Intelligent Data Analysis and Real-Time Supervision (IDARTS),
which presents the guidelines for the implementation of scalable, flexible, and pluggable
data analysis and real-time supervision systems for manufacturing environments [38],
a complete framework and detailed overall planning of I-AI in the industry with an
application scenario in [39]. The use of an artificial neural network for failure inspection in
the assembly line of Industry 4.0 was proposed in [40]. In [41], real-time and online machine-
learning approaches have been used for early failure identification in a real production
environment for Industry 4.0. Other applications of AI in Industry 4.0 include predictive
maintenance, sustainability, supply-chain management, and quality control (for an outlook,
see [35]).
Within the Industry 4.0 framework, smart factories have been applied to a variety
of industrial enterprises, including a smart factory for drug packing in pharmaceutical
production of the Healthcare Industry 4.0 [51], a framework and operational mechanism of
a smart factory utilizing an intelligent negotiation mechanism to enable self-organization
of agents [27], the use of digital twin technology for a CPS-based smart factory for circuit
breaker manufacturing in [52], the application of a smart factory in additive manufacturing
Appl. Sci. 2023, 13, 2156 6 of 19
in [53], real-time optimization of a standard chemical plant towards a smart plant according
to the Industry 4.0 paradigm in [54], and deployment of Industrial IoT towards conversion
from the standard factory to a smart factory in the tannery industry [55]. Some works
focused on smart manufacturing and special machining, including a method proposed
in [56] for reducing machining problems by utilizing a simulation utility that uses the
primary system and processes variables as input data and generates results (intelligent
utility) that aid in decision-making and machining planning, and a systematic framework
for smart manufacturing systems in Industry 4.0 was proposed in [57], which covers a
wide range of topics, including design, machining, monitoring, control, and scheduling.
Reference [58] provides more applications and future perspectives of Smart Factory.
Automation (TIA) portal, and the KUKA is programmed using KUKA Robot Language
(KRL) via its own Human–Machine Interface (HMI).
The sensors used are connected to the PLC, and the LabVIEW Application Program
Interface (API) transfers data between the KUKA robot and the PLC to the cloud. The fol-
lowing subsections describe the system architecture in more detail.
In the Boards tab, real-time data can be visualized by creating cards with many different
visualization options. In the Apps tab, Application Programming Interface (API) keys can
be added and generated for different user applications that can connect to the IoT platform
and subscribe to devices’ topics or publish commands to devices.
In this paper, the following connection information for the MQTT client was used:
• Messaging Address: uve180.messaging.internetofthings.ibmcloud.com, where uve180
is the name of the organization
• Security Port: connection type non-secure, protocol MQTT, port number 1883;
• MQTT Client: device;
• Device Authentication: token authentication;
• QoS: at most once (QoS0).
The data are sent to the platform along with a topic and a property describing the data.
The challenge behind the network is the ability to communicate with both the PLC
and the KUKA, without using their respective accessories, in other words, connecting the
PLC using its S7 protocol to the KRC4 through external applications. Currently, there is no
standard protocol released by KUKA and Siemens available for mutual usage (i.e., outside
their specific environment). Communications between devices are established using a
network protocol analyzer Wireshark, and then a library is written to read/write PLC data
blocks, KRC4 variables, and data structures by using the observed protocol.
in Figure 7b. The functions ‘writeVariable’ and ‘readVariable’ are the ones responsible for
reading from and writing to global variables. This class takes the server (KRC4) IP address
as well as the corresponding port.
Figure 7. (a). The API architecture of JOpenShowVar; (b). The API architecture of CrossComClient.
KRL and KRL.structs are classes that represent actual variables from different data
types in the KRL. This class takes in a string name that represents the exact name of the
global variable defined in the KRC4.
The robot picks up the workpiece and places it in the designated stack and waits for
another workpiece.
Figure 10 shows the interfaces between the main components of the system, and
Figure 11 shows the detailed program data flow.
The LabVIEW API creates two client sockets for both the PLC and the JOpenShowVar
server program. In the API’s producer loop, the incoming data from the two devices are
parsed, encapsulated, and enqueued. In the API’s consumer loop, the data are dequeued,
decapsulated, and published to the IoT platform.
Variables of interest from the KUKA robot:
1. AXIS_ACT_MEAS: returns the axis angles of the current robot position.
2. VEL_AXIS_ACT [ axisnumber ]: returns the current speed as a percentage of the maxi-
mum speed of the axis number.
3. MOT_TEMP[ axisnumber ]: returns the current speed of the motor of the axis number
as a percentage of maximum speed.
Variables of interest from S7 1200:
1. Dint_12: counts the number of workpieces passed by the conveyor belt.
2. Boolean array of 8 bits that is used to indicate the position of the workpiece based on
the sensor readings.
Two java projects are created: The first is JOpenShowVar-core-client1, which is respon-
sible for exchanging the actual process parameters with myRIO. Its main function is in
Newproject.java, and four global variables are defined to be exchanged with myRIO. These
variables are defined and configured in KRC. The KRL program is structured in a way that
allows these exchangeable global variables to control its flow.
Appl. Sci. 2023, 13, 2156 14 of 19
The four variables are also defined in NewProject.java. The program enters a while
loop and reads the TCP socket input stream. It reads one line at a time. The read string is
then split by whitespaces. If the length of the string array after the split is zero, then
that means that a read operation is required. The split elements are then compared
with gets tatus, which gets the current status of the robot. In the application, four states
are distinguished:
• Status 0 indicates the robot is busy with a motion block.
• Status 1 indicates that the robot is waiting for a valid distance to the workpiece to pick
it up and moves it to the drill table.
• Status 2 indicates that the robot is waiting for the drilling process to be finished.
• Status 3 indicates that the robot has clamped the workpiece and is waiting for the
pneumatic release of the cylinder
If the length of the string array is 2, then that means that a write operation to one of
the variables has to occur. The first string indicates what variable to write to and the second
is the value to be written.
The second is JOpenShowVar − core − client2, which is responsible for sending the
robot’s sensor readings such as velocity, torque, axis motors’ currents, and axis motors’
temperature to the IBM Watson IoT platform through JOSVc lient I oT. This data can be
accessed from the system variables[see KUKA manual system variables], which are read-
only global variables.
Note that in the KRL program, there is WAIT SEC 0. These lines serve the purpose of
stopping the advance run pointer. The advance run is the maximum number of motion
blocks that the robot controller calculates and plans in advance during program execution.
This can set values to variables before the program finishes motion.
Appl. Sci. 2023, 13, 2156 15 of 19
Table 1. Time required for a data block transmission within the local interfacing network.
Figure 12 shows the visualization of some measured parameters in IBM Watson IoT.
Once the data reach the IoT platform, services such as Watson Analytics or IBM Data Science
Experience can be used. Storage of data is also possible with the Cloudant NoSQL database.
IBM Watson also allows the binding of other user applications with the IoT platform.
4. Conclusions
Industry 4.0 has emerged as a primary focus in the manufacturing sector in response to
the rise of digitalization and smart manufacturing. In the era of Industry 4.0, a smart factory
represents a core pillar in digital transformation. It paves the way for a smooth transition
from classical (standard) to intelligent production with the help of cutting-edge innova-
tions in intelligent robotics, cyber-physical systems, smart sensors, and instrumentation,
the internet of things, cloud computing, Big Data, and artificial intelligence.
Appl. Sci. 2023, 13, 2156 16 of 19
In this paper, a hierarchical design for a smart factory that takes into account the most
recent findings in the field is proposed. This design, which consists of all of the advanced
technologies associated with all smart factory layers, has been implemented and verified in
a test-bed platform, which has shown the effectiveness of the adoption of the smart factory
in manufacturing processes.
With this method, it can be seen how the adoption of the smart factory paradigm with
its high-tech components has led to a more efficient manufacturing process, better data
exchange, and a greater degree of autonomy. The findings revealed that the framework
promotes communication and cooperation among system modules, resulting in a faster
production process (decreased response time) and high productivity. One of the limita-
tions of the proposed method is that the model’s application scope is limited to a single
production theme. The smart factory aims to produce products that are more adaptable
and customizable through reconfigurable manufacturing. This subject, along with those
mentioned in Section 5, will be further investigated in future works.
5. Future Directions
Improvement in any smart factory can be achieved by including more enablers/pillars
of Industry 4.0, which will be discussed in the following subsections. Further improvements
can also be achieved by the selection of advanced microcontrollers and embedded systems
that can be used as interfacing options for enhanced communication speeds between the
devices. Adding “smartness” to the smart factory can also be obtained by deploying
a digital twin. Digital twins are cyber digital models of physical components, products,
or systems that can provide a comprehensive physical and functional description in a
mirrored digital environment for the purpose of simulating their behaviors in real-world
environments [49]. By creating virtual models synchronized with the physical models,
the simulation of various scenarios contributes to the prediction and prevention, as well as
optimization of the manufacturing process [62].
5.1. Cybersecurity
A big challenge to the implementation of the smart factory is the protection of the sys-
tem from cybersecurity threats. Industry 4.0 is characterized by increased adoption of IoT
technologies and cloud computing and increasingly relies on Big Data and advanced ICT
infrastructure. This increased dependency will also lead to increasing new vulnerabilities
to cyberattacks and privacy risks.
Smart factory security can be investigated based on an in-depth literature review in
order to explore the current cybersecurity approaches and trends, the challenges associ-
ated with the integration of cybersecurity in the smart factory architecture, frameworks,
and standards, the types of attacks and threats, and their risk mitigation on different levels
(device, data, and individuals’ privacy) [63–67].
5.2. AI
As discussed in Section 1.5, artificial intelligence is a core and important enabler of
Industry 4.0. With the advancement of Big Data technology, data-driven modeling from AI
(machine and deep learning) will improve product quality and increase production effi-
ciency via self-optimization and predictive actions. Furthermore, artificial intelligence can
be deployed on the cloud-based database after storing the IoT data generated, which has
provided the availability of statistical data extracted by the system and subsequently the
ability to transmit the analyzed data back to the system for decision-making, such as diagno-
sis, predictive maintenance, reconfigurable manufacturing, and optimized manufacturing.
Various methods can be used, starting with the built-in machine learning toolbox of
IBM Watson. Artificial Neural Network (ANN), support vector machine, random forest,
and Bayesian networks are all examples of common machine learning methods that have
been demonstrated in a variety of industrial contexts [68–70].
Appl. Sci. 2023, 13, 2156 17 of 19
Author Contributions: Conceptualization, M.R., H.E. and M.A.; Methodology, M.R., H.E. and M.A.;
Software, M.R., H.E. and M.A.; Validation, M.R., H.E. and M.A.; Formal analysis, M.R., H.E. and
M.A.; Investigation, M.R., H.E. and M.A.; Resources, M.R., H.E. and M.A.; Data curation, M.R., H.E.
and M.A.; Writing—original draft, M.R., H.E. and M.A.; Writing—review & editing, M.R., H.E. and
M.A. All authors have read and agreed to the published version of the manuscript.
Funding: This research received no external funding.
Institutional Review Board Statement: Not applicable.
Informed Consent Statement: Not applicable.
Data Availability Statement: Not applicable.
Conflicts of Interest: The authors declare no conflict of interest.
References
1. Suleiman, Z.; Shaikholla, S.; Dikhanbayeva, D.; Shehab, E.; Turkyilmaz, A. Industry 4.0: Clustering of concepts and characteristics.
Cogent Eng. 2022, 9, 2034264. [CrossRef]
2. Liagkou, V.; Stylios, C.; Pappa, L.; Petunin, A. Challenges and Opportunities in Industry 4.0 for Mechatronics, Artificial
Intelligence and Cybernetics. Electronics 2021, 10, 2001. [CrossRef]
3. Hermann, M.; Pentek, T.; Otto, B. Design Principles for Industrie 4.0 Scenarios. In Proceedings of the 2016 49th Hawaii
International Conference on System Sciences (HICSS), Koloa, HI, USA, 5–8 January 2016.
4. Caggiano, A.; Teti, R. Digital factory technologies for robotic automation and enhanced manufacturing cell design. Cogent Eng.
2018, 5, 1426676. [CrossRef]
5. Yao, X.; Zhou, J.; Lin, Y.; Li, Y.; Yu, H.; Liu, Y. Smart manufacturing based on cyber-physical systems and beyond. J. Intell. Manuf.
2019, 30, 2805–2817. [CrossRef]
6. Lee, J.; Bagheri, B.: Kao, H. A Cyber-Physical Systems architecture for Industry 4.0-based manufacturing systems. Manuf. Lett.
2015, 3, 18–23. [CrossRef]
7. Monostori, L. Cyber-physical Production Systems: Roots, Expectations and R&D Challenges. Procedia CIRP 2014, 17, 9–13.
8. Stock, D.; Schel, D. Cyber-Physical Production System Fingerprinting. Procedia CIRP 2019, 81, 393–398. [CrossRef]
9. Yin, Y.; Zeng, Y.; Chen, X.; Fan, Y. The internet of things in healthcare: An overview. J. Ind. Inf. Integr. 2016, 1, 3–13. [CrossRef]
10. Nunez, D.; Borsato, M. An ontology-based model for prognostics and health management of machines. J. Ind. Inf. Integr. 2017, 6,
33–46.
11. Chen, H. Applications of cyber physical systems—A literature review. J. Ind. Integr. Manag. 2017, 2, 1750012. [CrossRef]
12. Andronie, M.; Lăzăroiu, G.; Iatagan, M.; Hurloiu, I.; Dijmărescu, I. Sustainable Cyber-Physical Production Systems in Big
Data-Driven Smart Urban Economy: A Systematic Literature Review. Sustainability 2021, 13, 751. [CrossRef]
13. Hazra, A.; Adhikari, M.; Amgoth, T.; Srirama, S. A Comprehensive Survey on Interoperability for IIoT: Taxonomy, Standards, and
Future Directions. ACM Comput. Surv. 2021, 55, 1–35. [CrossRef]
14. Sisinni, E.; Saifullah, A.; Han, S.; Jennehag, U.; Gidlund, M. Industrial Internet of Things: Challenges, Opportunities, and
Directions. IEEE Trans. Ind. Inform. 2018, 14, 4724–4734. [CrossRef]
15. Soriano, J.; Heitz, C.; Hutter, H.-P.; Fernández, R.; Hierro, J.J.; Vogel, J.; Edmonds, A.; Bohnert , T.M. Internet of Services. In
Evolution of Telecommunication Services. Lecture Notes in Computer Science; Bertin, E., Crespi, N., Magedanz, T., Eds; Springer:
Berlin/Heidelberg, Germany, 2013; Volume 7768.
16. Ray, P.P. Internet of Robotic Things: Concept, Technologies, and Challenges. IEEE Access 2016, 4, 9489–9500. [CrossRef]
17. Mabkhot, M.M.; Al-Ahmari, A.M.; Salah, B.; Alkhalefah, H. Requirements of the Smart Factory System: A Survey and Perspective.
Machines 2018, 6, 23. [CrossRef]
18. Trappey, A.J.C.; Trappey, C.V.; Fan, C.Y.; Hsu, A.P.T.; Li, X.K.; Lee, I.J.Y. IoT patent roadmap for smart logistic service provision in
the context of Industry 4.0. J. Chin. Inst. Eng. 2017, 24, 593–602. [CrossRef]
19. International Society of Automation (ISA). ISA100: Wireless Systems for Automation. [Online]. Available online: https://www.isa.
org/store/ansi/isa-10011a-2011-wireless-systems-for-industrial-automation-processcontrol-and-related-applications/118261
(accessed on 3 January 2022).
20. Weyrich, M.; Ebert, C. Reference architectures for the internet of things. IEEE Softw. 2016, 33, 112–116. [CrossRef]
21. Lelli, F. Interoperability of the Time of Industry 4.0 and the Internet of Things. Future Internet 2019, 11, 36. [CrossRef]
22. Noura, M.; Atiquzzaman, M.; Gaedke, M. Interoperability in Internet of Things: Taxonomies and open challenges. Mob. Netw.
Appl. 2019, 24, 796–809. [CrossRef]
23. Elhoone, H.; Zhang, T.; Anwar M.; Desai, S. Cyber-based design for additive manufacturing using artificial neural networks for
Industry 4.0. Int. J. Prod. Res. 2020, 58, 2841–2861. [CrossRef]
24. Tao, F.; Zuo, Y.; Xu, L.D.; Zhang, L. IoT-Based Intelligent Perception and Access of Manufacturing Resource Toward Cloud
Manufacturing. IEEE Trans. Ind. Inform. 2014, 10, 1547–1557.
Appl. Sci. 2023, 13, 2156 18 of 19
25. Mourtzis, D.; Vlachou, E.; Milas, N. Industrial Big Data as a Result of IoT Adoption in Manufacturing. Procedia CIRP 2016, 55,
290–295. [CrossRef]
26. Zhong, R.Y.; Xu, X.; Wang, L. IoT-enabled Smart Factory Visibility and Traceability Using Laser-scanners. Procedia Manuf. 2017,
10, 1–14. [CrossRef]
27. Wang, S.; Wan, J.; Zhang, D.; Li, D.; Zhang, C. Towards smart factory for Industry 4.0: A self-organized multi-agent system with
Big Data based feedback and coordination. Comput. Netw. 2016, 101, 158–168. [CrossRef]
28. Yue, X.; Cai, H.; Yan, H.; Zou, C.; Zhou, K. Cloud-assisted industrial cyber-physical systems: An insight. Microprocess. Microsystems
2015, 39, 1262–1270. [CrossRef]
29. Ren, L.; Zhang, L.; Tao, F.; Zhao, C.; Chai X.; Zhao X. Cloud manufacturing: From concept to practice, Enterp. Inf. Syst. 2015, 9,
186–209.
30. Fisher, O.; Watson, N.; Porcu, L.; Bacon, D.; Rigley, M.; Gomes, R.L. Cloud manufacturing as a sustainable process manufacturing
route. J. Manuf. Syst. 2015, 47, 53–68. [CrossRef]
31. Zhong, R.Y.; Wang, L.; Xu, X. An IoT-enabled Real-time Machine Status Monitoring Approach for Cloud Manufacturing. Procedia
CIRP 2017, 63, 709–714. [CrossRef]
32. Zhong, R.Y.; Lan, S.; Xu, C.; Dai, Q.; Huang, G.Q. Visualization of RFID-enabled shopfloor logistics Big Data in cloud manufactur-
ing. Int. Adv. Manuf. Technol. 2016, 84, 5–16. [CrossRef]
33. Bacci di Capaci, R.; Scali, C. A cloud-based monitoring system for performance assessment of industrial plants. Ind. Eng. Chem.
Res. 2021, 59, 2341–2352. [CrossRef]
34. Oztemel, E.; Gursev, S. Literature review of Industry 4.0 and related technologies. J. Intell. Manuf. 2020, 31, 127–182. [CrossRef]
35. Peres, R.S.; Jia, X.; Lee, J.; Sun, K.; Colombo, A.W.; Barata, J. Industrial Artificial Intelligence in Industry 4.0-Systematic Review,
Challenges and Outlook. IEEE Access 2020, 8, 220121–220139. [CrossRef]
36. Ahmed, I.; Jeon, G.; Piccialli, F. From Artificial Intelligence to Explainable Artificial Intelligence in Industry 4.0: A Survey on
What, How, and Where. IEEE Trans. Ind. Inform. 2020, 18, 5031–5042. [CrossRef]
37. Lee, J.; Davari, H.; Singh, J.; Pandhare, V. Industrial Artificial Intelligence for Industry 4.0-based manufacturing systems. Manuf.
Lett. 2018, 18, 20–23. [CrossRef]
38. Peres, R.S.; Rocha, A.D.; Leitao, P.; Barata, J. IDARTS-Towards intelligent data analysis and real-time supervision for industry 4.0.
Comput. Ind. 2018, 101, 138–146. [CrossRef]
39. Zhang, X.; Ming, X.; Liu, Z.; Yin, D.; Chen, Z.; Chang, Y. A reference framework and overall planning of industrial artificial
intelligence (I-AI) for new application scenarios. Int. J. Adv. Manuf. Technol. 2019, 101, 2367–2389. [CrossRef]
40. Kucukoglu, I.; Atici-Ulusu, H.; Gunduz, T.; Tokcalar, O. Application of the artificial neural network method to detect defective
assembling processes by using a wearable technology. J. Manuf. Syst. 2018, 49, 163–171. [CrossRef]
41. Soto, J. A.; Tavakolizadeh, F.; Gyulai, D. An online machine learning framework for early detection of product failures in an
Industry 4.0 context, Int. J. Comput. Integr. Manuf. 2019, 32, 452–465. [CrossRef]
42. Bahrin, M.A.K.; Othman, M.F.; Azli, N.H.N.; Talib, M.F. Industry 4.0: A review on industrial automation and robotic. J. Teknol.
2016, 78. [CrossRef]
43. Vosniakos, G.-C.; Katsaros, P.; Papagiannoulis, I.; Meristoudi, E. Development of robotic welding stations for pressure vessels:
Interactive digital manufacturing approaches. Int. J. Interact. Des. Manuf. IJIDeM 2022, 16, 151–166. [CrossRef]
44. Andersen, R.E.; Hansen, E.B.; Cerny, D.; Madsen, S.; Pulendralingam, B.; Bøgh, S.; Chrysostomou, D. Integration of a Skill-based
Collaborative Mobile Robot in a Smart Cyber-physical Environment. Procedia Manuf. 2017, 11, 114–123. [CrossRef]
45. Romeo, L.; Petitti, A.; Marani, R.; Milella, A. Internet of Robotic Things in Smart Domains: Applications and Challenges. Sensors
2020, 20, 3355. [CrossRef] [PubMed]
46. Wang, S.; Wan, J.; Li, D.; Zhang, S. Implementing Smart Factory of Industry 4.0: An Outlook. Int. J. Distrib. Sens. Netw. 2016, 12,
3159805. [CrossRef]
47. Chen, B.; Wan, J.; Shu, L.; Li, P.; Mukherjee, M.; Yin, B. Smart Factory of Industry 4.0: Key Technologies, Application Case, and
Challenges. IEEE Access 2017, 6, 6505–6519. [CrossRef]
48. Osterrieder, P.; Budde, L.; Friedli, T. The intelligent factory as a key construct of Industry 4.0: A systematic literature review. Int. J.
Prod. Econ. 2020, 221, 107476. [CrossRef]
49. Sufian, A.T.; Abdullah, B.M.; Ateeq, M.; Wah, R.; Clements, D. Six-Gear Roadmap towards the Smart Factory. Appl. Sci. 2021, 11,
3568. [CrossRef]
50. Wan, J.; Yi, M.; Li, D.; Zhang, C.; Wang, S.; Zhou, K. Mobile Services for Customization Manufacturing Systems: An Example of
Industry 4.0. IEEE Access 2016, 4, 8977–8986. [CrossRef]
51. Wan, J.; Tang, S.; Li, D.; Imran, M.; Zhang, C.; Liu, C.; Pang, Z. Reconfigurable Smart Factory for Drug Packing in Healthcare
Industry 4.0. IEEE Trans. Ind. Inform. 2019, 15, 507–516. [CrossRef]
52. Chen, G.; Wang, P.; Feng, B.; Li Y.; Liu, D. The framework design of smart factory in discrete manufacturing industry based on
cyber-physical system. Int. J. Comput. Integr. Manuf. 2020, 33, 79–101. [CrossRef]
53. Ashima, R.; Haleem, A.; Bahl, S.; Javaid, M.; Mahla, S.; Singh, S. Automation and manufacturing of smart materials in additive
manufacturing technologies using Internet of Things towards the adoption of Industry 4.0. Mater. Today Proc. 2021, 45, 5081–5088.
[CrossRef]
Appl. Sci. 2023, 13, 2156 19 of 19
54. Vaccari, M.; Bacci di Capaci, R.; Brunazzi, E.; Tognotti, L.; Pierno, P.; Vagheggi, R.; Pannocchia, G. Optimally Managing Chemical
Plant Operations: An Example Oriented by Industry 4.0 Paradigms. Ind. Eng. Chem. Res. 2021, 60, 7853–7867. [CrossRef]
55. Bacci di Capaci, R.; Pannocchia, G.; Kenny, C.; Pacchi, G.; Lupi, R.; Scali, C. An Automatic System for Modeling and Controlling
Color Quality of Dyed Leathers in Tanneries. IFAC-PapersOnLine 2021, 54, 164–169. [CrossRef]
56. Urbikain, G.; Alvarez, A.; López de Lacalle, L.N.; Arsuaga, M.; Alonso, M.A.; Veiga, F. A Reliable Turning Process by the Early
Use of a Deep Simulation Model at Several Manufacturing Stages. Machines 2017, 5, 15. [CrossRef]
57. Zheng, P.; Wang, H.; Sang, Z.; Zhong, R.Y.; Liu, Y.; Liu, C.; Mubarok, K.; Yu, S.; Xu, X. Smart manufacturing systems for Industry
4.0: Conceptual framework, scenarios, and future perspectives. Front. Mech. Eng 2018, 13, 137–150. [CrossRef]
58. Meindl, B.; Ayala, F.; Mendonça, J.; Frank, G. The four smarts of Industry 4.0: Evolution of ten years of research and future
perspectives. Technol. Forecast. Soc. Chang. 2021, 168, 120784. [CrossRef]
59. Xu, X.; Lu, Y.; Vogel-Heuser, B.; Wang, L. Industry 4.0 and Industry 5.0—Inception, conception and perception. J. Manuf. Syst.
2022, 61, 530–535. [CrossRef]
60. Akundi, A.; Euresti, D.; Luna, S.; Ankobiah, W.; Lopes, A.; Edinbarough, I. State of Industry 5.0—Analysis and Identification of
Current Research Trends. Appl. Syst. Innov. 2022, 5, 27. [CrossRef]
61. Leng, J.; Sha, W.; Wang, B.; Zheng, P.; Zhuang, C.; Liu, Q.; Wuest, T.; Mourtzis, D.; Wang, L. Industry 5.0: Prospect and retrospect.
J. Manuf. Syst. 2022, 65, 279–295. [CrossRef]
62. Balderas, D.; Ortiz, A.; Méndez, E.; Ponce, P.; Molina, A. Empowering Digital Twin for Industry 4.0 using metaheuristic
optimization algorithms: Case study PCB drilling optimization. Int. J. Adv. Manuf. Technol. 2021, 113, 1295–1306. [CrossRef]
63. Shackelford, S.J. Smart Factories, Dumb Policy?: Managing Cybersecurity and Data Privacy Risks in the Industrial Internet of
Things. Minn. J. Law Sci. Technol. 2020 , 21, 18–80. [CrossRef]
64. Maggi, F.; Balduzzi, M.; Vosseler, R.; Rösler, M.; Quadrini, W.; Tavola, G.; Pogliani, M.; Quarta, D.; Zanero, S. Smart Factory
Security: A Case Study on a Modular Smart Manufacturing System. Procedia Comput. Sci. 2021, 180, 666–675. [CrossRef]
65. Fernández-Caramés, T.M.; Fraga-Lamas, P. A Review on the Application of Blockchain to the Next Generation of Cybersecure
Industry 4.0 Smart Factories. IEEE Access 2019, 7, 45201–45218. [CrossRef]
66. Culot, G.; Fattori, F.; Podrecca, M. Sartor, M. Addressing Industry 4.0 Cybersecurity Challenges. IEEE Eng. Manag. Rev. 2019, 47,
79–86. [CrossRef]
67. Zorić, P.; Musa, M.; Kuljanić, T.M. Smart Factory Environment: Review of Security Threats and Risks. In Future Access Enablers for
Ubiquitous and Intelligent Infrastructures, FABULOUS 2021. Lecture Notes of the Institute for Computer Sciences, Social Informatics and
Telecommunications Engineering; Perakovic, D., Knapcikova, L., Eds.; Springer: Cham, Switzerland, 2021; pp. 203–214.
68. Nguyen, H.D.; Tran, K.P.; Zeng, X.; Koehl, L.; Castagliola, P.; Bruniaux, P. Industrial Internet of Things, Big Data, and Artificial
Intelligence in the Smart Factory: A survey and perspective. In Proceedings of the ISSAT International Conference on Data
Science in Business, Finance and Industry, Da Nang, Vietnam, 3–5 July 2019; pp. 72–76.
69. Zhou, T.; Tang, D.; Zhu, H.; Wang, L. Reinforcement Learning With Composite Rewards for Production Scheduling in a Smart
Factory. IEEE Access 2021, 9, 752–766. [CrossRef]
70. Wan, J.; Li, X.; Dai, H.-N.; Kusiak, A.; Martínez-García, M.; Li, D. Artificial-Intelligence-Driven Customized Manufacturing
Factory: Key Technologies, Applications, and Challenges. Proc. IEEE 2021, 109, 377–398. [CrossRef]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual
author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to
people or property resulting from any ideas, methods, instructions or products referred to in the content.