+086-15305925923

K-WANG

Service expert in industrial control field!
NameDescriptionContent
Adequate Inventory, Timely Service
pursuit of excellence 
Ship control system
Equipment control system
Power monitoring system
Current position:
新闻动态
newS
   
Brand

SIEMIENS S7-1200/1500 Controller TIA Portal Programming Guide

From: | Author:Wang | Time :2025-11-24 | 323 visit: | 🔊 Click to read aloud ❚❚ | Share:



SIEMIENS S7-1200/1500 Controller TIA Portal Programming Guide

Overview

The Siemens S7-1200/1500 Controller TIA Portal Programming Guide (V1.6 version) focuses on optimizing programming and covers the core innovations of the S7-1200/1500, such as optimization blocks, new data types VNet, direct machine code compilation, general programming specifications (block structure, symbol addressing, memory management), hardware independent programming methods, STEP 7 Safety programming points, and visual automatic generation solutions. It explicitly recommends using optimization blocks instead of non optimization blocks, symbol addressing instead of absolute addressing, and global data blocks instead of bit memory. At the same time, it provides a large number of performance optimization techniques (such as avoiding deep call hierarchy and using loop instructions reasonably), aiming to help users achieve standardized, efficient, and reusable automation program development.


S7-1200/1500 Core Innovation

1. Programming languages and compilation optimization

Language support differences:

Programming language S7-1200 S7-1500

Ladder diagram (LAD) ✅   ✅

Function Block Diagram (FBD) ✅   ✅

Structured Control Language (SCL) ✅   ✅

Statement Table (STL) ❌   ✅

Sequential Function Graph ❌   ✅

Compilation method: S7-1200/1500 generates machine code directly for all languages, without the intermediate step of "LAD/FBD → STL → machine code" for S7-300/400, ensuring consistent performance for all languages.

2. Optimize block technology (core innovation)

Optimized block vs non optimized block:

Feature optimization block (recommended) Non optimization block (only compatible)

Data storage is automatically sorted by data type, stored in declared order without gaps, and may have gaps

The addressing method can be either symbolic addressing or absolute addressing

Retention settings: A single label can be set to maintain the entire block or not to maintain it

Download feature supports uninitialized download (RUN mode update) not supported

Fast access speed (processor optimized storage) slow

Setting method: By default, "Optimize Block Access" is enabled for new blocks, which can be batch modified in the "Program Block" list; The optimization properties of instance DB inherit from the associated FB.

3. New data types

Core new type:

Data Type Applicable Controller Purpose Key Features

VARIANT S7-1500; S7-1200 (FW4.1+) dynamic pointer with type detection, replacing the ANY pointer, supporting symbol access

Date_Time_Long (DTL) both support timestamp storage containing year/month/day/nanosecond, with symbol accessible sub fields (such as DTL. Hour)

Both LReal and LReal support high-precision floating-point numbers of 64 bits and 15 decimal places, making them suitable for precise calculations

LTime only has a long-term storage range of ± 106751 days for S7-1500 and supports nanosecond level accuracy

WSRING only supports S7-1500 Unicode strings for multiple languages (such as Chinese and Latin), with a maximum of 16382 characters

4. Key instruction upgrade

MOVE series instructions:

Advantages of Instruction Usage

MOVE supports single value copying and complete copying of structures/arrays

MOVE_SLK array partial copy specifies the starting index and quantity, efficiently processing the array

MOVE_SLK_VARIANT Dynamic Type Copy Run Time Detect Data Types, Supports PLC Data Types/Arrays

The serialize/deserialize structure and byte array conversion are used for communication frame packaging/unpacking, supporting VNet input

Other instructions:

TypeOf(): detects the data type pointed to by VNet on the label (SCL only);

RUNTIME: measures program/block running time, supports performance optimization;

Multi assignment (V14+): such as # a:=# b:=# c:=0; Simplify initialization.

image.png

Universal Programming Specification

1. Program block structure

Core block type:

Key features of block type functionality

Organizational block (OB) operating system call, management program execution including loop OB (OB1), interrupt OB (OB40 hardware interrupt), etc; S7-1200 up to 100 cycles/start OB, S7-1500 supports clock interrupt OB

