MODBUS APPLICATION MANUAL DFC-0124

Size: px
Start display at page:

Download "MODBUS APPLICATION MANUAL DFC-0124"

Transcription

1 MODBUS APPLICATION MANUAL DFC

2 COPYRIGHT NOTICE Any unauthorized use or copying of the contents or any part of this document is prohibited. This applies in particular to trademarks, model denominations, part numbers and drawings. ABOUT THIS DOCUMENT This document describes minimum required details for the successfull interfacing of the DFC-0124 family units to 3rd party Modbus and Modbus-TCP/IP based applications. Follow carefully advices given in the document. These are often good practices for the installation of the unit which reduce future issues. For all technical queries please contact Datakom at below address: SCOPE OF THIS DOCUMENT This document will apply to both Modbus through RS-485 and Modbus-TCP/IP communications. RELATED DOCUMENTS FILENAME 0124_DATA 0124_TFT_DATA 0124_PRESENTATION DFC0124 Brochure DFC0124-TFT Brochure DFC0124 Power Factro Controller and Remote Monitoring Presentation REVISION HISTORY REVISION DATE AUTHOR TO First release. Firmware V4.7 TERMINOLOGY CAUTION: Potential risk of injury or death. WARNING: Potential risk of malfunction or material damage. ATTENTION: Useful hints for the understanding of device operation

3 The Modbus communication is widely used in the connection of industrial control units to various management systems for remote monitoring and control. It has begun the basic industry standard in the last decades. The unit offers the possibility of MODBUS communication through below carriers: -RS485 serial port, with adjustable baud rate between 2400 and bauds -MODBUS-TCP/IP through Ethernet port (10/100Mb) -MODBUS-TCP/IP through GSM-GPRS modem. (84/42kb) Detailed description about the MODBUS protocol is found in the document Modicon Modbus Protocol Reference Guide. This document may be downloaded at: Detailed description about the MODBUS-TCP/IP protocol is found in the document MODBUS APPLICATION PROTOCOL SPECIFICATION. This document may be downloaded at: The MODBUS properties of the unit are: -Data transfer mode: RTU -Serial data: selectable baud rate, 8 bit data, no parity, 1 bit stop -Modbus-TCP/IP: Ethernet 10/100Mb or GPRS Class 10. -Supported functions: MODBUS COMMUNICATION BASICS -Function 3 (Read multiple registers) -Function 6 (Write single register) -Function 16 (Write multiple registers) Each register consists of 2 bytes (16 bits). A larger data structure will contain multiple registers. MODBUS CONFIGURATION The Modbus communications requires a slave address to be assigned to each device in the Modbus network. This address ranges between 1 and 240 and allows the addressing of different slave devices in the same network. Each device in the same RS-485 serial network must be assigned a different slave address. Otherwise the Modbus communications will not be performed. Devices using Modbus-TCP/IP with different IP or port addresses may use any slave address. It is advised to set these slave addresses to the default setting which is

4 Parameters required for RS-485 Modbus operation Modbus Slave Address: may be set between 1 and 240 RS-485 Enable: must be set to 1 (or checkbox enabled) RS-485 Baud Rate: selectable between 2400 and bauds. All devices in the same network must use the same Baud Rate. Selecting a higher baud rate will allow faster communication, but will reduce the communication distance. Selecting a lower baud rate will increase the communication distance, but will cause slower response times. Typically 9600 bauds will allow 1200m distance with special balanced 120 ohms cable. Parameters required for Modbus-TCP/IP through Ethernet port Modbus Slave Address: may be set between 1 and 240. If only one unit is available in the same IP address, it is advised to keep the default address (1). Ethernet Enable: This parameter should be set to 1 (or checked) in order to enable the ethernet port. Modbus TCP/IP Port: The usual setting is 502. However the unit is able to work on any port address. User IP Mask: There are 3 mask registers available. The use of the registers are emphasized in the D- 500/700 User Manual. Please set the first mask as for the proper operation. Ethernet Network IP: May be left as for automatic address claim or set to a value in order to claim a defined address. Ethernet Gateway IP: Should be set in accordance with your local switch configuration. Ethernet Subnet Mask: Should be set in accordance with your local switch configuration. Parameters required for Modbus-TCP/IP through GSM_GPRS Modem Modbus Slave Address: may be set between 1 and 240. If only one unit is available in the same IP address, it is advised to keep the default address (1). Modem Selection: Internal or external following your configuration. Modem Baud Rate: Selectable only for external modem bauds advised. Selecting a lower baud rate will slow down communication between the controller and the modem. GPRS Connection Enable: This parameter should be set to 1 (or checked). Modbus TCP/IP Port: Set this value to 80. User IP Mask: There are 3 mask registers available. The use of the registers are emphasized in the DFC User Manual. Please set the first mask as for the proper operation

5 Modbus address Modbus-TCP/IP port Modem Selection RS-485 port enable RS-485 Baud Rate - 5 -

6 User Masks IP Ethernet port enable Ethernet IP address Ethernet gateway IP Ethernet subnet mask GPRS enable - 6 -

7 DATA READING The function 03 (read multiple registers) will be used for data reading. The MODBUS master will send a query. The answer will be one of the below: -A response containing the requested data -An exceptional response indicating a read error. The maximum number of registers read in one message is 16. If more registers are requested, the unit will send only the first 16 registers. The query message specifies the starting register and quantity of registers to be read. message structure is below: The Byte Description Value 0 Controller address 1 to Function code 3 2 Starting address high See below the description of available registers 3 Starting address low 4 Number of registers high always 0 5 Number of registers low max 10h (16 decimal) 6 CRC low byte See below for the checksum calculation 7 CRC high byte Here is the sequence to read 16 registers starting from address 20h (32 decimal): CC (each byte is expressed as 2 hexadecimal characters) The checksum value in the above message may be used for the verification of checksum calculation algorithm. The normal response will be: Byte Description Value 0 Controller address same as in the query 1 Function code 3 2 Data lenght in bytes (L) number of registers * 2 3 High byte of 1st register 4 Low byte of 1st register 5 High byte of 2nd register 6 Low byte of 2nd register... L+1 High byte of the last register L+2 Low byte of the last register L+3 CRC low byte See below for the checksum calculation L+4 CRC high byte The exceptional response will be: Byte Description Value 0 Controller address same as in the query 1 Function code 131 (function code + 128) 2 Exception code 2 (illegal address) 3 CRC low byte See below for the checksum calculation 4 CRC high byte - 7 -

