February 22, 2018

Wincc Advanced panels


SIMATIC PCs with WinCC Runtime Advanced:




-SIMATIC Rack PC: Rack PC 547B, IPC547C, IPC547D, Rack PC IPC647C, IPC647D, Rack PC IPC847C, IPC847D

 -SIMATIC Box PC: IPC227D, Box PC 427B, IPC427C, IPC427D, Box PC 627B, IPC627C, Box PC 827B, IPC827C

-SIMATIC Panel PC: IPC277D, Panel PC 477B, IPC477C, IPC477D, Panel PC 577B, IPC577C, Panel PC 677B, IPC677C, IPC677D

 -SIMATIC modular Embedded Controller: EC31

- Industrial Flat Panel (Multi-Touch)

- Standard PC with WinCC Runtime Advanced

- SINUMERIK PC: PCU 50.3, PCU 50.5

Wincc HMI Models

Siemens HMI Panel Overview

Human Machine Interface (HMI) panels from Siemens are integral to industrial automation systems, allowing operators to monitor and control processes. Siemens offers various families of HMI panels designed to suit different performance levels and applications—ranging from entry-level Basic Panels to advanced Comfort Panels.

🔹 Basic Panels – First Generation

These panels are compact and cost-effective, ideal for simple virtualisation tasks in small-scale applications.

Model

Screen Type

Screen Size

Key Features

KP300 Basic

Keypad

3"

Compact display with navigation keys

KTP400 Basic

Touch

4"

Entry-level touch interface

KTP600 Basic

Touch

6"

Mid-sized HMI with simple configuration

KTP1000 Basic

Touch

10"

Larger screen for expanded visualization

TP1500 Basic

Touch

15"

High-resolution interface for wider scope

🔹 Basic Panels – Second Generation

The second generation introduced performance improvements, modern touch functionality, and broader Ethernet capabilities for enhanced integration.

Model

Screen Size

Improvements Over 1st Gen

KTP400 Basic

4"

Faster processor, improved visuals

KTP700 Basic

7"

Enhanced memory and communication protocols

KTP900 Basic

9"

Multi-language support, larger viewing area

KTP1200 Basic

12"

Wider screen, scalable for larger control tasks

🖥️ Comfort Panels – WinCC Comfort

Comfort Panels are designed for demanding applications requiring advanced virtualisation, diagnostics, and complex control logic.

Panel Type

Model(s)

Notable Features

Mobile Panels

Mobile Panel 177, 277

Portable operation, ideal for flexible control

70 Series

OP 73, OP 77A, OP 77B

Budget-friendly models for small projects

170 Series

TP 177A, TP 177B, OP 177B

Improved screen clarity and input options

270 Series

TP 277, OP 277

Color TFT screens and multimedia integration

Multi Panels

MP 177, MP 277, MP 377

High-end performance, advanced graphics

⚙️ Summary

Panel Family

Target Application

Display Type

Screen Size Range

Basic Panels

Entry-level automation

Touch/Keypad

3" to 15"

Comfort Panels

Advanced industrial control

Touch/Mobile

4" to 19" (varies)

 

 


Truth-Tables, Boolean Equations

What Is a Truth Table?

A Truth Table lists all possible input combinations for a logic circuit and the corresponding output for each combination. It's used to visualise and analyze logic gates and expressions.

Example: 2-input AND Gate

A

B

Output (A AND B)

0

0

0

0

1

0

1

0

0

1

1

1

Boolean Equations

Boolean Equations represent logic operations mathematically, using symbols like:

+ → OR

· → AND

¬ or ' → NOT

Common Logic Functions

Operation

Symbol

Equation Example

Output Rule

AND

·

A · B

Output is 1 only if both are 1

OR

+

A + B

Output is 1 if either is 1

NOT

¬ or '

¬A or A'

Output is 1 if A is 0

XOR

A B

Output is 1 if inputs differ

Example: Boolean Equation to Truth Table

Let’s take a logic expression: Y = A · B + ¬C

A

B

C

¬C

A·B

Y (A·B + ¬C)

0

0

0

1

0

1

0

0

1

0

0

0

0

1

0

1

0

1

0

1

1

0

0

0

1

0

0

1

0

1

1

0

1

0

0

0

1

1

0

1

1

1

1

1

1

0

1

1

 

Scan cycle of PLC

Understanding PLC Program Execution and Scan Time

In an automated system, a Programmable Logic Controller (PLC) continuously executes its logic program in a repetitive cycle, known as the scan cycle, as long as the system remains powered.

How a PLC Executes a Program

  1. Input Status Update The PLC reads signals from physical input devices (sensors, switches) and stores them in a dedicated memory area called the I/O Image Table. This acts as a snapshot of all input states.

  2. Logic Evaluation The PLC executes the program from the first rung to the last, using the I/O Image Table rather than real-time input values. This ensures consistent logic evaluation during the scan.

  3. Output Update Once all logic instructions are processed, the PLC updates the output states—activating actuators, relays, etc.—based on the computed results.


 What Is Scan Time?

Scan time is the total time taken to complete one full input-process-output cycle.

  • For modern PLCs and small programs, scan time may be just a few milliseconds.

  • Older PLCs or complex programs may take 50–100 ms or more, potentially causing sluggish responses in fast-changing processes.

If scan time is excessive, the system may fail to detect quick events, leading to inaccurate control or missed inputs.

 Role of Special-Purpose I/O Modules

To overcome scan time limitations, certain tasks are handled by dedicated I/O modules:

  • High-Speed Counters: Capture fast pulses from devices like shaft encoders.

  • Precision Timers: Measure short durations more accurately than standard scan-based logic.

  • Isolated I/O Units: Operate independently from the scan cycle to ensure reliable real-time performance.

These modules collect data at hardware speed, unaffected by PLC scan delays. The PLC simply reads their accumulated values for decision-making.