Welcome to the Industrial Automation website!

NameDescriptionContent
HONG  KANG
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

Industrial Networks Connecting Controllers via OPC

来源: | 作者:佚名 | 发布时间 :2024-01-15 | 589 次浏览: | Share:

Introduction This chapter will provide a rough overview of the problem treated by this Master’s Thesis. All technical devices and expressions will be explained more precisely in the next chapter. Please note that since this is a public thesis, it does not contain sensitive company-internal data. 

1.1 ABB Power Systems ABB Power Systems is one of the world’s leading providers of infrastructure for controlling combined cycle power stations and waste-to-energy plants. Such a plant control infrastructure includes several hardware parts consisting of controllers, input/output-boards and communication devices as well as many software components to engineer, run, observe and analyze the power plant. A power plant control system has to satisfy a broad variety of different needs, from the efficient and reliable control of the turbines and associated supporting functions (such as lube oil) to easy configuration and operation as well as to sophisticated analysis functions addressing technical and economical aspects. 

1.2 Problem Statement Due to high investment costs, the technical management of power plants is a slowgoing business with long life-cycles. Thus, a considerable amount of hardware devices currently in use are tens of years old. For future applications within ABB Power Systems it will be necessary to connect a controller of the newest series used within ABB, Control IT AC800M, with an older controller of the type Advant Controller 160 (AC160). The problem is that these two controllers do not share a fast communication interface of similar type and therefore cannot communicate directly. The standard communication intended for AC160 is Advant Fieldbus 100 (AF100). However, AC800M can support a whole range of buses except for AF100. As a consequence, the communication must be implemented using some relaying technique.

1.2.1 The Use of OPC It was decided in advance to realize the relaying connection using OPC. This solution was chosen because OPC is an open standard and very common in process and automation industry. Furthermore, this solution offers a high potential to be used for similar problems, since a lot of devices support this specification. However, OPC is normally not used for fast controller-to-controller communication but for slower visualization and logging purposes and there is no performance data available for this kind of connection. The use of OPC is therefore both challenging as well as interesting to gain more insights and know-how. It is also to mention that a hardware solution addressing our problem is not available yet. It is therefore necessary to have an alternative way using already available parts, also for testing purposes. 

1.3 Goals The goals of this Master’s Thesis are stated as follows: Setup and evaluation of a test environment Setup of test systems Theoretical and practical evaluation of the test systems concerning performance, availability and reliability. Identification of improvements and different approaches Comparison with alternatives As a starting point for the performance requirements, the current implementation was taken. The corresponding quantity and type of variables are displayed in Table 1.1 with 32-bit floating point values (floats) as analog in- and outputs and 1-bit boolean values as so-called status and command bits. In the current configuration with AC450 and AC160, all variables are written to the AF100 fieldbus with a cycle time of 256 milliseconds. Therefore we determined the minimum requirement for round-trip times from one controller to the other to exactly this time. In agreement with the advisors, instead of elaborating the optional extension stated in the task description (Appendix C), we spent more time on trying out asecond PROFIBUS approach and the theoretical derivation of a redundancy concept.

1.4 Structure For the reader’s convenience this Master’s Thesis is structured thematically starting with an overview of components and terms (2) in the next chapter. The following chapters inform about the test system setup (3), the evaluations that were made (4) and finally the results (5). In a subsequent chapter the subject redundancy is treated (6) before the thesis comes to an end with the conclusion and outlook (7). Additional information as well as a CD-ROM containing more detailed data is located in the appendix of this thesis.

Chapter 2 Components and Terms In this chapter, hardware and software parts as well as terms used for our test system and evaluations will be described. Some additional devices and programs concerning redundancy are introduced not until the chapter according. Information on the version numbers can be found in Appendix B.

2.1 Basic Terms Performance, in this thesis, refers to the capability of a communication component in means of speed and throughput. 

Availability is the term for the probability that a system will perform its specified functions when used under stated conditions. A common mathematical definition of operational availability is Ao = MT BF/(MT BF + MDT), whereas MTBF is the “mean time between failure” and MDT the “mean down time” [2]. However, in this thesis, availability is used in a more general manner, since the basis for mathematical operations is not available.

