IEC 61850 control services

IEC 61850 provides a very “elaborated” (it would also be justified to say complicated) model of functions to execute commands at devices. These functions are called “control models” in IEC 61580 speech. The abstract control models are defined in IEC 61850-7-2 and the mapping to the MMS (Manufacturing Message Specification) application protocol is defined in IEC 61850-8-1. Whilst the first provides control functions of different complexity in an abstract manner the latter is mapping the IEC 61850 control primitives to MMS.

IEC 61850 provides four different control models:
– direct control with normal security
– SBO (select before operate) with normal security
– direct control with enhanced security
– SBO with enhanced security

The “direct control” models provide simple means to start actions at the server. If multiple clients are trying to perform conflicting control actions this will not be prevented by the server. If this is required the “select before operate” mode can be used. Using this mode a client has to “select” the control object. After selection the selecting client is the only one allowed to perform control actions.

“Security” in this context actually means safety. The “enhanced security” models just provide more feedback to the calling client than the models with “normal security”. E.g. they transmit additional error codes and state information.

All of those control models optionally provide “time activated control”. With this mechanism a control action will not be executed immediately but in the future at a time specified by the client.

From a technical point of view the MMS mapping of the IEC 61850 control services is implemented by reading and writing to MMS pseudo-variables. While client requests are mapped to MMS read or write service requests the server responses may be mapped to read and write responses and additionally to MMS information report messages. The MMS information reports are used to transmit error codes in case of a service error. So in case of a negative response there is the response PDU of the read or write services indicating that there was a problem and additionally an MMS information report that contains more detailed information about the problem that occured.

As of version 0.5 libIEC61850 has support for all control models. A tutorial about the usage of the different control models in libiec61850 can be found here.

Released version 0.4

This release contains GOOSE publisher and subscriber code for both Linux and Windows. Also a new IEC 61850 client API has been created. This API is just in the beginning but already contains functions to read and write variables, activate and receive reports, and simple data model discovery. This release also contains improvements for the ACSE and presentation layers that are now more memory efficient.

Release 0.3.3 with GOOSE publisher for Linux

This release introduces additional features for the server stack. Experimental GOOSE publisher code has been integrated. This feature is only available for Linux yet and can be disabled by a stack configuration option. Other changes include the possibility to install data attribute specific callback functions to observe successful write attempts to data attributes by MMS clients. Also the reporting module has been improved.

Released version 0.3.2

This release contains support functions for handling MMS time data types. It also contains bug fixes for report handling and COTP layer. Also the server side report handling code has been extended. The new Semaphore type has been added to the Thread API. This is used by the server code for internal synchronization. See also CHANGELOG for more details. Also I would like to thank all the people who provided feedback and bug reports!

Version 0.3.1 released

This release improves the server support for reports. Also basic support for the IEC 61850 control model is included in this release. The direct control model is now supported. Support for more elaborated control models is prepared. The server has also been tested on a ARM7 based ucLinux system.
The IEC 61850 server tutorial now reflects the API changes.

Version 0.3 released

This release contains a lot of bug fixes. The server now contains basic support for unbuffered reporting (event triggered messages sent by the server). Some addional ACSI data types were added so the server stack should be compatible to more elaborated data models. The MMS client code and API now supports the handling of MMS information reports. See the CHANGELOG file for a more detailed description of changes.

In the next upcoming releases I plan to integrate the following changes:

  • support for buffered reporting
  • integration of GOOSE publisher code in the server
  • IEC 61850 client API

Version 0.2 released

Features introduced with the release of version 0.2:

  • association specific data sets
  • support for data sets that contain variables from different MMS domains (Logical Devices)
  • support for permanent data sets that can be configured in the SCL file
  • TCP keepalive implemented in WIN32 socket implementation