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

Siemens Simatic AX: Ultimate Graphical Ladder Logic Update

calendar_month
person Carvalho Raphael

Siemens Simatic AX: Ultimate Graphical Ladder Logic Update

Automation News
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A["Traditional OT<br>(Ladder Logic)"]:::ot --> C{"Siemens Simatic AX<br>Platform"}:::core
    B["Modern IT<br>(Git, CI/CD, TIA)"]:::it --> C
    C --> D["Agile PLC<br>Deployment"]:::result
    classDef ot fill:#1e3a8a,stroke:#3b82f6,color:#fff,stroke-width:2px;
    classDef it fill:#065f46,stroke:#10b981,color:#fff,stroke-width:2px;
    classDef core fill:#5b21b6,stroke:#8b5cf6,color:#fff,stroke-width:3px,font-weight:bold;
    classDef result fill:#991b1b,stroke:#ef4444,color:#fff,stroke-width:2px;
AutomationView Icon AutomationView

The Convergence of IT and OT in Modern Automation

Ask any PLC programmer what happens when IT dictates plant floor tools, and you’ll probably get a groan about overcomplicated text-based languages. Siemens Simatic AX (Automation X) originally walked exactly this line, targeting software engineers with advanced Git integration and object-oriented concepts while leaving traditional control engineers without their primary troubleshooting tool: Ladder Logic.

However, recent updates to the Simatic AX environment show that Siemens is actively listening to the OT side. By integrating graphical ladder diagram capabilities directly into a suite built for modern software engineering, they are finally linking the plant floor’s visual troubleshooting needs with the IT department’s version control standards.

Understanding Siemens Simatic AX

When Siemens launched Simatic AX as an extension to the TIA Portal ecosystem, it focused heavily on Structured Text and object-oriented programming. For developers building complex state machines or handling API calls to MES systems, this was a huge step forward. But try explaining a nested class structure to a maintenance technician trying to get a palletizer running at 2:00 AM.

The introduction of graphical ladder diagrams (LAD) within AX changes the dynamic. It allows teams to manage intricate algorithms using text-based programming while leaving safety interlocks, basic sequencing, and I/O mapping in a classical IEC 61131-3 visual format. You get the strict versioning of IT workflows alongside the immediate readability of traditional OT tools.

Key Architectural Improvements

With this update, several specific features bridge the gap between software development and hardware commissioning:

  • Git Version Control: Native Git support means you can finally manage branches, handle merge conflicts, and track individual changes without relying solely on proprietary project servers or manual archiving.
  • Automated Testing: Unit testing for PLC logic is now built-in. Developers can write test cases to validate specific function blocks in simulation before a single line of code touches the physical S7-1500 controller.
  • CI/CD Pipelines: Teams can set up automated pipelines that compile the code, run the unit tests, and deploy directly to edge devices or PLCs, removing manual deployment bottlenecks.
flowchart TD
    subgraph "IT Workflow"
        G["Git Repository"]
        CI["CI/CD Pipeline"]
        T["Unit Testing"]
    end
    subgraph "Siemens Simatic AX"
        AX["AX Compiler"]
        LAD["Graphical Ladder"]
        ST["Structured Text"]
    end
    subgraph "OT Environment"
        PLC["S7-1500 / S7-1200 PLC"]
        HMI["SCADA / HMI"]
    end
    
    G --> CI
    CI --> T
    T --> AX
    LAD --> AX
    ST --> AX
    AX --> PLC
    PLC --> HMI
    
    classDef IT fill:#0f172a,stroke:#38bdf8,color:#fff;
    classDef AX fill:#1e1b4b,stroke:#8b5cf6,color:#fff,stroke-width:2px;
    classDef OT fill:#14532d,stroke:#4ade80,color:#fff;
    
    class G,CI,T IT;
    class AX,LAD,ST AX;
    class PLC,HMI OT;

Comparing Development Approaches

To see where AX fits, we have to compare it directly with the standard TIA Portal workflow. TIA Portal is still the required environment for full hardware configuration and standard machine design. AX doesn’t replace it; rather, it provides a different, software-centric entry point for code generation.

