Knowledge
is empowering.
is empowering.

Glossary of industrieal IoT (IIoT) terms
No other industry uses as many technical terms as in IT / ITK. What terms are used regularly in IT / ITK and what do they mean? Is there a special IoT vocabulary that you should know and need for a good understanding? We have compiled a list of the most important technical terms and explain their meaning.
Glossary of industieal IoT (IIoT) systems and their technical terms
Overview
adaptive
Easy to adopt in case of changes or enhancementsGerman:adaptiv agile
Kind of working in an short period fashionGerman:agil Application Centric Infrastructure (ACI)
Application Centric InfrastructureApplication Programming Interface (API)
An interface for developersautomation
Fully automatic handling instead of error prone human handlingGerman:Automatisierung Business Continuity Management (BCM)
Concept to avoid operational disruptions or total failuresSiehe auch: Emergency RevoveryGerman:Betriebliches Kontinuitätsmanagement (BKM )black box
A part of an application, which does work in an unknown fassionGerman:Black-Box Building Automation and Control Networks (BACnet)
xxxcluster
An interacting group of systemsConcise Binary Object Representation (CBOR)
The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation.Constrained Application Protocol
Constrained Application ProtocolThe Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained networks in the Internet of Things. The protocol is designed for machine-to-machine (M2M) applications such as smart energy and building automation.German:Constrained Application Protocol (CoAP )Continuous Integration / Continuous Delivery (CI/CD)
Continuous Integration / Continuous DeliveryContinuous Integration, Continuous Delivery, Continuous Deploymentdecentalised
When services or functionality is locally providedGerman:dezentral Digital Twin
Digital TwinGerman:Digitaler Zwilling digitizion
Providing a digital sibling for all real objectsGerman:Digitalisierung Direct Number Control (DNC)
An interface for computer control of CNC maschinesDistributed Control System (DCS)
Modern standard widely employed to control industrial machines electronicallyEdge
A special way of data processing at the edge of the company.Emergency recovery
A digital disaster recovery techniqueTypically after a widespread virus attack, a successful attack by a crypto Trojan horse or a cyber attack. It is assumed that all digital systems have to be completely rebuilt.Enterprise Architecture Management (EAM)
Enterprise Architecture Management (EAM)Enterprise Architecture Management (EAM)ETS
ETS is the programming software for KNX / EIB systemKNX ETS SoftwareEvent Driven Architecture (EDA)
Event Driven ArchitectureEventBus
A kind (loosely coupled) communication by messages between componentsGerman:Event-Bus Far UV-C
Fern UV-CGerman:Fern UV-C Field Programmable Gate Array (FPGA)
Field Programmable Gate ArrayGeneral-purpose input/output (GPIO)
general-purpose input/outputgrid
An interacting group of systemsHomekit
Apple HomekitHuman Centric Lightning (HCL)
Generic term for lighting adapted to human needs (bright white light in the morning, warm light dimmed in the evening)Hyper-converged infrastructure (HCI)
Hyper-converged infrastructureHyper-converged infrastructure (HCI)German:Hyperkonvergente Infrastrukturen (HCI )Industry 4.0
Digitaization of the industryGerman:Industrie 4.0 Industrial Computer Systems (ICS)
PC for industrial usageGerman:Industrie PC (ICS )open (ITC)
An abroviation for IT and communication. Mostly prefered in producing environmentsGerman:Informations- und Kommunikationstechnik (ITK )information technolgy (IT)
A term for all kind of systems and components which are used for information and data handlingGerman:Informationstechnik (IT )infrastructure repository (ISR)
A central datastore, where the setting is been stored for all kind of systems and componentsGerman:Infrastruktur Repository (ISR )International Electrotechnical Commission (IEC)
International Electrotechnical Commission is a standard for ...Internet of Things (IoT)
A term for all kind of systems and machines which are communicating between the internetinteroperability
interoperabilityGerman:Interoperabilität Legacy
A legacy software ore system is a older / longer used software or systemlevel of control
Level of automationThere are 5 levels auf automation:- Level 1: Remote Control
- Level 2: Programmed Sequences (Macros)
- Level 3: Conditional Control
- Level 4: Interactive
- Level 5: Self-learning
Optical Fiber (LWL)
Optical fiberGerman:Lichtwellenleiter (LWL )lock-in
vendor lock-inloose coupling
When software components are coupled by just exchanging messages and eventsInstead of a "hard" software link between components.German:lose Kopplung Manufacturing Execution System (MES)
Manufacturing Execution System (MES)Manufacturing Execution System (MES)Human Maschine Interface (HMI)
German: MMS (Mensch-Maschine-Schnittstelle)German:Mensch-Maschine-Schnittstelle (MMS )Instrumentation Control Automation (ICA)
Instrumentation Control AutomationInstrumentation Control Automation (ICA)German:Mess-, Steuerungs- und Regelungstechnik (MSR )micro service
xxxxIT term for small business oriented parts of a software serviceGerman:Microservice monolithic
Single and locally operating systemGerman:monolitisch MQ Telemetry Transport (MQTT)
MQTT is an open OASIS and ISO standard for interconnecting devices via publish-subscribeMQTT: What is QoS (Quality Of Service)? The Quality of Service (QoS) level is an agreement between the sender of a message and the receiver of a message that defines the guarantee of delivery for a specific message. There are 3 QoS levels in MQTT: QoS 0 (at most once): This service level guarantees a best-effort delivery. There is no guarantee of delivery. QoS 1 (at least once): This service level guarantees that a message is delivered at least one time (> 1) to the receiver. QoS 2 (exactly once): This level guarantees that each message is received only once by the intended recipients. QoS 2 is the safest and slowest quality of service level. MQTT: What is the Retain Flag? A retained message is a normal MQTT message with the retained flag set to true. The broker stores the last retained message and the corresponding QoS for that topic. Each client that subscribes to a topic pattern that matches the topic of the retained message receives the retained message immediately after they subscribe. The broker stores only one retained message per topic. MQTT: What is the Client ID? The client identifier (ClientId) identifies each MQTT client that connects to an MQTT broker. The broker uses the ClientID to identify the client and the current state of the client. Therefore, this ID should be unique per client and broker. MQTT: What is the Clean Session flag? The clean session flag tells the broker whether the client wants to establish a persistent session or not. In a persistent session (CleanSession = false), the broker stores all subscriptions for the client and all missed messages for the client that subscribed with a Quality of Service (QoS) level 1 or 2. If the session is not persistent (CleanSession = true), the broker does not store anything for the client and purges all information from any previous persistent session. MQTT: What is the Last Will and Testament (LWT)? In MQTT, you use the Last Will and Testament (LWT) feature to notify other clients about an ungracefully disconnected client. Each client can specify its last will message when it connects to a broker. The last will message is a normal MQTT message with a topic, retained message flag, QoS, and payload. The broker stores the message until it detects that the client has disconnected ungracefully. In response to the ungraceful disconnect, the broker sends the last-will message to all subscribed clients of the last-will message topic. MQTT: Where is my LWT topic? The LWT messages will always be sent to (prefix)/(domainName)/(machineName)/lwt topicMultiprotocol Label Switching (MPLS)
Multiprotocol Label SwitchingNetwork access control
Network access controlGerman:Netzzugangskontrolle (NAC )Object Linking and Embedding for Process Control (OPC)
OPC StandardObservability
Observabilityopen
An interface or program which can be used and enriched by everybodyGerman:offen Open Containers Initiative (OCI)
Open Containers Initiative (OCI)Predictive Maintenance (PM)
Predictive Maintenance (PM)Predictive Maintenance (PM)Privileged Access Management (PAM)
Privileged Access ManagementxxxProduct Data Management (PDM)
Product Data ManagementProduct Data ManagementProduction planing and control (PPS)
xxxGerman:Produktionsplanung und -steuerung (PPS )Product Lifecycle Management (PLM)
Product Lifecycle ManagementProduct Lifecycle ManagementGerman:Produktlebenszyklusmanagement (PLM )Profinet
Profinetproprietary
Vendor dependent lock instead of an open and standardized technology or systemGerman:proprietär Publish/Subscribe
Publish/Subscriberedundancy
RedundancyGerman:Redundanz Reference Architecture Model for Industry 4.0 (RAMI 4.0)
terminal blocks
A terminal block is an electric mounting point, for cable installation purposeGerman:Reihenklemmen representational state transfer (REST)
A de facto standard for using IT-services over HTTP/HTTPSResidual Current Device (RCD)
Residual Current DeviceRetrofit
RetrofitRetrofitRobotic Operation System (ROS)
Robotic Operation SystemHow to overcome common ROS 2 challenges. How and why to tune the ROS 2 system with Yocto-based Linux. Has archived a projected market value of $37 billion during 2019–2021 (Association for Advancing Automation)Robotic Process Automation (RPA)
Robotic Process Automation (RPA)layer
Applications and their data flow are divided into different technical horizontal partsGerman:Schichten Service-Level-Agreement (SLA)
Service-Level-Agreement (SLA)Service-Level-Agreement (SLA)Single Board Computer (SBC)
Single board computersmart cluster
A group of loosely coupled modules, which are working like on intelligent piecesmart grid
A connected group of mostly electrical components which can be easily reoganizedSoftware Defined Networks (SDN)
Software Defined Networks (SDN)programmable logic controller (PLC)
A programmable logic controllerGerman:Speicherprogrammierbare Steuerung (SPS )standard
A clearly defined and adoptable kind of interfaceactuator
actuatorGerman:Stellantrieb Supervisory control and data acquisition (SCADA) (SCADA)
Modern standard widely employed to control industrial machines electronicallyGerman:Supervisory control and data acquisition (SCADA )Supply-Chain-Management (Supply-Chain-Management)
Supply-Chain-ManagementGerman:Supply-Chain-Management (SCM )system
A term for IT components which are providing some kind of serviceSystem Engineering (SE)
System Engineeringtransparency
Full overview of the IT landscape an all its ongoing services and dataGerman:Transparenz umapi (umapi)
Adaption of OPC UA standard as a brand of the mechanical engineering associations VDMA and VDWGerman:universal machine technology interface (umapi )