Reliability means the probability of a device remaining failure free during a specified time interval, e.g. the maintenance interval: R = e λt Redundancy is the implementation of extra components in addition to the ones needed for normal operation. Thus, redundancy normally increases reliability and availability. 

2.2 OPC OPC, originally short for “OLE for Process Control”, is an open, standardized software communication interface specification launched in 1996 by a task force of different automation companies, later forming the OPC Foundation. As the former name indicates, OPC is an adaption of Microsoft’s Object Linking and Embedding OLE1 to the process control business, which used to be highly proprietary at that point of time. Thus it was almost impossible to efficiently combine products of different vendors. By providing so-called OPC servers with their devices, buses and software, vendors open their products to any OPC compliant client able to connect to the server for data exchange. Usually, an OPC server can handle several clients at once, while these clients—e.g. visualization or calculation applications—can connect to different servers in order to obtain their needed information.

Over the years, the OPC Foundation has been adding eight additional speci- fications to the original one, therefore the name OPC was freed from its original meaning and is now used as an umbrella term [3]. Some important specifications are quickly explained in the following: DA (Data Access) is the original and most widely used standard of OPC. Its purpose is the cyclic polling of real time data, for example for visualization purposes.

HDA (Historical Data Access), in contrary, specifies the access to already stored data. 

AE (Alarms and Events) describes the non-cyclic, event-based exchange of alarms and events. 

Data eXchange is a specification from 2002 which regulates the direct communication between two OPC servers. For this Master’s Thesis it was made use both of the DA specification for the main purpose of communication as well as the AE specification in order to display and log round-trip times. Unfortunately, the promising Data eXchange specification is almost inexistent in practice and could therefore not be used in our thesis. The underlying technique to exchange data is the component object model COM of Microsoft Windows, therefore OPC can only run on Windows operating systems [4]. A new generation of OPC specifications recently published is called OPC Unified Architecture (OPC UA) and is independent of COM, thus being able to run on more operating systems as well as embedded devices [5]. 

2.2.1 OPC Data Access OPC DA is organized in the hierarchical structure server, group and item. Items correspond to variables and can be read and written. Furthermore, a quality and time stamp is provided with each of them. When reading items, the value usually comes from the OPC server’s cache, which is updated periodically with the values of the device (or bus, component). However, it is usually possible to force a read directly from the device. Clients organize their items in groups, which for example share the same access method and update rate. Each OPC server has an unique name, some vendors even offer the operation of multiple servers for the same device. OPC DA provides different methods to access items, first of all synchronous and asynchronous read and write operations. More important to us, there is also a subscription mechanism, which is commonly used by modern clients in order to reduce communication. That is, the client group subscribes to the server which then “pushes” values towards the client only if they changed respectively exceed a pre-defined dead-band. The client can force an update of all these values by issuing a refresh call, which corresponds to an asynchronous read for all items of a group [6]. 

2.3 Programmable Logic Controllers This section informs about the two controllers involved and about the controller that has to be replaced. Please notice that we use the term controller equivalent to programmable logic controller (PLC) throughout our Master’s Thesis.

