VC (Visual C ++) is a powerful visual application software development tool for Windows applications. VC supports object-oriented design methods, and can use the powerful Microsoft basic class library MFC (Micro-soft found aTIon class). And because of Microsoft's monopoly in the operating market, the software developed with VC has good stability and portability, and the software and hardware are independent of each other [1], which can be used to develop the upper management system of the control system. RSView32 is a configuration software specially used for industrial control. It not only contains a large number of graphics development tools and ready-made graphics libraries, so that users can easily carry out system development, but also can alarm, activity records, events, historical trends, etc. Configuration is a powerful industrial automation product [2], so it is easy to configure the lower-level equipment. In the actual system development, the OPC technology is used to effectively combine the two tools, so that the upper layer VC program indirectly communicates with the lower layer PLC through RSView32 to obtain satisfactory results.
2 Introduction to OPC
OPC (OLE for Process Control) is an open and interoperable user interface standard developed according to the functions required by Microsoft's OLE (now AcTIve), COM (Part Object Model) and DCOM (Distributed Part Object Model) technologies. It ensures interoperability between automation / control applications and regional systems / equipment. It uses the OLE / COM mechanism as the application-level communication standard and uses the CLIENT / SERVER mode. The typical OPC architecture is shown in Figure 1:
Figure 1 Typical OPC architecture
The OPC specification provides two sets of interface solutions, namely custom interfaces and automation interfaces. The customized interface has high efficiency. Through this interface, the best performance of the OPC server can be exerted. Customers who use C ++ language generally adopt the customized interface solution; the automated interface makes it possible for interpreted languages ​​and macro languages ​​to access the OPC server. Customers who use languages ​​such as VB generally adopt Automation interface.
The OPC data access server is composed of three types of objects: Server, Group, and Item. The server object is used to indicate the specific OPC server application name, and serves as a container for the group object; the group object stores Group information consisting of several Items and logically organizes the data items; the data item object () stores specific Item definitions and data values , Status value and other information, an Item represents a specific process variable. To obtain the data of the OPC server, the OPC client application must specify the computer name where the server application is located (the server application and the client application are not on the same PC), the name of the OPC data access server and the definition of the OPC item provided by the server.
After establishing an OPC connection, the client application can generally read data from the OPC server in three ways: using the synchronization interface IOPC-SyncIO, simple and effective, suitable for client programs that only read a small amount of data; using the interface IOPCCallback "subscribe" Function OnChange, when the data changes, the server automatically informs the client; using the asynchronous interface IOPCASyncIO2, you can directly communicate with the physical device, the speed is slow but the data accuracy is high.
3 RSView32 as an OPC server
One of Siemens' special configuration software for industrial control, RSView32, supports OPC technology. It can be used as an OPC client to communicate with external OPC server software, or as an OPC server to connect with other third-party software that supports OPC technology. In this article, RSView32 is used as the server, and the VC application is used as the client. The C / S mode is used to realize the data exchange between the two.
3.1 Make RSView32 as an OPC server [4]
Use one of the following methods to make RSView32 an OPC server:
(1) Select the "OPC / DDE server" checkbox on the "Startup" page in the "Startup" editor;
(2) Issue the RTDataServerOn command (from the command line or another RSView32 component, use the RTDataServerOff command to cancel this function), which will allow other applications to read the value but not change it;
(3) Issue the RTDataWriteEnable command (from the command line or another RSView32 component, use the RTDataWriteDisable command to cancel this function), which allows writing from external OPC applications to change the RSView32 tag value.
3.2 Establish OPC client project [4]
To get data from RSView32, VC applications must use the following information:
Server: RSI.RSView32OPCTagServer;
Type: local / remote;
Server computer name or address: If the client and server are on the same computer, this item can be blank.
Access path: project name;
Update rate: a rate in seconds;
Entry: Tagname. It can be obtained by viewing the RSView32 tag database.
4 VC application as the OPC client program
In the VC environment, the OPC client application program is developed using a custom interface. The following are the key steps of the program implementation.
4.1 Including OPC header files
To develop OPC client applications, in addition to the OPC interface, OPC standard library files need to be included in the program. You can download these files from the OPC Foundation website (URL: TIon.org)
#include "opcda_i.c" OPC data access interface
#include "opcda.h" OPC data access 2.0 header file
#include "opccomn_i.c" OPC common interface definition
#include "opccomn.h" OPC common header file
4.2 Initialize the COM support library
Because OPC is based on COM technology, you must first use the CoIniTIalize (NULL) function to initialize the COM library before using the interface class. If successful, the function return value is equal to S_ OK.
4.3 Connect to opc server
OPC clients can connect to the OPC server and establish OPC groups and OPC data items. This is the basis of OPC data access. Without this mechanism, other functions of data access cannot be achieved [4]. To connect to the OPC server, the OPC client needs to specify the computer name (if the OPC server and OPC client are not on the same computer) and the OPC data access server name (RSI.RSView32OPCTagServer) in advance. The implementation code is as follows:
ConnectToServer (/ * in * / LPOLESTR ProgID, / * in * / BOOL IsRemote, / * out * / IUnknown ** ppUnknown)
{
CLSID OPCCLSID;
HRESULT hRet = CLSIDFromProgID (ProgID, & OPCCLSID);
// Convert the string ProgID to a unique OPCCLSID
if (IsRemote)
// opc server and opc client are not on the same computer
{
COSERVERINFO ServerInfo;
memset (& ServerInfo, 0, sizeof (ServerInfo));
ServerInfo.pwszName = T2OLE ("ServerComouter");
MULTI_QI qi [1];
memset (qi, 0, sizeof (qi));
qi [0] .pIID = & IID_IUnknown;
HRESULT hRet = CoCreateInstanceEx (OPCCLSID, NULL, CLSCTX_REMOTE_SERVER,
& ServerInfo, 1, qi);
* ppUnknown = qi [0] .pItf;
}
else
// opc server and opc client are on the same computer
{
hRet = CoCreateInstance (OPCCLSID, NULL, CLSCTX_LOCAL_SERVER, IID_IUnknown,
(void **) ppUnknown);
}
}
4.4 Create OPC Group
The AddGroup () method of the IOPCServer interface can create an OPC group with a specified name and attributes. Before calling this method, you can use the Iunknown interface pointer obtained in the previous step to request the IOPCServer interface pointer through the QueryInterface () method. code show as below:
ppUnknown-> QueryInterface (IID_IOPCServer, (void **) & pServer);
// Get the IOPCServer interface pointer
pServer-> AddGroup (L "", TRUE, 500,1235, & lTimeBias, & fTemp, 0, & hOPCServerGroup, & dwActualRate, IID_IOPCItemMgt, & pOPCItemMgt);
4.5 Add data items
The AddItem () method of the IOPCItemMgt interface can add a specified number of data items with special attributes.
pOPCItemMgt-> AddItems (ItemNumber, ItemArray,
(OPCITEMRESULT **) & pItemResult, (HRESULT **) & pErrors);
ItemArray is an OPCITEMDEF type structure array, which contains detailed information of data items. Customers need to know the name, data type, and RSView32 item name of the OPC server in the RSView32 tag database. Before adding data items, use these data item information to initialize the ItemArray structure array.
4.6 Data exchange
After successfully adding the required data items, the OPC client (VC application) and the OPC server (RSView32) can exchange data. In the case of a small amount of data, you can use the Write () and Read () methods of the IOPCSyncIO synchronization interface to read and write data, thereby achieving Data exchange. code show as below:
ppUnknown-> QueryInterface (IID_IOPCSyncIO, (void **) & pOPCSync);
// Get the IOPCSyncIO interface pointer
pOPCSync-> Read (OPC_DS_CACHE, ReadNumber, hServerRead, & pItemValue, & pErrors);
// Read ReadNumber data
pOPCSync-> Write (WriteNumber, hServerWrite, WriteValue, & pErrors);
// Write WriteNumber data
4.7 Releasing the interface pointer
Before the VC application stops running, you must use the Release () method to delete the created OPC object and release the memory.
5 Conclusion
The OPC technical specification separates hardware suppliers and application software developers, which has greatly improved the work efficiency of both parties. Software developers can access the data in the OPC data server without having to understand the essence of the hardware and the operation process, especially the developers develop the system in high-level languages ​​such as C ++ on the basis of the process control system that has used configuration software for real-time monitoring This greatly simplifies the complex process of transferring data from devices in the past. In the development of an automatic batching system in an aluminum plant, the OPC technology was used to conveniently realize the data exchange between the VC application and RSView32, and the communication between the VC application and the PLC was indirectly achieved, and good results were obtained.
12V 30A Mppt Solar Charge Controller,12v 24v Auto 30a Controller,Mppt/pwm Charge Controller
GuangZhou HanFong New Energy Technology Co. , Ltd. , https://www.hfsolarenergy.com