You are on page 1of 4

Product Specifications PSS 21S-2M5 B3

I/A Series® Intelligent SCADA


Master Station
Advanced Application Programming Interface (AAPI)
KEY FEATURES
• Intuitive SQL based data access and functionality
• Interface bindings for Tcl/Tk, C/C++, and ODBC
• Synchronous and asynchronous query execution
• Change-driven notification of data updates
• Field point control with execution feedback
• Support for both UNIX® and Windows® platforms
• Fault-tolerant application development
infrastructure
• Query batching for efficient reading/writing
• Real-time access of iSCADA Master Station data
by ArchestrA™ enabled applications

INTUITIVE SQL BASED INTERFACE


Three AAPI interface bindings provide simple
programming language wrappers for enhanced
Structured Query Language (SQL). Except where
INTRODUCTION
asynchronous data publication is required, standard
The Advanced Application Programming Interface SQL grammar is used for iSCADA Master Station
(AAPI) provides a user development environment to data access and functionality.
integrate distributed or local applications with the
I/A Series Intelligent SCADA (iSCADA) Master Scripting Application Development
Station (Refer PSS 21S-2M1 B3).
The AAPI Tool Command Language (Tcl/Tk) interface
The AAPI provides access to iSCADA data and binding provides a scripting interface for testing,
functionality and provides a straightforward, powerful prototyping, and small to medium application
platform for building redundant and fault-tolerant development. The AAPI Tcl/Tk package is fully
applications. Using the AAPI, users and developers integrated with standard Tcl/Tk interpreters to provide
are free to focus on solving application domain application developers with a complete application
problems. The interface allows low-cost application development environment. Tcl/Tk script, distributed
reuse, system migration, and the extension of system with the AAPI, provides interactive SQL session
life. access and display of iSCADA data and functionality.
When combined with Invensys ArchestrA™, the
defacto industry standard for systems integration, the C/C++ Application Development
AAPI OPC DA Server allows end users and system For advanced application development the AAPI
integrators to provide Windows®.NET™ based includes a C/C++ interface binding. The AAPI C/C++
applications with real-time data access from iSCADA interface supports full integration with existing event
systems. dispatchers provided by standard programming
environments such as the Windows® event loop used
for Windows® GUI applications.
PSS 21S-2M5 B3
Page 2

Synchronous and Asynchronous Queries


Queries to the AAPI can be executed synchronously
or asynchronously.
Synchronous queries block the calling application and
return a result set or error condition after the query is
completed. Synchronous queries are easily extended
to asynchronous queries by including a callback
function or procedure when executing the query.
Asynchronous queries can be used to improve
programming efficiency by allowing flexibility in
waiting for and processing large result sets and
improve data throughput rates using batched queries.

Asynchronous Message Notification


The AAPI extends the standard SQL syntax to
provide a publish/subscribe mechanism for
asynchronous notification of iSCADA point changes.
Applications can subscribe to specific columns in the
iSCADA points table. If the point attribute is updated
in the iSCADA system, the AAPI publishes the new
value to the application using a supplied callback
function or procedure.
Asynchronous message notification is also available
Figure 1. Tcl/Tk interactive SQL Session for application tables. Refer to “Support for Fault-
Tolerant Applications” for application table support.
ODBC Interface
For data exchange with existing Microsoft Office® Asynchronous Point Change Notifications
applications, the AAPI provides an Open Database The AAPI publish/subscribe logic has been designed
Connectivity (ODBC) driver. Thus providing Microsoft to minimize CPU usage and iSCADA system
Excel® and Microsoft Access® applications, with resources. Figure 3 is an example of CPU usage of
direct read and write access to the iSCADA system. the AAPI components for various publications data
transfer rates. The AAPI provides a level of
decoupling between applications and the iSCADA
real-time system whereby additional applications,
monitoring the same points, do not increase the load
on real-time iSCADA system process.

Figure 3. Published Data CPU Loading

Access Control

Access to the AAPI is controlled with username and


Figure 2. ODBC Connectivity with Microsoft Excel® password authentication.
PSS 21S-2M5 B3
Page 3

REAL-TIME OBJECT ACCESS FAULT-TOLERANT INFRASTRUCTURE


