The Multilin DGCV Voltage Regulator Controller

Size: px
Start display at page:

Download "The Multilin DGCV Voltage Regulator Controller"

Transcription

1 GE Digital Energy The Multilin DGCV Voltage Regulator Controller Multilin DGCV Revision: 1.10 Manual P/N: A1 GE publication code: GEK Copyright 2011 GE Digital Energy Communications Guide GE Digital Energy 215 Anderson Avenue, Markham, Ontario Canada L6E 1B3 Tel: (905) Fax: (905) Internet: * A1* MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDEGE Multilin's Quality Management System is registered to

2 2011 GE Digital Energy Incorporated. All rights reserved. The Multilin DGCV Voltage Regulator Controller Communications Guide for revision Multilin DGCV Voltage Regulator Controller, EnerVista, EnerVista Launchpad, and EnerVista DGCV Setup are registered trademarks of GE Digital Energy Inc. The contents of this manual are the property of GE Digital Energy Inc. This documentation is furnished on license and may not be reproduced in whole or in part without the permission of GE Digital Energy. The content of this manual is for informational use only and is subject to change without notice. Part number: A1 (July 2011)

3 Table of Contents 1. COMMUNICATIONS INTERFACES 2. RS485 INTERFACE Electrical Interface... 1 MODBUS Protocol... 2 Data Frame Format and Data Rate...2 Data Packet Format...2 Error Checking...3 CRC-16 Algorithm...3 Timing...4 Multilin DGCV supported functions...4 DNP protocol settings... 5 DNP communication...5 DNP device profile...5 DNP implementation...8 DNP serial EnerVista Setup...12 DNP general USB INTERFACE MODBUS Protocol... 1 Data Frame Format and Data Rate...1 Data Packet Format...1 Error Checking...2 CRC-16 Algorithm...2 Timing...3 Multilin DGCV supported functions MODBUS MEMORY MAP MODBUS memory map... 1 Format Codes MODBUS FUNCTIONS Function Code 03H... 1 Function Code 04H... 3 Function Code 05H... 4 Function Code 06H... 5 Function Code 07H... 6 Function Code 08H... 7 Function Code 10H... 8 Error Responses... 9 Force coil commands...10 Performing Commands Using Function Code 10H...12 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE toc 1

4 toc 2 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

5 Digital Energy Multilin DGCV Voltage Regulator Controller Chapter 1: Communications interfaces Communications interfaces The Multilin DGCV has two communications interfaces. These can be used simultaneously: RS485 USB MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 1 1

6 CHAPTER 1: COMMUNICATIONS INTERFACES 1 2 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

7 Digital Energy Multilin DGCV Voltage Regulator Controller Chapter 2: RS485 interface RS485 interface Electrical Interface The hardware or electrical interface in the Multilin DGCV is two-wire RS485. In a two-wire link, data is transmitted and received over the same two wires. Although RS485 two wire communication is bi-directional, the data is never transmitted and received at the same time. This means that the data flow is half duplex. RS485 lines should be connected in a daisy chain configuration with terminating networks installed at each end of the link (i.e. at the master end and at the slave farthest from the master). The terminating network should consist of a 120 W resistor in series with a 1 nf ceramic capacitor when used with Belden 9841 RS485 wire. Shielded wire should always be used to minimize noise. The shield should be connected to all of the Multilin DGCV s as well as the master, then grounded at one location only. This keeps the ground potential at the same level for all of the devices on the serial link. NOTE: NOTE Polarity is important in RS485 communications. The '+' (positive) terminals of every device must be connected together. MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 1

8 MODBUS PROTOCOL CHAPTER 2: RS485 INTERFACE MODBUS Protocol The Multilin DGCV implements a subset of the Modicon Modbus RTU serial communication standard. The Modbus protocol is hardware-independent. That is, the physical layer can be any of a variety of standard hardware configurations. This includes USB, RS485, fibre optics, etc. Modbus is a single master / multiple slave type of protocol suitable for a multidrop configuration. The Multilin DGCV is always a Modbus slave. It can not be programmed as a Modbus master. Computers or PLCs are commonly programmed as masters. Both monitoring and control are possible using read and write register commands. Other commands are supported to provide additional functions. The Modbus protocol has the following characteristics. : 1 to 254 Supported Modbus function codes: 3H, 4H, 5H, 6H, 7H, 8H, 10H Data Frame Format and Data Rate One data frame of an asynchronous transmission to or from a Multilin DGCV typically consists of 1 start bit, 8 data bits, and 1 stop bit. This produces a 10 bit data frame. This is important for transmission through modems at high bit rates. Modbus protocol can be implemented at any standard communication speed. The Multilin DGCV supports operation at 9600, 19200, 38400, 57600, and baud. The USB interface will support only baud. Data Packet Format A complete request/response sequence consists of the following bytes (transmitted as separate data frames): Master Request Transmission: SLAVE ADDRESS: 1 byte FUNCTION CODE: 1 byte DATA: variable number of bytes depending on FUNCTION CODE CRC: 2 bytes Slave Response Transmission: SLAVE ADDRESS: 1 byte FUNCTION CODE: 1 byte DATA: variable number of bytes depending on FUNCTION CODE CRC: 2 bytes SLAVE ADDRESS: This is the first byte of every transmission. This byte represents the userassigned address of the slave device that is to receive the message sent by the master. Each slave device must be assigned a unique address and only the addressed slave will respond to a transmission that starts with its address. In a master request transmission the SLAVE ADDRESS represents the address of the slave to which the request is being sent. In a slave response transmission the SLAVE ADDRESS represents the address of the slave that is sending the response. FUNCTION CODE: This is the second byte of every transmission. Modbus defines function codes of 1 to 127. DATA: This will be a variable number of bytes depending on the FUNCTION CODE. This may be Actual Values, Setpoints, or addresses sent by the master to the slave or by the slave to the master. CRC: This is a two byte error checking code. 2 2 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

