WinCC Работа и мониторинг Siemens AG 1998. All rights reserved.© TC Nbg.-M. - 1 - Date: 11.03.98 File: E02OFFe.PPT Catalog: NWINCC Открытость и способность.

Презентация:



Advertisements
Похожие презентации
WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E04ODKe.PPT Catalog: EWINCC ODK - WinCC - API.
Advertisements

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E03CPPe.PPT Catalog: EWINCC Getting Started with.
Date: File:GRAPH_04e.1 SIMATIC S7 Siemens AG All rights reserved. SITRAIN Training for Automation and Drives Debug and Start-Up.
© 2009 Avaya Inc. All rights reserved.1 Chapter Three, Voic Pro Advanced Functions Module Four – Voic Campaigns.
Date: File:GRAPH_08e.1 SIMATIC S7 Siemens AG All rights reserved. SITRAIN Training for Automation and Drives Diagnostics.
© 2009 Avaya Inc. All rights reserved.1 Chapter Three, Voic Pro Advanced Functions Module Two – Database and IVR.
© 2009 Avaya Inc. All rights reserved.1 Chapter Three, Voic Pro Advanced Functions Module One – Text to Speech.
© 2009 Avaya Inc. All rights reserved.1 Chapter Four, UMS Web Services Module Two – IMAP Service.
© 2006 Cisco Systems, Inc. All rights reserved. HIPS v Using CSA Analysis Configuring Application Behavior Investigation.
Date: File:GRAPH_04e.1 SIMATIC S7 Siemens AG All rights reserved. SITRAIN Training for Automation and Drives Отладка и пуск.
© 2009 Avaya Inc. All rights reserved.1 Chapter Four, UMS Web Services Module One – UMS.
© 2009 Avaya Inc. All rights reserved.1 Chapter Two, Voic Pro Components Module Two – Actions, Variables & Conditions.
© 2006 Cisco Systems, Inc. All rights reserved. HIPS v Configuring Rules Configuring Rules Common to Windows and UNIX.
Copyright © 2006 Intel Corporation, released under EPL version /20061 Eclipse DSDP-TM Target Connection Adapters Peter Lachner WW0806 rev 1.0.
Date: File:GRAPH_03e.1 SIMATIC S7 Siemens AG All rights reserved. SITRAIN Training for Automation and Drives Programming Steps and Transitions.
AVVID Troubleshooting Tools © 2004 Cisco Systems, Inc. All rights reserved. Using Database Tools IPTT v
© 2009 Avaya Inc. All rights reserved.1 Chapter Nine, Voic Pro in SCN Module Four – Distributed Voic Pro.
WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E06DMe.PPT Catalog: EWINCC Data Manager.
© 2006 Cisco Systems, Inc. All rights reserved. HIPS v Creating Application Classes Working with Variables and Application Classes.
© 2006 Cisco Systems, Inc. All rights reserved. SND v Configuring a Cisco IOS Firewall Configuring a Cisco IOS Firewall with the Cisco SDM Wizard.
Транксрипт:

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Открытость и способность к интеграции WinCC

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Цели изучения Краткий обзор открытых интерфейсов Global Script OLE-управление пользователя API OLL DDE OLE База данных WinCC DLL-канал

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Overview Disclosed Function Interfaces Data Manager Meas.Value Message Graphics Report User programs Windows Application s Excel Word Access PowerBuilder... Management Analysis Optimization... OLE API DDE OCX ODBC/ SQL Actions Channel DLL

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Action Programming (1/2) Overview

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Action Programming (2/2) Examples Actions with Graphic Objects (Properties and Events) Examples: Start of a program by mouse click on a button, Color change of objects Actions with Archives (Process value, user, compression archives) Examples: Move out archive, Start / Stop archiving Global Script Actions (not linked to any "Object", are executed in the background) Example: Calculation of process values

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC OLE Custom Control WinCC Slider Control ocx1. bmp ocx2. bmp ocx3. bmp WinCC Digital/Analog Clock Control

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC #include "apdefap.h" void OnClick(char* lpszPictureName, char* lpszObjectName, char* lpszPropertyName) { #define GetObjectA GetObject __object *obj, *pic,, *ocx obj= __object_create("PDLRuntime"); if(obj != NULL){return;} pic=obj->GetPicture("BILD1.PDL"); if( pic == NULL){ __object_delete(obj); return; } ocx=pic->GetObject("OLE Control2"); if( ocx == NULL){ __object_delete(obj); __object_delete(pic); return; } ocx->AboutBox(); __object_delete(obj); __object_delete(pic); __object_delete(ocx); } Method of OCX General Method Call of an OLE-Control from Script Programming

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC WinCC - API (1/3)

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC WinCC - API (2/3) Application Examples Access of values from the Tag Management Access of archive data Generic configuration based on API functions Use of configuration screens for self-developed software options Creation of messages from user routines Integration of communications channels

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC WinCC - API (3/3) Additional Application WinCC API DLL WinCC Module Use of Functions Communication

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC OLL

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC DDE ddekan ddeserv DDE Channel DDE Server

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC OLE Automation

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC OLE ole2

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC WinCC Data Base (1/2) Disclosed Data Base Interfaces Sybase SQL-Anywhere Client C-API for DB ODBC Sybase SQL-Anywhere Client ODBC Sybase SQL-Anywhere Server Excel Access... Graphics Message Meas.Value UserArch. etc. User program User program Messages Measured values User data records Configuration data Sybase SQL-Anywhere C-API Sybase SQL-Anywhere C-API e.g. embedded SQL User pro- gram Oracle Informix Ingres Omni SQL Server DB Com- mands Project- DB Project- DB SQL- Anywhere DB File Tools e.g. ISQL SybaseWinCCWindows

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC WinCC Data Base (2/2) ODBC Applications Driver Manager Driver Data Source Data Source Data Source ODBC-Interface

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Communication WinCC Applications WinCC Data Manager Channel-DLL (1)Channel-DLL (2) HW Driver Communications Module Communications Partner (e.g. Controller) Communications Partner (e.g. Controller)

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC CDK Channel Development Kit CDK Package scope of supply Getting Started manual Channel API manual C/C++ Header Files and Object Libraries Examples in C/C++ Source-Code Test and Analysis Utilities

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Exercise: Integration of an OLE-Control in a WinCC Graphics Picture (1/2)

WinCC Работа и мониторинг Siemens AG All rights reserved.© TC Nbg.-M Date: File: E02OFFe.PPT Catalog: NWINCC Exercise: Integration of an OLE-Control in a WinCC Graphics Picture (2/2) 52 Typ O