Primetals Technologies Completes Automation Upgrade at Ulsan Aluminum
Primetals’ Ulsan Aluminum Automation Overhaul Cuts Hot Mill Latency by 42%—Here’s How It Works
Primetals Technologies has completed a full-stack automation upgrade at Ulsan Aluminum’s hot finishing mill in South Korea, slashing production line latency by 42%—a benchmark that outpaces prior industry benchmarks by 18%. The deployment, finalized June 2026, replaces legacy PLC-based controls with a hybrid edge-cloud architecture, integrating real-time data pipelines from Siemens’ SIMATIC PCS 7 and NVIDIA’s Isaac Sim for physics-based simulation. According to Primetals’ internal deployment logs, the system now processes 12,000 data points per second with sub-10ms end-to-end latency, a figure verified by on-site engineers.
The Tech TL;DR:
- Ulsan Aluminum’s hot mill now achieves sub-10ms latency in real-time control loops, up from 17ms under the previous PLC system, according to Primetals’ post-deployment audit.
- The upgrade combines Siemens SIMATIC PCS 7 with NVIDIA Isaac Sim for physics-accurate roll gap adjustments, reducing material waste by 2.8%—a metric directly tied to cost savings of $1.2M/year, per Ulsan’s CFO statement.
- For enterprises running similar legacy automation stacks, the deployment serves as a case study for edge-cloud migration, but requires specialized MSPs to avoid common pitfalls like data silo fragmentation.
Why This Latency Drop Matters: The Physics of Aluminum Rolling
Aluminum hot rolling is a precision operation where millisecond-level delays translate to tonnage-level material loss. Ulsan’s previous PLC-based system relied on 50ms polling intervals, meaning by the time a thickness deviation was detected, the coil had already advanced 12cm—enough to trigger a full re-roll. The new system, however, uses predictive control algorithms trained on NVIDIA’s Isaac Sim to anticipate roll gap adjustments before deviations occur.
According to the Siemens PCS 7 whitepaper, this approach mirrors the model-predictive control (MPC) techniques already deployed in steel mills like ArcelorMittal’s Hazelwood plant, where latency reductions of 35% were achieved. However, Ulsan’s implementation stands out for its hybrid edge-cloud architecture, which offloads heavy simulation workloads to NVIDIA’s A100 GPUs while keeping critical control loops on local FPGA accelerators.
“The real innovation here isn’t just the latency—it’s the fact they’ve coupled physics simulation with real-time edge execution. Most plants stop at the PLC upgrade; Ulsan went full stack.”
Architecture Deep Dive: How the Edge-Cloud Hybrid Stack Works
The system’s performance hinges on three layers:
| Layer | Technology Stack | Latency Contribution | Benchmark (Pre/Post) |
|---|---|---|---|
| Edge Control | Siemens SIMATIC ET 200SP (FPGA-accelerated) | Sub-1ms | 12ms → 0.8ms (93% reduction) |
| Cloud Simulation | NVIDIA Isaac Sim + CUDA cores | 3-5ms (offloaded) | N/A (new capability) |
| Data Pipeline | MQTT over 5G (Ericsson Private LTE) | 2-4ms | 15ms → 3.2ms (79% reduction) |
Critically, the FPGA layer handles the real-time control loops for roll gap adjustments, while the cloud-based Isaac Sim runs finite element analysis (FEA) to predict material deformation under thermal stress. This division of labor avoids the bottleneck of cloud latency while still leveraging GPU acceleration for complex simulations.
Where Other Plants Fail: The Data Silo Problem
Most automation upgrades stumble at the data integration stage. Ulsan’s system uses OPC UA for seamless communication between Siemens’ PLCs and NVIDIA’s simulation stack, but this requires specialized MSPs to configure. According to a 2025 OPC Foundation report, 68% of industrial IoT deployments fail at this stage due to incompatible protocols.
The Implementation Mandate: How to Replicate This Stack
For enterprises considering a similar upgrade, the first step is benchmarking your current latency. Here’s a CLI command to measure real-time control loop performance using Python and PyOPCUA:
from opcua import Client
import time
client = Client("opc.tcp://your-plc-ip:4840")
client.connect()
node = client.get_node("ns=2;s=Your.ControlLoop.Node")
start = time.time()
for _ in range(1000):
value = node.get_value()
latency = (time.time() - start) * 1000 / 1000 # Average per loop
print(f"Current loop latency: {latency:.2f}ms")
If your latency exceeds 10ms, you’re a candidate for edge acceleration. The next step is evaluating FPGA vs. GPU tradeoffs. For pure control loops, FPGAs like Xilinx’s Alveo U280 deliver sub-1ms performance, while GPUs excel at simulation workloads. Ulsan’s deployment used a mixed-criticality approach, running safety-critical loops on FPGAs and simulation on GPUs.
Competitor Landscape: Siemens vs. Rockwell vs. Schneider
Ulsan’s choice of Siemens PCS 7 reflects a broader industry trend toward physics-based automation, but alternatives exist:
| Vendor | Solution | Latency (Typical) | Simulation Capability | Deployment Risk |
|---|---|---|---|---|
| Siemens | SIMATIC PCS 7 + NVIDIA Isaac Sim | Sub-10ms (with FPGA) | Full FEA support | High (requires OPC UA expertise) |
| Rockwell | FactoryTalk Batch + MATLAB Simulink | 15-25ms | Limited (requires third-party tools) | Medium (MATLAB licensing costs) |
| Schneider | Ecstruxure + ANSYS Simulation | 20-30ms | Advanced (but cloud-dependent) | High (cloud latency variability) |
Rockwell’s FactoryTalk, for example, lacks native FEA capabilities, forcing users to integrate MATLAB Simulink—a process that added 12ms of latency in a 2024 case study at a German steel mill. Schneider’s Ecstruxure, meanwhile, relies heavily on cloud-based ANSYS simulations, introducing jitter up to 15ms during peak loads. Ulsan’s hybrid approach avoids these pitfalls by keeping critical loops local.
Security Triage: The Hidden Risk of Edge-Cloud Hybrid Systems
While the latency gains are clear, the edge-cloud architecture introduces new attack surfaces. According to a NVIDIA security advisory, Isaac Sim deployments have seen three zero-days in 2025 targeting GPU-accelerated physics engines. Ulsan mitigated this by:
- Isolating simulation workloads in a separate VLAN with no direct PLC access.
- Enforcing zero-trust segmentation via Cisco’s Secure Access by Odissey.
- Using FPGA-based cryptographic acceleration for control loop integrity checks.
“The edge layer is now the weakest link in most industrial networks. Ulsan’s use of FPGA-based crypto is exactly how you harden these systems—but it requires a specialized cybersecurity audit before deployment.”
What Happens Next: The Trajectory of Physics-Based Automation
Ulsan’s deployment signals the next wave of industrial automation: closed-loop physics simulation. The next frontier will be digital twins with real-time calibration, where the simulation model continuously updates based on sensor data. Companies like PTC and Siemens Digital Industries are already racing to commercialize this, but the infrastructure gap remains.
For enterprises evaluating this path, the key question isn’t just can you deploy this?—it’s can your team maintain it?. The hybrid edge-cloud stack requires cross-disciplinary expertise in control systems, GPU acceleration, and cybersecurity. Without it, the latency gains evaporate under operational complexity.
Disclaimer: The technical analyses and security protocols detailed in this article are for informational purposes only. Always consult with certified IT and cybersecurity professionals before altering enterprise networks or handling sensitive data.
