IEC 61850 Communication / IEC 61131 Programmable Logic Control Application Integration Method and Use Case

Detlef Raddatz, Jonathon Mann, Nicholas Rixson – Fundamentals

Introduction

The demand for intelligent electronic devices (IEDs) in SMART Grid applications is rapidly growing. The communication method and media for these devices is clearly defined using internationally recognised standards such as IEC 61850. The functionality of these IEDs is typically fixed. However, the demand for distributed process control devices with a user programming interface is also growing. The international standard IEC 61131 standardises programmable logic controller (PLC) functionality and programmability suitable for SMART Grid automation.

IEC 61850 communication and IEC 61131 automation can be seen as independent software applications in a SMART Grid IED, which requires a well-defined interface for the information flow and data exchange between both applications. It is obvious that both applications serve different purposes. Therefore, data objects and structures are fundamentally different as shown below and the integration of both applications has to be attempted considering a number of restrictions and incompatibilities.

The Nature of IEC 61850 Data Objects and Structures

The IEC 61850 standard defines not only data objects, which must be communicated; it also defines the functionality, the data structure, and the behaviour of substation equipment.

stVal and ctlVal are real inputs and outputs of the IED and processed by its firmware for status update and control operations. Data quality, which indicates whether the current data value is valid or invalid and time stamp information is also provided and mandatory for IEC 61850 communication.

Events for data changes are typically created in real time. The correct time stamping of events is treated with very high priority.

The Nature of IEC 61131 Data Objects and Structures

In comparison an IEC 61131 programmable logic controller requires a much simpler data structure. The PLC controller processes data from a data input list and outputs results from logic operations to an output list.

Processes in the PLC are user programmable and are application specific. Depending on the contents and the data structure of the input and output list, data quality and time stamp information might be not available to the user when designing PLC application.

All data objects of the input and output lists are real inputs and outputs of the IED and processed by its firmware for status update and control operations.

Data Type Compatibility

Both applications provide a set of data types, which are direct compatible and usable by IEC 61850 and IEC61131. The comparison below shows the data compatibility and usability.

Some data types of IEC 61850 match up with more than one date type of IEC 61131. There is no difference during processing and can be used either way.

More communication specific IEC 61850 data types are not available in IEC 61131 and are not relevant for data processing. The data type in this category, which needs to be mentioned here, is the data type QUALITY. It is defined in IEC 61850-8-1:2004 section 8.2 and contains data object quality information. Quality information is presented by single bits and would be suitable and useful for processing in IEC 61131 as Boolean variables.

String data types are considered less important for IEC 61131 processing and not considered for integration purposes. The time stamp format is not compatible between IEC 61850 and IEC 61131. However, both applications refer to the common system time of the IED and independently create the respective standard compliant time format.

Note 1: Not considered
Note2: Special data conversion required for integration using the system time of the IED

Linking IEC 61850 Data Objects with IEC 61131 Process Data Objects

The simplest form of linking data from both applications is via mapping. This is done in the firmware of an IED. The most important issue here is to make sure that the data types as shown in the table above are matching and the direction of information flow is correct, for example, data is transferred from IEC 61850 to IEC 61131, meaning in this case a data object has to be mapped from IEC 61850 to IEC 61131. This also applies to data mapped from IEC 61131 to IEC 61850.

A principal data mapping method would look like as shown below.

The firmware of the IED matches data types as per the data type table in this document in the IED database system. The configuration tool of the IED populates the data tables of the system database and the information of data object mapping between IEC 61850 and IEC 61131. Each data change event is reported to the system database system and then forwarded to the receiving application as per mapping information.

During the mapping process the configuration tool also automatically adds and auto-creates additional data objects, which are required for linking IEC 61850 and IEC 61131.

  • Each data object owned by the IEC 61131 application has an auto-generated QUALIFIER added
  • Each mapped control command has a number of additional data objects added

The additional data objects for control commands are discussed later in this article.

Processing of IEC 61850 Quality Flags

The IEC 61850 data QUALIFIER is represented as data type BIT STRING and cannot be processed directly by an IEC 61131 application. To allow processing the qualifier has to be converted into a known data types.

The data type conversion is a task performed by a configuration tool, which interprets all data objects mapped between both applications and then creates automatically the additional data objects required by the IEC 61131 application.

All other qualifier flags of the IEC 61850 qualifier data type of type Boolean and therefore can be directly converted and processed as Boolean data by the IEC 61131 application.

Processing of Data Event Changes

