Welcome to the Industrial Automation website!

NameDescriptionContent
HONG  KANG
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

SIEMENS SIMATIC S5-115U Programmable Controller Comprehensive Analysis and Professional Application Guide

来源: | 作者:FAN | 发布时间 :2026-01-27 | 283 次浏览: | Share:

SIEMENS SIMATIC S5-115U Programmable Controller Comprehensive Analysis and Professional Application Guide

SIMATIC S5-115U is a classic programmable logic controller (PLC) designed by Siemens for the mid to low performance range. With its high modularity, powerful scalability, and mature programming environment, it has a wide range of application foundations and lasting technological influence in the field of industrial automation. This article is based on its official technical manual and provides a systematic analysis of its system architecture, functional characteristics, programming methods, and engineering practices, providing in-depth technical references and application guidelines for automation engineers.


System Overview and Core Positioning

S5-115U belongs to the SIMATIC S5 series and is a modular programmable controller designed specifically to meet modern industrial control requirements. It is widely used in various industries such as automobile manufacturing, plastic processing, heavy machinery, chemical industry, food and beverage, building services, transportation, and energy management. It is capable of handling tasks ranging from simple open-loop logic control to complex closed-loop process control.

The core design philosophy of the system is modularity and flexibility. Users can freely combine components such as power modules, central processing units, digital/analog input/output modules, intelligent I/O modules, and communication processors based on the scale and complexity of specific control tasks to build customized control solutions. This modular design not only facilitates system configuration and maintenance, but also leaves ample space for later functional expansion and upgrades.


Detailed explanation of core system components

1. Central Processing Unit (CPU)

S5-115U offers four CPU models: CPU 941, 942, 943, and 944, with increasing performance in sequence.

CPU 941/942: equipped with microprocessor and application specific integrated circuit (ASIC), providing 2KB and 10KB internal RAM respectively, suitable for basic control tasks.

CPU 943: Equipped with 48KB of internal RAM, significantly improving processing speed, supporting models with two serial interfaces, and featuring integrated real-time clock and ASCII driver functions.

CPU 944: As the flagship model, it provides 96KB of internal RAM and the fastest instruction execution speed, supports advanced communication protocols (such as 3964R), dual serial ports, and more powerful integrated functions.

All CPUs are integrated with PID control algorithm, which can be combined with simulation modules to achieve up to 8 control loops, with a sampling time of up to 100ms. The integrated hardware clock of CPU 943/944 provides a hardware foundation for timestamp recording and timing tasks.

2. Input/output module

Digital module: Provides non isolated and isolated versions, adapted to different on-site signal levels (such as 24V DC, 120/230V AC). Through the front connector wiring, it supports screw or spring crimping for easy installation and maintenance. The status of each channel is visually displayed by LED.

Simulation module: used to process continuous process variables such as temperature and pressure. The analog input module supports multiple measurement ranges through replaceable range cards; The analog output module covers standard voltage or current output signals, used to drive actuators such as valves and speed controllers.

3. Intelligent I/O modules and communication processors

Intelligent I/O module (IP): equipped with an independent processor, specialized in handling real-time demanding tasks such as high-speed counting, position detection, time measurement, closed-loop control, etc., greatly reducing the load on the CPU.

Communication Processor (CP): It realizes human-computer interaction and machine communication, supports connecting printers, operation panels, monitoring terminals, and can access SINEC L1 local area network and other network systems. It is the key to achieving distributed control and centralized monitoring.

4. Power supply and mechanical structure

Power module (PS 951): converts external grid voltage (24V DC/120V AC/230V AC) into 5V, 5.2V, and 24V DC required internally by the system, and provides battery backup for RAM. The module has voltage monitoring and fault indication functions.

Installation structure: System components are installed on standard mounting rails (CR/ER) to form a central controller (CC) or expansion unit (EU). Through the interface module (IM), centralized (cable length ≤ 2.5m) or distributed (up to 3000m) configurations can be built, and I/O devices can be installed nearby sensors and actuators, greatly saving wiring costs.


STEP 5 Programming Languages and Software Architecture

