Evaluate the AutomationView desktop suite free for 30 days. No credit card required. Claim trial key →

Automation Insights

Technical articles, tutorials, and industry news for modern automation engineers.

search

Next-Gen WebAssembly HMI: Native Performance for SCADA

HMI
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A["Legacy SCADA"]:::redNode -->|"Compute Constraints"| B["WebAssembly HMI"]:::blueNode
    B -->|"Native Speed"| C["Edge Gateways"]:::greenNode
    B -->|"Portability"| D["Browser Displays"]:::greenNode
    
    classDef redNode fill:#dc2626,stroke:#b91c1c,color:#ffffff
    classDef blueNode fill:#2563eb,stroke:#1d4ed8,color:#ffffff
    classDef greenNode fill:#16a34a,stroke:#15803d,color:#ffffff
AutomationView Icon AutomationView
calendar_month

Next-Gen WebAssembly HMI: Native Performance for SCADA

Key Takeaways: WebAssembly bypasses standard JavaScript interpreters, delivering highly deterministic execution for compute-intensive industrial interfaces. Hybrid approaches are dominating: standard web technologies handle the DOM layout while WebAssembly processes real-time math and heavy signal rendering. Portability allows automation engineers to write core logic in memory-safe languages and deploy identical binaries to edge gateways and control […]

Read Article arrow_forward

Inside OPC UA over TSN: High-Speed Network Architecture

Learning
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A[OPC UA Application Layer] --> B(Semantic Data Model)
    C[TSN Layer 2] --> D(Deterministic Transport)
    B --> E{OPC UA over TSN}
    D --> E
    E --> F[IT/OT Convergence]
AutomationView Icon AutomationView
calendar_month

Inside OPC UA over TSN: High-Speed Network Architecture

Key Takeaways: OPC UA over TSN merges semantic interoperability with deterministic Layer 2 data delivery. IEEE 802.1Qbv time-aware shaping guarantees bandwidth for critical motion control traffic. This architecture eliminates the need for proprietary fieldbus gateways, reducing hardware overhead. Historically, achieving microsecond-level synchronization on the plant floor required proprietary protocols like EtherCAT or PROFINET IRT. Today, […]

Read Article arrow_forward

Inside Comau Invent Smart Acquisition: Intralogistics AI

Automation News
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
classDef primary fill:#2563eb,stroke:#fff,stroke-width:2px,color:#fff
classDef secondary fill:#16a34a,stroke:#fff,stroke-width:2px,color:#fff

A["Comau Robotics"]:::primary --> C["Integrated Intralogistics Platform"]:::primary
B["Invent Smart AI"]:::secondary --> C
AutomationView Icon AutomationView
calendar_month

Inside Comau Invent Smart Acquisition: Intralogistics AI

The distinction between warehouse automation and manufacturing robotics is officially disappearing. In July 2026, Comau completed its acquisition of Invent Smart Intralogistics Solutions, a strategic move that brings powerful software orchestration directly into the hardware-heavy world of industrial robotics. For automation engineers on the plant floor, this signals a major shift toward platforms that handle […]

Read Article arrow_forward

Inside AutomationView: Git Collaboration for PLC Design

AutomationView
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A[Engineer 1] -->|Commit| B(Git Repo)
    C[Engineer 2] -->|Pull| B
    B --> D{AutomationView}
    D -->|Deploy| E[Plant Floor PLC]
    style B fill:#3b82f6,stroke:#1d4ed8,stroke-width:2px,color:#fff
AutomationView Icon AutomationView
calendar_month

Inside AutomationView: Git Collaboration for PLC Design

Key Takeaways: Traditional PLC programming suffers from binary file limitations, making version control nearly impossible. AutomationView exports sequence data natively to text, enabling full Git capability. Learn how branching and merging can prevent costly overwrites on the plant floor. The Binary File Dilemma in Industrial Automation PLC environments were traditionally designed around proprietary binary blobs. […]

Read Article arrow_forward

Heat Exchanger Sizing with the LMTD Method