Feature Traditional TIA Portal Siemens Simatic AX
Target Audience Control Engineers, Technicians Software Engineers, Hybrid Automation Engineers
Version Control Proprietary Project Server Native Git Integration
Programming Focus Visual (LAD, FBD), Procedural Object-Oriented (ST), Modular, Now with Visual LAD
Testing Methodology Manual Simulation (PLCSIM) Automated Unit Testing via CI/CD
Hardware Ecosystem Full Siemens Portfolio Integration Focused on Advanced Controllers and Edge Devices

Why Graphical Ladder Logic Matters in IT Workflows

If AX is built for software engineers, why bring back ladder logic? The reality on the factory floor is that code maintainability isn’t just about clean syntax; it’s about fault tracing. When a proximity sensor gets crushed or an e-stop circuit drops unexpectedly, maintenance staff need to trace the electrical logic visually.

By bringing LAD into AX, Siemens provides a compromise. You can handle complex data arrays and MQTT publishing in modular Structured Text, but leave the actual motor starters and cylinder controls in ladder logic. A change made during a night shift to bypass a faulty sensor can now be tracked via Git, reviewed by the engineering team the next morning, and properly merged into the master project—preventing the classic “who changed the code?” scenario.

Preparing for Software-Driven Automation

Working with platforms like Siemens Simatic AX requires a shift in how control engineers operate. It means getting comfortable with Git commands, understanding unit testing frameworks, and rethinking how a PLC program is structured.

The gap between IT and OT isn’t just closing; the two domains are actively blending. The tools are now mature enough to handle both the strict software standards of the IT world and the raw troubleshooting requirements of the plant floor.

Upgrade Your Engineering Toolkit

If you need practical components to streamline your projects, check out the AutomationView Store. We offer tested code templates and SCADA assets designed specifically to save you time during commissioning.

Share this article

Stay Updated with Automation News

Get the latest articles and news delivered directly to your inbox.

Log in to Subscribe

You must be registered and logged in to manage subscriptions.

Recommended for you

Structured Text vs Ladder Logic: 5 Essential PLC Tips

Learning
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A{PLC Programming}
    A -->|Visual| B[Ladder Logic]
    A -->|Textual| C[Structured Text]
    B --> D[Machine Sequence]
    C --> E[Data Processing]
AutomationView Icon AutomationView
calendar_month

Structured Text vs Ladder Logic: 5 Essential PLC Tips

The Reality of PLC Programming Choices For decades, the factory floor has been dominated by relay-style diagrams. Yet, as automation systems scale to handle array processing, MQTT communications, and multi-axis kinematics, limiting a project to Ladder Logic can severely handicap development speed. Conversely, writing a machine’s main safety sequence entirely in Structured Text can frustrate […]

Read Article arrow_forward

SIMATIC S7-1200 G2: 5 Powerful Upgrades You Must See

Automation News
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A[S7-1200 G2] --> B[Double Memory]
    A --> C[Motion Control]
    A --> D[Dual PROFINET]
    A --> E[NFC Diagnostics]
    B & C & D & E --> F[Enhanced Automation]
AutomationView Icon AutomationView
calendar_month

SIMATIC S7-1200 G2: 5 Powerful Upgrades You Must See

Siemens recently released the SIMATIC S7-1200 G2, a major hardware revision of their compact PLC lineup. After over a decade relying on the original S7-1200, machine builders are now getting features previously reserved for the S7-1500, such as integrated motion control and dual PROFINET ports. However, this upgrade isn’t just a firmware bump—it introduces physical […]

Read Article arrow_forward

3 Ultimate Ways Agentic AI in Automation Transforms PLCs

Automation News
%%{init: {'theme':'dark', 'themeVariables': { 'background': '#001c38' }}}%%
flowchart LR
    A[Traditional PLCs] -->|Static Rules| B(Rigid Automation)
    C[Agentic AI] -->|Dynamic Learning| D(Autonomous Control)
    D --> E[Optimized Operations]
AutomationView Icon AutomationView
calendar_month

3 Ultimate Ways Agentic AI in Automation Transforms PLCs

7 Ways Agentic AI in Automation Transforms PLCs If you have ever spent hours troubleshooting a state machine that stalled because a sensor tripped 10 milliseconds too late, you know the limitations of static PLC logic. Programmable Logic Controllers have been the bedrock of industrial control, but their rigid ‘if-this-then-that’ rules often struggle with complex, […]

Read Article arrow_forward