S5-115U uses Siemens standard STEP 5 programming language, which provides multiple program representation methods to adapt to the habits of different engineers:

Statement Table (STL): A text-based instruction sequence with high execution efficiency and the most comprehensive functionality.

Ladder diagram (LAD): Using relay ladder diagram symbols is intuitive and easy to learn, especially suitable for electrical engineers.

Function Block Diagram (CSF): Use logical gate symbols to represent Boolean operations.

GRAPH 5: Graphic programming specifically designed for sequential control systems.

Program Structure and Block Types

STEP 5 adopts structured programming thinking to organize control programs into different types of blocks:

Organizational Block (OB): The interface between the operating system and user programs. OB1 is the main program that executes in a loop; OB21/OB22 handles cold start; OB2-OB5 response process interrupted; OB10-OB13 implements time interruption; Other OBs are used to handle errors or provide special features (such as PID algorithm OB251).

Program Block (PB)/Sequential Control Block (SB): Used to build structured user programs that can be divided by function or process.

Function Block (FB): A parameterized subroutine used to encapsulate complex or reusable functions. Supports basic, supplementary, and system operations, with powerful functionality.

Data Block (DB): Stores the recipe, set values, text information, and other data required by the program. DB1 is used for system function initialization, while DB0 is used by the operating system.

Core Programming Concepts

Process Image (PII/PIQ): The CPU reads the input signal to the Process Input Image (PII) at the beginning of each scanning cycle, and writes the Process Output Image (PIQ) to the output module at the end of the cycle. This batch processing method improves the consistency and efficiency of program execution. Users can also directly access I/O through commands such as "L PW" and "T PW" to achieve fast response.

Operand area: including input (I), output (Q), flag bit (F), timer (T), counter (C), data block (D), etc., providing clear storage space division for the program.

Nesting and Stacking: The program supports up to 32 levels of block call nesting. When called, the return address and current block information are stored in the block stack (BSTACK) to ensure that the program can return correctly.

System startup, debugging, and diagnosis

System startup and program testing

Power on and reset: After power on, the CPU executes a cold start routine to check the I/O module configuration. The mode selection switch can be used for "overall reset", clearing programs and all data from memory.

Program loading: The program can be directly downloaded to the CPU RAM through the programmer (PG), or burned to the EPROM/EEPROM submodule before inserting into the CPU. The CPU 943/944 will automatically load the contents of the submodule into the internal RAM for high-speed execution.

Test function:

Program Check: Step through the program and observe the signal status.

Status Display (STATUS/STATUS VAR): Real time signal status of online monitoring operands or direct reading of I/O.

FORCE VAR: Forcefully modify the values of variables such as I/O and flag bits, used to check wiring and output devices.

Comprehensive diagnostic capabilities

S5-115U has powerful self diagnosis and fault indication capabilities:

Interrupt Stack (ISTACK) Analysis: When the CPU stops due to a fault, the operating system stores the cause of the fault (such as "QVZ" timeout, "ZYK" scan cycle exceeding limit, "NNN" illegal instruction, etc.) and related contextual information in ISTACK. ISTACK can be read and analyzed through a programmer to quickly locate the root cause of the fault.

LED indicator lights: The LEDs on the CPU panel (RUN/STOP/QVZ/ZYK/BASP, etc.) and module channel LEDs provide intuitive status and fault indications.

Block Stack (BSTACK) Tracking: After a program stops due to an error, BSTACK can be viewed to trace the block call path at the time of the error, helping debug complex structured programs.


Installation Configuration and Electromagnetic Compatibility Guide

The manual provides detailed installation specifications to ensure reliable operation of the system:

Electrical installation: emphasizes the separation of control circuit and load circuit, equipotential connection, grounding specifications, and correct wiring methods for non isolated and isolated modules.

Cable laying and shielding: To suppress electromagnetic interference, it is required to separate and lay bus/signal lines, low-voltage power lines, and high-voltage power lines in groups. The signal cable should use a braided mesh shielding layer and achieve low impedance, large-area grounding at the point where the cable enters the control cabinet.

Environment and heat dissipation: The installation of the cabinet must ensure the minimum spacing between modules. When the power load exceeds 7A or high-power modules are used, fan components must be installed to ensure heat dissipation.