9 CHAPTER 2: RS485 INTERFACE MODBUS PROTOCOL Error Checking The RTU version of Modbus includes a two byte CRC-16 (16 bit cyclic redundancy check) with every transmission. The CRC-16 algorithm essentially treats the entire data stream (data bits only; start, stop and parity ignored) as one continuous binary number. This number is first shifted left 16 bits and then divided by a characteristic polynomial ( B). The 16 bit remainder of the division is appended to the end of the transmission, MSByte first. The resulting message including CRC, when divided by the same polynomial at the receiver will give a zero remainder if no transmission errors have occurred. If a Multilin DGCV Modbus slave device receives a transmission in which an error is indicated by the CRC-16 calculation, the slave device will not respond to the transmission. A CRC-16 error indicates than one or more bytes of the transmission were received incorrectly and thus the entire transmission should be ignored in order to avoid the Multilin DGCV performing any incorrect operation. The CRC-16 calculation is an industry standard method used for error detection. An algorithm is included here to assist programmers in situations where no standard CRC-16 calculation routines are available. CRC-16 Algorithm Once the following algorithm is complete, the working register A will contain the CRC value to be transmitted. Note that this algorithm requires the characteristic polynomial to be reverse bit ordered. The MSBit of the characteristic polynomial is dropped since it does not affect the value of the remainder. The following symbols are used in the algorithm: >: data transfer A: 16 bit working register AL: low order byte of A AH: high order byte of A CRC: 16 bit CRC-16 value i, j: loop counters (+): logical exclusive or operator Di: i-th data byte (i = 0 to N-1) G: 16 bit characteristic polynomial = with MSbit dropped and bit order reversed shr(x): shift right (the LSbit of the low order byte of x shifts into a carry flag, a '0' is shifted into the MSbit of the high order byte of x, all other bits shift right one location The algorithm is: 1. FFFF hex > A 2. 0 > i 3. 0 > j 4. Di (+) AL > AL 5. j+1 > j 6. shr(a) MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 3

10 MODBUS PROTOCOL CHAPTER 2: RS485 INTERFACE 7. is there a carry? No: go to 8. Yes: G (+) A > A 8. is j = 8? No: go to 5. Yes: go to i+1 > i 10. is i = N? No: go to 3. Yes: go to A > CRC Timing Data packet synchronization is maintained by timing constraints. The receiving device must measure the time between the reception of characters. If 3.5 character times elapse without a new character or completion of the packet, then the communication link must be reset (i.e. all slaves start listening for a new transmission from the master). Thus at 9600 baud a delay of greater than 3.5 x 1 / 9600 x 10 = 3.65ms will cause the communication link to be reset. Multilin DGCV supported functions The following functions are supported by the Multilin DGCV : FUNCTION CODE 03H - Read Setpoints FUNCTION CODE 04H - Read Actual Values FUNCTION CODE 05H - Execute Operation FUNCTION CODE 06H - Store Single Setpoint FUNCTION CODE 07H - Read Device Status FUNCTION CODE 08H - Loopback Test FUNCTION CODE 10H - Store Multiple Setpoints Refer to Chapter 4 of this guide for more details on MODBUS function codes. 2 4 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

11 CHAPTER 2: RS485 INTERFACE DNP PROTOCOL SETTINGS DNP protocol settings DNP communication Figure 1: DNP communication menu S1 DNP DNP GENERAL DEFAULT VARIATION DNP POINTS LIST cdr S1 DNP GENERAL DNP ADDRESS TME SYNC IIN PER. DNP MSG FRAG SIZE DEFAULT VARIATION DNP OBJECT 1 DNP OBJECT 2 DNP OBJECT 20 DNP OBJECT 21 DNP OBJECT 22 DNP OBJECT 23 DNP OBJECT 30 DNP OBJECT 32 S1 DNP POINTS LIST BINARY INPUTS BINARY OUTPUTS ANALOG INPUTS POINT 0 POINT 1 POINT 2... POINT 63 POINT 0 ON POINT 0 OFF POINT 1 ON POINT 1 OFF... POINT 15 ON POINT 15 OFF POINT 0 ENTRY POINT 1 ENTRY POINT 2 ENTRY... POINT 31 ENTRY The following path is available using the keypad. PATH: SETPOINTS > RELAY SETUP > COMMUNICATIONS > DNP PROTOCOL > DNP GENERAL To view the list of DNP Binary Inputs, please refer to section FC134B of the Format Codes table in this guide. DNP device profile DNP 3.0 Device Profile (Also see the IMPLEMENTATION TABLE in the following section) Vendor Name: General Electric Multilin Device Name: DGC-VR Highest DNP Level Supported: For Requests: Level 2 For Responses: Level 2 Device Function: Master Slave MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 5

12 DNP PROTOCOL SETTINGS CHAPTER 2: RS485 INTERFACE DNP 3.0 Device Profile Notable objects, functions, and/or qualifiers supported in addition to the Highest DNP Levels Supported (the complete list is described in the attached table): Binary Inputs (Object 1) Binary Input Changes (Object 2) Binary Outputs (Object 10) Control Relay Output Block (Object 12) Binary Counters (Object 20) Frozen Counters (Object 21) Counter Change Event (Object 22) Frozen Counter Event (Object 23) Analog Inputs (Object 30) Analog Input Changes (Object 32) Analog Deadbands (Object 34) Time and Date (Object 50) Internal Indications (Object 80) Maximum Data Link Frame Size (octets): Maximum Application Fragment Size (octets): Transmitted: 292 Transmitted: configurable up to 2048 Received: 292 Received: 2048 Maximum Data Link Re-tries: Maximum Application Layer Re-tries: None None Fixed at 3 Configurable Configurable Requires Data Link Layer Confirmation: Never Always Sometimes Configurable Requires Application Layer Confirmation: Never Always When reporting Event Data When sending multi-fragment responses Sometimes Configurable Timeouts while waiting for: Data Link Confirm: None Fixed Variable Configurable Complete Appl. Fragment: None Fixed Variable Configurable Application Confirm: None Fixed at 10 s Variable Configurable Complete Appl. Response: None Fixed at Variable Configurable 2 6 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

13 CHAPTER 2: RS485 INTERFACE DNP PROTOCOL SETTINGS DNP 3.0 Device Profile Others: Transmission Delay: No intentional delay Need Time Interval: Configurable (default = 24 hrs.) Select/Operate Arm Timeout: 10 s Binary input change scanning period: 8 times per power system cycle Analog input change scanning period: 500 ms Counter change scanning period: 500 ms Frozen counter event scanning period: 500 ms Sends/Executes Control Operations: WRITE Binary Outputs Never Always Sometimes Configurable SELECT/OPERATE Never Always Sometimes Configurable DIRECT OPERATE Never Always Sometimes Configurable DIRECT OPERATE NO ACK Never Always Sometimes Configurable Count > 1 Never Always Sometimes Configurable Pulse On Never Always Sometimes Configurable Pulse Off Never Always Sometimes Configurable Latch On Never Always Sometimes Configurable Latch Off Never Always Sometimes Configurable Queue Never Always Sometimes Configurable Clear Queue Never Always Sometimes Configurable Explanation of Sometimes : Object 12 points are mapped to Virtual Inputs and Commands (Force Coils). Both Pulse On and Latch On operations perform the same function in the ; that is, the appropriate Virtual Input or Coil is put into the On state. The On/Off times and Count value are ignored. Pulse Off and Latch Off operations put the appropriate Virtual Input or Coil into the Off state. Trip and Close operations both put the appropriate Virtual Input or coil into the On state if a paired mapping is set, otherwise Trip will put into Off and Close will put into On. Reports Binary Input Change Events when no specific variation requested: Never Only time-tagged Only non-time-tagged Configurable Sends Unsolicited Responses: Never Configurable Only certain objects Sometimes ENABLE/DISABLE unsolicited Function codes supported Explanation: It will be disabled for RS-485 applications, since there is no collision avoidance mechanism. Default Counter Object/Variation: No Counters Reported Configurable (attach explanation) Default Object: 20 Default Variation: 1 Point-by-point list attached Reports time-tagged Binary Input Change Events when no specific variation requested: Never Binary Input Change With Time Binary Input Change With Relative Time Configurable (attach explanation) Sends Static Data in Unsolicited Responses: Never When Device Restarts When Status Flags Change No other options are permitted. Counters Roll Over at: No Counters Reported Configurable (attach explanation) 16 Bits Other Value: Point-by-point list attached MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 7

14 DNP PROTOCOL SETTINGS CHAPTER 2: RS485 INTERFACE DNP 3.0 Device Profile Sends Multi-Fragment Responses: Yes No Time Sync Information: When does outstation set IIN 1.4 Maximum delay measurement error: Never Asserted at startup until first Time Synchronization request received Periodically, range to seconds Periodically, selectable from,, seconds Range 0 to minutes after last time sync (default 1440 minutes) Selectable from,, seconds after last time sync When time error may have drifted by range to ms When time error may have drifted by selectable from,, 5 ms DNP implementation Table 1: DNP Implementation OBJECT REQUEST RESPONSE OBJECT NO. VARIATION NO. DESCRIPTION 1 0 Binary Input (Variation 0 is used to request default variation) FUNCTION CODES (DEC) 1 (read) 22 (assign class) 1 Binary Input 1 (read) 22 (assign class) 2 Binary Input with Status 1 (read) 22 (assign class) 2 0 Binary Input Change (Variation 0 is used to request default variation) 1 Binary Input Change without Time 2 Binary Input Change with Time 3 Binary Input Change with Relative Time 10 0 Binary Output Status (Variation 0 is used to request default variation) QUALIFIER CODES (HEX) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 00, 01(start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) FUNCTION CODES (DEC) QUALIFIER CODES (HEX) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) , 28 (index) 17, 28 (index) 2 8 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

15 CHAPTER 2: RS485 INTERFACE DNP PROTOCOL SETTINGS OBJECT REQUEST RESPONSE OBJECT NO. VARIATION NO. DESCRIPTION 2 Binary Output Status 1 (read) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 12 1 Control Relay Output Block 20 0 Binary Counter (Variation 0 is used to request default variation) 3 (select)4 (operate) 5 (direct op) 6 (dir. op, noack) 1 (read) 7 (freeze) 8 (freeze noack) 9 (freeze clear) 10 (frz. cl. noack) 22 (assign class) 1 32-Bit Binary Counter 1 (read)7 (freeze) 8 (freeze noack) 9 (freeze clear) 10 (frz. cl. noack) 22 (assign class) 2 16-Bit Binary Counter 1 (read) 7 (freeze) 8 (freeze noack) 9 (freeze clear) 10 (frz. cl. noack) 22 (assign class) 5 32-Bit Binary Counter without Flag 6 16-Bit Binary Counter without Flag 21 0 Frozen Counter(Variation 0 is used to request defaultvariation) 1 (read) 7 (freeze) 8 (freeze noack) 9 (freeze clear) 10 (frz. cl. noack) 22 (assign class) 1 (read) 7 (freeze) 8 (freeze noack) 9 (freeze clear) 10 (frz. cl. noack) 22 (assign class) 1 (read) 22 (assign class) 1 32-Bit Frozen Counter 1 (read) 22 (assign class) 2 16-Bit Frozen Counter 1 (read) 22 (assign class) 9 32-Bit Frozen Counter without Flag Bit Frozen Counter without Flag FUNCTION CODES (DEC) 1 (read) 22 (assign class) 1 (read) 22 (assign class) QUALIFIER CODES (HEX) 00, 01 (start-stop) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) FUNCTION CODES (DEC) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) echo of request (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) QUALIFIER CODES (HEX) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 9

16 DNP PROTOCOL SETTINGS CHAPTER 2: RS485 INTERFACE OBJECT REQUEST RESPONSE OBJECT NO. VARIATION NO. DESCRIPTION 22 0 Counter Change Event (Variation 0 is used to request default variation) 1 32-Bit Counter Change Event Bit Counter Change Event 5 32-Bit Counter Change Event with Time 6 16-Bit Counter Change Event with Time 0 Frozen Counter Event (Variation 0 is used to request default variation) 1 32-Bit Frozen Counter Event 2 16-Bit Frozen Counter Event 5 32-Bit Frozen Counter Event with Time 6 16-Bit Frozen Counter Event with Time 30 0 Analog Input (Variation 0 is used to request default variation) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 22 (assign class) 1 32-Bit Analog Input 1 (read) 22 (assign class) 2 16-Bit Analog Input 1 (read) 22 (assign class) 3 32-Bit Analog Input without Flag 4 16-Bit Analog Input without Flag 32 0 Analog Change Event (Variation 0 is used to request default variation) 1 32-Bit Analog Change Event without Time FUNCTION CODES (DEC) 1 (read) 22 (assign class) 1 (read) 22 (assign class) QUALIFIER CODES (HEX) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) FUNCTION CODES (DEC) (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) , 28 (index) 17, 28 (index) 17, 28 (index) 17, 28 (index) 17, 28 (index) 17, 28 (index) 17, 28 (index) 17, 28 (index) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) (response) 130 (unsol. resp.) QUALIFIER CODES (HEX) 17, 28 (index) 2 10 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

17 CHAPTER 2: RS485 INTERFACE DNP PROTOCOL SETTINGS OBJECT REQUEST RESPONSE OBJECT NO. VARIATION NO. DESCRIPTION 2 16-Bit Analog Change Event without Time 3 32-Bit Analog Change Event with Time 4 16-Bit Analog Change Event with Time 34 0 Analog Input Reporting Deadband (Variation 0 is used to request defaultvariation) 1 16-bit Analog Input Reporting Deadband (default - see Note 1) 2 32-bit Analog Input Reporting Deadband 50 1 Time and Date (default - see Note 1) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 06 (no range, or all) 07, 08 (limited quantity) 1 (read) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 1 (read) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 2 (write) 00, 01 (start-stop) 07, 08 (limited quantity) 17, 28 (index) 1 (read) 00, 01 (start-stop) 06 (no range, or all) 07, 08 (limited quantity) 17, 28 (index) 2 (write) 00, 01 (start-stop) 07, 08 (limited quantity) 17, 28 (index) 1 (read)2 (write) 00, 01 (start-stop) 06 (no range, or all) 07 (limited qty=1) 08 (limited quantity) 17, 28 (index) 129 (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) 129 (response) 130 (unsol. resp.) , 28 (index) 17, 28 (index) 17, 28 (index) 129 (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) (response) 00, 01 (start-stop) 17, 28 (index) (see Note 2) 52 2 Time Delay Fine 129 (response) 07 (limited quantity) (quantity = 1) 60 0 Class 0, 1, 2, and 3 Data 1 (read) 20 (enable unsol) 21 (disable unsol) 22 (assign class) 06 (no range, or all) Class 0 Data 1 (read) 22 (assign class) 2 Class 1 Data 1 (read) 20 (enable unsol) 06 (no range, or all) (no range, or all) 07, 08 (limited quantity) 3 Class 2 Data 21 (disable unsol) 4 Class 3 Data 22 (assign class) 80 1 Internal Indications 1 (read) 00, 01 (start-stop) (index =7) No Object (function code only) see Note 3 No Object (function code only) No Object (function code only) FUNCTION CODES (DEC) 2 (write) (see Note 3) 13 (cold restart) 14 (warm restart) 23 (delay meas.) QUALIFIER CODES (HEX) 00 (start-stop) (index =7) FUNCTION CODES (DEC) (response) 00, 01 (start-stop) QUALIFIER CODES (HEX) MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 11