The IEC 61131 application has the ability to create a data change event as a result of logic operation, which then is transferred to the IEC 61850 application as a stVal.

The IEC 61850 server receives a data change from the IEC 61131 PLC and is processing it as stVal in a Logical Node.

Standard IEC 61131 programming practice would only use physical inputs as variables in the PLC software. However, in most substation equipment data qualifier information is available and should also be used when programming the PLC. This adds safety aspects to a system, which at the discretion of the programmer, provides more reliable PLC software to an IED.

For example, qualifiers such as “Out of Range”, “Valid” or “Overflow” could be added to a process ensuring that the actual information provided by the IED is valid. It is a fact that information provided in an IED these days is provided using fieldbus systems. This adds another possible point of failure to a system. By using data qualifiers and processing them as part of the PLC software these sub-systems can also be monitored and fault conditions in the IED correctly diagnosed and reported through user designed PLC software. On the other hand all crucial information and data types required by IEC 61850 are passed through the IEC 61131 PLC correctly as trustworthy information.

Processing of Control Commands

Compared to data input change processing, executing control commands is more complex. Initiating a control command is triggered by two (2) different triggers, being:

  1. As a result of a logic operation in the PLC software
  2. As a result of receiving a control command by the IEC 61850 application

When trigger option 1) occurs the PLC itself is the commanding application and controls the entire process with the commanded application.

Trigger option 2) requires additional communication options between IEC 61850 and IEC 61131 since the PLC is not the commanding application. In this case the PLC is “added” into the command chain while the control command is communicated to the commanded application.

Control Trigger 1 – IEC 61131 is the Commanding Application

A typical use case would be the operation of a circuit breaker in local mode by a button press. The control logic checks the required conditions for allowing the circuit breaker. As a result of the control command the new position of the circuit breaker is reported back to the IEC 61850 application.

ACK: Acknowledgement of a successful command. NACK: Negative ACK – the command failed.

In this case the control operation is managed entirely by the IED. It is assumed that the control output will also generate a status change for input data object. That change is then independently reported by the IED firmware to the IEC 61850 application.

Programming of a Control Command in an IEC 61131 PLC Program as Commanding Application

The configuration system of the IED has auto-generated a set of IEC 61131 variable, which are accessible to the PLC programmer.

VAR_EXTERNAL

       OPER_PHYS_Value                         :BOOL; (* output command value *)

       OPER_PHYS_CmdRespValue          :SINT;  (* output command response value *)

       OUTPUT_SET_SIGNAL                   :BOOL; (* output set value signal *)

       OPER_CMD_SuccessInd                :BOOL; (* output command success indicator *)

END_VAR

The above PLC variables are then usable for IEC 61850 communication. This is not to be mistaken with the Acknowledge message exchange, which is defined by the IEC 61850 standard. Since the PLC is the commanding application the PLC variables can only be used for indication purposes in IEC 61850. Typically the Logical Node GGIO would be appropriate.

Variables OPER_PHYS_Value and OPER_PHYS_CmdRespValue are auto-generated by the IED configuration tool. Variables OUTPUT_SET_SIGNAL and OPER_CMD_SuccessInd are just other points in the PLC which may or may not be mapped to IEC 61850 or any other application in the IED. The IED firmware will execute a command whenever OPER_PHYS_Value changes (initialised as FALSE).

In this example: When OUTPUT_SET_SIGNAL is set TRUE a command will be generated with the value TRUE. When OUTPUT_SET_SIGNAL changes back to FALSE another command will be generated with the value FALSE.

OPER_PHYS_CmdRespValue contains the last command response value and is set whenever a command ACK/NACK, error code or timeout is received. This will not be reset and can be ignored or used to control an indicator as shown in the example.

Control Trigger 2 – IEC 61850 is the Commanding Application

This is the most common use case requiring additional and more complex data exchange models between IEC 61850 and IEC 61131, hence IEC 61131, by definition, is not prepared for secured control commands as they have been defined for IEC 61850.

The IEC 61850 server receives a command via ctlVal and passes it on to the IEC 61131 PLC for processing.

The complexity of the required data exchange model is shown below:

  • The IEC 61131 PLC application only accepts input data in its data input list. Control commands need to be converted into such data type first.
  • The IEC 61850 standard defines that each type of control command requires as an Acknowledge return message confirming a positive or negative outcome of the requested command. There is no mechanism in an IEC 61131 PLC to provide an Acknowledge message from its data output list.
  • Trying to extend or tunnel a control command from IEC 61850 through IEC 61131 to an actual physical output of the IED would break the information flow for a meaningful and true Acknowledge message.