Communication and Advanced Features

S5-115U supports a wide range of communication options and is key to achieving factory automation:

Point to point connection: Direct data exchange between PLCs is achieved through the second serial port of CP 524/525 or CPU 943/944 (as the main station).

LAN: SINEC L1 industrial LAN can be accessed through modules such as CP 530.

ASCII driver: The second serial port of CPU 943/944 can be configured in ASCII driver mode to directly connect to standard serial devices such as printers and barcode readers.

Integrated real-time clock: The hardware clock built into CPU 943/944 can record time and date stamps, and read and write through the system data area.


Model Supplement

1、 Central Processing Unit (CPU)

CPU 941-7UB11

CPU 942-7UB11

CPU 943-7UB11

CPU 943-7UB21

CPU 944-7UB11

CPU 944-7UB21

2、 Power module (PS)

PS 951

6ES5 951-7LB14

6ES5 951-7NB13

6ES5 951-7LD21

6ES5 951-7NB21

6ES5 951-7ND41

6ES5 951-7ND51

3、 Digital module

6ES5 434-7UA12

434-7 (digital input module with process interrupt)

6ES5 482-7LA11 (Digital Input/Output Module)

6ES5 485-7LA11 (Digital Input/Output Module)

4、 Simulation module

460-7LA12 (Analog Input Module)

460-7LA13 (Analog Input Module)

465-7LA13 (Analog Input Module)

466-3LA11 (Analog Input Module)

5、 Intelligent input/output module (IP, WF)

IP 240

IP 241

IP 242

IP 243

IP 244

IP 245

IP 246

IP 247

IP 252

WF 625

6、 Communication Processor (CP)

CP 513

CP 524

CP 525

CP 526

CP 527

CP 530

CP 535

CP 543

CP 551

CP 552

CP 580

CP 581 (6ES5 581-1ED13)

CP 143

7、 Interface Module (IM)

IM 304 / IM 314

IM 304-3UA1

IM 304-3UB1

IM 305

IM 306

IM 307 / IM 317

IM 308 / IM 318

IM 310 (AS 301)

IM 311 (AS 302/AS 311)

IM 305/IM 306

8、 Installation rack (CR center, ER expansion)

CR 700-0 (6ES5 700-0LA12)

CR 700-0 (6ES5 700-0LB11)

CR 700-1

CR 700-2

CR 700-2LB

CR 700-3

ER 701-0

ER 701-1

ER 701-2

ER 701-3

ER 701-3 (S5-115U)

EU 183U

9、 Memory submodule

6ES5 375-1LA15 (EPROM 8 KB)

6ES5 375-1LA21 (EPROM 16 KB)

6ES5 375-1LA41 (EPROM 32 KB)

6ES5 375-1LA61 (EPROM 64 KB)

6ES5 375-1LA71 (EPROM 128 KB)

6ES5 375-0LC31 (EEPROM 8 KB)

6ES5 375-0LC41 (EEPROM 16 KB)

6ES5 375-0LD11 (RAM 8 KB)

6ES5 375-0LD21 (RAM 16 KB)

6ES5 375-0LD31 (RAM 32 KB)

10、 Programmer (PG)

PG 605U

PG 635

PG 670

PG 675

PG 685

PG 695

PG 710

PG 730

PG 750

PG 770

11、 Operator Panel (OP) and Monitor

OP 393

OP 395

OP 396

DG 335 (monitor)

DS 075 (monitor)

12、 Printer (PT)

PT 88

PT 89