The AAPI extends the iSCADA fault-tolerant platform
General
to the application development environment. AAPI
The AAPI maps a subset of the iSCADA object clients can reside, in redundant configuration, on the
schema into an object-relational table structure. SCADA hosts or on remote application hosts. The
The base points table contains the current value, AAPI middleware manages fail-over due to host,
quality information, point description and classification network, or client failure.
by category, area, and alarm group, and scanning
device name. Application Application
Host 1 Host 2
The analogue points table, in addition to the base
points table, contains the alarm limits, engineering
units and limits, control type and controllable limits,
Redundant LAN
and periodic calculation point type and source point.
While the digital points table, in addition to the base
points table, contains the current and normal state,
SCADA SCADA
valid point range, alarm and event processing mode, Host 1 Host 2
periodic calculations information, and control type.
Figure 4. Example Redundant Configuration
Historical data
The AAPI provides read access to the iSCADA Support for Fault-tolerant Applications
history database. Historical value and quality data Two key features, application groups and application
can be retrieved based in local or UTC time ranges. state tables, support the development of fault tolerant
Historical data is returned in an efficient change applications.
based format. When an application starts, it can elect to join an
application group where applications exist as
Field Point Control
redundant instances of the same application. The first
The AAPI provides programmatic access to iSCADA application to join the group is elected the group
controllable points. Using SQL functions, an master. If the master application fails then the AAPI
application can reserve and execute controls on field middleware selects a new master. Each remaining
points. Typically, an application firstly reserves the members of the group can subscribe to be notified if it
control point. Once the control reserve is established, is elected as master.
the application then sets the control point using the
Application state tables provide a mechanism for
control execute function. The AAPI supports trip
applications within the same group to share data.
close, momentary raise/lower, scaled raise/lower, and
Each application within a group can create or drop
set point controls.
tables and select, delete, insert, or update rows within
Systems List Access the table.

Applications can generate system events within the BATCH PROCESSING


iSCADA event sub-system. Accessing real-time objects one-at-a-time incurs
MULTI-PLATFORM SUPPORT significant performance costs due to the overhead of
multiple round trips between processes. The AAPI
The AAPI client libraries are available for UNIX® and reduces the inter-process and network overhead by
Windows® operating systems (Refer AAPI release batch processing transfers. The batch processing
notes for currently supported platforms). facility is activated by wrapping a series of queries
The AAPI provides platform independence for Tcl/Tk with the AAPI batch start and batch run statements.
applications. Applications written in Tcl/Tk run on the For example, on a 502Mhz Sun Blade 100, a client
supported platforms without changes to the AAPI application can expect batched data retrieval rates of
interface commands in the source scripts. 250 real-time point objects per seconds or update
Applications written using the C/C++ interface require rates of 90 real-time point object per second. Using
only minor modifications for the supported platforms. the subscription mechanism (real-time point data is
cached) client applications can retrieve up to 3000
real-time values per second (actual performance is
affected by system configuration).
PSS 21S-2M5 B3
Page 4

ORACLE® EXTENSION virtual AAPI tables, select, update, insert and delete
For direct integration with Oracle®
databases an rows in Oracle® tables, and execute table joins
optional feature available with the AAPI is the across the iSCADA and Oracle® databases.
Oracle® data provider. This data provider supports In conjunction with the high-availability features of
direct query access through the AAPI to tables in an Oracle®, the AAPI can be used to develop fault-
Oracle® applications or enterprise database. The tolerant solutions spanning across iSCADA and
Oracle® data providers allows AAPI applications to Oracle® data sources/stores.
configure a mapping between Oracle® tables and

ORDERING INFORMATION
Part Number Description
SY-1102092 IA SCADA AAPI ODBC SQL 5 NT Clients - I/A Series Intelligent SCADA AAPI
Windows ODBC driver. (Licensed per connection)

SY-1102093 IA SCADA AAPI C/C+ - I/A Series Intelligent SCADA AAPI C/C++
Windows or UNIX client libraries. (Licensed per station)

SY-1102094 IA SCADA AAPI TCL - 5 Windows or UNIX Clients - I/A Series Intelligent SCADA AAPI TCL
Windows or UNIX client libraries. (Licensed per connection)

SY-1102095 IA SCADA AAPI Unix Server - I/A Series Intelligent AAPI server, read/write access to real-time
data, read/write access to historical data, and read/write access to events. (Licensed per station)

SY-1102096 IA SCADA AAPI ORACLE Data Provider - I/A Series Intelligent SCADA AAPI
read/write access to ORACLE. (Licensed per ORACLE database)

SY-1102097 IA SCADA AAPI OPC DA Server - I/A Series Intelligent SCADA AAPI Windows OPC DA Server.
(Licensed per Windows server host station)

This product uses software developed by Spread Concepts LLC for use in the Spread toolkit.
For more information about Spread, see http://www.spread.org.

33 Commercial Street Invensys, ArchestrA, Foxboro, and I/A Series are trademarks of Invensys plc, its subsidiaries, and
Foxboro, MA 02035-2099 affiliates.
United States of America All other brand names may be trademarks of their respective owners.
www.foxboro.com
Inside U.S.: 1-866-746-6477
Outside U.S.: 1-508-549-2424
or contact your local Foxboro
representative.
Facsimile: 1-508-549-4999

Foxboro Australia
10 Brandl Street
Eight Mile Plains, Brisbane Copyright 2003 Invensys Systems, Inc.
Queensland 4113, Australia All rights reserved
Telephone: +61 7-3340-2111
Fax: +61 7-3340-2100 MB 21A Printed in U.S.A. 1203

You might also like