8 DATA WRITING (SINGLE REGISTER) The function 06 (write single register) and the function 16 (write multiple registers) are used for data writing. The MODBUS master will send a query containing data to be written. The answer will be one of the below: -A normal response confirming successful write, -An exceptional response indicating a write error. Only some of the available registers are authorized to be written. An attempt to write a write protected register will result to the exceptional response. The query message specifies the register address and data. The message structure is below: Byte Description Value 0 Controller address 1 to Function code 6 2 Register address high See below the description of available registers 3 Register address low 4 Data high byte 5 Data low byte 6 CRC low byte See below for the checksum calculation 7 CRC high byte Here is the sequence to write the value 0010h to the register 40h (64 decimal): D2 (each byte is expressed as 2 hexadecimal characters) The checksum value in the above message may be used for the verification of checksum calculation algorithm The normal response will be the same as the query: Byte Description Value 0 Controller address 1 to Function code 6 2 Register address high See below the description of available registers 3 Register address low 4 Data high byte 5 Data low byte 6 CRC low byte See below for the checksum calculation 7 CRC high byte The exceptional response will be: Byte Description Value 0 Controller address same as in the query 1 Function code 134 (function code + 128) 2 Exception code 2 (illegal address) or 10 (write protection) 3 CRC low byte See below for the checksum calculation 4 CRC high byte - 8 -

9 DATA WRITING (MULTIPLE REGISTERS) The function 06 (write single register) and the function 16 (write multiple registers) are used for data writing. The MODBUS master will send a query containing data to be written. The answer will be one of the below: -A normal response confirming successful write, -An exceptional response indicating a write error. Only some of the available registers are authorized to be written. An attempt to write a write protected register will result to the exceptional response. The query message specifies the register address and data. The message structure is below: Byte Description Value 0 Controller address 1 to Function code 16 2 Starting address high See below the description of available registers 3 Starting address low 4 Number of registers high always 0 5 Number of registers low max 6 Data lenght in bytes (L) number of registers * 2 7 High byte of 1st register 8 Low byte of 1st register 9 High byte of 2nd register 10 Low byte of 2nd register... L+5 High byte of the last register L+6 Low byte of the last register L+7 CRC low byte See below for the checksum calculation L+8 CRC high byte The normal response is below: Byte Description Value 0 Controller address 1 to Function code 16 2 Starting address high See below the description of available registers 3 Starting address low 4 Number of registers high always 0 5 Number of registers low max 6 CRC low byte See below for the checksum calculation 7 CRC high byte The exceptional response will be: Byte Description Value 0 Controller address same as in the query 1 Function code 144 (function code + 128) 2 Exception code 2 (illegal address) or 10 (write protection) 3 CRC low byte See below for the checksum calculation 4 CRC high byte - 9 -

10 Here is a procedure for generating a CRC: CRC CALCULATION 1) Load a 16 bit register with FFFF hex (all 1 s). Call this the CRC register. 2) Exclusive OR the first 8 bit byte of the message (the function code byte) with the low order byte of the 16 bit CRC register, putting the result in the CRC register. 3) Shift the CRC register one bit to the right (toward the LSB), zero filling the MSB. Extract and examine the LSB. The LSB is the least significant bit of the CRC before the shift operation. 4) If the LSB is 1: Exclusive OR the CRC register with the polynomial value A001 hex. 5) Repeat Steps 3 and 4 until 8 shifts have been performed. Thus, a complete 8 bit byte will be processed. 6) Repeat Steps 2 through 5 for the next 8 bit byte of the message. Continue doing this until all bytes have been processed. 7) The final contents of the CRC register is the CRC value. 8) Place the CRC into the message such that the low byte is transmitted first. The algorithm should give the correct CRC for below messages: CC D2 Error codes Only 3 error codes are used: 01: illegal function code 02: illegal address 10: write protection (attempt to write a read_only register) Data types Each register consists of 16 bits (2 bytes) If the data type is a byte, only the low byte will contain valid data. High byte is don t care. For data type longer than 16 bits, consecutive registers are used. The least significant register comes first. DATA FORMATS 16bit variables: These variables are stored in a single register. Bit_0 denotes the LSB and bit 15 denotes the MSB. 32 bit variables: These variables are stored in 2 consecutive registers. The high order 16 bits are in the first register and the low order 16 bits are in the second register Bit arrays: Arrays larger than 16 bits are stored in multiple registers. The LSB of the first register is bit_0. The MSB of the first register is bit_15. The LSB of the second register is bit_16. The MSB of the second register is bit_31, and so on

11 REGISTER DEFINITIONS BANKS ADDRESS (decimal) R / W DATA SIZE R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit R 48bit COEFF. Bank 1 kvar Bank 2 kvar Bank 3 kvar Bank 4 kvar Bank 5 kvar Bank 6 kvar Bank 7 kvar Bank 8 kvar Bank 9 kvar Bank 10 kvar Bank 11 kvar Bank 12 kvar Bank 13 kvar Bank 14 kvar Bank 15 kvar Bank 16 kvar Bank 17 kvar Bank 18 kvar Bank 19 kvar Bank 20 kvar Bank 21 kvar Bank 22 kvar

12 R 48bit R 48bit Bank 23 kvar Bank 24 kvar R 48bit SVC kvar BANKS STRUCTURE ADDRESS (decimal) R / W DATA SIZE COEFF. BASE+0 R 16bit Phase L1 BASE+1 R 16bit Phase L2 BASE+2 R 16bit Phase L3 DATE & TIME ADDRESS (decimal) R / W DATA SIZE COEFF R / W 16bit - Year (0-4095) 8193 R / W 16bit - Month (1-12) 8194 R / W 16bit - Date (1-31) 8195 R 16bit - Day of Week (0-6) 8196 R / W 16bit - Hours (0-23) 8197 R / W 16bit - Minutes (0-59) 8198 R / W 16bit - Seconds (0-59) 8199 R / W 16bit - Year (0-4095) (UTC) 8200 R / W 16bit - Month (1-12) (UTC) 8201 R / W 16bit - Date (1-31) (UTC) 8202 R 16bit - Day of Week (0-6) (UTC) 8203 R / W 16bit - Hours (0-23) (UTC) 8214 R / W 16bit - Minutes (0-59) (UTC) 8215 R / W 16bit - Seconds (0-59) (UTC)