In this case the IEC 61850 application initiates the control command and requires information during the execution of a command to be able to respond with the Acknowledge message exchange as defined in the IEC 61850 standard.

The firmware of the IED automatically converts the command event from IEC 61850 into a data change event, which can be processed by the IEC 61131 PLC from its input list. All other auto-generated data objects are also populated with the correct values as the command execution progresses.

Data event changes caused by the control command in the IED are handled independently by the firmware of the IED. This could be, for example, the position of a circuit breaker.

ACK: Acknowledgement of a successful command. NACK: Negative ACK – the command failed.

Programming of a Control Command in an IEC 61131 PLC Program with IEC 61850 as Commanding Application

The configuration system of the IED has auto-generated a set of IEC 61131 variable, which are accessible to the PLC programmer.

VAR_EXTERNAL

                 Interlock                           :BOOL;    (* interlock *)

                 OPER_PLC_Value              :BOOL;    (* input command value *)

                 OPER_PLC_CmdType        :USINT;   (* input command type *)

                 OPER_PLC_CmdTrigger     :BOOL;    (* input command trigger *)

                 OPER_PLC_CmdRespValue :SINT;     (* input command response value*)

                 OPER_PLC_CmdRespTrigger :BOOL; (* input command response trigger *)

                 OPER_PHYS_Value            :BOOL;    (* output command value *)

                 OPER_PHYS_CmdType      :USINT;   (* output command type *)

                 OPER_PHYS_CmdTrigger  :BOOL;    (* output command trigger *)

                 OPER_PHYS_CmdRespValue :SINT;  (* output command response value *)

                 OPER_PHYS_CmdRespTrigger          :BOOL; (* output command response trigger *)

END_VAR

Some of the auto-generated variables are used by the IED firmware for generating the correct Acknowledge messages in IEC 61850 during the command execution.

The firmware is handling the different command sequences for direct-operates, select-before-operates, as well as IEC 61850’s “normal security” and “enhanced security command” types.

The variable Interlock is a variable created in the PLC variable list and represents an example logic function controlled by the PLC programmer.

The IED firmware will set OPER_PLC_Value and OPER_PLC_CmdType then change the OPER_PLC_CmdTrigger value from FALSE to TRUE after a control command has been issued from IEC 61850 to the IEC 61131 PLC application. In this example the variable Interlock controls the first rung to be processed. Interlock controls the initiation of the control command sequence in the IED via OPER_PHYS_CmdTrigger. In this example Interlock has to be FALSE for triggering a command execution.

In case the logic operator Interlock is not allowing the control command to proceed the IED firmware will set OPER_PHYS_CmdRespValue (error message) and change the OPER_PHYS_CmdRespTrigger value from FALSE to TRUE and triggers a response message to IEC 61850 via OPER_PLC_CmdRespTrigger. This is shown in the second section of the example PLC software.

The IED firmware will execute a command using OPER_PHYS_Value and OPER_PHYS_CmdType when the OPER_PHYS_CmdTrigger value is changed by the IEC 61131 PLC from FALSE to TRUE.

The IED firmware will generate a command response to IEC 61850 using OPER_PLC_CmdRespValue when the OPER_PLC_CmdRespTrigger value is changed by the IEC 61131 PLC from FALSE to TRUE.

Due to the complexity of the command processing here some more explanations from a different angle.

In section 1: (when the interlock allows the execution of a command) The OPER_PLC_CmdTrigger enables the IED firmware to copy the OPER_PLC_Value to OPER_PHYS_Value and OPER_PLC_CmdType to OPER_PHYS_CmdType. The OPER_PHYS_CmdTrigger changes from FALSE to TRUE signaling to the IED firmware to execute a command with the copied values.

In section 2: (when the interlock prevents the command) The OPER_PLC_CmdTrigger enables the copy of -1 (an error code) to OPER_PLC_CmdRespValue. The OPER_PLC_CmdRespTrigger changes from FALSE to TRUE signaling to the IED firmware that a response is to be generated to IEC 61850 with the copied error code – this time it is a negative Acknowledgement.

In section 3: (when the executed command has completed) The OPER_PHYS_CmdRespTrigger enables the copy of OPER_PHYS_CmdRespValue to OPER_PLC_CmdRespValue. The OPER_PLC_CmdRespTrigger changes from FALSE to TRUE signaling the IED firmware that a response is to be generated to IEC 61850 with the copied value – this time the Acknowledgement matches the response given by the physical output.

