OPC Server Software Design in DCS

Total Page:16

File Type:pdf, Size:1020Kb

OPC Server Software Design in DCS 中国科技论文在线 http://www.paper.edu.cn OPC Server Software Design in DCS Tundong Liu, Gangquan Cai, Xiafu Peng Automation Dept. Xiamen University, Xiamen, China 361005 [email protected] Abstract—In order to meet the application of OPC for the introduction about OPC technology and OPC server process control, a set of OPC server interface software is interface software in this paper, OPC application on fertilizer designed with OPC specification in this paper. This software plant in the gas furnace Distributed Control System is organizes the device data as OPC standard data for other presented later. equipments which also support the OPC standard, and it successfully solves the communication between different II. OPC TECHNOLOGY INTRODUCTION equipment manufacturers. The software is applied in the Distributed Control System (DCS), so as to realize the data A. COM Technology exchange between the management configuration software and OPC technology is mainly based on Microsoft's COM the control device, which enhance the compatibility and technology. COM is a component tool that widely used, interoperability of the system. provides a wealth of integrated services for software designing [5]. COM uses binary canonical form, and can Keywords—OPC Technology, COM, Interface establish components to communicate with each other. As I. PREFACE long as in accordance with the norms of COM, any software functions will be implemented very well with high-level For a long time, many different hardware manufacturers program language. DCOM is COM’s seamless expansion in usually use different communication mechanism, which easily the distributed computing, realizes the transparency of the leads to "information island" phenomenon. In order to integrate network. the data of different equipments in a system, software developers have to invest considerable time and effort to B. OPC Technical Specifications construct the underlying software, and delay the development There are three kinds of OPC specification: (1) OPC Data cycle. To this end, the industrial control field needs an open Access specification; (2) OPC Alarm and Event norms; (3) standard to conduct a data access mechanism and management OPC Historical Data Access specification. The OPC Data that enable communication between various types of Access Specification is mainly applied in this paper. equipment more flexible [1]. The OPC Data Access Specification is based on the logic In 1990s, some of the world's leading suppliers of of the object model of OPC, the model includes three types: hardware or software develop a set of OPC specifications with OPC server object, OPC group object and OPC item object. Microsoft. OPC is an industry standard, which is based on OPC server object: It is at the most top-level of the logic Microsoft's OLE (now ActiveX), COM and DCOM model, and maintains information on the server and acts as a technology, includes a set of interfaces, properties and container of OPC group object, each OPC server object can methods for the process control and manufacturing contain many group objects. automation systems [2]. OPC group object: It provides the mechanism that In August 1996, the version of OPC 1.0 specification contains and manages many item objects. A group object can published by the OPC Task Force was passed. In 1998, OPC provide a way to allow customers to "subscribe" list, so Foundation organizations launched OPC 2.0 version [3], and customers can be notified when changes are happened in the amended some errors in the last version, added a few interface project. and adjusted the means of data communication, making OPC item object: it represent a connection which connects programs to run more stable and reliable. with data source, including the value, quality, timestamp, the OPC technology is to bring the advantages of separating 3 basic attributes. All the OPC item operation is controlled by software development and hardware development completely, the OPC group object that contains related items. leaves access interface task to the hardware manufacturer or third-party manufacturers, and offers OPC server for users. III. OPC SERVER INTERFACE DESIGN OF THE SOFTWARE OPC technology will be widely applied to control filed [4]. A. OPC Server Overall Structure Many well-known international hardware manufacturers added OPC interface in their own products. On the basis of The overall framework of OPC server is shown in Figure 1. Supported by Science and technology plan projects (2008H0060) of Fujian, China 转载 中国科技论文在线 http://www.paper.edu.cn While watching do OPC client // Always loop, //and stop when //removing surveillance server begin if actived then groups // Whether the I/O DLL //group object is active items begin … //update the Field //group object di if changed then // to judge whether //the content changes Figure 1. The overall framework of OPC server begin … //update this group by the In this chart, OPC clients exchange data with OPC server //new datas,notify the through the interface. The basic steps for the connection //connection terminals, between OPC server and client are as follows (with Delphi, omitting the definition of variables) //and update the datas //of client. • To initialize COM library. End; • OPC Server create object. End; • Access to the interface OPC Server. End; QueryInterface(IID_IOPCServer,(void**)(&m_pServer)); • AddItem () function can be used for adding a new • Add Group. item, it should have the following functions: Confirm the validity of the item just added; Items will • Select a data access mechanism. effectively be joined into the group object but • Add item. different groups can have the same items. In addition, OPC server uses the I/O DLL to read/write When a new item is added, it is needed to define a data devices, and send data to the client by asynchronous item record. For example: communication or point-to-point connection. It should be Type noted that reading/writing operation is very time-consuming, Item=record so OPC server generally uses multi-threading technology to sItemName :string; //Itemname solve it. sDescr :string; //Description B. OPC Interface software design hwnd :Thandle; //Handle The OPC specification assumes that every interface must vType :TvarType; //type have its function, but there is no specific about how to achieve Quality :WORD; //Quality its function. Thus in the actual development process, Ft :TfileTime; //timestamp designers can use different algorithms to implement software Value :OleVariant; //value interface functions. End; • When the system startups, the OnRegister () is to The AddItem() function is to assign a value to a variable. register OPC server. When the system is terminated, For example: the OnUnRegister () is to cancel OPC server. After the success of the implementation these functions return Test. sItemName:=’TAG1’; TRUE, or FALSE otherwise. Test. sDescr:=’ sDescr tag1’; • According to the OPC specification, adding a group Test. vType:=varInteger; must use AddGruop () interface. AddGroup () function Test.Quality:=OPC_QUALITY_BAD; should be designed by the following features: GetSystemTimeAsFileTime(test1.Ft); Test.Value:=num; Check new group name, and ensure that this OPC Server //num is the data transmited object can’t have two identical group name; Create a new OPC //from field device Group object, and create a thread to scan the data of the OPC group object. Test.hwnd:= CreateItem(PChar(Test.sItemName), Test.Value, Test.Quality, True) ; Thread-specific scanning process is as follows. //Create different handle by 中国科技论文在线 http://www.paper.edu.cn // CreateItem to identify Using the callback function successfully realizes the //different data item setting for the operating parameters, process parameters, technical parameters from the clients. IV. OPC TECHNOLOGY USED IN DCS OF CHEMICAL After field testing, the OPC server interface software FERTILIZER PLANT works well in the distributed control system, helping A. Demand Analysis realization of the data exchange between different systems in A chemical fertilizer plant in Shandong, China, uses gas the upper monitor software and enhancing the plant furnace DCS system [6], and its PC software was designed distributed control system-wide compatibility and through Delphi[7]. The software monitors 10 gas furnace and interoperability. more than 600 field data at the same time, and the synthetic V. CONCLUSION ammonia control system uses HOLLiAS DCS system, designed by Hollysys Company in Beijing, so as to realize the A large chemical fertilizer plant builds a integrated distributed control system data sharing and management. A automation system consists of three parts: basic automation set of software is designed to encapsulate field data into the system, large-scale real-time database and relational database OPC standard format for client interface of synthetic ammonia system, the enterprise resource management system.For basic control system, so as to realize all the equipment data automation system, it is the key to success that data if can be management and information sharing. uploaded to the real-time database reliably and real-time. B. OPC Server software application A example about Foxboro I/AS system for implementation of communication between DCS and real-time database by Field devices communicate with the OPC server by means of OPC method is as follows: following ZF2002 master-slave communication protocol: the baud rate of the communication ports is set to 9600bps, each Realize route. Foxboro I/AS system itself provides OPC communication is startuped by the host command, the slave communication protocol to read/write online data in DCS. immediately implement new task of communication after OPC Server software is installed on polymerizing-kettle to receiving new orders. communicate between Foxboro I/AS and DCS by its API.As the same, Real-time database on the Ethernet also can connect The preparation of software code is from Delphi. with OPC Server and acquire online data of field devices. Communication is completed with the help of Microsoft's MSComm component. The component realizes the serial Hardware and software configuration on polymerizing- communication between OPC server and field devices.
Recommended publications
  • Modbus TCP Master (OPC) User's Manual
    Station Automation COM600 3.4 Modbus TCP Master (OPC) User's Manual 1MRS756445 Station Automation COM600 3.4 Issued: 21.12.2007 Version: D/06.11.2009 Modbus TCP Master (OPC) User's Manual Contents: 1. About this manual .................................................................................. 7 1.1. Copyrights ...................................................................................... 7 1.2. Trademarks .................................................................................... 7 1.3. General .......................................................................................... 7 1.4. Document conventions .................................................................. 8 1.5. Use of symbols .............................................................................. 9 1.6. Terminology .................................................................................... 9 1.7. Abbreviations ............................................................................... 11 1.8. Related documents ...................................................................... 12 1.9. Document revisions ..................................................................... 12 2. Introduction ........................................................................................... 13 2.1. Functional overview ..................................................................... 13 2.2. Modbus OPC Server features ...................................................... 14 3. Configuration .......................................................................................
    [Show full text]
  • OPC DX Link Option for Kepserverex
    OPC DX Link Option for KEPServerEX Overview: OPC technology has been extremely successful at bridging the vertical communication gap between the plant floor and the control room. Using standards such as OPC Data Access (DA), hundreds of software applications have been written to gather data from a wide range of control systems using this simple Client/Server architecture. OPC DA did not, however, address the needs of integration and interoperability directly between devices. Historically there have been a number of high-level and low-level bus protocols, each one written to address the differing needs and uses of the devices they were intended to serve. Protocols such as PROFIBUS, DeviceNet, ControlNet, and many more, have been utilized in the past. Recently there has been a growing movement towards the use of Ethernet as an industrial communication backbone. Initially each of these respective bus specifications was redeveloped for use over Ethernet. The resulting PROFInet, Ethernet/IP, High-Speed Ethernet Fieldbus (HSE), and BACNET/IP provided a means for customers to move smoothly from their proprietary wiring schemes to Ethernet. However it didn't address the key issue of true Device-to-Device interoperability or more importantly Bus-to-Bus interoperability. While these new Ethernet based protocols could coexist on the same wire, there was still no way to get data from a PROFInet device directly into an Ethernet/IP device. Example using DX to route data between OPC Items in KEPServerEX Example of using DX to pull data from an OPC DA server and eXchange data (bi-directional) with an OPC DX server OPC DX: OPC Data Exchange (DX) was designed to address the needs of Device-to-Device and Bus-to-Bus interoperability by applying the same technologies currently used by desktop applications at the device level.
    [Show full text]
  • Investigate M2M-Related Communication Standards That Exist on the Global Market Today
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Agder University Research Archive Investigate M2M-related communication standards that exist on the global market today by Aleksander Albretsen Thesis in partial fulfilment of the degree of Master in Technology in Information and Communication Technology Agder University College Faculty of Engineering and Science Grimstad Norway June 2006 Abstract Most M2M applications use well-known communication technologies to interconnect the devices. Even though they use well-known communication technologies there are no widely used and well-defined M2M standards regarding the data exchange (application layer). This thesis investigates and identifies M2M related communication standards that exist on the global market today, and are applicable for M2M standardisation. This thesis is limited to the following segments within M2M: Security, Automatic Meter Reading (AMR) and Utility Control. Today, and in the future, IP will play an important role within M2M. This thesis is therefore mainly focusing on standards that implement how to transfer the application layer using the IP-stack. M2M is defined in this thesis as an application with a central server communicating with end-devices through a gateway, using remote communication from server to gateway. The following standards are investigated and found applicable in one or more of the selected segments: CIP, MODBUS, LonWorks, KNX, DLMS/COSEM, M-BUS, SIA, M2MXML, OPC and ZigBee. Each of the standards is explained within the thesis. All standards are identified and categorised, and area of applications and proposed solutions are described. This thesis discusses the applicability regarding each segment, multiple services behind one gateway, bandwidth consumption, software update and interconnection of networks.
    [Show full text]
  • Matrikonopc Server for Simulation User Manual.Pdf User’S Manual for This Server
    MatrikonOPC Server for Simulation User's Manual MatrikonOPC Server for Simulation User's Manual This manual is a product of Matrikon Inc. Matrikon Inc. Suite 1800, 10405 Jasper Avenue Edmonton, AB T5J 3N4 Canada Phone: 780.448.1010 Fax: 780.448.9191 www.matrikonopc.com Document Revision History: Document Date Description Author Version 2003-08-19 1.0 Initial document. DENG 2004-04-02 1.1 Added HDA and AE functionality descriptions. IMF 2008-05-14 2.0 Converted to new template. LB Added OPC item descriptions, updated Installed 2008-08-25 2.1 Files, updated Installation and Un-Installation RK, LB sections, updated Troubleshooting section. MatrikonOPC Server Framework v1.11.1.0/1.7.0.0 applied to server. Software version updated to 1.5.0.0. Updated Installation section. Updated Contacting Support section. Alias Configuration section updated to include Calculation scaling and 2009-07-17 3.0 LB Item Browser information. Limitations section updated. Appendix B – Aliases: added Scaling Calculation section, updated CSV File Format and Scaling Algorithms sections. Updated Appendix E – Security. MatrikonOPC Server for Simulation v1.5.0.0 User’s Manual 2 SOFTWARE VERSION Version: 1.5.0.0 DOCUMENT VERSION Version: 3.0 COPYRIGHT INFORMATION © Copyright 1997 - 2009, Matrikon Inc. All rights reserved. No part of this document may be reproduced, stored in a retrieval system, translated, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without prior written permission of Matrikon Inc. CONFIDENTIAL The information contained herein is confidential and proprietary to Matrikon Inc. It may not be disclosed or transferred, directly or indirectly, to any third party without the explicit written permission of Matrikon Inc.
    [Show full text]
  • Applicom® OPC Server Is the Best Choice for Connecting Industrial Devices to Your Favorite Industrial Applications
    Open, Reliable and Efficient, applicom® OPC server is the best choice for connecting industrial devices to your favorite industrial applications. With a collection of 30 major protocols, Woodhead is a key player in OPC technology for automation solutions. ® 07 Jan. 05 applicom OPC Server Multi-protocol OPC server for industrial networking Features • Included free-of-charge in all applicom® packages • Tested and Full compliant with OPC DA specifications v1.0a, 2.05 and 3.0 • Multi-protocol Server: manages simultaneously various protocols through an unique OPC connection • Powerful! Real-time data access with Automatic data exchange optimization • Integrates redundancy features OPC Technology • Smart OPC Item browsing OPC (OLE for Process Control) is the standard communication interface that enables the data • Simultaneous access in COM exchange between client applications (HMI/SCADA, RDBM, control/command) and industrial and DCOM modes devices (PLC, I/O blocks, drives, etc). OPC is built using the Microsoft’s technologies: OLE, COM and DCOM (Distributed COM) that are well-tested and proven foundation. • InProc / OutProc connection OPC specifications are designed by the open foundation – OPC Foundation – to meet the general needs of industry, finding then an issue of specific and proprietary interfaces problem. applicom® OPC Server Supported OS The applicom® OPC Server is an OPC Data Access (DA) compliant server that enables data exchange between OPC clients and a broad range of device manufacturers through networks • Windows 32-bit: XP SP1 / 2003 such as: Ethernet TCP/IP, Profibus, Serial, Modbus Plus, WorldFIP, etc. Server / 2000 SP3 / NT4) applicom® OPC Server supports multi-protocol feature: it can manage up to 30 different protocols simultaneously.
    [Show full text]
  • Knowledge Discovery in the SCADA Databases Used for the Municipal Power Supply System
    Knowledge Discovery in the SCADA Databases Used for the Municipal Power Supply System Valery Kamaev1, Alexey Finogeev2, Anton Finogeev3, Sergey Shevchenko4 1Volgograd State Technical University, Volgograd, Russia, [email protected], 2Penza State University, Penza, Russia, [email protected], [email protected], 3National Technical University "Kharkiv Polytechnic Institute", Kharkiv, Ukraina, [email protected] Abstract. This scientific paper delves into the problems related to the develop- ment of intellectual data analysis system that could support decision making to manage municipal power supply services. The management problems of mu- nicipal power supply system have been specified taking into consideration modern tendencies shown by new technologies that allow for an increase in the energy efficiency. The analysis findings of the system problems related to the integrated computer-aided control of the power supply for the city have been given. The consideration was given to the hierarchy-level management decom- position model. The objective task targeted at an increase in the energy effi- ciency to minimize expenditures and energy losses during the generation and transportation of energy carriers to the Consumer, the optimization of power consumption at the prescribed level of the reliability of pipelines and networks and the satisfaction of Consumers has been defined. To optimize the support of the decision making a new approach to the monitoring of engineering systems and technological processes related to the energy consumption and transporta- tion using the technologies of geospatial analysis and Knowledge Discovery in databases (KDD) has been proposed. The data acquisition for analytical prob- lems is realized in the wireless heterogeneous medium, which includes soft- touch VPN segments of ZigBee technology realizing the 6LoWPAN standard over the IEEE 802.15.4 standard and also the segments of the networks of cellu- lar communications.
    [Show full text]
  • OPC Fundamentals
    OPC Overview Adam Hill Kepware Technologies/PTC Portland, ME (USA) Agenda • Before OPC • OPC Foundation • OPC Client Communications • OPC Specifications – OPC DA – OPC HDA – OPC AE – OPC UA and Tunneling with OPC UA May 14 – 16, 2019 INTERNATIONAL SCHOOL OF HYDROCARBON MEASUREMENT What You Will Learn 1.What does OPC stand for? 2.What is the purpose of the OPC Foundation? 3.OPC specifies the communication between what and what? May 14 – 16, 2019 INTERNATIONAL SCHOOL OF HYDROCARBON MEASUREMENT Before OPC Before OPC • No standard exists for communication between devices (data sources) and computer interfaces (data gatherers). • Proprietary connections and toolkits are developed by hardware vendors. – This limits users to one type of software and hardware package. • As users want to make more client connections to one device, or add different hardware, the problem gets sticky… May 14 – 16, 2019 INTERNATIONAL SCHOOL OF HYDROCARBON MEASUREMENT Before OPC (cont.) May 14 – 16, 2019 INTERNATIONAL SCHOOL OF HYDROCARBON MEASUREMENT OPC Foundation OPC Foundation • Formed in 1995 by a consortium of 5 companies: – Fisher-Rosemount, Rockwell, Opto 22, Intellution, and Intuitive Technology. • Now there are over 450 corporate members in the Foundation. THE FOUNDATION’S MISSION “The mission of the OPC Foundation is to manage a global organization in which users, vendors and consortia collaborate to create data transfer standards for multi-vendor, multi-platform, secure and reliable interoperability in industrial automation.” • To support this mission,
    [Show full text]
  • Fundamentals of OPC
    Presents Practical Fundamentals of OPC Revision 7.1 Web Site: www.idc-online.com E-mail: [email protected] Copyright All rights to this publication, associated software and workshop are reserved. No part of this publication or associated software may be copied, reproduced, transmitted or stored in any form or by any means (including electronic, mechanical, photocopying, recording or otherwise) without prior written permission of IDC Technologies. Disclaimer Whilst all reasonable care has been taken to ensure that the descriptions, opinions, programs, listings, software and diagrams are accurate and workable, IDC Technologies do not accept any legal responsibility or liability to any person, organization or other entity for any direct loss, consequential loss or damage, however caused, that may be suffered as a result of the use of this publication or the associated workshop and software. In case of any uncertainty, we recommend that you contact IDC Technologies for clarification or assistance. Trademarks All terms noted in this publication that are believed to be registered trademarks or trademarks are listed below: Acknowledgements IDC Technologies expresses its sincere thanks to all those engineers and technicians on our training workshops who freely made available their expertise in preparing this manual. Who is IDC Technologies? IDC Technologies is a specialist in the field of industrial communications, telecommunications, automation and control and has been providing high quality training for more than six years on an international basis from offices around the world. IDC consists of an enthusiastic team of professional engineers and support staff who are committed to providing the highest quality in their consulting and training services.
    [Show full text]
  • MSG : Multiprotocol SCADA Gateway
    MSG : Multiprotocol SCADA Gateway Overview The MSG is a modern SCADA communication gateway server for telemetry applications. It supports all of Inifnite's devices, offering seamless SCADA integration using a variety of means and and protocols. The MSG server is a host for multiple clients allowing seamless 24/7 unmanned device telemetry with centralised data management. Features Support for all Infinite product ranges including BSC-50, ADU-500, ADU- 700, Sigfox ADS, iLog & SCOM. Multiple SCADA protocols including, DNP3 DNP3 Secure Authentication v5 (SAv5) IEC 60870-5-101 IEC 60870-5-102 IEC 60870-5-103 IEC 60870-5-104 IEC 60870-5 Secure Authentication for -101 and -104 OPC Data Access OPC XML Data Access OPC Alarms & Events IEC 61850 incl: 7-410(Hydro), 7- 420(DER) & 61400-25 IEC 60870-6 (TASE.2/ICCP) incl. Bi- Directional Support Modbus Connectivity via RS232 serial port, USB, ethernet, modem. MS SQL server database backend for historical data storage and management. Integration with the WaT cloud server that offers a Web interface accessible using any browser & device. Device & data management The MSG server has a comprehensive set of tools for users to : Create and manage devices and Tags. Test SCADA connectivity and protocol integrity. View, edit, delete, search & export data. Assign tags to IO and configure their properties Available integrated with the WaT cloud server server SCADA & data functionality The MSG is a Windows application used by System Integrators and Utilities to collect data from OPC, IEC 60870-6 (TASE.2/ICCP), IEC 61850, IEC 60870-5, DNP3, or Modbus Server/Slave devices and then supplies this data to other control systems supporting OPC, IEC 60870-6 (TASE.2/ICCP) Client, IEC 60870-5, DNP3, and/or Modbus Client/Master communication protocols.
    [Show full text]
  • A Technical Overview of the OPC Dataaccess Interfaces
    A Technical Overview of the OPC DataAccess Interfaces Al Chisholm Chief Technical Officer Intellution Inc 1 Edgewater Drive Norwood, MA 02062 781 769 8878 KEY WORDS OPC, COM, DCOM, Windows, NT, I/O, Standards, Data, Realtime ABSTRACT This paper presents a fairly detailed technical overview of the Data Access interfaces. It begins by describing the problem these interfaces are designed to solve, the functionality they provide and the object model they employ. Following this is a review of the specific interfaces provided, including a brief discussion of the specific methods exposed by those interfaces. A REVIEW OF THE PROBLEM This paper contains a fairly detailed technical overview of the OPC (OLE for Process Control) Data Access Interface. It assumes that the reader has some technical background in COM (Component Object Model) and object oriented programming. This paper will also talk about where OPC Data Access fits in the architecture of a control system and about the objects and methods that the OPC Interface presents to the programmer. In addition to talking about WHAT the objects look like, this paper will also talk a bit about WHY they look the way they do. Which is to say it will try to answer the question, “What were those guys thinking when they designed this stuff…”. This paper talks primarily about the Custom (C++) interface as that is what server vendors and most serious client vendors need to understand and implement. Display Trend Report Display Trend Report Application Application Application Application Application Application Software Software Software Software Software Software Software Software Driver Driver Driver Driver Driver Driver Driver Driver The left figure above illustrates ‘The I/O Driver Problem’.
    [Show full text]
  • OPC Factory Server V3.60 OFS Product Introduction 35008244 11/2015
    OPC Factory Server V3.60 35008244 11/2015 OPC Factory Server V3.60 User Manual 11/2015 35008244.11 www.schneider-electric.com The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained herein. This documentation is not intended as a substitute for and is not to be used for determining suitability or reliability of these products for specific user applications. It is the duty of any such user or integrator to perform the appropriate and complete risk analysis, evaluation and testing of the products with respect to the relevant specific application or use thereof. Neither Schneider Electric nor any of its affiliates or subsidiaries shall be responsible or liable for misuse of the information contained herein. If you have any suggestions for improvements or amendments or have found errors in this publication, please notify us. No part of this document may be reproduced in any form or by any means, electronic or mechanical, including photocopying, without express written permission of Schneider Electric. All pertinent state, regional, and local safety regulations must be observed when installing and using this product. For reasons of safety and to help ensure compliance with documented system data, only the manufacturer should perform repairs to components. When devices are used for applications with technical safety requirements, the relevant instructions must be followed. Failure to use Schneider Electric software or approved software with our hardware products may result in injury, harm, or improper operating results. Failure to observe this information can result in injury or equipment damage.
    [Show full text]
  • PI Interface for OPC DA Version 2.5.1.X User Guide
    PI Interface for OPC DA Version 2.5.1.x User Guide OSIsoft, LLC 777 Davis St., Suite 250 San Leandro, CA 94577 USA Tel: (01) 510-297-5800 Fax: (01) 510-357-8136 Web: http://www.osisoft.com PI Interface for OPC DA User Guide © 1998-2014 by OSIsoft, LLC. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, mechanical, photocopying, recording, or otherwise, without the prior written permission of OSIsoft, LLC. OSIsoft, the OSIsoft logo and logotype, PI Analytics, PI ProcessBook, PI DataLink, ProcessPoint, PI Asset Framework (PI AF), IT Monitor, MCN Health Monitor, PI System, PI ActiveView, PI ACE, PI AlarmView, PI BatchView, PI Coresight, PI Data Services, PI Event Frames, PI Manual Logger, PI ProfileView, PI WebParts, ProTRAQ, RLINK, RtAnalytics, RtBaseline, RtPortal, RtPM, RtReports and RtWebParts are all trademarks of OSIsoft, LLC. All other trademarks or trade names used herein are the property of their respective owners. U.S. GOVERNMENT RIGHTS Use, duplication or disclosure by the U.S. Government is subject to restrictions set forth in the OSIsoft, LLC license agreement and as provided in DFARS 227.7202, DFARS 252.227-7013, FAR 12.212, FAR 52.227, as applicable. OSIsoft, LLC. Version: 2.5.1.x Published: March 2014 Contents Introduction to the PI OPC DA interface...................................................................... 1 Related manuals............................................................................................................................................
    [Show full text]