13 COUNTERS ADDRESS (decimal) R / W DATA SIZE COEFF R / W 32bit kwh_1 Import R / W 32bit kwh_1 Export R / W 32bit kvarh_1 Inductive R / W 32bit kvarh_1 Capacitive R / W 32bit Group_1 Hour Counter R / W 32bit kwh_2 Import R / W 32bit kwh_2 Export R / W 32bit kvarh_2 Inductive R / W 32bit kvarh_2 Capacitive R / W 32bit Group_2 Hour Counter DEMAND MIN MAX & PUSHBUTTON SIMULATION ADDRESS (decimal) R / W DATA SIZE COEFF R 32bit Demand I R 32bit Demand I R 32bit Demand I R 32bit Demand In R 32bit 0 Demand kw R 32bit 0 Demand kvar R 32bit Minimum V R 32bit Minimum V R 32bit Minimum V R 32bit Minimum U R 32bit Minimum U R 32bit Minimum U R 32bit Minimum I R 32bit Minimum I R 32bit Minimum I3-13 -

14 12490 R 32bit Minimum In R 32bit 0 Minimum Frequency R 32bit 0 Minimum kw import R 32bit 0 Minimum kw export R 32bit 0 Minimum kvar inductive R 32bit 0 Minimum kvar capacitive R 32bit Maximum V R 32bit Maximum V R 32bit Maximum V R 32bit Maximum U R 32bit Maximum U R 32bit Maximum U R 32bit Maximum I R 32bit Maximum I R 32bit Maximum I R 32bit Maximum In R 32bit 0 Maximum Frequency R 32bit 0 Maximum kw Import R 32bit 0 Maximum kw Export R 32bit 0 Maximum kvar Inductive R 32bit 0 Maximum kvar Capacitive W 16bit - Pushbutton Simulation BIT 0: Simulate Down Arrow Button BIT 1: Simulate Left Arrow Button BIT 2: Simulate Right Arrow Button BIT 3: Simulate Up Arrow Button W 16bit - Return to Factory Settings W 16bit - Reset Counters. (Value should set to 0)

15 MEASUREMENTS ADDRESS (decimal) R / W DATA SIZE COEFF R 32bit Phase L1 Voltage R 32bit Phase L2 Voltage R 32bit Phase L3 Voltage R 32bit Phase L1-L2 Voltage R 32bit Phase L2-L3 Voltage R 32bit Phase L1-L3 Voltage R 32bit Phase L1 Current R 32bit Phase L2 Current R 32bit Phase L3 Current R 32bit Neutral Current R 32bit Phase L1 Active Power R 32bit Phase L2 Active Power R 32bit Phase L3 Active Power R 32bit Total Active Power R 32bit Phase L1 Reactive Power R 32bit Phase L2 Reactive Power R 32bit Phase L3 Reactive Power R 32bit Total Reactive Power R 32bit Phase L1 Apparent Power R 32bit Phase L2 Apparent Power R 32bit Phase L3 Apparent Power R 32bit Total Apparent Power R 16bit 00 Phase L1 Power Factor R 16bit 00 Phase L2 Power Factor R 16bit 00 Phase L3 Power Factor R 16bit 00 Total Power Factor R 16bit 0 Frequency R 16bit Temperature R 16bit Generator Input Voltage

16 R 32bit Average Ph-N Voltage R 32bit Average Ph-Ph Voltage R 32bit Average Current R 16bit Phase L1 Tangent R 16bit Phase L2 Tangent R 16bit Phase L3 Tangent R 16bit Total Tangent ALARM, OUTPUT BITS & STATISTICS ADDRESS (decimal) R / W DATA SIZE COEFF R 16bit - Alarms BIT 0: Not Three Phase BIT 1: First Banks Not Three Phase BIT 2: Current Transformer Error BIT 3: High Voltage BIT 4: Low Voltage BIT 5: High Frequency BIT 6: Low Frequency BIT 8: Low kw BIT 9: High kvar BIT 10: Low kvar BIT 11: High Cos BIT 12: Low Cos BIT 13: High Current BIT 14: High THDV BIT 15: High THDI R 16bit - Alarms BIT 7: High kw BIT 0: Reserved BIT 1: Voltage Unbalance BIT 2: Current Unbalance BIT 3: Reserved BIT 4: Reserved BIT 5: Phase Sequence BIT 6: Capacitor Error BIT 7: High Temp Alarm BIT 8: High Temp Warning BIT 9: Low Temp Alarm BIT 10: Temp Fail Alarm BIT 11: Current Transformer Error BIT 12: Daily Ind/Cap Alarm BIT 13: Monthly Ind/Cap Alarm BIT 14: Internal Alarm BIT 15: SVC Error

17 23340 R 16bit Daily Inductive % R 16bit Daily Capacitive % R 16bit Monthly Inductive % R 16bit Monthly Capacitive % R 16bit - Output States (Out1-Out12) R 16bit - Output States (Out13-Out24) HARMONICS AND WAVEFORM INFORMATION ADDRESS (decimal) R / W DATA SIZE COEFF R 4368bit R 4368bit R 4368bit R 4368bit R 4368bit R 4368bit R 4368bit R 4368bit R 4368bit 27 - Phase L1 voltage, harmonics and waveform buffer - Phase L2 voltage, harmonics and waveform buffer - Phase L3 voltage, harmonics and waveform buffer - Phase L1-2 voltage, harmonics and waveform buffer - Phase L2-3 voltage, harmonics and waveform buffer - Phase L3-1 voltage, harmonics and waveform buffer - Phase L1 current, harmonics and waveform buffer - Phase L2 current, harmonics and waveform buffer - Phase L3 current, harmonics and waveform buffer

18 BUFFER STRUCTURE The buffer consists of 273 x 16 bit registers. The structure is below. ADDRESS (decimal) R / W DATA SIZE COEFF. BASE+0 R 16bit THD of this channel BASE+1 R 256bit 16x16 BASE+17 R 4096bit 256x16 x1 This string of 16 registers carry individual harmonics of the selected channel, staring from H#01 until H#31. The first register represents the fundamental and is always set to 100.0%. Scopemeter dataof the channel. Each register represents one point in the X axis of the scopemeter. The complete waveform is represented with 256 horizontal points. The register value is a signed integer. The sampling rate is 122us. Thus the buffer length is 256x122us, namely 31ms, presenting more than 1 cycle of the waveform. By representing these values in graphical form, a software oscilloscope can be made