18 DNP PROTOCOL SETTINGS CHAPTER 2: RS485 INTERFACE NOTE: NOTE 1. A default variation refers to the variation response when variation 0 is requested and/ or in class 0, 1, 2, or 3 scans. The default variations for object types 1, 2, 20, 21, 22, 23, 30, and 32 are selected via relay settings. This optimizes the class 0 poll data size. 2. For static (non-change-event) objects, qualifiers 17 or 28 are only responded when a request is sent with qualifiers 17 or 28, respectively. Otherwise, static object requests sent with qualifiers 00, 01, 06, 07, or 08, will be responded with qualifiers 00 or 01 (for ChangeEvent objects, qualifiers 17 or 28 are always responded.) 3. Cold restarts are implemented the same as warm restarts the Multilin DGCV is not restarted, but the DNP process is restarted. DNP serial EnerVista Setup The following tables show the settings needed to configure all the DNP 3.0 implementation parameters. Table 2: RS-485 SETTINGS PARAMETER RANGE FORMAT RS485 Baud Rate , 19200, 38400, 57600, F RS485 Comm Parity None None, Odd, Even F102 Rear 485 Protocol DNP 3.0 Modbus, DNP 3.0 F97 In order to activate DNP 3.0 at the RS485 rear port, the setting "Rear 485 Protocol" must be set to DNP 3.0. Once the setting has been changed, the relay must be switched off, then switched on. Table 3: DNP protocol SETTINGS PARAMETER RANGE FORMAT DNP Time Sync IIN Period 1440 min 1 to min F1 DNP Message Fragment Size to 2048 F1 DNP Object 1 Default Variation 2 1 ; 2 F1 DNP Object 2 Default Variation 2 1 ; 2 F1 DNP Object 20 Default Variation 1 1 ; 2, 5 ; 6 F78 DNP Object 21 Default Variation 1 1 ; 2 ; 9 ; 10 F79 DNP Object 22 Default Variation 1 1 ; 2, 5 ; 6 F80 DNP Object 23 Default Variation 1 1 ; 2, 5 ; 6 F81 DNP Object 30 Default Variation 1 1 ; 2 ;3 ; 4 F82 DNP Object 32 Default Variation 1 1 ; 2 ;3 ; 4 F MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

19 CHAPTER 2: RS485 INTERFACE DNP PROTOCOL SETTINGS Table 4: DNP point list SETTINGS PARAMETER RANGE FORMAT Binary Input Point 0 Entry Select entry Operands F134 from a list Binary Input Point 63 Entry Select entry from a list Operands F134 Analog Input Point 0 Entry Select entry Analog parameters from a list Analog Input Point 0 Scale Factor ; 0.01 ; 0.1 ; 1 ; 10 ; 100 ; F ; ; Analog Input Point 0 Deadband to F9 Analog Input Point 31 Entry Select entry from a list Analog parameters Analog Input Point 31 Scale Factor ; 0.01 ; 0.1 ; 1 ; 10 ; 100 ; 1000 ; ; F85 Analog Input Point 31 Deadband to F9 Binary Output Point 0 ON Binary Output Point 0 OFF Select entry from a list Select entry from a list Virtual Input 1 to 32 and Force Coils Virtual Input 1 to 32 and Force Coils F86 F86 Binary Output Point 15 ON Binary Output Point 15 OFF Select entry from a list Select entry from a list Virtual Input 1 to 32 and Force Coils Virtual Input 1 to 32 and Force Coils F86 F86 DNP UNSOL RESPONSE FUNCTION should be Disabled for RS485 applications, since there is no collision avoidance mechanism. The DNP Time Sync IIN Period setting determines how often the Need Time Internal Indication (IIN) bit is set by the. Changing this time allows the to indicate that a time synchronization command is necessary more or less often Various settings have been included to configure Default Variation for the Binary Inputs, Counters and Analog Inputs Objects. The default variation refers to the variation response when variation 0 is requested, and/or in class 0, 1, 2, or 3 scans Up to 64 Binary Inputs and 32 Analog Input entries can be mapped to an item from a list of status events and metered values. Status events correspond to Function Code 134B. Each Analog Input point Deadband and Scale Factor can be set individually instead of setting a general deadband or scale for different metering groups. This will avoid scale and deadband conflicts for different meterings of the same nature. Up to 16 Binary/Control Outputs can be configured by selecting a Virtual Input or Command from a list of 32 Virtual Inputs and Commands (Force Coils). Some legacy DNP implementations use a mapping of one DNP Binary Output to two physical or virtual control points. In Order to configure Paired Control Points the source for states ON and OFF should be set to different Virtual Inputs or Commands. The DNP Technical Committee recommends using contiguous point numbers, starting at 0, for each data type, because some DNP3 Master implementations allocate contiguous memory from point 0 to the last number for each data type. MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 2 13

20 DNP PROTOCOL SETTINGS CHAPTER 2: RS485 INTERFACE NOTE: Binary Inputs are inputs to the Master. Binary Outputs are outputs from the Master. NOTE DNP general Default variations for Object 1, 2, 20, 21, 22, 23, 30 and Object 32 will be set by settings and returned for the object in a response when no specific variation is specified in a Master request. Any change in the state of any binary point causes the generation of an event, and consequently it is returned when the Master asks for it. The same behavior will be seen when an analog value changes by more than its configured deadband limit. There can be only one Serial Master. The following Default Classes will be fixed for the different blocks of data: Binary Input Points Default Class = 1 Analog Input Point Default Class = 2 Counters Default Class = 3 Each Data Point Class can be changed by protocol function code 22 in volatile mode. If a restart is performed, the new values will be lost. DNP Object 34 points can be used to change deadband values from the default for each individual DNP Analog Input point. These new deadbands will be maintained such that in the case of a relay restart, the values are not lost. Two Binary Counters have been hardcoded such that no option can be modified by setting: Counter 1 Counter 2 Counter 3 Counter 4 Counter 5 DGC-VR N.A. VR 24h tap changes VR total tap changes N.A. N.A. Requests for Object 20 (Binary Counters), Object 21 (Frozen Counters), and Object 22 (Counter Change Events) must be accepted. Function codes Immediate Freeze, Freeze and Clear etc. are accepted as well MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

21 Digital Energy Multilin DGCV Voltage Regulator Controller Chapter 3: USB interface USB interface Note that the USB interface supports only the Modbus protocol. MODBUS Protocol The Multilin DGCV implements a subset of the Modicon Modbus RTU serial communication standard. The Modbus protocol is hardware-independent. That is, the physical layer can be any of a variety of standard hardware configurations. This includes USB, RS485, fibre optics, etc. Modbus is a single master / multiple slave type of protocol suitable for a multidrop configuration. The Multilin DGCV is always a Modbus slave. It can not be programmed as a Modbus master. Computers or PLCs are commonly programmed as masters. Both monitoring and control are possible using read and write register commands. Other commands are supported to provide additional functions. The Modbus protocol has the following characteristics. : 1 to 254 Supported Modbus function codes: 3H, 4H, 5H, 6H, 7H, 8H, 10H Data Frame Format and Data Rate One data frame of an asynchronous transmission to or from a Multilin DGCV typically consists of 1 start bit, 8 data bits, and 1 stop bit. This produces a 10 bit data frame. This is important for transmission through modems at high bit rates. Modbus protocol can be implemented at any standard communication speed. The Multilin DGCV supports operation at 9600, 19200, 38400, 57600, and baud. The USB interface will support only baud. Data Packet Format A complete request/response sequence consists of the following bytes (transmitted as separate data frames): Master Request Transmission: SLAVE ADDRESS: 1 byte MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 3 1

22 MODBUS PROTOCOL CHAPTER 3: USB INTERFACE Error Checking FUNCTION CODE: 1 byte DATA: variable number of bytes depending on FUNCTION CODE CRC: 2 bytes Slave Response Transmission: SLAVE ADDRESS: 1 byte FUNCTION CODE: 1 byte DATA: variable number of bytes depending on FUNCTION CODE CRC: 2 bytes SLAVE ADDRESS: This is the first byte of every transmission. This byte represents the userassigned address of the slave device that is to receive the message sent by the master. Each slave device must be assigned a unique address and only the addressed slave will respond to a transmission that starts with its address. In a master request transmission the SLAVE ADDRESS represents the address of the slave to which the request is being sent. In a slave response transmission the SLAVE ADDRESS represents the address of the slave that is sending the response. FUNCTION CODE: This is the second byte of every transmission. Modbus defines function codes of 1 to 127. DATA: This will be a variable number of bytes depending on the FUNCTION CODE. This may be Actual Values, Setpoints, or addresses sent by the master to the slave or by the slave to the master. CRC: This is a two byte error checking code. The RTU version of Modbus includes a two byte CRC-16 (16 bit cyclic redundancy check) with every transmission. The CRC-16 algorithm essentially treats the entire data stream (data bits only; start, stop and parity ignored) as one continuous binary number. This number is first shifted left 16 bits and then divided by a characteristic polynomial ( B). The 16 bit remainder of the division is appended to the end of the transmission, MSByte first. The resulting message including CRC, when divided by the same polynomial at the receiver will give a zero remainder if no transmission errors have occurred. If a Multilin DGCV Modbus slave device receives a transmission in which an error is indicated by the CRC-16 calculation, the slave device will not respond to the transmission. A CRC-16 error indicates than one or more bytes of the transmission were received incorrectly and thus the entire transmission should be ignored in order to avoid the Multilin DGCV performing any incorrect operation. The CRC-16 calculation is an industry standard method used for error detection. An algorithm is included here to assist programmers in situations where no standard CRC-16 calculation routines are available. CRC-16 Algorithm Once the following algorithm is complete, the working register A will contain the CRC value to be transmitted. Note that this algorithm requires the characteristic polynomial to be reverse bit ordered. The MSBit of the characteristic polynomial is dropped since it does not affect the value of the remainder. The following symbols are used in the algorithm: >: data transfer A: 16 bit working register AL: low order byte of A AH: high order byte of A CRC: 16 bit CRC-16 value i, j: loop counters 3 2 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