Calculator
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A["Process Temps"]:::blue --> B["LMTD Calc"]:::green
    B --> C["U-Value"]:::red
    C --> D["Area Sizing"]:::blue
    D --> E["Fouling Check"]:::green
    style A fill:#2563eb,color:#ffffff
    style B fill:#16a34a,color:#ffffff
    style C fill:#dc2626,color:#ffffff
    style D fill:#2563eb,color:#ffffff
    style E fill:#16a34a,color:#ffffff
AutomationView Icon AutomationView
calendar_month

Heat Exchanger Sizing with the LMTD Method

Every process engineer who has ever specified a shell-and-tube or plate exchanger knows this moment: the process simulator spits out a heat duty, and the next step is converting that number into square meters of transfer surface. The bridge between thermal duty and physical hardware is the Log Mean Temperature Difference (LMTD) method. This article […]

Read Article arrow_forward

Schneider Electric Acquires Cognite for $3.1B: Inside the AVEVA-AI Strategy

Automation News
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A["Schneider Electric"]:::blue -->|Acquires for $3.1B| B["Cognite"]:::green
    B -->|Integrates into| C["AVEVA"]:::red
    C -->|Enables| D["Industrial AI"]:::blue
    style A fill:#2563eb,stroke:#1e40af,color:#ffffff
    style B fill:#16a34a,stroke:#15803d,color:#ffffff
    style C fill:#dc2626,stroke:#b91c1c,color:#ffffff
    style D fill:#2563eb,stroke:#1e40af,color:#ffffff
AutomationView Icon AutomationView
calendar_month

Schneider Electric Acquires Cognite for $3.1B: Inside the AVEVA-AI Strategy

Why a $3.1 Billion Bet on Industrial Data Changes the Game On June 30, 2026, Schneider Electric announced a definitive agreement to acquire Cognite, the Oslo-based industrial data and AI platform company, in an all-cash transaction valued at $3.1 billion. The deal is not a routine portfolio expansion. It signals a strategic pivot: Schneider Electric […]

Read Article arrow_forward

Inside CODESYS V3 OOP: A Comprehensive Guide for PLCs

Learning
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    classDef main fill:#2563eb,stroke:#fff,stroke-width:2px,color:#fff
    classDef secondary fill:#16a34a,stroke:#fff,stroke-width:2px,color:#fff
    classDef tertiary fill:#dc2626,stroke:#fff,stroke-width:2px,color:#fff

    A["CODESYS V3 OOP"]:::main --> B["Function Blocks"]:::secondary
    A --> C["Interfaces"]:::secondary
    A --> D["Inheritance"]:::secondary
    B --> E["Methods & Properties"]:::tertiary
AutomationView Icon AutomationView
calendar_month

Inside CODESYS V3 OOP: A Comprehensive Guide for PLCs

Transitioning from procedural ladder logic to Object-Oriented Programming often feels like a leap of faith for seasoned automation engineers. Yet, scaling complex machinery requires more than massive, monolithic programs scattered with global variables. By leveraging CODESYS V3 OOP, which strictly adheres to the IEC 61131-3 standard, engineers can build modular, testable, and reusable PLC code. […]

Read Article arrow_forward

Integrating WebRTC for Real-Time Video Streaming in SCADA HMI

HMI
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    cam["IP Camera (RTSP)"]:::green
    sfu["SFU / go2rtc Server"]:::blue
    hmi["SCADA HMI (WebRTC)"]:::red

    cam -->|Stream| sfu
    sfu -->|"< 500ms"| hmi

    classDef green fill:#16a34a,stroke:#fff,color:#fff,stroke-width:2px;
    classDef blue fill:#2563eb,stroke:#fff,color:#fff,stroke-width:2px;
    classDef red fill:#dc2626,stroke:#fff,color:#fff,stroke-width:2px;
AutomationView Icon AutomationView
calendar_month

Integrating WebRTC for Real-Time Video Streaming in SCADA HMI

Key Takeaways: Standard streaming protocols (HLS, DASH) induce multi-second delays, unacceptable for critical remote operations. WebRTC integration in SCADA HMI provides ultra-low latency (< 500ms), enabling real-time tele-operation and monitoring directly in modern browsers. Implementing WebRTC on the plant floor requires bridging legacy RTSP feeds and managing NAT traversal via STUN/TURN servers. Using a Selective […]