Function (FC) has no state block and no independent storage temporary label. Only the current call is valid, and data needs to be passed through parameters; Support direct participation of return values in SCL formulas

Function block (FB) has a status block that requires the instance DB static label to maintain its value; The instance DB structure is defined by FB and cannot be modified separately

Data Block (DB) stores data in a global DB for all blocks to access; Instance DB is only associated with FB usage

Block Reuse Techniques:

Multiple instances: FB calls other FBs to store data in their own instance DB, reducing the number of instance DBs;

Typeization block: Store FB/FC/PLC data types in the global library, supporting cross project reuse and batch updates.

2. Memory management

Memory type and access speed (from fast to slow):

Optimize the temporary labels, FC/FB parameters, and non persistent static labels of the block;

Optimize the retention labels of blocks and optimize the global database;

Non optimized blocks;

Array access for runtime calculation index (such as # Array [# i]);

Indirect memory access (such as pointer operations);

Data replication between optimized and non optimized blocks.

Key recommendations:

Replace bit memory with global DB (M-zone): The size of M-zone varies depending on the controller, while global DB is more flexible and supports optimized storage;

Use temporary tag caching for frequently accessed I/O tags to reduce the number of I/O accesses;

Retention setting: Only the necessary labels need to be set to hold (such as process parameters) to reduce the cost of saving power-off data.

3. Addressing method

Symbol addressing (mandatory recommendation):

Advantages: The tag name is descriptive (such as # Motor1_Run) and automatically updates when the address changes, reducing errors;

Operation: Simply enter the symbol name in the instruction input box, right-click on "Define Label" to quickly create it.

Indirect access scheme:

Indirect array access: Replace pointers with # Array [# Index], such as # Temp:=# MotorSpeed [# i];;

Slice access: Directly access the bits/bytes of Byte/Word/DWord, such as # WordVar.% X0 (bits), # DWordVar.% W1 (words).

4. Performance optimization techniques

Disable the ENO evaluation (LAD/FBD) of blocks to reduce runtime detection;

Avoid deep level calling (≤ 8 layers), otherwise TIA Portal will compile alarms and increase protection code overhead;

FOR loop: Do not manipulate the loop counter (compiler optimized times), use EXIT to interrupt the loop;

Reduce unnecessary IF instructions, such as # Motor:=# On1 AND # On2; Replace IF # On1 AND # On2 THEN # Motor:=TRUE;  ELSE #Motor:=FALSE;  END_IF;。


Hardware independent programming

1. Data type compatibility

Only use EN 61131-3 standard data types (such as INT/DINT/REAL/BOOL), avoiding S7-300/400 specific types (such as S5TIME);

The timer/counter of S7-1200/1500 uses IEC standard blocks (such as TON/CUTU) and is integrated through multiple instances to avoid absolute addresses (such as T37).

2. Clock signal replacement

Do not use hardware clock memory (such as M0.5), use programming clock generation block instead:

Example: SCL writes FB, sets the frequency through the # Frequency parameter, # Q outputs pulses, and # Countdown outputs the remaining time;

Advantage: The clock frequency can be flexibly adjusted without relying on hardware configuration.

STEP 7 Safety Programming

1. Core components

F operation group: the execution unit of safety programs, including 1 fault safety OB and 1 main safety block, with a maximum of 2 created;

F-signature: a unique identifier for each F-component (F-I/O, F-block) used to detect configuration/programming changes;

Security Management Editor: Manage F run groups, F signatures, access permissions, and set security program passwords.

2. Key specifications

Data exchange: Standard programs and security programs only interact through two standard DBs, avoiding direct access to the security DB;

Performance optimization:

Avoid using TP/TON/TOF instructions (add protection code);

Disable the JMP/Label structure (resulting in additional system protection blocks);

Loop call hierarchy ≤ 8 layers;

Test restriction: The security program can only force testing when the security mode is disabled, with a maximum of 5 F-I/O forced at a time.


 Visual automatic generation (SiVArc)

1. Basic requirements

Tools: TIA Portal V14++SiVArc Options Package;

Prerequisite: The program is modularized (such as motor control FB, conveyor belt FB), and the visualization library includes standard image templates.

2. Control mode

Network comment: Add a tag (such as "SiVArc: Generate=True") when calling the network on FB. The SiVArc rule triggers generation through Contains (Block. NetworkComment, "Generate=True");

SiVArc variable: Define a variable in the "Plugin" label of the block (such as Location="Bottling_Test"), and the rule filters the generated range based on the variable value.


  • Metso XZB10025-011T12 - Moog Valve 9650962700
  • Metso XZB10025-010T12 - Moog Valve 9650965300
  • Metso-SP Transmitter Cable - Operating Unit with 10m Cable
  • Harkila Metso Hybrid - Hunting Jacket Willow Green
  • Metso ND8221/S1 - Neles Valve Positioner
  • Metso METSO10119 - ScreenCheck Component
  • Metso LK-2025 - Linkage Kit
  • Metso A416733 - IQweight External Air Gap Temperature Sensor
  • Metso RKC22MT - Automation Component
  • Metso A413281 - Automation Board
  • Metso LCP9HLY - Stainless Steel Enclosure
  • Metso NP704S/B1S1 - Pneumatic Positioner with I/P Converter
  • Metso BAH3 - Slurry Seal Type
  • Metso A413531-03 - PLC Module Chassis Rack
  • Metso P4610004 - MCAI Communicator Controller
  • Metso QN2AN03HDM - Quartz Valve Positioner Stonel
  • Metso RKW-352-XZ - Automation Component
  • Metso A4300081 - Kajaani LCD Display
  • Metso A428026 7B - Kajaani Rectifier Unit 1
  • Metso 202218 - Kajaani Sensor Power Supply SR 902660
  • Metso 9150 316SS CSTL - Jamesbury 150-2" BN50 Valve
  • Metso 81806 - IOP101 Module
  • Metso STOM000272 - Paper Bushing CR38
  • Metso 1975413 - Chain Hoist Links
  • Metso IMO G053-191597 - Minor Seal Kit
  • Metso VAL0087418 - Cylinder Valmet NTS6LV
  • Metso A413061 - DMU Board VPA 420355-4B
  • Metso P2620-80/25-100 - Automation Component
  • Metso VAL0035292 - Automation Component
  • Metso A413721 - Automation Component
  • Metso ST600 - Automation Component
  • Metso P4500001 - Automation Component
  • Metso SDBX/RA2 - CAT x KVM Extender
  • Metso D201126-DI8 - Digital Input Module
  • Metso D201189L - AI8H Analog Module
  • Metso NA004418 LK1016 - Wafersphere Actuator Mounting Bracket
  • Metso RKN172MTT - Repair Kit
  • Metso MM0311584 - Air Filter Kit RadialSeal
  • Metso 181517 - IOP301 Isolated Analog Input Module
  • Metso RAU3906506 - Automation Component
  • Metso 181208 - IOP332 Digital Input Module
  • Metso A413760 - AIF2C PCB Module
  • Metso 006 1089 36 - Shaft Bearing Seal
  • Metso A413046 - Automation Component
  • Metso VKJ650 - Automation Brake Component
  • Metso LK-1875 - Linkage Kit
  • Metso D201193L - FI4S24 Frequency Input Module
  • Metso D200533 - BIU82 Binary Input Module
  • Metso 500838-M1 - Impeller Pump Release Collar Assembly
  • Metso 2.00SB2ALUS19A - Pneumatic Cylinder 1.375 Stroke
  • Metso D201351 - RES Reserve Module
  • Metso A416100 - IQMoisture Spare Part Kit Halogen Lamp
  • Metso Slurry Pump - Back Liner
  • Metso 7088010042 - Bronze Lantern Ring
  • Metso IMC-101-M-SC - Industrial Media Converter
  • Voith S1-S1-CAM-ENCL - Metso Pump Cmare Housing & Bracket
  • Metso A4430726V1.1 - Kajaani Connection Box CI 4-9-10
  • Metso A413016 - NCU2 PLC Board
  • Metso D202213P - MBMT80 Base
  • Metso A413135 - AOU-4 Analog Output Board
  • Metso NP 724A - Pneumatic Valve Positioner
  • Metso A413246 - Automation Controller Module
  • Konaflex VKJ-650 - Disc Brake Set Pair
  • Metso WIN3096535D - Core Chuck
  • Metso D201380 - MBR Base with IBC & IPS
  • Metso D202213L - MBMT80 Base Module
  • Metso 181571 - IOP337 PLC Module
  • Metso MF0588336 - Main Hydraulic Filter
  • Metso 181504 - IOP303 RTD Input Module
  • Metso A413240 - PIC2 Board
  • Denver 566534PS - Case Liner Gland Side SRL Frame 2
  • Metso 181508 - IOP322 Digital Input Module 120V
  • Metso 181520 - IOP351 Relay Output Module Form A/B
  • Metso 181220 - IOP351 Relay Output Module
  • Metso A413150 - BOU 8 Binary Output Module
  • Metso 128400-M1 - Impeller
  • Metso D201379 - MBB Base with IBC & IPS
  • Metso 205181 - T/B MTD PRWSW Assembly
  • Metso QPX1C/K15 - Jamesbury Quadra-Powr X Actuator Valve
  • Harkila Metso Winter - Hunting Jacket Willow Green
  • Metso NE724A/A-L - Electro-Pneumatic Positioner
  • Metso PACP-100-80-31 916 - Automation Component
  • Metso 81814 - Automation Component
  • Metso ER-12-01-M-CT - Automation Board
  • Metso ELO24 - Automation Board
  • Metso A413000 - Valmet Neles CPU PLC Board
  • Metso XL-2213-0525 - Mainframe Bushing
  • Metso D100097 - ECR Extension Module
  • Metso 804511 - Filter Housing Assembly
  • Metso S420154 - Automation Rack Chassis
  • Metso M851232 - Automation Module
  • Metso D100532 02 - Automation Board
  • Neles QPX1C/M - Ball Valve with Quadra-Powr X Actuator
  • Metso 181535 - IOP322 Isolated Analog Output Module
  • Metso RKN-184-XTZ - Ball Valve Seat Repair Kit 4"
  • Metso N22022621 - Metal Plate
  • Metso 181560 - IOP341 Positioner Module
  • Metso LT 1213 S - Filter Service Kit for CAT C12 Engine
  • Aq-Matic 0032-99000 - Valve Diaphragm
  • Metso D200535 - BOU8 Output Board
  • Metso EDS-305-M-SC - Ethernet Switch
  • Metso 80424 - IOP110 Analog Output Module
  • Metso IOP351 - Relay Output Module Form A/B
  • Metso 181572 - IOP342 Module
  • Metso 1-1-2A3600TT - Ball Valve 1.5"
  • Metso A413154 - BOU8-4 Output Module
  • Metso A413140 - Valmet BIU 8 Board
  • Metso D201139 - IPS Power Supply type DDC7940
  • Metso PGH P411382-2000 - Metal Feed/Filtrate Hose
  • Valmet 503201404 - Automation Board
  • Metso 181507 - IOP331 Controller Module
  • Metso A413141 - BIU82 Binary Input Module
  • Metso KSD7447686 - Pneumatic Cylinder 5" Bore
  • Metso APL3003850 - Automation Component
  • Metso D201135L - Automation Controller
  • Metso A413125 - AIU8 Analog Input Module
  • Metso A413325 - IPU Power Unit
  • Metso 181573 - IOP346 PLC Module
  • Metso A413143 - BIU84 Binary Output Module Card
  • Metso A413152 - BOU82 Output Module
  • Metso PDP603 - Distributed Processing Unit 181555
  • Metso PDP601 - Distributed Processing Unit 181555
  • Metso A413040 - DCS Board DCU
  • Metso A413082 - CPU Processor Module
  • Valmet TI4W3 - Temperature Input Module
  • Valmet FI4S24 - Frequency Input Module
  • Metso 1064669615 - Fulcrum Bar
  • Valmet 181206 - IOP330 Digital Input Module