2.3.1 Advant Controller 160 (AC160) The AC160 series was launched in 1997 to meet high speed requirements in turbine control. To this day its outstanding performance is needed for fast closed loop control (CLC). For our work, we were provided with a rack RF616 for the physical mounting of the controller parts. The rack also delivers power to each device and includes the BIOB Backplane Input/Output Bus which, among other tasks, processes the communication between the processor module and the communication interface. The tests in this Master’s Thesis were done with processor modules of the type PM665 (containing a Motorola MPC8240 processor) and the AF100 communication interface CI631, both supporting redundancy [7]. To program the processor module, its built-in EIA-232 interface was connected to the engineering PC.

  • GE WESDAC D20 C Combination Module
  • GE IC698CMX016 Control Memory Switch Module
  • GE SRPE60A 40 rated plug
  • GE 94-164136-001 motherboard control board
  • ABB PCD237A101 3BHE028915R0101 excitation control module
  • ABB XZC826A102 3BHE036348R0102 control module
  • ABB SAFT183VMC Safety Monitoring and Control Module
  • ABB LD 810HSE EX 3BSE091722R1 fieldbus link equipment
  • ABB RED615 HCDCACADAAHC2BNN11E Line Differential Protection and Control
  • ABB UFC760BE41 3BHE004573R0141 Industrial Computer Board
  • ABB 1TGE120011R2200 Motor Feed Control Unit
  • ABB PM865 3BSE030193R1 Compact Programmable Controller
  • ABB MVR 0.44-10KA high-power motor control module
  • ABB AO810 Input/Output Module
  • ABB SPAU341C1-AA RS488003-AA numerical protection repeater
  • ABB DSTA131 2668180-48/2 Programmable Logic Controller
  • ABB COM00012RAA005844A0004J2RAA005696N Control Panel Module
  • ABB MR7557891MRS050640C power relay
  • ABB 2RCA025057A0001R safety relay
  • ABB 2RCA013892A0003H power relay
  • ABB 2RCA013655A0001H power relay accessories
  • ABB 07KT94-98 controller
  • ABB 1MRK002247 Apr04 Transformer Module
  • ABB UNS0884a-v1 3BHE004385R0001 current sensor
  • ABB WMDOLT2-A75 (65KA) 6E 1TGE106812P0001 Input and Output Board
  • ABB Uras26 F-No. 3.346368.0 A-No 0240462201/2030 Gas Chamber Detector
  • ABB UFC911B101 3BHE037864R0101 control board
  • ABB TU841 3BSE020848R1 Termination unit for 1+1 TB840
  • ABB REF541KM115AAA relay feeder protection
  • ABB NINT-71C main circuit interface board
  • ABB LS14250 lithium battery
  • ABB ICSF08D1 FPR3323101R1012 24VDC high-speed counter
  • ABB DO814 Input/Output System
  • ABB 769111B gas chamber detector
  • ABB CM10/00MU1E0/STD Process Controller
  • ABB 769154 A filter element
  • ABB 769137 C 13CO2-10% 0746919 E detector
  • ABB 0769143 A Sample cell (Al), 175 mm
  • ABB 0002-07-2-000001-01 BMXS Scientific Module (ADC)
  • ABB CM15/000S0E0/STD Universal Process Indicator
  • ABB BSD0750 servo drive
  • ABB CI854BK01 Communication Interface Module
  • ABB XVC772A102 3BHE0322285R0102 circuit board
  • ABB AI04 Input/Output System
  • ABB TU847 module terminal unit
  • ABB TB807 module bus terminator
  • ABB PP877K control panel
  • ABB AO845A eA Analog Output Module
  • ABB SD822 power supply equipment
  • ABB 3BHB006716R0277 SYN5302A-Z.V277 synchronizer
  • ABB GFD233A103 3BH02294R0103 Controller
  • ABB 129740-002 134177-001 Intelligent I/O Module
  • ABB XUD194 3BHE018137R0001 AC800PEC High Performance Controller
  • ABB T3N225 Circuit Breaker
  • ABB A30-30-10RT three pole AC contactor
  • ABB SYN5302A-Z, V217 3BHB006716R0217 digital synchronizer
  • ABB NBIO-31 3BSE011337R1 I/O and Expansion Control Module
  • ABB 5SHX1960L0006 3BHB016120R0002 3BHE019719R0101 GVC736BE101 High Voltage Inverter Module
  • ABB PPC905AE101 3BHE014070R0101 control module
  • ABB REF615E_E HBFHAEAGNBA1BNN1XE digital feeder protection relay
  • ABB XVC770BE101 3BHE02103R0101 circuit board module
  • ABB 3BHL000986P7001 redundant DC power supply unit
  • ABB 3HAB8101-18/09A servo drive
  • ABB PM876-1 3BDH000707R1 Controller
  • ABB PPD117A3011 3BHE030410R3011 Excitation Controller Module
  • ABB 1MRK0023505-AA Transformer Differential Protection Relay
  • ABB PFSA140RULLM7A 3BSE006503R1 safety relay module
  • ABB PFSA140RULM1I 3BSE06503R1 drum power supply device
  • ABB MVME162-010A Embedded Controller Module
  • ABB 500BIM01 1MRB150024R0002 Digital Input Module
  • ABB 500BIM01 1MRB160024R0002 Digital Input Module
  • ABB 500PSM03 1MRB 150038 R1 894-030375D 136-011100H power module
  • ABB 500PSM02 1MRB150015R1 AD-272.100.20-01 AZ: C digital power module
  • ABB 500AIM02 1MRB150022 R0002 1HDF 930412 X010 Controller Module
  • ABB 500AIM02 1MRB150022 R0002Y 1HDF 930412 X010 Controller Module
  • ABB 500AIM02 1MRB150022R001 1HDF 930412 X010 Analog Input Module
  • ABB 500MTM02 1MRB150020R1102 1HDF 930512 X010 Controller Module
  • ABB 500MTM02 1MRK001967-AA 1HDF 930512 X010 Input/Output Module
  • ABB 500MTM02 1MRB150020R0712 1HDF 930512 X010 module
  • ABB 500BOM01 1MRB150023R0002 digital output module
  • ABB 500TRM02 1MRB150011R1 Terminal Relay Module
  • ABB 500TRM02 1MRB150011R0001 Transformer Monitoring Relay
  • ABB 500CPU03 1HDF700003R5122 Central Processing Unit
  • ABB 500PB101 1MRB178009R0001 1MRB200064/C Binary Input Module
  • ABB 500CSP04 HE401314/0002 1MRB150051R2 Input Module
  • ABB 500CMP04 HE401314/0001 1MRB150051R1 power module
  • ABB DSAO120 57120001-EY Digital Output Module
  • ABB SUE3000 1VCF750090R0804 servo drive module
  • ABB PFRL101C-1.0KN 3BSE023316R1002 radial weighing sensor
  • ABB UNS4684A-P, V.1 HIEE30514R00R00001 Communication Module
  • ABB PVD164A2059 3BHE014340R2059 excitation controller
  • ABB 3BHE046836R0102 GFD563A102 Analog I/O Module
  • ABB PFCL201CE 10KN 3BSX105983-100 Weighing Sensor
  • ABB PFCL201C 20KN 3BSE023409R20 Weighing Sensor
  • ABB 216VC62A HESG324442R112/F Signal Digital Processor
  • ABB 216EA61B HESG448230R1/G High Voltage DC Converter Valve
  • ABB 216AB61 HESG324013R101 digital output unit
  • ABB REF542 1VCR007346 G0028 Intelligent Sensor
  • ABB INSUMMCU2 MCU2A02V24 Intelligent Motor Control Unit
  • ABB MCU2A01C0-4 motor control unit
  • ABB PDP22-FBP fieldbus interface
  • ABB PNI800A Network Interface Module
  • ABB 3BHE039724R0C3D PPD513AOC 100440 Controller
  • ABB SDCS-CON-2-COAAT 3ADT220090R2 Controller
  • ABB CI543 communication interface
  • ABB PM510V08 3BSE00B373R1 processor module
  • ABB UNITRAL1010 3BHE035301R0001 UNS0121A-Z-V1 Exciter
  • ABB CI873K01 3BSE058899R1 Ethernet/IP interface module
  • ABB DYTP600A 61430001-ZY Signal Processor Module
  • ABB REF615C-E HCFFAEAGAABC2BAA11E feeder protection and control
  • ABB PCD235C101 3BHE057901R0101 Expansion Adapter
  • ABB UAD149A0001 3BHE014135R0001 excitation controller
  • ABB UAD149A1501 3BHE014135R1501 Controller Module
  • ABB REF545KC133AAAA protective relay
  • ABB PFSA103D 3BSE002492R0001 intermediate relay
  • ABB KUC321AE HIEE300698R1 power module
  • ABB PFVK135 PLC signal processing board
  • HIMA X-CPU 01 processor module
  • ABB TU811 Compact Module Terminal Unit
  • ABB REM610C55HCNN02 motor protection relay
  • ABB IMRIO02 Remote Input/Output Module
  • ABB PFEA113-20 3BSE050092R0 Tension Electronic Equipment
  • ABB UFC911B108 3BHE037864R0108 communication interface
  • ABB REU615E_D Voltage Protection and Control Relay
  • ABB PPD512A10-150000 Controller
  • ABB 5SHX1445H0001 3BHL0000391P0101 3BHB003230R0101 5SXE05-0152 module
  • ABB ICST08A9 Modular Controller
  • ABB 1SVR011718R2500 Analog Converter