Glossary Tag: process monitoring

  • feature engineering

    Core meaning

    Feature engineering is the process of creating, selecting, and transforming input variables (features) from raw data so that machine learning (ML) models can use them effectively. It translates domain knowledge and raw signals into structured, numerical or categorical representations that algorithms can work with.

    It typically includes activities such as:

    – Selecting which raw data fields or signals to use
    – Cleaning and standardizing values (units, ranges, formats)
    – Aggregating measurements over time or batches
    – Deriving new variables from existing ones (e.g., ratios, deltas, rolling statistics)
    – Encoding categorical values into numerical form
    – Normalizing or scaling features to appropriate ranges

    Feature engineering is usually performed before model training and is often captured in a repeatable pipeline so that the same transformations can be applied consistently to new data.

    Use in industrial and regulated environments

    In manufacturing and other industrial domains, feature engineering commonly operates on:

    – Process data from PLCs, historians, and OT systems (temperatures, pressures, speeds)
    – MES data (work orders, material genealogy, routing steps, operator IDs)
    – Quality data (in-process and final test measurements, SPC statistics)
    – Maintenance data (run-time counters, alarms, failure codes)

    Examples include:

    – Converting second-by-second sensor traces into summary statistics per batch or lot
    – Calculating time since last maintenance or time-in-state per machine
    – Deriving features such as yield, scrap rate, or rework count per order
    – Encoding production route, shift, or product family as model-ready features

    In regulated environments, feature engineering steps are often:

    – Documented as part of the data pipeline design
    – Version-controlled alongside model code
    – Subject to change control and impact assessment when modified

    Role in explainable and trustworthy AI with MES

    When AI models are integrated with MES, feature engineering strongly influences how explainable and trustworthy the models are:

    – **Traceability and data lineage:** Each engineered feature should be traceable back to its raw data source (e.g., specific MES fields, historian tags) and transformation logic.
    – **Interpretability:** Using domain-meaningful features (e.g., “average oven temperature in curing step” rather than opaque encodings) supports human review of model behavior.
    – **Use-case boundaries:** Engineered features often encode assumptions about process conditions, time windows, or product families, which define where the model is appropriate to use.
    – **Validation:** The correctness and stability of feature calculations are validated along with the model, since errors in feature engineering can lead to misleading outputs.

    In this context, feature engineering is treated as part of the overall AI design, not just a technical preprocessing step.

    Boundaries and exclusions

    Feature engineering:

    – **Includes:** Data cleaning, transformation, and representation steps specifically aimed at preparing inputs for ML models.
    – **Excludes:** The training of the ML model itself (model selection, fitting, hyperparameter tuning), even though these depend on the engineered features.
    – **Excludes:** Basic ETL or integration work that does not change the informational content of the data beyond formatting, unless it directly defines input variables for a model.

    It is related to, but distinct from:

    – **Data engineering:** Focused on data storage, transport, and availability at scale.
    – **Feature selection:** Choosing a subset of features, which may be part of feature engineering but is sometimes treated as a separate modeling step.

    Common confusion

    – **Versus raw data extraction:** Simply pulling tags from a historian or columns from a MES database is not, by itself, feature engineering. The term is reserved for the deliberate design of input variables from that data.
    – **Versus automated feature learning:** Some modern ML methods (e.g., deep learning) can learn internal representations from raw data. Even then, in industrial settings, explicit feature engineering is still commonly used to capture domain-specific knowledge, ensure traceability, and support explainability.

  • physical model

    A physical model in manufacturing and industrial operations is a structured representation of real-world equipment, assets, and material flows. It is used to describe how physical resources are arranged and interact so that control systems, MES, batch systems, and planning tools can work with them in a consistent way.

    Core meaning in manufacturing and OT/IT

    In this context, a physical model typically includes:

    • Equipment and units, such as reactors, mixers, packaging lines, conveyors, tanks, and storage locations.
    • Equipment hierarchy, such as site, area, process cell, unit, equipment module, and control module, as commonly referenced in standards.
    • Physical connections, such as piping, transfer lines, and material handling systems that define how materials can move.
    • Capabilities and constraints, such as maximum batch size, cleanability, or permitted product families on a line.

    The physical model does not describe how to make a specific product step by step. Instead, it describes what physical equipment exists, how it is organized, and what it is capable of doing. Control recipes, MES routing, and scheduling rules are then mapped onto this model.

    Relation to S88 and other standards

    In S88-style batch manufacturing, the physical model usually refers to the equipment model, which structures the physical plant into levels such as process cells, units, equipment modules, and control modules. This model is distinct from the procedural model and recipe structures, but they interact closely:

    • The physical model defines where operations can run.
    • The procedural model defines how operations are executed.
    • Recipes reference the physical model when assigning specific units or equipment for a batch.

    Similar physical modeling concepts appear in other frameworks and tools, such as ISA-95 equipment hierarchies, plant models in DCS systems, and resource models in MES/ERP.

    Operational use

    Physical models are used by:

    • Control systems (DCS/PLC) to organize I/O, control modules, and interlocks according to physical equipment.
    • MES and batch systems to allocate units, enforce equipment constraints, and manage campaigns.
    • Scheduling and planning tools to understand which orders can run on which lines or units.
    • Quality and compliance workflows to associate process data, alarms, and events with specific physical assets for traceability.

    A well-defined physical model helps ensure that data from OT systems, MES, historians, and quality systems can be consistently tied back to specific equipment and locations.

    What it is not

    • It is not the same as a procedural model or recipe logic, which describes the sequence of operations.
    • It is not necessarily a 3D CAD model, although CAD systems also use the term “physical model” for geometric representations.
    • It is not a simulation model by default, although a simulation can be built on top of a physical model.

    Common confusion

    Physical model vs procedural model: In S88 and similar frameworks, the physical model addresses equipment and structure, while the procedural model addresses tasks, operations, and sequences. Both are needed for a complete manufacturing model.

    Physical model vs data model: A physical model describes assets and flows in the physical plant. A data model describes how related information is stored and related in databases or integration layers. The two should align but are conceptually different.

    Connection to the source context

    In the context of the S88 standard, the physical model typically refers to the S88 equipment model. It is used alongside procedural models and recipes to organize batch manufacturing so that equipment, control, and MES/ERP integration can be managed in a consistent and maintainable way.

  • time-series data

    Time-series data is data collected and stored as a sequence of values, each explicitly associated with a point or interval in time. The core characteristic is that the time order of the data matters and is part of the meaning of the dataset.

    In industrial and manufacturing environments, time-series data commonly refers to measurements and signals captured from equipment, sensors, control systems, and software applications at regular or event-driven intervals. Examples include temperature readings from an oven every second, pressure values from a reactor every 100 ms, or machine state changes recorded with precise timestamps.

    Key characteristics

    • Timestamped: Every record includes a timestamp (or time range) that defines when the measurement or event occurred.
    • Ordered by time: The sequence in which data points occur is essential for interpretation, analysis, and modeling.
    • Often high frequency: In OT and industrial control, data may be collected many times per second, resulting in large volumes.
    • Typically numeric but not limited to it: Values are often numeric (e.g., flow rate, RPM, current) but can also be states or categorical events (e.g., “machine running”, alarm codes).
    • Append-only in practice: Operationally, new measurements are continuously appended; historical values are rarely changed, except in data cleansing or backfill scenarios.

    Where time-series data appears in manufacturing

    • Control and automation systems: PLCs, DCS, and SCADA systems record process variables, setpoints, and alarms over time.
    • Historian systems: OT data historians are specialized databases optimized for storing and querying time-series data from equipment and lines.
    • MES and quality systems: Production counts, cycle times, and inline quality measurements can be stored as time-series for later OEE, NPT, and SPC analysis.
    • IoT and condition monitoring: Vibration, temperature, and current draw data used for predictive maintenance is typically modeled as time-series.
    • IT and infrastructure monitoring: Logs and performance metrics from servers, networks, and applications are also forms of time-series data.

    Operational use

    Operational teams and digital systems use time-series data to understand how processes behave over time, detect anomalies, correlate events, and reconstruct what happened during a batch, shift, or deviation. Common uses include trending key variables on an HMI, performing root cause analysis by aligning multiple signals on a time axis, and building analytics or models that depend on temporal patterns, such as predicting equipment failures or monitoring process stability.

    Common confusion

    • Time-series data vs. transactional data: Transactional data (such as work orders, material movements, or batch records) describes discrete business or production events, often with timestamps, but is organized primarily around the event or object rather than the continuous evolution of a variable. Time-series data is organized around how a signal or metric changes over time.
    • Time-series data vs. event logs: Event logs are lists of discrete events with timestamps (for example, alarm raised, recipe started). They are technically a form of time-series data, but in industrial practice, “time-series” often implies continuous or periodic measurements, while “event log” implies sparse, irregular events.

    Relation to digital technology in manufacturing

    Digital manufacturing technologies, including data historians, IoT platforms, and operations intelligence tools, are designed to capture, store, and analyze time-series data from shop floor assets and systems. This data is often integrated with MES, ERP, and quality system data to provide time-aligned views of equipment performance, product quality, and process conditions across regulated production environments.

  • SAP S/4HANA

    SAP S/4HANA is SAP’s integrated enterprise resource planning (ERP) suite built to run on the SAP HANA in-memory database. It is commonly used by manufacturers to manage core business and supply chain processes, including finance, procurement, production planning, inventory, sales, and maintenance.

    In industrial and regulated environments, SAP S/4HANA typically sits on the IT side as a system of record for planning, materials, master data, and commercial transactions, and is commonly integrated with manufacturing execution systems (MES), laboratory systems, and plant-level OT solutions.

    Scope and capabilities

    SAP S/4HANA commonly includes or connects to functional areas such as:

    • Finance and controlling (general ledger, cost centers, profitability analysis)
    • Materials management (purchasing, goods receipt, inventory, batch and lot information)
    • Production planning (MRP, work centers, routings, production orders, capacity planning)
    • Sales and distribution (customer orders, delivery, billing)
    • Plant maintenance / asset management (maintenance orders, notifications, asset structures)
    • Quality management (inspection lots, usage decisions, basic nonconformance tracking)

    For manufacturing operations, SAP S/4HANA often provides the planning and order management layer, while detailed shop floor execution, data collection, and electronic batch records are handled by MES or other Level 2/3 systems, then synchronized back to S/4HANA.

    Common integrations in manufacturing

    In a plant environment, SAP S/4HANA is frequently integrated with:

    • MES / MOM systems to exchange production orders, confirmations, material consumption, and genealogy data.
    • Plant historians and OT data platforms to support quality records, traceability, and cost reporting.
    • Warehouse management and logistics systems for inventory movements, picking, shipping, and receiving.
    • Quality and LIMS systems for test results, COAs, and release decisions that affect material status in S/4HANA.

    The exact division of responsibilities between S/4HANA and plant systems depends on architecture, regulatory strategy, and validation and change-control requirements.

    What SAP S/4HANA is not

    • It is not a traditional MES. While it manages production orders and confirmations, it does not typically handle detailed work instructions, operator guidance, complex routing logic at the machine level, or rich real-time OEE and line performance visualization.
    • It is not a SCADA or DCS. It does not interface directly with PLCs for real-time control.
    • It is not limited to manufacturing. It is used across industries for enterprise-wide business processes.

    Common confusion

    SAP S/4HANA is sometimes conflated with other SAP manufacturing products:

    • SAP S/4HANA vs SAP MII / SAP Digital Manufacturing: S/4HANA provides ERP and high-level planning. SAP MII and SAP Digital Manufacturing (including SAP Digital Manufacturing for Execution) provide manufacturing operations and integration capabilities closer to the shop floor.
    • SAP S/4HANA vs SAP ECC: ECC is the earlier generation of SAP ERP. S/4HANA is the newer suite built specifically for the HANA database, with a different data model and user interface.

    Context from MES discussions

    In discussions about whether SAP is an MES, SAP S/4HANA is typically positioned as the ERP backbone that coexists with one or more MES or Level 2/3 systems in brownfield and regulated plants. S/4HANA usually owns planning, master data, and commercial records, while MES owns detailed execution, operator interaction, and many real-time records required on the shop floor.

  • Manufacturing Integration Platform

    A Manufacturing Integration Platform (MIP) is a software layer that connects and coordinates data flows between manufacturing shop-floor systems and higher-level enterprise systems. It provides a central place to manage interfaces, data models and integration logic without replacing core applications such as MES, ERP, SCADA or LIMS.

    Core characteristics

    A Manufacturing Integration Platform commonly includes:

    • Connectivity to OT systems such as PLCs, DCS, SCADA, historians, PLC-based equipment, and standalone instruments.
    • Connectivity to IT and business systems such as MES, ERP, PLM, QMS, LIMS, warehouse systems and data warehouses or data lakes.
    • Common data models and mapping to translate machine- or vendor-specific data into standardized structures usable across applications.
    • Integration orchestration to manage workflows like order download to machines, result upload to MES or QMS, and event-based messaging.
    • APIs and services that expose manufacturing data to other systems, analytics tools and reporting environments.
    • Monitoring and diagnostics for interface health, message status and error handling.

    In regulated environments, the platform is often configured and governed to support data integrity, traceability of changes to integration logic, and controlled deployment processes, but those practices are organization-specific.

    How it is used in manufacturing operations

    Operationally, a Manufacturing Integration Platform typically:

    • Acts as the central hub for exchanging production orders, material data, specifications and recipes between ERP, MES and equipment.
    • Collects process data, alarms and results from machines and routes them to MES, QMS, historians or analytics tools.
    • Supports standardized interfaces across plants or lines so that new equipment or systems can be integrated more consistently.
    • Provides a controlled way to change integrations without modifying each endpoint system individually.

    The platform may be implemented using specialized integration products, iPaaS tools adapted to manufacturing, or a combination of middleware, message brokers and custom services that are managed as a unified layer.

    What it is not

    • It is not a replacement for MES, ERP, SCADA, PLM, QMS or LIMS. Those systems still own their business logic and records.
    • It is not only a data historian, although it may connect to one and route time-series data.
    • It is not limited to reporting. It also supports transactional workflows and bidirectional communication.

    Common confusion

    • Manufacturing Integration Platform vs. Manufacturing Information Portal: Some organizations use the same acronym (MIP) for a “Manufacturing Information Portal,” which focuses on presenting consolidated production data to users through dashboards or web portals. A Manufacturing Integration Platform focuses on system-to-system integration and data routing, and a portal may consume its data.
    • Manufacturing Integration Platform vs. MES: MES manages and records execution of manufacturing activities. A Manufacturing Integration Platform connects MES to other systems and equipment. In some products, integration and MES functions are bundled, which can blur this distinction.
    • Manufacturing Integration Platform vs. generic middleware or ESB: Generic integration platforms provide messaging and transformation. A Manufacturing Integration Platform applies similar concepts but is configured and structured around manufacturing-specific models, standards and protocols.

    Relation to standards and architectures

    In architectures aligned with models such as ISA-95, a Manufacturing Integration Platform often sits between Level 2 (control and supervision) and Level 3/4 (MES, ERP and business planning). It can help implement standardized interfaces, message flows and data structures between these levels without prescribing any particular vendor or standard.

  • Gateway

    A gateway is a hardware device, software service, or embedded component that connects two or more different networks, protocols, or systems so they can exchange data in a controlled and structured way. In industrial and manufacturing environments, gateways commonly sit between OT equipment and higher-level IT or cloud systems.

    Core characteristics

    In regulated manufacturing and industrial operations, a gateway commonly:

    • Bridges different communication protocols (for example, OPC UA to MQTT, Modbus to OPC UA, or proprietary fieldbus to Ethernet)
    • Connects separate networks (such as a plant-floor OT network to a corporate IT network or DMZ)
    • Performs data mapping or transformation (converting raw tags or registers into structured data models)
    • Implements security and access controls (authentication, encryption, basic filtering of what data can pass)
    • Provides a single aggregation point for multiple devices or systems

    A gateway can be:

    • Physical: an industrial PC, edge device, or dedicated appliance mounted in a panel or rack.
    • Virtual or software-based: a service running on a server or in the cloud that exposes one interface to the plant and another to enterprise applications.

    Operational use in manufacturing

    Gateways appear in many layers of a manufacturing stack, for example:

    • Connecting PLCs and DCS controllers to an OPC UA server so MES, historian, or analytics tools can read standardized data
    • Exposing legacy serial or fieldbus equipment through modern Ethernet-based protocols
    • Acting as an edge gateway that sends filtered production data to cloud services
    • Separating OT and IT networks, sometimes as part of a demilitarized zone (DMZ) architecture

    Relation to OPC UA

    In an OPC UA context, a gateway often:

    • Connects non-OPC devices and protocols to an OPC UA server or client
    • Maps vendor-specific tag structures into an OPC UA information model
    • Acts as a secure boundary where OPC UA security settings, certificates, and access policies are enforced

    What a gateway is not

    To avoid confusion, a gateway is not:

    • Just a switch or hub: those forward traffic at lower network layers without protocol translation or data modeling.
    • Necessarily a firewall: some gateway products include firewall capabilities, but a firewall focuses on traffic filtering, not protocol bridging or data transformation.
    • Always an OPC UA server: a gateway may host an OPC UA endpoint, but "gateway" refers to the bridging role, not a specific standard.

    Common confusion

    The term "gateway" is sometimes used interchangeably with:

    • Protocol converter: a type of gateway focused narrowly on converting one protocol to another.
    • Edge device: an edge device may perform gateway functions, but it can also handle local analytics, buffering, or control.

    In industrial and regulated environments, it is useful to specify what a gateway actually does: which protocols it bridges, what security functions it provides, and how it integrates with control systems, MES, historians, and enterprise IT.