23 CHAPTER 3: USB INTERFACE MODBUS PROTOCOL (+): logical exclusive or operator Di: i-th data byte (i = 0 to N-1) G: 16 bit characteristic polynomial = with MSbit dropped and bit order reversed shr(x): shift right (the LSbit of the low order byte of x shifts into a carry flag, a '0' is shifted into the MSbit of the high order byte of x, all other bits shift right one location The algorithm is: 1. FFFF hex > A 2. 0 > i 3. 0 > j 4. Di (+) AL > AL 5. j+1 > j 6. shr(a) 7. is there a carry? No: go to 8. Yes: G (+) A > A 8. is j = 8? No: go to 5. Yes: go to i+1 > i 10. is i = N? No: go to 3. Yes: go to A > CRC Timing Data packet synchronization is maintained by timing constraints. The receiving device must measure the time between the reception of characters. If 3.5 character times elapse without a new character or completion of the packet, then the communication link must be reset (i.e. all slaves start listening for a new transmission from the master). Thus at 9600 baud a delay of greater than 3.5 x 1 / 9600 x 10 = 3.65ms will cause the communication link to be reset. Multilin DGCV supported functions The following functions are supported by the Multilin DGCV : FUNCTION CODE 03H - Read Setpoints FUNCTION CODE 04H - Read Actual Values FUNCTION CODE 05H - Execute Operation FUNCTION CODE 06H - Store Single Setpoint MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 3 3

24 MODBUS PROTOCOL CHAPTER 3: USB INTERFACE FUNCTION CODE 07H - Read Device Status FUNCTION CODE 08H - Loopback Test FUNCTION CODE 10H - Store Multiple Setpoints Refer to Chapter 4 of this guide for more details on MODBUS function codes. 3 4 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

25 Digital Energy Multilin DGCV Voltage Regulator Controller Chapter 4: MODBUS memory map MODBUS memory map MODBUS memory map Modbus Hex Description Min Max Step Units Format Code Factory Default ACTUAL VALUES PRODUCT INFORMATION Product Device Code F22 MJ Hardware Revision F Firmware Version 0 0xFFFF F Display Software Version 0 0xFFFF F Modification Number F Boot Version 0 0xFFFF F Boot Modification Number F Serial Number F22 MJ D Order Code F22 DGC- 16 SEHSSBBAE Database Version 0 0xFFFF F Build Date F22 Unknown A Build Time F22 Unknown E Original Calibration Date 0x010107D8 0X0C1F082E F Last Calibration Date 0x010107D8 0X0C1F082E F D Platform Version 0 0xFFFF F AMBIENT TEMP STATISTIC VALUES Ambient Temperature C F Maximum Ambient Temperature Minimum C F Size in Words MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 4 1

26 MODBUS MEMORY MAP CHAPTER 4: MODBUS MEMORY MAP Modbus Hex Description Min Max Step Units Format Code Factory Default Ambient Temperature Total C F Sum Counter Temperature < xFFFFFFFF F C B Counter -20 C < 0 0xFFFFFFFF F Temperature < 60 C D Counter 60 C < Temperature 0 0xFFFFFFFF F < 70 C F Counter 70 C < Temperature < 80 C 0 0xFFFFFFFF F Counter Temperature > 80 C 0 0xFFFFFFFF F ACTIVE DISPLAY MESSAGE Active Display Message F22 Active 40 Display Msg LEDs LED Status 0 0xFFFFFFFF FC144_V R LED Quick Setpoint Status 0 0xFFFF FC144A_ VR PRODUCT INFORMATION Last Serviced 0x010107D8 0X0C1F082E F Main Boot Code Date F22 Unknown E Main Boot Code Time F22 Unknown 4 DEVICE STATUS Current Security Access F Level Device Status 0 0xFFFF FC A Active Setpoint Group F91A COMMUNICATION STATUS E Serial Status FC INTERNAL FAULT CAUSE A2 Internal Fault Cause 0 0xFFFFFFFF FC REAL-TIME CLOCK DE Weekday F DF Date (Read Only) 0x010107D9 0x0C1F F E1 Time (Read Only) 0 0X173B3B F E3 Daylight Savings Active FC INPUTS / OUTPUTS EC Contact Input 32-1 (Bit Field) 0 0xFFFFFFFF FC EE Virtual Input 32-1 (Bit Field) 0 0xFFFFFFFF FC F0 Virtual Output 32-1 (Bit 0 0xFFFFFFFF FC Field) F2 Contact Output 32-1 (Bit Field) 0 0xFFFFFFFF FC TRIP STATUS BUFFER FA Trip Status 4 0 0xFFFFFFFF FC FC Trip Status 3 0 0xFFFFFFFF FC FE Trip Status 2 0 0xFFFFFFFF FC Trip Status 1 0 0xFFFFFFFF FC Size in Words 4 2 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

27 CHAPTER 4: MODBUS MEMORY MAP MODBUS MEMORY MAP Modbus Hex Description Min Max Step Units Format Code Factory Default ALARM STATUS BUFFER Alarm Status 4 0 0xFFFFFFFF FC Alarm Status 3 0 0xFFFFFFFF FC Alarm Status 2 0 0xFFFFFFFF FC Alarm Status 1 0 0xFFFFFFFF FC CONTROL STATUS BUFFER A Control Element Status 4 0 0xFFFFFFFF FC C Control Element Status 3 0 0xFFFFFFFF FC E Control Element Status 2 0 0xFFFFFFFF FC Control Element Status 1 0 0xFFFFFFFF FC BLOCK STATUS BUFFER Block Status 4 0 0xFFFFFFFF FC Block Status 3 0 0xFFFFFFFF FC Block Status 2 0 0xFFFFFFFF FC Block Status 1 0 0xFFFFFFFF FC MESSAGE STATUS BUFFER A Message Status 4 0 0xFFFFFFFF FC C Message Status 3 0 0xFFFFFFFF FC E Message Status 2 0 0xFFFFFFFF FC Message Status 1 0 0xFFFFFFFF FC PHASE IOC TRIP STATUS Trip Phase A Status 2 0 0xFFFF FC A Trip Phase B Status 2 0 0xFFFF FC B Trip Phase C Status 2 0 0xFFFF FC PHASE OV TRIP STATUS Trip Phase A Status 5 0 0xFFFF FC Trip Phase B Status 5 0 0xFFFF FC Trip Phase C Status 5 0 0xFFFF FC PHASE UV TRIP STATUS Trip Phase A Status 6 0 0xFFFF FC Trip Phase B Status 6 0 0xFFFF FC Trip Phase C Status 6 0 0xFFFF FC PHASE IOC ALARM STATUS B Alarm Phase A Status 2 0 0xFFFF FC C Alarm Phase B Status 2 0 0xFFFF FC D Alarm Phase C Status 2 0 0xFFFF FC PHASE OV ALARM STATUS Alarm Phase A Status 5 0 0xFFFF FC Alarm Phase B Status 5 0 0xFFFF FC Alarm Phase C Status 5 0 0xFFFF FC PHASE UV ALARM STATUS Alarm Phase A Status 6 0 0xFFFF FC Alarm Phase B Status 6 0 0xFFFF FC Alarm Phase C Status 6 0 0xFFFF FC TEMPERATURE Internal Temperature C F Size in Words MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 4 3

28 MODBUS MEMORY MAP CHAPTER 4: MODBUS MEMORY MAP Modbus Hex Description Min Max Step Units Format Code Factory Default Ambient Temperature C F Internal Temperature Max C F CURRENT METERING In A F Ia A F Ib A F Ic A F Iavg A F B Current Unbalance % F C Ig A F E Line Current A F VOLTAGE METERING Vab V F Vbc V F Vca V F B Average Line Voltage V F D Van V F F Vbn V F Vcn V F Average Phase Voltage V F Frequency Hz F Line Voltage V F A Line Compensated Voltage V F E Line Current Angle F F Line Voltage Angle F A0 Line Compensated Voltage F Angle A3 Voltage Unbalance %Un b F POWER & ENERGY METERING BE Power Factor F BF 3 Phase Active Power kw F C1 3 Phase Reactive Power kvar F C4 MWh Consumption MWh F C6 Mvarh Consumption Mvar F h C8 Mvarh Generation Mvar F h CA 3 Phase Apparent Power kva F CC MWh Generation MWh F CE Delta Reactive Power kvar F PHASE ANGLES D6 Va1 Angle F D7 Vb1 Angle F D8 Vc1 Angle F D9 Ia Angle F DA Ib Angle F Size in Words 4 4 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

29 CHAPTER 4: MODBUS MEMORY MAP MODBUS MEMORY MAP Modbus Hex Description Min Max Step Units Format Code Factory Default DB Ic Angle F DC Van Angle F DD Vbn Angle F DE Vcn Angle F DF Ig Angle F E0 In Angle F E3 Vab Angle F E4 Vbc Angle F E5 Vca Angle F SYMMETRICAL COMPONENTS ED Positive Sequence Current A F Magnitude EE Positive Sequence Current Lag F Angle EF Negative Sequence Current A F Magnitude F0 Negative Sequence Current Lag F Angle F1 Zero Sequence Current A F Magnitude F2 Zero Sequence Current Lag F Angle F3 Positive Sequence Voltage kv F Magnitude F5 Positive Sequence Voltage Lag F Angle F6 Negative Sequence Voltage kv F Magnitude F8 Negative Sequence Voltage Lag F Angle F9 Zero Sequence Voltage kv F Magnitude FB Zero Sequence Voltage Lag F Angle FC Negative Sequence Current Magnitude (1 Decimal Place) A F EVENT RECORDER Event Recorder Last Reset 2 0x010107D8 0X0C1F082E F words B Total Number Of Events Since Last Clear F EVENT RECORDER DETAILS C Cause 0 0xFFFF FC D Time 0 0X173B3B F F Date 0x010107D8 0X0C1F082E F Line Current A F Line Current Angle F Phase A Current A F Phase B Current A F Phase C Current A F A Line Voltage V F Size in Words MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE 4 5

30 MODBUS MEMORY MAP CHAPTER 4: MODBUS MEMORY MAP Modbus Hex Description Min Max Step Units Format Code Factory Default C Line Voltage Angle F D Vax Voltage V F F Vbx Voltage V F A1 Vcx Voltage V F A3 Power Factor F A4 3 Phase Active Power kw F A6 3 Phase Reactive Power kvar F A8 3 Phase Apparent Power kva F AA Frequency Hz F AC Actual Tap Position F1D AD Line Compensated Voltage V F B2 THD Current Phase A %fo F B3 THD Current Phase B %fo F B4 THD Current Phase C %fo F B5 THD Voltage Phase A %fo F B6 THD Voltage Phase B %fo F B7 THD Voltage Phase C %fo F DATA LOGGER BD Number Of Triggers Since Clear BE Number Of Data Log Samples Stored BF Data Log Start Index C0 Data Log Trigger Index C1 Trigger Cause 1 0xC FC133A C2 Trigger Date 0x010107D8 0X0C1F082E F C4 Trigger Time 0 0X173B3B F C6 Data Log Status F DATA LOGGER SAMPLES CA Data Log Sample DLSS F CB Data Log Sample DLSS F CC Data Log Sample DLSS F CD Data Log Sample DLSS F CE Data Log Sample DLSS F CF Data Log Sample DLSS F D0 Data Log Sample DLSS F D1 Data Log Sample DLSS F D2 Data Log Sample DLSS F D3 Data Log Sample DLSS F D4 Data Log Sample DLSS F D5 Data Log Sample DLSS F D6 Data Log Sample DLSS F D7 Data Log Sample DLSS F D8 Data Log Sample DLSS F D9 Data Log Sample DLSS F DA Data Log Sample DLSS F DB Data Log Sample DLSS F Size in Words 4 6 MULTILIN DGCV VOLTAGE REGULATOR CONTROLLER COMMUNICATIONS GUIDE

350 Feeder Management System

350 Feeder Management System Title page GE Digital Energy Multilin 350 Feeder Management System Feeder Protection and Control Communications Guide SR350 revision: 1.20 Manual P/N: 1601-9087-A2 GE publication code: GEK-113511B Copyright

More information

345 Transformer Protection System

345 Transformer Protection System GE Digital Energy 345 Transformer Protection System Transformer protection and control GE Digital Energy 650 Markland Street Markham, Ontario Canada L6C 0M1 TELEPHONE: Worldwide +1 905 927 7070 Europe/Middle

More information

MX350 Automatic Transfer Control System Communications Guide

MX350 Automatic Transfer Control System Communications Guide Title page GE Consumer & Industrial Multilin MX350 Automatic Transfer Control System Communications Guide MX350 revision: 1.1x Manual P/N: 1601-9072-A1 GE publication code: GEK-113498 Copyright 2008 GE

More information

MM300 Motor Management System Communications Guide

MM300 Motor Management System Communications Guide Title page GE Digital Energy Multilin MM300 Motor Management System Communications Guide MM300 revision: 1.31 Manual P/N: 1601-9025-A4 GE publication code: GEK-113392C Copyright 2008 GE Multilin E83849

More information

GE MDS, LLC. NETio Series. Protocol Communications Supplement. March 2013 Part No A01, Rev. C

GE MDS, LLC. NETio Series. Protocol Communications Supplement. March 2013 Part No A01, Rev. C GE MDS, LLC. NETio Series Protocol Communications Supplement March 2013 Part No. 05-4672A01, Rev. C Modbus Protocol NETio Architectural Implementation As described in detail below, the Modbus RTU protocol

More information

Communications guide. Line Distance Protection System * F1* GE Digital Energy. Title page

Communications guide. Line Distance Protection System * F1* GE Digital Energy. Title page Title page GE Digital Energy D90 Plus Line Distance Protection System Communications guide D90 Plus firmware revision:.9x GE publication code: 60-9070-F (GEK-3469) GE Digital Energy 650 Markland Street

More information

MM300 Motor Management System Communications Guide

MM300 Motor Management System Communications Guide GE Digital Energy MM300 Motor Management System Communications Guide Firmware Revision: 1.5x Manual Part Number: 1601-9025-A8 Manual Order Code: GEK-113392G GE Digital Energy 650 Markland Street Markham,

More information

Communications Guide. MM300 Motor Management System * A9* GE Grid Solutions. Low Voltage Motor Protection and Control

Communications Guide. MM300 Motor Management System * A9* GE Grid Solutions. Low Voltage Motor Protection and Control GE Grid Solutions MM300 Motor Management System Low Voltage Motor Protection and Control Communications Guide MM300 Revision: 1.6x Manual P/N: 1601-9025-A9 Manual Order Code: GEK-113392H E83849 *1601-9025-A9*

More information

Communications Guide. MM300 Motor Management System * AA* GE Grid Solutions. Low Voltage Motor Protection and Control

Communications Guide. MM300 Motor Management System * AA* GE Grid Solutions. Low Voltage Motor Protection and Control GE Grid Solutions MM300 Motor Management System Low Voltage Motor Protection and Control Communications Guide MM300 Revision: 1.7x Manual P/N: 1601-9025-AA Manual Order Code: GEK-113392J E83849 *1601-9025-AA*

More information

SOFTWARE DOCUMENTATION. DNP3 Configuration / Interoperability Guide for the DATRAN XL4 DNP3 RTU

SOFTWARE DOCUMENTATION. DNP3 Configuration / Interoperability Guide for the DATRAN XL4 DNP3 RTU SOFTWARE DOCUMENTATION DNP3 Configuration / Interoperability Guide for the DATRAN XL4 DNP3 RTU Table of Contents 1 DNP V3.0 DEVICE PROFILE... 3 2 DNP V3.0 IMPLEMENTATION TABLE... 6 3 DNP V3.0 POINT LIST...

More information

MM200 Motor Management System Communications Guide

MM200 Motor Management System Communications Guide Digital Energy Multilin MM200 Motor Management System Communications Guide MM200 revision: 1.2x Manual P/N: 1601-9033-A4 GE publication code: GEK-113402C Copyright 2010 GE Multilin E83849 GE Multilin 215

More information

SOFTWARE DOCUMENTATION. DNP3 Configuration / Interoperability Guide for the DATRAN II excel DNP3 RTU

SOFTWARE DOCUMENTATION. DNP3 Configuration / Interoperability Guide for the DATRAN II excel DNP3 RTU SOFTWARE DOCUMENTATION DNP3 Configuration / Interoperability Guide for the DATRAN II excel DNP3 RTU QTech Data Systems Ltd Unit 6 Amuri Park 404 Barbadoes Street Christchurch New Zealand Phone: +64 3 3663713

More information

MM200 Motor Management System

MM200 Motor Management System Title page GE Consumer & Industrial Multilin MM200 Motor Management System 0.1 COMMUNICATIONS GUIDE MM200 revision: 1.1x Manual P/N: 1601-9033-A2 GE publication code: GEK-113402A Copyright 2008 GE Multilin

More information

Device Profile Document

Device Profile Document Voltage Regulators CL-6A Regulator Control DNP3 Device Profile Document Reference Information R225-90-11 Device Profile Document For Communications Protocol DNP3 For Use With Cooper Power Systems CL-6A

More information

CURRENT PROTECTION RELAY SMPR-1

CURRENT PROTECTION RELAY SMPR-1 CURRENT PROTECTION RELAY SMPR-1 1.- ORION ITALIA SERIES MODBUS PROTOCOL. The ORION ITALIA SERIES implement a subset of the AEG Modicon Modbus serial communication standard. Many devices support this protocol

More information

Generator Management Relay COMMUNICATIONS GUIDE

Generator Management Relay COMMUNICATIONS GUIDE Title Page g GE Industrial Systems 489 Generator Management Relay COMMUNICATIONS GUIDE Software Revision: 3.00 GE Publication Code: GEK-106495A Part Number: 1601-0149-A2 Copyright 2004 215 Anderson Avenue,

More information

* A8* GE Grid Solutions. Generator Management Relay COMMUNICATIONS GUIDE

* A8* GE Grid Solutions. Generator Management Relay COMMUNICATIONS GUIDE GE Grid Solutions 489 Generator Management Relay COMMUNICATIONS GUIDE Software Revision: 4.0x GE Publication Code: GEK-106495H GE Multilin Part Number: 1601-0149-A8 Copyright 2017 GE Multilin Inc. GE Grid

More information

Campbell Scientific Australia DNP3 DEVICE PROFILE

Campbell Scientific Australia DNP3 DEVICE PROFILE S.UTLEY 1 1 Campbell Scientific Australia DNP3 DEVICE PROFILE Real-time monitoring and Control Systems S.UTLEY 1 2 DNP3 v.28 Device Profile Document Vendor name: Campbell Scientific, Inc. Device Name:

More information

DNP3 Communication User's manual

DNP3 Communication User's manual MV Network Management Fault tracking Monitoring and Control Merlin Gerin Easergy Range T200 P, T200 I DNP3 Communication User's manual Summary General...2 Functionnalities...2 Characteristics...2 Connection

More information

750/760 COMMUNICATIONS GUIDE. Digital Energy Multilin. Feeder Management Relay

750/760 COMMUNICATIONS GUIDE. Digital Energy Multilin. Feeder Management Relay Digital Energy Multilin 750/760 Feeder Management Relay COMMUNICATIONS GUIDE Software Revision: 7.3x GE Multilin Part Number: 1601-0229-A7 GE Publication Code: GEK-106473F Copyright 2010 GE Multilin GE

More information

DNP Points List and Implementation

DNP Points List and Implementation S&C IntelliCap Plus Automatic Capacitor Control DNP Points List and Implementation Table of Contents Section Page Section Page DNP Points List for IntelliCap Plus Controls...1 Status Points....2 Analog

More information

A36D/TPSD DNP 3.0 & Modbus SCADA INTERFACE

A36D/TPSD DNP 3.0 & Modbus SCADA INTERFACE SCADA INTERFACE INSTRUCTIONS - OPTION 21P / 21Q - FOR A36D/TPSD SYSTEMS A36D/TPSD DNP 3.0 & Modbus SCADA INTERFACE OPTION 21P / 21Q INSTRUCTIONS This manual is only valid for A36D/TPSD Chargers equipped

More information

DNP 3.0 device profile for AQ (5) DNP 3.0 device profile for AQ 200

DNP 3.0 device profile for AQ (5) DNP 3.0 device profile for AQ 200 DNP 3.0 device profile for AQ 200 1 (5) DNP 3.0 device profile for AQ 200 DNP 3.0 device profile for AQ 200 2 (5) Revision: 4.0 Date: October 2018 Changes: - Added Counter support Checked By: DNP 3.0 device

More information

EVO AT SERIES BATTERY CHARGER AT SERIES BATTERY CHARGER COMMUNICATIONS MANUAL. EVO - Microprocessor Controlled Float Battery Charger JA

EVO AT SERIES BATTERY CHARGER AT SERIES BATTERY CHARGER COMMUNICATIONS MANUAL. EVO - Microprocessor Controlled Float Battery Charger JA EVO P R O D U C T COMMUNICATIONS MANUAL EVO - Microprocessor Controlled Float Battery Charger JA5011-54 NOTICE! WARNING Table of Contents - ATevo TABLE OF CONTENTS 1. INTRODUCTION.....................................................

More information

DNP 3.0 & Modbus SCADA INTERFACE INSTRUCTIONS FOR 205T BASED SYSTEMS

DNP 3.0 & Modbus SCADA INTERFACE INSTRUCTIONS FOR 205T BASED SYSTEMS DNP 3.0 & Modbus SCADA INTERFACE INSTRUCTIONS - OPTION 21PQ - FOR 205T BASED SYSTEMS DNP 3.0 & Modbus SCADA INTERFACE OPTION 21PQ INSTRUCTIONS FOR 205T BASED SYSTEMS CPN114830 ECN/DATE ISSUE DATE: ECN

More information

DNP3 V3.00 DEVICE PROFILE DOCUMENT

DNP3 V3.00 DEVICE PROFILE DOCUMENT DNP3 V3.00 DEVICE PROFILE DOCUMENT Vendor Name: DAQ Electronics. Device Name: DNP3 Master Station Server in the Callisto Computer. Date: June 8, 2000 Highest DNP Level Supported: For Requests: DNP-L3.

More information

DNP3 Communications Protocol

DNP3 Communications Protocol Powermeter and Power Quality Analyzer PM174 DNP3 Communications Protocol Reference Guide BG0413 Rev. A3 Every effort has been made to ensure that the material herein is complete and accurate. However,

More information

850 Feeder Protection System

850 Feeder Protection System GE Digital Energy 850 Feeder Protection System Feeder Protection and Control COMMUNICATIONS GUIDE 850 version: 1.1 GE publication code: 1601-0299-A1 (GEK-119592) *1601-0299-A1* 2013 GE Multilin Inc. Incorporated.

More information

SUMMARIZE MEASUREMENT AND PROTECTION RELAY SMPR-1

SUMMARIZE MEASUREMENT AND PROTECTION RELAY SMPR-1 E.1 ORION ITALIA SERIES MODBUS PROTOCOL. The ORION ITALIA SERIES implement a subset of the AEG Modicon Modbus serial communication standard. Many devices support this protocol directly with suitable interface

More information

EMDX3 Multifunction meter Cat No ModbusTable LGR EN v1.01.xls

EMDX3 Multifunction meter Cat No ModbusTable LGR EN v1.01.xls GENERAL MODBUS TABLE ORGANIZATION Starting of the Starting of the Group s Group s System Version (Release) System Version (Build) Group Name (Text) Group Code Group Complexity Group Version 36096 8D00

More information

PM130 Powermeters Reference Guide Modbus Communications Protocol

PM130 Powermeters Reference Guide Modbus Communications Protocol PM130 Powermeters Reference Guide Modbus Communications Protocol BG0310 Rev. A1 SERIES PM130 POWERMETERS COMMUNICATIONS Modbus Communications Protocol REFERENCE GUIDE Every effort has been made to ensure

More information

PM290 POWERMETER. Communication Protocols ASCII & Modbus Reference Guide

PM290 POWERMETER. Communication Protocols ASCII & Modbus Reference Guide PM290 POWERMETER Communication Protocols ASCII & Modbus Reference Guide PM290 Communication Protocols Communication protocol is a method of transferring information between different devices (i.e., the

More information

3710 ACM ACM / Modicon Modbus. Advanced Digital Power Instrumentation Package. Serial Communications Protocol and Register Map. Version 1.

3710 ACM ACM / Modicon Modbus. Advanced Digital Power Instrumentation Package. Serial Communications Protocol and Register Map. Version 1. 3710 ACM Advanced Digital Power Instrumentation Package 3710 ACM / Modicon Modbus Serial Communications Protocol and Register Map Version 1.3 Limitation of Liability Power Measurement Limited reserves

More information

Interface Definition RISH EM 2340/1320/30/ _Rev. D - 8/2016

Interface Definition RISH EM 2340/1320/30/ _Rev. D - 8/2016 Interface Definition RISH EM 2340/1320/30/40 1 2-60-006-00-00494_Rev. D - 8/2016 2 Section DIGITAL MULTIFUNCTION INSTRUMENT Contents 1. Introduction Programmable Multi-function Energy Meter Installation

More information

DNP3 Field Device Profile. for

DNP3 Field Device Profile. for DNP3 Field Device Profile for Document Name: Eaton DNP3 XML File Revision History Date Time ion Reason for change Edited by 2012-01-11 2015-04-16 1 Initial ion Joerg Katzer 15:00:00 2 First updates Joerg

More information

7SR11 and 7SR12 Settings and Instruments

7SR11 and 7SR12 Settings and Instruments 7SR11 and 7SR12 Settings and Instruments Document Release History This document is issue 2012/01. The list of revisions up to and including this issue is: 2012/01 Software Maintenance 2011/06 Software

More information

PowerLogic ION6200 Serial Communications Protocol and ION / Modbus Register Map

PowerLogic ION6200 Serial Communications Protocol and ION / Modbus Register Map 70022-05-XX PROTOCOL DOCUMENT 04/2007 PowerLogic ION6200 Serial Communications Protocol and ION / Modbus Register Map This document explains the Modbus protocol on the ION6200 meter. The ION6200 meter

More information

C192PF8-RPR. Power Factor Manager & Reactive Power Regulator Reference Guide. Modbus. Communications Protocol. BG0348 Rev. A1

C192PF8-RPR. Power Factor Manager & Reactive Power Regulator Reference Guide. Modbus. Communications Protocol. BG0348 Rev. A1 C192PF8-RPR Power Factor Manager & Reactive Power Regulator Reference Guide Modbus Communications Protocol BG0348 Rev. A1 C192PF8-RPR POWER FACTOR MANAGER AND REACTIVE POWER REGULATOR COMMUNICATIONS Modbus

More information

3300 ACM ACM / Modicon Modbus. Advanced Digital Power Instrumentation Package. Serial Communications Protocol and Register Map. Version 1.

3300 ACM ACM / Modicon Modbus. Advanced Digital Power Instrumentation Package. Serial Communications Protocol and Register Map. Version 1. 3300 ACM Advanced Digital Power Instrumentation Package 3300 ACM / Modicon Modbus Serial Communications Protocol and Register Map Version 1.1 Limitation of Liability Power Measurement Limited reserves

More information

SERIES PM130EH POWERMETERS COMMUNICATIONS REFERENCE GUIDE

SERIES PM130EH POWERMETERS COMMUNICATIONS REFERENCE GUIDE SERIES PM130EH POWERMETERS COMMUNICATIONS ASCII Communications Protocol REFERENCE GUIDE Every effort has been made to ensure that the material herein is complete and accurate. However, the manufacturer

More information

General Specifications

General Specifications General Specifications GS 34P02P22-02E DNP3 Communication Portfolio (FCN-500/FCN-RTU) GENERAL This General Specifications document describes the Distributed Network Protocol (DNP3) Communication Portfolio

More information

PXM 4/6/8K DNP3 PXM 4/6/8K DNP3 Ethernet Communications User Manual

PXM 4/6/8K DNP3 PXM 4/6/8K DNP3 Ethernet Communications User Manual PXM 4/6/8K DNP3 PXM 4/6/8K DNP3 Ethernet Communications User Manual Contents Contents 1. INTRODUCTION... 1 2. DNP3 PROTOCOL PRIMER... 1 2.1 Why DNP3?...1 2.2 Link Layer Responsibility...5 2.3 Static and

More information

PM Multifunction meter Cat No. F3N200 - ModbusTable BT EN v1.01.xls

PM Multifunction meter Cat No. F3N200 - ModbusTable BT EN v1.01.xls PM Multifunction meter Cat No. FN200 - ModbusTable BT EN v.0.xls GENERAL MODBUS TABLE ORGANIZATION Starting of the Group s Starting of the Group s System Version (Release) System Version (Build) Group

More information

DNP3 Device Profile Based on DNP XML Schema version Showing both the Device's Capabilities and its Current Configuration

DNP3 Device Profile Based on DNP XML Schema version Showing both the Device's Capabilities and its Current Configuration Page 1 of 17 DNP3 Device Profile Based on DNP XML Schema version 2.11.00 Document Name: MHT410 XML File Document Description: Device Profile for the MHT410 Showing both the Device's and its Current Configuration

More information

ECHO Process Instrumentation, Inc. Modbus RS485 Module. Operating Instructions. Version 1.0 June 2010

ECHO Process Instrumentation, Inc. Modbus RS485 Module. Operating Instructions. Version 1.0 June 2010 ECHO Process Instrumentation, Inc. Modbus RS485 Module Operating Instructions Version 1.0 June 2010 ECHO Process Instrumentation, Inc. PO Box 800 Shalimar, FL 32579 PH: 850-609-1300 FX: 850-651-4777 EM:

More information

Protection Terminal REF 54_ Protection Relay REX 521

Protection Terminal REF 54_ Protection Relay REX 521 Protection Terminal Protection Relay 1MRS755260 Issued: 02.04.2004 Version: C/22.06.2004 Protection Terminal Protection Relay Contents 1. About this manual...4 1.1. Copyrights...4 1.2. Trademarks...4

More information

General Specifications

General Specifications General Specifications DNP3 Communication Portfolio GS 34P02P22-01E GENERAL This General Specifications document describes the Distributed Network Protocol (DNP3) Communication Portfolio for STARDOM. The

More information

MPU-32 AND FPU-32 TIA-485 NETWORK

MPU-32 AND FPU-32 TIA-485 NETWORK 3714 Kinnear Place Saskatoon, SK Canada S7P 0A6 Ph: (306) 373-5505 Fx: (306) 374-2245 www.littelfuse.com/protectionrelays MPU-32 AND FPU-32 TIA-485 NETWORK SEPTEMBER 5, 2006 PRELIMINARY Publication: MPU-32/FPU-32

More information

DNP V3.00 Protocol Assignments

DNP V3.00 Protocol Assignments E Electro Industries / GaugeTech "The Leader in Web Accessed Power Monitoring and Control" DNP V3.00 Protocol Assignments For Nexus 1250, 120 and 1270 Power Monitors Revision 1.5 November 7, 2002 Doc #

More information

PM130 Powermeters Reference Guide ASCII Communications Protocol

PM130 Powermeters Reference Guide ASCII Communications Protocol PM130 Powermeters Reference Guide ASCII Communications Protocol BG0309 Rev. A1 SERIES PM130 POWERMETERS COMMUNICATIONS ASCII Communications Protocol REFERENCE GUIDE Every effort has been made to ensure

More information

SPM33. MODBUS Protocol and register List V1.5

SPM33. MODBUS Protocol and register List V1.5 SPM33 MODBUS Protocol and register List V1.5 ZHUHAI PILOT TECHNOLOGY CO.,LTD 目 录 1. Introduction... 1 1.1 Purpose of the Communication Protocol... 1 1.2 Version of Communication Protocol... 1 2. Detailed

More information

Modbus Module. Data sheet. Communication module for MULTICAL 403 and MULTICAL 603

Modbus Module. Data sheet. Communication module for MULTICAL 403 and MULTICAL 603 Data sheet Modbus Module Communication module for MULTICAL 403 and MULTICAL 603 Modbus RTU communication Communication speed up to 115200 bits/s Programmable data, communication speed and parity settings

More information

DNP Points List and Implementation for the 6802 Vista Control

DNP Points List and Implementation for the 6802 Vista Control S&C 6800 Series Automatic Switch Control DNP Points List and Implementation for the 6802 Vista Control Table of Contents Section Page Section Page DNP Points List for 6802 Vista Control...1 6802 Status

More information

IntelliCAP PLUS Supplement for Landis & Gyr Telegyr 8979 Protocol

IntelliCAP PLUS Supplement for Landis & Gyr Telegyr 8979 Protocol IntelliCAP PLUS Supplement for Landis & Gyr Telegyr 8979 Protocol March 31, 2003 1135 Atlantic Avenue Alameda, California USA 1023-563 / 3-31-03 IntelliCAP PLUS Capacitor Control Proprietary Notice This

More information

DNP3 Device Profile. Device Profile Template. Data Dictionary. Release 2.0. January 30, 2001

DNP3 Device Profile. Device Profile Template. Data Dictionary. Release 2.0. January 30, 2001 Reclosers Kyle Form 4C Recloser Control Serial Communications Reference Information R280-90-1 DNP3 Device Profile Device Profile Template Data Dictionary Release 2.0 January 30, 2001 For Use With Cooper

More information

Modbus Module. Data sheet. Communication module for MULTICAL 403 and MULTICAL 603

Modbus Module. Data sheet. Communication module for MULTICAL 403 and MULTICAL 603 Data sheet Modbus Module Communication module for MULTICAL 403 and MULTICAL 603 Modbus RTU communication Communication speed up to 115200 bits/s Programmable data, communication speed and parity settings

More information

B: Modbus Map and Retrieving Logs

B: Modbus Map and Retrieving Logs B: Modbus Map and Retrieving Logs B.: Introduction Communicator EXT User Manual B.: Modbus Register Map Sections B.3: Data Formats # B.4: Floating Point Values The formula to interpret a Floating Point

More information

INTELLIS. Modbus Direct Network Monitor

INTELLIS. Modbus Direct Network Monitor INTELLIS Modbus Direct Network Monitor System Installation and Operation Manual Phone: (201) 794-7650 Fax: (201)794-0913 Chapter 1 Modbus Protocol Revision History Revision 1.0 30 April, 2002 Initial Version

More information

ECE 444/544 Supervisory Control & Critical Infrastructures Lectures 20 & & 28 March 2018

ECE 444/544 Supervisory Control & Critical Infrastructures Lectures 20 & & 28 March 2018 ECE 444/544 Supervisory Control & Critical Infrastructures Lectures 20 & 21 27 & 28 March 2018 Topic Overview Terms/Acronyms Used RTU, Communications Processor, Data Concentrator IED, relay, meter, field

More information

FP6000. Type ID Units Writable Possible Values. Count. TCP Register

FP6000. Type ID Units Writable Possible Values. Count. TCP Register FP6000 Category System ID 1032 Vendor Name 32 ASCII no-units 1064 Model Name 32 ASCII no-units 1096 Display Name 32 ASCII no-units 1128 Device Type 32 ASCII no-units 1605 Field Replaceable Unit 1 UINT16

More information

NOTE The documentation and/or manuals provided by the IEDs vendors must be read and understood thoroughly prior to configuration.

NOTE The documentation and/or manuals provided by the IEDs vendors must be read and understood thoroughly prior to configuration. ConfigWiz Addendum This is the DNP3.0 client addendum. This addendum describes the pop-up window tabs, fields, and ranges of valid parameters for entry in those fields. NOTE The documentation and/or manuals

More information

MODBUS Protocol for MiCOM P30 Series

MODBUS Protocol for MiCOM P30 Series MODBUS Protocol for MiCOM P30 Series Substation Protocols Technical Documentation This document does not replace the Technical Manual Version: MiCOM P30, MODBUS Index: B Release: 08 / 2011 MODBUS Protocol

More information

DKM-407 DIN RAIL TYPE NETWORK ANALYZER

DKM-407 DIN RAIL TYPE NETWORK ANALYZER DKM-407 User Manual DKM-407 DIN RAIL TYPE NETWORK ANALYZER DESCRIPTION The DKM-407 is a DIN rail mounted precision and low cost unit allowing measurement and remote monitoring of AC parameters of a distribution

More information

R1M-GH THERMOCOUPLE & DC INPUT MODULE MODEL. Remote I/O R1M Series. (16 points)

R1M-GH THERMOCOUPLE & DC INPUT MODULE MODEL. Remote I/O R1M Series. (16 points) Remote I/O R1M Series THERMOCOUPLE & DC INPUT MODULE (16 points) MODEL MODEL & SUFFIX CODE SELECTION R1MGH2T MODEL Modbus protocol I/O TYPE GH2 : Thermocouple or DC input, 16 points FIELD TERMINAL TYPE

More information

Operating Guide MODBUS (RTU) Communications Option IM/L150 MOD_2. Level Indicator L150 and L160

Operating Guide MODBUS (RTU) Communications Option IM/L150 MOD_2. Level Indicator L150 and L160 Operating Guide MODBUS (RTU) Communications Option IM/L150 MOD_2 Level Indicator L150 and L160 Electrical Safety This equipment complies with the requirements of CEI/IEC 61010-1:2001-2 "Safety requirements

More information

User Guide IM/C250 MOD_3. Modbus (RTU) Communications Option C250 and V250

User Guide IM/C250 MOD_3. Modbus (RTU) Communications Option C250 and V250 User Guide IM/C250 MOD_3 Modbus (RTU) Communications Option C250 and V250 Electrical Safety This instrument complies with the requirements of CEI/IEC 61010-1:2001-2 "Safety requirements for electrical

More information

Modbus Manual. ACL3200 Controller

Modbus Manual. ACL3200 Controller Modbus Manual for the ACL3200 Controller V 0.6 805 Main Ave. West Box 2002 Sundre, Alberta T0M 1X0 Phone: (877) 638-5234 Fax: (403) 638-4973 Email: aclmfg@telus.net Website: www.aclmfg.com Table of Contents

More information

Technical Documentation

Technical Documentation BLR-CM - MODBUS Technical Documentation BLR-CM MODBUS Beluk GmbH Tel.: +49/(0)8861/2332-0 Fax: +49/(0)8861/2332-22 e-mail: blr@beluk.de http://www.beluk.de BLR-CM - MODBUS Page 2 of 20 Document history

More information

SCADA Controlled LOR/ER - DNP3.0 Communications Protocol - TECHNICAL MANUAL ES-SLOR-1

SCADA Controlled LOR/ER - DNP3.0 Communications Protocol - TECHNICAL MANUAL ES-SLOR-1 SCADA Controlled LOR/ER - DNP3.0 Communications Protocol - TECHNICAL MANUAL ES-SLOR-1 Telephone: 781-335-5200 fax: 781-335-4253 180 King Avenue Weymouth, MA 02188 www.electroswitch.com 1 Introduction...

More information

Advantage CT/LTC Protocol Manual

Advantage CT/LTC Protocol Manual Advantage CT/LTC Protocol Manual Manual Part Number PMG8T200 Revision 2, November, 2004 16900 FOLTZ PARKWAY, CLEVELAND, OHIO 44149 440/238-2550, FAX 440/238-0660 e-mail: sales@weschler.com Table of Contents

More information

Copyright: December 2017 Nidec Issue: E

Copyright: December 2017 Nidec Issue: E General Information The manufacturer accepts no liability for any consequences resulting from inappropriate, negligent or incorrect installation or adjustment of the optional parameters of the equipment

More information

UNH-IOL MIPI Alliance Test Program

UNH-IOL MIPI Alliance Test Program DSI Receiver Protocol Conformance Test Report UNH-IOL 121 Technology Drive, Suite 2 Durham, NH 03824 +1-603-862-0090 mipilab@iol.unh.edu +1-603-862-0701 Engineer Name engineer@company.com Panel Company

More information

Modbus on K45 asense. Table of contents:

Modbus on K45 asense. Table of contents: Modbus on K45 asense Table of contents: 1. General.... Byte transmission.... 3. Serial line frame and addressing.... 4 4. Bus timing.... 4 5. Modbus registers on sensor.... 5 6. Supported Modbus commands...

More information

IEC Protocol Interoperability List

IEC Protocol Interoperability List IEC 60870-5-104 Protocol Interoperability List Network configuration Point-to-point Multiple point-to-point Multipoint-party line Multipoint-star Physical layer Transmission speed (control direction) Unbalanced

More information

BLR-CM Modbus. Technical Documentation. Technical Documentation. Rev BLR-CM Modbus. Beluk GmbH Taubenstrasse Schongau Germany

BLR-CM Modbus. Technical Documentation. Technical Documentation. Rev BLR-CM Modbus. Beluk GmbH Taubenstrasse Schongau Germany Beluk GmbH Taubenstrasse 1 86956 Schongau Germany Tel.: +49/(0)8861/2332-0 Fax: +49/(0)8861/2332-22 E-Mail: blr@beluk.de Web: http://www.beluk.de Document history Date Name Revision Comment 08.11.06 ATh

More information

Series PM130 PLUS Powermeters PM130P/PM130E/PM130EH

Series PM130 PLUS Powermeters PM130P/PM130E/PM130EH Series PM130 PLUS Powermeters PM130P/PM130E/PM130EH IEC60870-5-101/104 Communications Protocol Reference Guide BG0503 Rev. A3 Every effort has been made to ensure that the material herein is complete and

More information

Voltage regulator TAPCON 240

Voltage regulator TAPCON 240 Voltage regulator TAPCON 240 Supplement 2398461/01 Protocol description DNP3 All rights reserved by Maschinenfabrik Reinhausen Copying and distribution of this document and utilization and communication

More information

IFC 100 Supplementary instructions

IFC 100 Supplementary instructions IFC 100 Supplementary instructions Signal converter for electromagnetic flowmeters Description of Modbus interface Electronic Revision: ER 3.0.xx Modbus version: 1.0.xx KROHNE CONTENTS IFC 100 1 Important

More information

1. System Topology Required Equipment and Components Hardware Equipment Software Equipment... 6

1. System Topology Required Equipment and Components Hardware Equipment Software Equipment... 6 Contents Moxa Technical Support Team support@moxa.com 1. System Topology... 2 2. Required Equipment and Components... 5 2.1. Hardware Equipment... 5 2.2. Software Equipment... 6 3. Schneider SCADAPack

More information

User Guide Supplement Modbus TM Serial Data Communications Option IM/C100 MOD_6. /8 DIN Process Indicators and Controllers C100, C150, C160 and V100

User Guide Supplement Modbus TM Serial Data Communications Option IM/C100 MOD_6. /8 DIN Process Indicators and Controllers C100, C150, C160 and V100 User Guide Supplement Modbus TM Serial Data Communications Option IM/C100 MOD_6 1 /8 DIN Process Indicators and Controllers C100, C150, C160 and V100 Electrical Safety This equipment complies with the

More information

Interface Module XC Modbus Protocol Converter / User Manual

Interface Module XC Modbus Protocol Converter / User Manual Page 1 from 10 Bär Industrie-Elektronik GmbH Siemensstr. 3 D-90766 Fürth Phone +49 911 970590 Fax +49 911 9705950 General The Interface Module XC Modbus is designed for use with the EMH LZQJ-XC and DMTZ-XC

More information

Conto D1 MODBUS COMMUNICATION PROTOCOL

Conto D1 MODBUS COMMUNICATION PROTOCOL ENERGY METER Conto D1 MODBUS COMMUNICATION PROTOCOL 4/03/15 Pagina 1 di 7 FIRMWARE CONTENTS 1.0 ABSTRACT 2.0 DATA MESSAGE DESCRIPTION 2.1 Parameters description 2.2 Data format 2.3 Description of CRC calculation

More information

AL2-MBU Advanced Manual

AL2-MBU Advanced Manual AL2-MBU Advanced Manual REVISION 003.08 December 2008 REVISION LIST 001.08 January 2008 Preliminary version 002.08 June 2008 First official release 003.08 December 2008 New feature: Force Multiple Coils

More information

SERIES PM296/RPM096 POWERMETERS COMMUNICATIONS REFERENCE GUIDE

SERIES PM296/RPM096 POWERMETERS COMMUNICATIONS REFERENCE GUIDE SERIES PM296/RPM096 POWERMETERS COMMUNICATIONS ASCII Communications Protocol REFERENCE GUIDE Every effort has been made to ensure that the material herein is complete and accurate. However, the manufacturer

More information

FPU-16 A-B PROTOCOL/DATA LOGGER MANUAL

FPU-16 A-B PROTOCOL/DATA LOGGER MANUAL FPU-6 A-B PROTOCOL/DATA LOGGER MANUAL FEBRUARY 26, 22 PRELIMINARY Copyright 22 by Startco Engineering Ltd. All rights reserved. Publication: FPU-6-AB-M Document: S95-F6-AB Printed in Canada. Startco Engineering

More information

Model IR4000M. Multi-Point Monitor Modbus programming guide

Model IR4000M. Multi-Point Monitor Modbus programming guide Model I4000M Multi-Point Monitor Modbus programming guide The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the extent specifically

More information

g Energy Multilin Voltage Regulator Controller DGCV KEy BENEFITS APPLICATIONS FEATURES Metering & Monitoring Voltage Regulation Communications

g Energy Multilin Voltage Regulator Controller DGCV KEy BENEFITS APPLICATIONS FEATURES Metering & Monitoring Voltage Regulation Communications Multilin Voltage Regulator DGCV KEy BENEFITS Increases grid efficiency by optimizing voltage regulation Through deployment of the Volt/VAR system, the Multilin DGCV: - Enables up to a 6% reduction in energy

More information

DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ

DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ 08854-3756 DNP3 Server Configuration CallistoView version 5.0A This is a description of the unique DNP configuration dialogs and files in

More information

Release 2.11 Standard AXE Primary Firmware is not intended for use on any 8521 Controller not licensed as a RTU.

Release 2.11 Standard AXE Primary Firmware is not intended for use on any 8521 Controller not licensed as a RTU. December 2010 PAC8000 8521-RT-DE RTU Controller This release consists of firmware release 2.12 for the 8521-RT-DE RTU Controller and DNP Control Package release 2.14. It provides a performance enhancement

More information

MONITORING AND CONTROL REQUIREMENTS FOR DISTRIBUTED GENERATION FACILITIES

MONITORING AND CONTROL REQUIREMENTS FOR DISTRIBUTED GENERATION FACILITIES MONITORING AND CONTROL REQUIREMENTS FOR DISTRIBUTED GENERATION FACILITIES 1. Introduction Real time monitoring and control is necessary to ensure public and employee safety and to protect the integrity

More information

Control Indicator Module (CIM) - DNP3 Communications Protocol - TECHNICAL MANUAL

Control Indicator Module (CIM) - DNP3 Communications Protocol - TECHNICAL MANUAL Control Indicator Module (CIM) - DNP3 Communications Protocol - TECHNICAL MANUAL Page 1 of 35 Introduction...4 Basic Operation...5 Front Panel Controls and Indicators...5 Real Time Clock Battery Back Up...7

More information

8 data bits, least significant bit sent first 1 bit for even/odd parity (or no parity) 1 stop bit if parity is used; 1 or 2 bits if no parity

8 data bits, least significant bit sent first 1 bit for even/odd parity (or no parity) 1 stop bit if parity is used; 1 or 2 bits if no parity 1 Eastron SDM630 Smart Meter Modbus Protocol Implementation V1.2 1.1 Modbus Protocol Overview This section provides basic information for interfacing the Eastron Smart meter to a Modbus Protocol network.

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL MFD4E06 - NEMO-D4e PR146 08/03/2018 Pag. 1/16 CONTENTS 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameter description... 3 2.2 Data format... 4 2.3 Description

More information

PM210v Multi-Function Panel Meter. Modbus Reference. DAE Instrument Corp.

PM210v Multi-Function Panel Meter. Modbus Reference. DAE Instrument Corp. DAE Instrument Corp. v312 11 Multi- Panel Meter Modbus Reference Revision 2.6.1e Updated 2015/1/22 Prepared By: David Ling Firmware: v312 Table of Contents General Information! 3 Register Tables! 4 Real

More information

VERIS H8035 and H8036

VERIS H8035 and H8036 VERIS H8035 and H8036 MODBUS IMPLEMENTATION SPECIFICATION OVERVIEW This document describes the implementation of Modbus protocol used in the Veris H8035 and H8036 power meters. It is intended to assist

More information

5800 Series Non-IntelliTEAM Universal Automatic Switch Control PG&E SCADA Points List

5800 Series Non-IntelliTEAM Universal Automatic Switch Control PG&E SCADA Points List S&C Electric Company 5800 Series Non-IntelliTEAM Universal 5800 Series Non-IntelliTEAM Universal PG&E SCADA Points List PG&E SCADA Points List for: 5801 Universal Control with USBP0S0X Software and 5802

More information

Flex Series User Guide

Flex Series User Guide User Programmable Current 4..20mA Digital RS485 Dual & Single Axis Up to 360º 2016 Flex Series User Guide Sensor Installation, Wiring, Flexware App Instructions Page 1 of 33 Page 2 of 33 Table of Contents

More information

Digital Lighting Systems, Inc.

Digital Lighting Systems, Inc. Digital Lighting Systems, Inc. Four Channel Dry Contacts Relays Switch Pack DMX512 compatible USER'S MANUAL -UM User's Manual - Page 1 GENERAL DESCRIPTION The is a 4-channel DMX-512 compatible electro-mechanical

More information

Modbus Register Map: InRow ACRD60x / ACRC60x

Modbus Register Map: InRow ACRD60x / ACRC60x Modbus Map: InRow ACRD60x / ACRC60x Notes: 1. 16-bit registers (INT16, UINT16, ENUM) are transmitted MSB first (i.e., big-endian). 2. INT32 and UINT32 are most-significant word in n+0, least significant

More information

BCT SERIES CONTROLLERS (VERSION 3.0) RS-485 COMMUNICATION INSTRUCTION MANUAL MODBUS Protocol Reference Guide

BCT SERIES CONTROLLERS (VERSION 3.0) RS-485 COMMUNICATION INSTRUCTION MANUAL MODBUS Protocol Reference Guide BCT SERIES CONTROLLERS (VERSION 3.0) RS-485 COMMUNICATION INSTRUCTION MANUAL MODBUS Protocol Reference Guide 1. COMMUNICATION FUNCTIONS 1.1 General -----------------------------------------------------------------------------------------

More information