Additional Benefits when Managing Acknowledge Messaging

Apart from being able to monitor internal software applications and internal communication performance between system applications and modules with this method of managing control commands also allows any other communication protocol to be used to extend or receive control commands and pass them through to other applications after processing them in the IEC 61131 PLC.

In order to extend IEC 61850 secured control commands into IEC 61131 the following implementation steps have to be taken into consideration.

  • Control command data types are converted to data input data types and transferred into the PLC input list.
  • The additional data types, which have been auto-generated for the control outputs are to be used in the PLC program by the PLC programmer for creating the correct Acknowledge message as a response to a control request
  • IEC 61850 requires independent select and operate responses
  • IEC 61850 provides two (2) control models, “normal security” and “enhanced security command”.

All items above are implemented in the firmware of an IED linking IEC 61850 with IEC 61131.

Conclusion

Integrating IEC 61850 into an IED is not trivial. Adding an IEC 61131 programmable logic controller to the IED turns an integration project into a highly complex undertaking. Detailed knowledge is required what IEC 61850 represents as the communication part of the device. This part is definitely reserved for engineers with expertise in the field of data communication.

On the other hand a programmable logic controller conforming to the standard IEC 61131 is the domain of process automation engineers.

By experience a combined skill set is hard to find between those two engineering disciplines. The nature of both applications, IEC 61850 and IEC 61131, need to be understood beyond of using them as an application engineer. Only then it will be possible to integrate both application in one device in a manner, which allows the user – IEC 61131 programmer and IEC 61850 configurator – utilising all features offered from both worlds, data communication and process automation.

 The integration should give the user options to:

  • Provide data change events for IEC 61850 in real-time independent from any IEC 61131 operation.
  • Process any data in the device using the IEC 61131 application independent from IEC 61850 communication.
  • Prevent any data incompatibility between IEC 61850 and IEC 61131 when linking and mapping data objects between both applications. Data compatibility has to be maintained at all times.
  • Maintain precise time stamp information for IEC 61850 data objects
  • Provide fast IEC 61131 data processing for the correct functionality of the device
  • Allow the usage of data objects and data qualifiers with its status flags in the IEC 61131 application and the programmer of this application adding more security to the PLC software
  • Assure that the secure control command sequences of IEC 61850 are also utilised in an IEC 61131 user program. This makes sure that the high standards of secured controls are extended into the IEC 61131 PLC software.  

After years of experience it is also emphasis on one the following issue – make sure the processor and hardware platform selected supports all requirements of an IED. This has not been discussed in this document. However, by experience these are important issue for a successful integration:

  • Long-time availability of the processor platform needs to be guaranteed
  • Electronic component obsolescence management has to be in place
  • Software operating systems must be real-time capable
  • Independent certification process for IEC 61850 and IEC 61131 is highly recommended
  • Work with experts in this field for the integration – it will save money and time after all!

Once the integration of IEC 61131 and IEC 61850 has been successfully completed, a product will be extremely versatile for communication tasks and fully compliant with communication standards, which are these days mandatory in the electrical utility industry in most regions of the world. The IEC 61131 application transforms the product into a true process automation device, which is user friendly to program and easily re-programmed if requirements change.

About the Authors

Detlef Raddatz received his engineering degree from the Technical University in Heilbronn, Germany. He has more than 32 years of experience in in SCADA, data communication and process technology for the electrical utility industry. With comprehensive knowledge of embedded hardware and software design he is responsible for a number of substation hardened product designs deployed worldwide such as advanced IEC 61850 communication gateways with automation capabilities. He has presented a number of technical papers at international conferences and is responsible for digital substation product design at Fundamentals.

Jonathon Mann received his Bachelor of Science (Information Technology) from Curtin University in Perth, Western Australia in 2011. After working at Curtin University tutoring networking and engineering units Jonathon joined SystemCorp to work on IEC 61850 test tools and has spent the last 10 years in the communications field specialising in IEC 61850. Jonathon is now a senior software engineer at Fundamentals with a primary focus on Fundamentals multi-platform IEC 61850 protocol stack.

Nicholas Rixson studied at the University of Western Australia, attaining degrees in Electrical and Electronic Engineering (hons) and Computer and Mathematical Science. He has been working in the electrical utility area since university, first at the state’s power utility in the analytics division, then moving on to writing embedded platform communication and automation at SystemCorp and Fundamentals.