PT 90

  • Eaton PW9130I3000T-XL UPS 3000VA
  • Eaton EDB3225L Molded Case Circuit Breaker
  • Eaton SLX010A1-4A1B0 Contactor
  • Eaton 2D78559G01 Control Module
  • Eaton SPD160208Y2A Surge Protective Device
  • EATON MVX001A0-4 Variable Frequency Drive
  • EATON EASY204-DP Programmable Logic Control Relay
  • EATON 99-6120-01 Industrial Control Interface Module
  • EATON MP-4000 66D2206G01 Motor Protection Relay
  • EATON 101073072-001 Industrial Control Switch Module
  • EATON EEA-PAM-523-A-32 Proportional Amplifier
  • EATON FUE-563004 Industrial Control Unit
  • EATON HJD3225 Molded Case Circuit Breaker
  • EATON FP-4000 FP4201-00 Protective Relay
  • EATON 99-6120-01 Industrial Control Component
  • Eaton MP4010 Motor Protection Relay
  • Eaton XV-102-E6-70TWRC-10 HMI Panel
  • Eaton 245U-E Industrial Wireless Ethernet Bridge
  • Eaton XV-430-10TVB-1-10 HMI Touch Panel
  • Eaton MTL 4850 RS485 Surge Protector
  • EATON 1455A-6503 Industrial Control Relay Module
  • EATON XV-230-57CNN-1-13-1 Industrial HMI Touch Panel
  • EATON XV-440-12TSB-1-10 HMI Touch Panel Operator Interface
  • EATON D100DCR40 Digital Control Relay Smart Relay Controller
  • EATON E4548 Industrial Operator Interface Panel
  • EATON HMI06CE Operator Interface
  • EATON FI3200L Molded Case Circuit Breaker
  • EATON XC-CPU201 PLC Controller
  • EATON XV-102-D8-57TVRC-10 HMI PLC
  • EATON 5P650iR Rackmount UPS
  • Eaton HMI10CE / HMI10CE02 Operator Interface
  • Eaton EEA-PAM-523-A-32 Proportional Amplifier
  • Eaton HTP-SC16M / MTL Surge Protection Device
  • Eaton XC-CPU202-EC4M-8DI-6DO-XV PLC CPU
  • Eaton XV-230-57CNN-1-13-1 HMI Panel
  • EATON XV-303-70-C00-A00-1C Industrial HMI
  • EATON XV-440-12TSB-1-50 Industrial HMI Panel
  • EATON XV-152-D6-10TVR-10 Industrial HMI Touch Panel
  • EATON CAN-16DI/P CAN16DIP Digital Input Module
  • EATON S801+N66N3S Soft Starter Motor Controller
  • EATON XV-303-70-B00-A00S07 High-Performance Touch HMI
  • EATON 92-02123-00 7600C Industrial Control Component
  • EATON HMCP150T4CBP10 Motor Circuit Protector
  • EATON EEA-PAM-553-A-32 Proportional Amplifier
  • EATON XV-102-D6-57TVR-10 Touch Panel HMI
  • Eaton 66D2032GX1 MP-3000 Motor Management Relay
  • Eaton CAN-16DO/0.5A-PK Digital Output Module
  • Eaton XV-102-B5-35TQR-10-PLC HMI with PLC
  • Eaton MP-3000 66D2032GX1 Motor Protection Relay
  • Eaton WL-35717F Circuit Breaker Accessory
  • EATON HFD3150 Molded Case Circuit Breaker
  • EATON HFD3030 Molded Case Circuit Breaker
  • EATON XV-230-57CNN-1-13-1 HMI Touch Panel
  • EATON CEAG CU CG-S 40071360300 Control Unit
  • EATON SDN90186 Industrial Power Supply Module
  • EATON HMCP150U4 Motor Circuit Protector
  • EATON 7801C57 Industrial Control Module
  • EATON HMCP400R5 Motor Circuit Protector
  • EATON MP-3000 Motor Protection Relay
  • EATON PGGLOBL1701DPRO 1785T Touch Panel
  • EATON MFD-CP8-NT CPU Module
  • EATON WL-35717F Vacuum Interrupter
  • EATON EEA-PAM-535-A-32 Amplifier
  • EATON FP5000-00 FP5200-00 66D2041G11
  • EATON Q-504A Current Monitoring Relay
  • UniOP eTOP507 Touch Screen Panel
  • UniOP EK-04 Control Panel IT2 6ZA983-7
  • UniOP ETOP33C-0050 Operator Interface Display Panel
  • UniOP Bkdr-16-0045 Operator Interface Display
  • UniOP ETOP504U101 eTOP504 Touchscreen HMI
  • UNIOP CP01F-02-0045 Industrial Control Panel
  • UNIOP MD02R-04-0045 Alphanumeric Display Terminal
  • UNIOP EXOR ERT-16-0045 Communication Module
  • UNIOP EK-04 CONTROL PANEL Alphanumeric Operator Terminal
  • UNIOP ETOP306-109 Industrial HMI Touch Panel
  • UNIOP ETOP 05-0045 5.7" HMI
  • UNIOP ECT-16-0045 Ethernet HMI Controller
  • UNIOP MD02R-04 Air Compressor HMI
  • UNIOP CP11G-04-0045 11" Graphic HMI
  • UNIOP eTOP308 8" High-Performance HMI
  • UniOP ETOP11-0050 Operator Interface Touch Panel HMI
  • UniOP ETOP307-U301 Operator Interface Touch Panel HMI
  • UniOP EPAD03-0046 Operator Interface Panel Industrial HMI
  • UniOP MD00R-04 SC 4000 Operator Panel Industrial HMI
  • UniOP MD01R-02-0045 Operator Panel Industrial HMI Interface
  • UNIOP MD00R-04-0045 Compact Alphanumeric Display Module
  • UNIOP BKDR-16T-0045 Alphanumeric Terminal
  • UNIOP ETOP515 - U2P1 15-Inch High-Performance HMI
  • UNIOP eTOP05-0045 Compact Touch HMI Specifications
  • UNIOP ER-04-0045 Industrial Operator Interface Module
  • UNIOP MDR00R-04-0045 SC4000 HMI
  • UNIOP EK-12 Operator Panel 6ZA952-7
  • UNIOP ETOP06-0050 5.6" Touch HMI
  • UNIOP MD03R-02-0045 Micro HMI
  • UNIOP eTOP507M 15" High-Performance HMI
  • UNIOP ETOP307-U301 High-Performance Touch HMI
  • UNIOP CP01F-02-0042 Industrial Control Panel
  • UNIOP CP01F-02-0021 Compact Operator Panel
  • UNIOP MKDL 16 0021 LCD Operator Terminal
  • UNIOP MD02R-04-00A6 Alphanumeric Display Module
  • UNIOP eTOP11-0050 10.1" Widescreen HMI
  • UNIOP ETOP 05-0045 5.7" HMI
  • UNIOP eTOP40C-0050 4.3" Compact HMI
  • UNIOP epad05 5" Industrial Tablet HMI
  • UNIOP CP10G-04-0045 10.4" Graphic HMI
  • UniOP EK04 Operator Panel HMI Display Keypad 6ZA983-7
  • UniOP TP-01 Touch Screen Panel Industrial HMI Interface
  • UniOP PQ5187 Operator Interface Module Industrial HMI
  • UniOP MD02R-04-0045 Operator Interface Module
  • UniOP MD03R-02-0042 Operator Interface Module Industrial HMI
  • UNIOP MD00R-04-0045 Text-Based Operator Module
  • UNIOP MKDR-16-0045 Alphanumeric Operator Terminal
  • UNIOP eTOP05-0045 Compact HMI Touch Screen
  • UNIOP EK-04 CONTROL Operator Terminal
  • UNIOP eTOP30-0050 Industrial HMI Touch Panel
  • UNIOP ETOP03-0046 3.5" Touch HMI
  • UNIOP CP01F-02-0045 Function Key HMI
  • UNIOP CP01R-04-0045 Text Display HMI
  • UNIOP eTOP06-0050 5.6" Touch HMI
  • UNIOP eTOP10B-0050 10.1" Touch HMI
  • UNIOP eTOP03-0046 Touch Screen HMI
  • UNIOP MKDR-16-TA-0045 Keypad Display Terminal
  • UNIOP MD02R-04-0042 Micro Display Module
  • UNIOP ECT-16-0045 Ethernet HMI Controller
  • UNIOP CP05R-04-0045 HMI Operator Panel
  • UniOP ETOP05-0045 Operator Panel Industrial HMI Interface
  • UniOP MD02R-04-0045 Operator Interface Module Industrial HMI
  • UniOP MD00R-02-0045 Operator Interface Module Industrial HMI