Read Article arrow_forward

Inside Three-Phase Transformer Sizing Calculation

Calculator
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    classDef main fill:#2563eb,stroke:#ffffff,color:#ffffff,stroke-width:2px;
    classDef calc fill:#16a34a,stroke:#ffffff,color:#ffffff,stroke-width:2px;
    
    A["Line Voltage (VLL)"]:::main --> C["kVA Rating Calculation"]:::calc
    B["Line Current (IL)"]:::main --> C
    C --> D["Short-Circuit Current"]:::calc
AutomationView Icon AutomationView
calendar_month

Inside Three-Phase Transformer Sizing Calculation

Key Takeaways: Industry standard practice recommends sizing a transformer at roughly 120% of the calculated maximum load to prevent thermal degradation. Short-circuit current calculation is heavily dependent on the percent impedance (%Z) found on the transformer nameplate. Ignoring downstream impedance when sizing secondary circuit breakers provides a conservative, “infinite bus” safety margin. Properly sizing an […]

Read Article arrow_forward

Optimize AutomationView SFC Debugging

AutomationView
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    init["Initial Step"]:::step --> token["Active Token"]:::active
    token -->|Unfulfilled Transition| next["Next State"]:::pending
    classDef step fill:#16a34a,color:#ffffff
    classDef active fill:#2563eb,color:#ffffff
    classDef pending fill:#dc2626,color:#ffffff
AutomationView Icon AutomationView
calendar_month

Optimize AutomationView SFC Debugging

Picture a packaging line abruptly halting mid-cycle. The motors are silent, the pneumatic cylinders are frozen, and the HMI simply indicates “System Waiting.” For industrial automation engineers, a stalled Sequential Function Chart (SFC) or Grafcet is a familiar headache. Identifying exactly which transition condition is missing out of dozens can consume hours of valuable production […]

Read Article arrow_forward

Inside Single Pair Ethernet (SPE): Architecting 10BASE-T1L for PLC Networks

Learning
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A[Main PLCnStandard Ethernet] --> B(SPE Switch / PSE)
    B -- "10BASE-T1L + PoDL" --> C[SPE Field Sensor]
    B -- "10BASE-T1L + PoDL" --> D[SPE Actuator]
    style A fill:#2e5b8e,color:#fff
    style B fill:#e67e22,color:#fff
    style C fill:#27ae60,color:#fff
    style D fill:#27ae60,color:#fff
AutomationView Icon AutomationView
calendar_month

Inside Single Pair Ethernet (SPE): Architecting 10BASE-T1L for PLC Networks

Replacing legacy 4-20mA systems with IP-based networks has always been a challenge in the process industries due to distance limits. Single Pair Ethernet (SPE), specifically the IEEE 802.3cg 10BASE-T1L standard, fundamentally changes this by delivering power and 10 Mbps Ethernet over a single twisted pair up to 1,000 meters. This shifts the automation paradigm from […]

Read Article arrow_forward

Inside the Power Grid India SCADA Upgrade: Modernizing the National Transmission Network for 2026

Automation News
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A["National Transmission (NTAMC)"]:::mainNode -->|Real-Time Telemetry| B["Regional Centers (RTAMCs)"]:::subNode
    A -->|Integration| C["Renewable Energy Grid"]:::subNode
    classDef mainNode fill:#2563eb,stroke:#1e40af,color:#ffffff,stroke-width:2px;
    classDef subNode fill:#16a34a,stroke:#166534,color:#ffffff,stroke-width:2px;
AutomationView Icon AutomationView
calendar_month

Inside the Power Grid India SCADA Upgrade: Modernizing the National Transmission Network for 2026

Key Takeaways: The Power Grid Corporation of India has approved a ₹485.04 crore modernization of its SCADA systems. Upgrades will target the National Transmission Asset Management Centre (NTAMC) and Regional Transmission Asset Management Centres (RTAMCs). A primary driver is the technical complexity of integrating intermittent renewable energy sources into the existing grid. The sheer scale […]

Read Article arrow_forward