MODBUS APPLICATION MANUAL DKM-411

MODBUS APPLICATION MANUAL DKM-411 MODBUS APPLICATION MANUAL DKM-411-1 - COPYRIGHT NOTICE Any unauthorized use or copying of the contents or any part of this document is prohibited. This applies in particular to trademarks, model denominations,

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

PFC96Evo / PFC144Evo CONTROLLER MODBUS PROTOCOL

PFC96Evo / PFC144Evo CONTROLLER MODBUS PROTOCOL PFC96Evo / PFC144Evo CONTROLLER MODBUS PROTOCOL WARNING Installation, setting, inspection and maintenance operations must be performed only by qualified personnel in charge of it. Any operation must be

More information

DKM-260 FEATURES DESCRIPTION. DKM-260 User Manual

DKM-260 FEATURES DESCRIPTION. DKM-260 User Manual DKM-260 DESCRIPTION The DKM-260 is a precision instrument designed for monitoring the status of earth leakage in a DC supply busbar. It also measures, displays and remote monitors various DC parameters

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

GNM3D Series COMMUNICATION PROTOCOL. Version 1 Revision 0

GNM3D Series COMMUNICATION PROTOCOL. Version 1 Revision 0 GNM3D Series COMMUNICATION PROTOCOL Version 1 Revision 0 Index 1.1 1.2 Introduction... 3 MODBUS functions... 3 1.2.1 Function 03h (Read Holding Registers)... 3 1.2.2 Function 04h (Read Input Registers)...

More information

Acuvim II Series Power Meter SNMP Protocol User's Manual

Acuvim II Series Power Meter SNMP Protocol User's Manual Acuvim II Series Power Meter SNMP Protocol User's Manual Copyright 2018 V2.00 This manual may not be altered or reproduced in whole or in part by any means without the expressed written consent of Accuenergy.

More information

EMS_ _Measure_MonoPh_R_2P_ModbusTable_LG_EN_v1.01.xlsx

EMS_ _Measure_MonoPh_R_2P_ModbusTable_LG_EN_v1.01.xlsx EMS_ 19 19_Measure_MonoPh_R_2P_ModbusTable_LG_EN_v1.01.xlsx GENERAL MODBUS TABLE ORGANIZATION Starting of the Group Starting of the Group System Version System Version Group Name (Text) Group Code Group

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

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

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

EM300 Series. ET300 Series

