tm610 working with integrated visualization. first visualization application "coffee...

61
TM610 WORKING WITH INTEGRATED VISUALIZATION

Upload: felicity-johns

Post on 22-Dec-2015

233 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

TM610

WORKING WITH INTEGRATED VISUALIZATION

Page 2: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

First visualization application

"Coffee Machine" example project

Data points and units

Languages and animation

Working with Integrated Visualization

First visualization application

Page 3: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Principle

VNC viewerPC-based simulation

Visualization object

VNC server

VNC server

Different products – Identical display resolution

Page 4: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

First VNC visualization

Creating an Automation Studio project

Create a new project

Target system: Automation Runtime Simulation (ArSim)

Page 5: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Creating a new program

Structured Text programming language

Page 6: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Creating a visualization object

Adding to the Logical View

Page 7: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Configuring the visualization object

Mapping to a hardware interface / Password configuration

Page 8: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Building and transferring a project

Compiling a configuration / Transferring to ARsim

Page 9: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Testing the HMI application

Establishing a connection with a VNC viewer

Page 10: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Testing the HMI application

Password entry

Page 11: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Summary

Test the HMI application

Control password

For access to all control elements and objects

View password

Visualization limited to

the current page.

Can be viewed but

not actively controlled.

Page 12: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

First visualization application

"Coffee Machine" example project

Data points and units

Languages and animation

Working with Integrated Visualization

The CoffeeMachine sample project

Page 13: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

The Automation Studio start page

"Coffee Machine" example project

Page 14: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

"Coffee Machine" example project

Example visualization

Page 15: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

The Visual Components editor

Controls

Page 16: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

The Visual Components editor

Project Explorer

Page 17: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

The Visual Components editor

Workspace

Page 18: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

The Visual Components editor

Properties window

Page 19: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

The Visual Components editor

Toolbar

Page 20: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Controls

Static and dynamic text

Page 21: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Controls

Numeric input and output

Page 22: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Controls

Buttons

Page 23: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Controls

Graphic objects

Page 24: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Controls

Date and time

Page 25: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Controls

List box

Page 26: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

First visualization application

"Coffee Machine" example project

Data points and units

Languages and animation

Working with Integrated Visualization

Data points and units

Page 27: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Visualization data points

Data point = Variable + Properties

Page 28: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Numeric output

Page 29: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Numeric output

Page 30: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Numeric output

Page 31: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Value scaling using the linear equation

Determining the linear equation using 1 point

Page 32: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Value scaling using the linear equation

Scaled display value Variable

y = k * x + d

Page 33: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Celsius scaling

No conversion required

Variables are already scaled to degrees Celsius

y = k * x + dy = 1 * x + 0

Page 34: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Celsius scaling

y = 1 * x + 0

Check values using a "conversion test"

y = 1 * 25°C + 025°C = 1 * 25°C + 0

Page 35: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

25°C = 1 * 25°C + 0

Celsius scaling

Page 36: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Celsius scaling

Determining the linear equation using 2 points

Page 37: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

General formula

Set any 2 interpolation points

°F = °C * 9/5 + 32

Page 38: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

General formula

°F = °C * 9/5 + 32°F = 0°C * 9/5 + 3232°F = 0°C * 9/5 + 32

Result 0°C = 32°F

Page 39: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Fahrenheit scaling

Result 1000°C = 1832°F

°F = °C * 9/5 + 32°F = 1000°C * 9/5 + 321832°F = 1000°C * 9/5 + 32

Page 40: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Fahrenheit scaling

Interpolation point 1 at 0°C

Interpolation point 2 at 1000°C

°F = °C * 9/5 + 32

Page 41: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Fahrenheit scaling

Check values using a "conversion test"

°F = °C * 9/5 + 32°F = 25°C * 9/5 + 32

Page 42: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Fahrenheit scaling

°F = 25°C * 9/5 + 3277°F = 25°C * 9/5 + 32

Page 43: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Summary

Data points

Unit groups

Value scaling

Page 44: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

First visualization application

"Coffee Machine" example project

Data points and units

Languages and animation

Working with Integrated Visualization

Languages and animation

Page 45: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Dynamic elements

Principle

Consolidated information in various groups and languages

Text groups

Bitmap groups

Unit groups

Alarm groups

Languages

Page 46: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

Texts that belong together are consolidated in a text group in multiple languages

Page 47: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

Page 48: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

Offset

Page 49: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

IndexDP = 0

TEXT = Offset + IndexDatapoint

Page 50: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

IndexDP = 1IndexDP = 0

TEXT = Offset + IndexDatapoint

Page 51: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

IndexDP = 5

TEXT = Offset + IndexDatapoint

IndexDP = 1

Page 52: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

Language switching

Page 53: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Key action switches over

to set language

Page 54: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Text group example

Key action switches over

to set language

Page 55: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Summary

Text change using IndexDatapoint

Language change using key action "ChangeLanguage"

In the editor

Page 56: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Default settings for the target system

Page 57: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Summary

Text groups

Collective multilingual information

Page 58: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Summary

Text groups

Language switching

Language can be changed in the editor and at runtime

Page 59: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

Summary

Text groups Key actions

Language switching

Various actions available

Page 60: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

First visualization application

"Coffee Machine" example project

Data points and units

Languages and animation

Working with Integrated Visualization

Data points & unit groups

Languages and animation

Languages and animation

Data points and units

The CoffeeMachine sample project

First visualization application

Page 61: TM610 WORKING WITH INTEGRATED VISUALIZATION. First visualization application "Coffee Machine" example project Data points and units Languages and animation

WORKING WITH INTEGRATED VISUALIZATIONTM610

TM600Introduction to Visualization

TM610Working with Integrated Visualization

TM640Alarm, Trends and Diagnostics

TM670Advanced Visual Components