EM300 Series. ET300 Series EM300 Series and ET300 Series COMMUNICATION PROTOCOL Version 2 Revision 11 Index 1.1 Introduction... 3 1.2 MODBUS functions... 3 1.2.1 Function 03h (Read Holding Registers)... 3 1.2.2 Function 04h (Read

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

EM210 COMMUNICATION PROTOCOL. Version 3 Revision 3

EM210 COMMUNICATION PROTOCOL. Version 3 Revision 3 EM210 COMMUNICATION PROTOCOL Version 3 Revision 3 November 13 th, 2015 Index 1.1 Introduction... 3 1.2 MODBUS functions... 3 Function 03h (Read Holding Registers)... 3 Function 04h (Read Input Registers)...

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

for Energy and Power meters AEM and APM with Modbus interface

for Energy and Power meters AEM and APM with Modbus interface DESIGNER S REFERENCE HANDBOOK for Energy and Power meters AEM and APM with Modbus interface Technical reference DEIF A/S Page 1 of 31 Document no.: 4189320051A Table of contents 1. ABOUT THIS DOCUMENT...

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

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

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

EM23-DIN COMMUNICATION PROTOCOL. Version 0 Revision 0

EM23-DIN COMMUNICATION PROTOCOL. Version 0 Revision 0 EM23-DIN COMMUNICATION PROTOCOL Version 0 Revision 0 January 14 th, 2013 Index 1.1 Introduction...3 1.2 MODBUS functions...3 1.2.1 Function 03h (Read Holding Registers)...3 1.2.2 Function 04h (Read Input

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL CE4DMID31 / CE4DMID21 CONTO D4 Pd MID PR123 20/10/2016 Pag. 1/9 Contents 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format...

More information

MultiCube. Modbus Data Tables. August Northern Design (Electronics) Ltd Bradford UK

MultiCube. Modbus Data Tables. August Northern Design (Electronics) Ltd Bradford UK MultiCube Modbus Data Tables August 2005 Modbus Data Tables Northern Design (Electronics) Ltd Bradford UK 1. Introduction This document is intended as a supplement to the MultiCube Modbus Options Installation

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

CEM-C6 INSTRUCTION MANUAL (M187B B)

CEM-C6 INSTRUCTION MANUAL (M187B B) Multifunctional Energy Meter INSTRUCTION MANUAL (M187B01-03-18B) 2 SAFETY PRECAUTIONS Follow the warnings described in this manual with the symbols shown below. DANGER Warns of a risk, which could result

More information

EM210 COMMUNICATION PROTOCOL. Version 3 Revision 1

EM210 COMMUNICATION PROTOCOL. Version 3 Revision 1 EM210 COMMUNICATION PROTOCOL Version 3 Revision 1 June 4 th, 2014 Index 1.1 Introduction...3 1.2 MODBUS functions...3 Function 03h (Read Holding Registers)...3 Function 04h (Read Input Registers)...4 Function

More information

EM271 COMMUNICATION PROTOCOL. Version 0 Revision 0

EM271 COMMUNICATION PROTOCOL. Version 0 Revision 0 EM271 COMMUNICATION PROTOCOL Version 0 Revision 0 May 12 th, 2014 Index 1.1 Introduction... 3 1.2 MODBUS functions... 3 1.2.1 Function 03h (Read Holding Registers)... 3 1.2.2 Function 04h (Read Input Registers)...

More information

EMS-GC10 Genset Controller. Modbus Communication Mapping Manual Section 75

EMS-GC10 Genset Controller. Modbus Communication Mapping Manual Section 75 EMS-GC10 Genset Controller Modbus Communication Mapping Manual 1311311 2013-10-10 Section 75 In order to consistently bring you the highest quality, full featured products, we reserve the right to change

More information

INSTRUCTION MANUAL RVT communication How to use RS485 USB Ethernet RVT connections

INSTRUCTION MANUAL RVT communication How to use RS485 USB Ethernet RVT connections INSTRUCTION MANUAL RVT communication How to use RS85 USB Ethernet RVT connections Table of contents 1 Introduction to the controller... 1.1 Intended audience... 1.2 Before you start... 1.3 How to use this

More information

EM100 Series and ET100 Series

EM100 Series and ET100 Series EM100 Series and ET100 Series COMMUNICATION PROTOCOL Version 2 Revision 6 Index 1.1 1.2 Introduction... 3 MODBUS functions... 3 1.2.1 Function 03h (Read Holding Registers)...3 1.2.2 Function 04h (Read

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

EM24-DIN PFA, PFB & X models

EM24-DIN PFA, PFB & X models EM24-DIN PFA, PFB & X models COMMUNICATION PROTOCOL Version 4 Revision 0 December 03 th, 2012 Index 1.1 Introduction...3 1.2 MODBUS functions...3 1.2.1 Function 03h (Read Holding Registers)...3 1.2.2 Function

More information

ENERGY MASTER. Rev. 1.2 Date: 02/09/10

ENERGY MASTER. Rev. 1.2 Date: 02/09/10 Rev. 1.2 Date: 02/09/10 ENERGY MASTER Index: General Description...3 Composition of ENERGY MASTER Basic Kit...3 ENERGY MASTER Installation...4 Panel Installation:...4 DIN-rail Installation:...4 Electrical

More information

COMMUNICATION MODBUS PROTOCOL

COMMUNICATION MODBUS PROTOCOL COMMUNICATION MODBUS PROTOCOL CE4DT36 CONTO D4 Pd (3-single phase) PR134 20/10/2016 Pag. 1/11 Contents 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format...

More information

EM24-DIN COMMUNICATION PROTOCOL. Version 3 Revision 1

EM24-DIN COMMUNICATION PROTOCOL. Version 3 Revision 1 EM24-DIN COMMUNICATION PROTOCOL Version 3 Revision 1 July 15 th, 2008 Index 1.1 Introduction... 3 1.2 MODBUS functions... 3 1.2.1 Function 03h (Read Holding Registers)...3 1.2.2 Function 04h (Read Input

More information

EM26-96 COMMUNICATION PROTOCOL. Version 1 Revision 0

EM26-96 COMMUNICATION PROTOCOL. Version 1 Revision 0 EM26-96 COMMUNICATION PROTOCOL Version 1 Revision 0 February 5 th, 2007 Index 1.1 Introduction...3 1.2 MODBUS functions...3 1.2.1 Function 03h (Read Holding Registers)... 3 1.2.2 Function 04h (Read Input

More information

EM270 COMMUNICATION PROTOCOL. Version 1 Revision 0

EM270 COMMUNICATION PROTOCOL. Version 1 Revision 0 EM270 COMMUNICATION PROTOCOL Version 1 Revision 0 October 4 th, 2013 Index 1.1 Introduction... 3 1.2 MODBUS functions... 3 1.2.1 Function 03h (Read Holding Registers)... 3 1.2.2 Function 04h (Read Input

More information

Description of options. user s manual. DEIF A/S Frisenborgvej 33 DK-7800 Skive Tel.: Fax:

Description of options. user s manual. DEIF A/S Frisenborgvej 33 DK-7800 Skive Tel.: Fax: Description of options TCP/IP Ethernet module user s manual DEIF A/S Frisenborgvej 33 DK-7800 Skive Tel.: +45 9614 9614 Fax: +45 9614 9615 info@deif.com www.deif.com Document no.: 4189320029B Legal information

More information

MODBUS Protocol Specification. MODBUS Protocol Specification V2.0

MODBUS Protocol Specification. MODBUS Protocol Specification V2.0 MODBUS Protocol Specification V2.0 MODBUS APPLICATION PROTOCOL SPECIFICATION V1.0 CONTENTS 1 Introduction. 1.1 Scope of this document.. 1.2 Protocol overview.. 1.3 Contacts... 2 Modbus transmission modes...

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

Application Note: Using Modbus With the Conext CL Series. Important Safety Instructions

Application Note: Using Modbus With the Conext CL Series. Important Safety Instructions : Using Modbus With the Conext CL Series 976-0317-01-01 Rev A Important Safety Instructions READ AND SAVE THESE INSTRUCTIONS - DO NOT DISCARD This document contains important safety instructions that must

More information

CONFIGURATION SOFTWARE

CONFIGURATION SOFTWARE MODBUS GATEWAY CONFIGURATION SOFTWARE MBS100E/G/W MODBUS GATEWAY 01 / 2018 MIKRODEV_SM_MBS100_CG_EN CONTENTS 1 MODBUS GATEWAY CONFIGURATION SOFTWARE... 6 1.1 General Information... 6 1.2 Device Connection...

More information

EM21 COMMUNICATION PROTOCOL. Version 1 Revision 0

EM21 COMMUNICATION PROTOCOL. Version 1 Revision 0 EM21 COMMUNICATION PROTOCOL Version 1 Revision 0 April 7 th, 2008 Index 1.1 Introduction...3 1.2 MODBUS functions...3 1.2.1 Function 03h (Read Holding Registers)...3 1.2.2 Function 04h (Read Input Registers)...4

More information

RISH Master 3440i/3440iDL 0.2S

RISH Master 3440i/3440iDL 0.2S Interface Definition RISH Master 344i/344iDL.2S as per IEC6253-22 DIGITAL MULTIFUNCTION INSTRUMENT Installation & Operating Instructions Section 1. 2. 3. 4. 5. Contents Introduction Communication selection

More information

USER MANUAL 2012 V1.1

USER MANUAL 2012 V1.1 SMART MINI POWER SDM630 USER MANUAL 2012 V1.1-1 - Installation and Operation Instructions Important Safety Information is contained in the Maintenance section. Familiarise yourself with this information

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

EM24-DIN COMMUNICATION PROTOCOL. Version 3 Revision 0

EM24-DIN COMMUNICATION PROTOCOL. Version 3 Revision 0 EM24-DIN COMMUNICATION PROTOCOL Version 3 Revision 0 March 25 th, 2008 Index 1.1 Introduction...3 1.2 MODBUS functions...3 1.2.1 Function 03h (Read Holding Registers)...3 1.2.2 Function 04h (Read Input

More information

ELECTRONIC METER SX1-A31E MODBUS RTU Protocol Specifications MDD-T0025A

ELECTRONIC METER SX1-A31E MODBUS RTU Protocol Specifications MDD-T0025A ELECTRONIC METER SX1-A31E MODBUS RTU Protocol Specifications SPEC. NO. : MDD-T0025A MITSUBISHI ELECTRIC AUTOMATION (THAILAND) CO., LTD CONTENTS 1. Functions 2 2. Checking before usage... 2 3. System Configurations.

More information

RSGD 75mm Modbus Protocol

RSGD 75mm Modbus Protocol RSGD 75mm Modbus Protocol Rev 2.0 Contents Chapter 1 Introduction 1.1 Foreword... 3 1.2 Product inspection... 3 1.3 Precautions... 3 Chapter 2 Software Installation 2.1 System requirements... 4 2.2 Software

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

Advanced Digital Power Instrumentation Package. Modicon Modbus. Serial Communications Protocol and ION / Modbus Register Map. Version 0.

Advanced Digital Power Instrumentation Package. Modicon Modbus. Serial Communications Protocol and ION / Modbus Register Map. Version 0. Advanced Digital Power Instrumentation Package Modicon Modbus Serial Communications Protocol and ION / Modbus Register Map Version 0.9 Limitation of Liability For further assistance please contact us at:

More information

CE4DMID01 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION

CE4DMID01 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION 11/11/2011 Pagina 1 di 11 ELECTRICITY ENERGY METER FIRMWARE 1.3 CE4DMID01 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION 2.0 DATA MESSAGE DESCRIPTION 2.1 Data field description 2.2 Data format 2.3 Description

More information

Appendix to the Operating Instructions RMx621 with ModBus Interface V Connection to ModBus-IDA System

Appendix to the Operating Instructions RMx621 with ModBus Interface V Connection to ModBus-IDA System Operating Instructions Appendix to the Operating Instructions RMx621 with ModBus Interface V3.03.00 Connection to ModBus-IDA System BA231R/09/en/08.09 71027031 MS Word Endress+Hauser 2 Contents 1 General...

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

Manual 09/11 MN Z-EN. NZM-XATS-C Automatic Transfer Switch-Controller Modbus Communication Protocol

Manual 09/11 MN Z-EN. NZM-XATS-C Automatic Transfer Switch-Controller Modbus Communication Protocol Manual 09/11 MN01219007Z-EN NZM-XATS-C Automatic Transfer Switch-Controller Modbus Communication Protocol All brand and product names are trademarks or registered trademarks of the owner concerned. Emergency

More information

MITSUBISHI Energy Measuring Unit EcoMonitorLight/EcoMonitorPlus Series. MODBUS I/F Specification LSPY-9025-E

MITSUBISHI Energy Measuring Unit EcoMonitorLight/EcoMonitorPlus Series. MODBUS I/F Specification LSPY-9025-E MITSUBISHI Energy Measuring Unit EcoMonitorLight/EcoMonitorPlus Series MODBUS I/F Specification Model SPEC.NO. EMU4-BD1-MB EMU4-HD1-MB EMU4-BM1-MB EMU4-HM1-MB EMU4-LG1-MB EMU4-A2,EMU4-VA2 EMU4-PX4,EMU4-AX4

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

DKM-411 ADVANCED NETWORK ANALYSER WITH INTERNET COMMUNICATIONS FEATURES DESCRIPTION TOPOLOGIES COMMUNICATION PORTS

DKM-411 ADVANCED NETWORK ANALYSER WITH INTERNET COMMUNICATIONS FEATURES DESCRIPTION TOPOLOGIES COMMUNICATION PORTS DKM-411 ADVANCED NETWORK ANALYSER WITH INTERNET COMMUNICATIONS DESCRIPTION The DKM-411 is an advanced precision metering device offering an 3.5 size, 320x240 pixel color TFT, together with unrivalled remote

More information

SERIES PM172EH POWERMETERS COMMUNICATIONS REFERENCE GUIDE

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

More information

CVM-B100 CVM-B150 INSTRUCTION MANUAL (M010B B)

CVM-B100 CVM-B150 INSTRUCTION MANUAL (M010B B) Power analyzer CVM-B100 CVM-B150 INSTRUCTION MANUAL (M010B01-03-16B) 2 Safety precautions Follow the warnings described in this manual with the symbols shown below. DANgeR Warns of a risk, which could

More information

RGM180 Display Series

RGM180 Display Series Quick Start Guide RGM180 Display Series BG0509 REV.A2 RGM180 QUICKSTART LIMITED WARRANTY The manufacturer offers the customer a 24-month functional warranty on the instrument for faulty workmanship or

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

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

MPR-4 SERIES NETWORK ANALYSER USER MANUAL

MPR-4 SERIES NETWORK ANALYSER USER MANUAL MPR-4 SERIES NETWORK ANALYSER USER MANUAL INDEX SAFETY AND WARNINGS... 3 Warning... 3 Safety... 3 Warranty... 3 OPERATING CONDITIONS... 4 INTRODUCTION... 5 General Features... 5 Applications... 6 MPR-4

More information

PQM - Power Quality Monitoring

PQM - Power Quality Monitoring UMG 511 PQM - Power Quality Monitoring Class A power quality analyser according to IEC61000-4-30 The UMG 511 power quality analyser is particularly suitable for monitoring power quality according to standards

More information

UMG 511. Class A EN UMG 511 Class A power quality analyzer. according to EN50160, IEEE 519, ITIC, IEC Areas of application

UMG 511. Class A EN UMG 511 Class A power quality analyzer. according to EN50160, IEEE 519, ITIC, IEC Areas of application UMG 511 Class A EN 50160 UMG 511 Class A power quality analyzer according to EN50160, IEEE 519, ITIC, IEC 61000-4-30 The UMG 511 power quality analyzer is particularly suitable for monitoring power quality

More information

SPM90 MODBUS PROTOCOL AND REGISTER LIST V1.0

SPM90 MODBUS PROTOCOL AND REGISTER LIST V1.0 SPM90 MODBUS PROTOCOL AND REGISTER LIST V1.0 目 录 1. Introduction... 1 1.1 Purpose of the Communication Protocol... 1 1.2 Version of Communication Protocol... 1 2. Detailed Description of the SPM90 Modbus

More information

EM24_E1. (Ethernet) COMMUNICATION PROTOCOL. Version 0 Revision 1.2

EM24_E1. (Ethernet) COMMUNICATION PROTOCOL. Version 0 Revision 1.2 EM24_E1 (Ethernet) COMMUNICATION PROTOCOL Version 0 Revision 1.2 Index 1 INTRODUCTION... 3 1.1 1.2 Introduction... 3 Modbus functions... 3 1.2.1 Function 03h (Read Holding Registers) and 04h (Read Input

More information

SERIES PM172 POWERMETERS COMMUNICATIONS REFERENCE GUIDE

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

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

Sommario. COMMUNICATION PROTOCOL PR 150 Rev. A 31/01/2018 Pag 1 Multifunction Firmware NEMO 96 EA ModBus

Sommario. COMMUNICATION PROTOCOL PR 150 Rev. A 31/01/2018 Pag 1 Multifunction Firmware NEMO 96 EA ModBus 31/01/2018 Pag 1 Sommario 1. ABSTRACT... 2 1.1. 1.2. Physical level... 2 Data link level... 2 1.3. Application level... 2 2. DATA MESSAGE DESCRIPTION... 3 2.1. Parameters description... 3 2.2. Data format...

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

Softstarters. Type PSTX Fieldbus communication, Anybus Modbus TCP. 1SFC132087M0201 March SFC132087M0201 1

Softstarters. Type PSTX Fieldbus communication, Anybus Modbus TCP. 1SFC132087M0201 March SFC132087M0201 1 Softstarters Type PSTX Fieldbus communication, Anybus Modbus TCP 1SFC132087M0201 March 2015 1SFC132087M0201 1 1 Modbus TCP The Modbus protocol is a fieldbus protocol that provides full control and status

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

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

INTEGRA DL1 DUAL LOAD DIGITAL METER COMMUNICATIONS GUIDE DIGITAL ENERGY METER FOR MULTIPLE LOADS IN AN ELECTRICAL SYSTEM

INTEGRA DL1 DUAL LOAD DIGITAL METER COMMUNICATIONS GUIDE DIGITAL ENERGY METER FOR MULTIPLE LOADS IN AN ELECTRICAL SYSTEM DL1 INTEGRA DL1 DUAL LOAD DIGITAL METER COMMUNICATIONS GUIDE DIGITAL ENERGY METER FOR MULTIPLE LOADS IN AN ELECTRICAL SYSTEM Contents 1 Dual Load Digital meters Modbus Protocol implementation 3 1.1 Modbus

More information

Conto D2 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION

Conto D2 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION PR 121 rev. 0 11/11/2011 Pagina 1 di 9 ELECTRICITY ENERGY METER FIRMWARE 1.6 Conto D2 COMMUNICATION PROTOCOL CONTENTS 1.0 INTRODUCTION 2.0 DATA MESSAGE DESCRIPTION 2.1 Data field description 2.2 Data format

More information

IF96017 MODBUS COMMUNICATION PROTOCOL

IF96017 MODBUS COMMUNICATION PROTOCOL CONTENTS 1.0 ABSTRACT 04/07/14 Pagina 1 di 9 MULTIFUNCTION FIRMWARE 1.00 COMMUNICATION PROTOCOL IF96017 MODBUS COMMUNICATION PROTOCOL 2.0 DATA MESSAGE DESCRIPTION 2.1 Parameters description 2.2 Data format

More information

U niversal Measuring Device UMG 96 S. Little Fieldbus Giant. Modbus / Profibus. Harmonics. Memory. Analogue outputs. Digital I/O

U niversal Measuring Device UMG 96 S. Little Fieldbus Giant. Modbus / Profibus. Harmonics. Memory. Analogue outputs. Digital I/O U niversal Measuring Device Little Fieldbus Giant Modbus / Profibus Harmonics Memory Analogue outputs Digital I/O Modem Recorder Profibus Modbus PC I/O Universal Measuring Device Application Application

More information

Power analyzer CVM-B100 CVM-B150 INSTRUCTION MANUAL (M010B A) MEASURING EQUIPMENT

Power analyzer CVM-B100 CVM-B150 INSTRUCTION MANUAL (M010B A) MEASURING EQUIPMENT Power analyzer CVM-B100 CVM-B150 INSTRUCTION MANUAL (M010B01-03-18A) MEASURING EQUIPMENT 2 SAFETY PRECAUTIONS Follow the warnings described in this manual with the symbols shown below. DANGER Warns of

More information

Modbus Protocol For FTS/FTM 3x&8x

Modbus Protocol For FTS/FTM 3x&8x [ 公司地址 ] Modbus Protocol For FTS/FTM 3x&8x V3.0 Introduction This document describes the protocol detail of Modbus for FTSXX Hardware interface - The interface on the sensor is RS-485. - Hardware named

More information

DIN Rail Smart Meter for Single and Three Phase Electrical Systems

DIN Rail Smart Meter for Single and Three Phase Electrical Systems SDM630-Modbus V2 DIN Rail Smart Meter for Single and Three Phase Electrical Systems Measures kwh Kvarh, KW, Kvar, KVA, P, F, PF, Hz, dmd, V, A, etc. Bi-directional measurement IMP & EXP Two pulse outputs

More information

TR600 with RS485 Appendix 1

TR600 with RS485 Appendix 1 c ZIEHL industrie elektronik GmbH + Co KG Daimlerstraße 13, D 74523 Schwäbisch Hall + 49 791 504-0, info@ziehl.de, www.ziehl.de Temperature Relays and MINIKA Mains Monitoring Digital Panelmeters MINIPAN

More information

1.Eastron SDM530-Modbus Smart Meter Modbus Protocol Implementation V1.1

1.Eastron SDM530-Modbus Smart Meter Modbus Protocol Implementation V1.1 1.Eastron SDM530-Modbus Smart Meter Modbus Protocol Implementation V1.1 1.1 Modbus Protocol Overview This section provides basic information for interfacing the Eastron Smart meter to a Modbus Protocol

More information

Supplement to Instruction Bulletin Micro-DCI 53ML5100A 53ML5100 MANUAL LOADING STATION REV. 1 FIRMWARE. PN24698 Rev. 1

Supplement to Instruction Bulletin Micro-DCI 53ML5100A 53ML5100 MANUAL LOADING STATION REV. 1 FIRMWARE. PN24698 Rev. 1 Supplement to Instruction Bulletin Micro-DCI 53ML5100A 53ML5100 MANUAL LOADING STATION REV. 1 FIRMWARE PN24698 Rev. 1 The Company MicroMod Automation, Inc. MicroMod Automation is dedicated to improving

More information

MIC-2 MKII & MIC-2 MKII DIN, Multi-instrument DATA SHEET

MIC-2 MKII & MIC-2 MKII DIN, Multi-instrument DATA SHEET & DIN, Multi-instrument DATA SHEET Measurements All 3-phase AC measurements True RMS 4-Quadrant energy Power Quality Analysis Replaces analogue meters RS-485 Modbus RTU protocol TCP/IP Modbus (optional)

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

DRS-100-3P MID Energy Meter Direct Connect, 100A, Three phase Communications Guide

DRS-100-3P MID Energy Meter Direct Connect, 100A, Three phase Communications Guide DRS-100-3P MID Energy Meter Direct Connect, 100A, Three phase Communications Guide Contents 1 DRS-100-3P - Modbus Protocol Implementation 3 1.1 Modbus Protocol Overview 3 1.2 Modbus Protocol Input Registers

More information

DKG-210 UNIVERSAL INTERNET GATEWAY UNIT

DKG-210 UNIVERSAL INTERNET GATEWAY UNIT DKG-210 UNIVERSAL INTERNET GATEWAY UNIT AC & DC SUPPLY VERSIONS DESCRIPTION The DKG-210 is designed for internet monitoring and control of industrial devices using different protocols through the RAINBOW

More information

General Specific MODBUS RTU protocol Rev. 15 REVISIONS

General Specific MODBUS RTU protocol Rev. 15 REVISIONS Page 1 of 68 General Specific MODBUS RTU protocol Rev. 15 Written: U. T. ing. L. Guerrieri Verified: A. Q. ing. F. Adinolfi Approved: D. T. ing. E. Girardi Date: 22/03/2018 Status: Final REVISIONS REV.

More information

COMMUNICATION MODBUS PROTOCOL MF96001 / 021 NEMO 96HD

COMMUNICATION MODBUS PROTOCOL MF96001 / 021 NEMO 96HD COMMUNICATION MODBUS PROTOCOL MF96001 / 021 NEMO 96HD PR106 20/10/2016 Pag. 1/31 Contents 1.0 ABSTRACT... 2 2.0 DATA MESSAGE DESCRIPTION... 3 2.1 Parameters description... 3 2.2 Data format... 4 2.3 Description

More information

1.Eastron SDM230Modbus Smart Meter Modbus Protocol Implementation V1.2

1.Eastron SDM230Modbus Smart Meter Modbus Protocol Implementation V1.2 1.Eastron SDM230Modbus 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

More information

Stabiliti Modbus Programming Guide

Stabiliti Modbus Programming Guide Stabiliti Modbus Programming Guide Product Models: 30C & 30C3 Purpose and Scope This document describes the Modbus communication protocol and register set used by the Ideal Power 30 kw Stabiliti Series

More information

Softstarters. Type PSTX Fieldbus communication, Fieldbus Plug Modbus RTU. 1SFC132092M0201 June SFC132092M0201 1

Softstarters. Type PSTX Fieldbus communication, Fieldbus Plug Modbus RTU. 1SFC132092M0201 June SFC132092M0201 1 Softstarters Type PSTX Fieldbus communication, Fieldbus Plug Modbus RTU 1SFC132092M0201 June 2017 1SFC132092M0201 1 1 Modbus RTU The Modbus protocol is a fieldbus protocol that provides full control and

More information

Softstarters. Type PSTX Fieldbus communication, Fieldbus Plug Modbus RTU

Softstarters. Type PSTX Fieldbus communication, Fieldbus Plug Modbus RTU Softstarters Type PSTX Fieldbus communication, Fieldbus Plug Modbus RTU 1SFC132092M0201 July 2014 1 Modbus RTU The Modbus protocol is a fieldbus protocol that provides full control and status information

More information

U niversal Measuring Device NEW! UMG 96 S. Little Fieldbus Giant. Modbus / Profibus. Harmonics. Memory. Analogue outputs.

U niversal Measuring Device NEW! UMG 96 S. Little Fieldbus Giant. Modbus / Profibus. Harmonics. Memory. Analogue outputs. U niversal Measuring Device NEW! Little Fieldbus Giant Modbus / Profibus Harmonics Memory Analogue outputs Digital I/O Modem Recorder Profibus Modbus PC I/O Universal Measuring Device Application Application

More information

MIC-2 Multi-instrument DATA SHEET

MIC-2 Multi-instrument DATA SHEET Measurements All 3-phase AC measurements True RMS 4-Quadrant energy Power Quality Analysis Replaces analogue meters RS-485 Modbus RTU protocol TCP/IP Modbus (optional) Profibus DP (optional) I/O modules

More information

B+G E-Tech User Manual for SDM630 SDM630. Din Rail Smart Energy Meter for Single and Three Phase Electrical Systems USER MANUAL 2013 V1.

B+G E-Tech User Manual for SDM630 SDM630. Din Rail Smart Energy Meter for Single and Three Phase Electrical Systems USER MANUAL 2013 V1. SDM630 Din Rail Smart Energy Meter for Single and Three Phase Electrical Systems USER MANUAL 203 V. Important Safety Information is contained in the Maintenance section. Familiarize yourself with this

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

SICAM P35 SICAM P36 3-phase Multi-Function Power Meter

SICAM P35 SICAM P36 3-phase Multi-Function Power Meter Preface SICAM P35 SICAM P36 3-phase Multi-Function Power Meter V1.30 Manual Content Overview 1 Technical Data 2 Functions 3 Operation and Display 4 Installation and Wiring 5 Communication 6 Maintenance

More information

MIC-2 MKII, Multi-instrument DATA SHEET

MIC-2 MKII, Multi-instrument DATA SHEET MIC-2 MKII, Multi-instrument DATA SHEET Measurements All 3-phase AC measurements True RMS 4-Quadrant energy Power Quality Analysis Replaces analogue meters RS-485 Modbus RTU protocol TCP/IP Modbus (optional)

More information