You are on page 1of 36

INSTRUCTION MANUAL

IM158-U v0.1

ANR-LAN

Communication Protocol MODBUS-TCP Quick Overview

WHAT IS MODBUS TCP/IP?


Modbus TCP/IP (also Modbus-TCP) is simply the Modbus RTU protocol with a TCP interface that runs on Ethernet.
The Modbus messaging structure is the application protocol that defines the rules for organizing and interpreting the
data independent of the data transmission medium.
TCP/IP refers to the Transmission Control Protocol and Internet Protocol, which provides the transmission medium for
Modbus TCP/IP messaging.
Simply stated, TCP/IP allows blocks of binary data to be exchanged between computers. It is also a world-wide
standard that serves as the foundation for the World Wide Web. The primary function of TCP is to ensure that all
packets of data are received correctly, while IP makes sure that messages are correctly addressed and routed.
Note that the TCP/IP combination is merely a transport protocol, and does not define what the data means or how the
data is to be interpreted (this is the job of the application protocol, Modbus in this case).
So in summary, Modbus TCP/IP uses TCP/IP and Ethernet to carry the data of the Modbus message structure
between compatible devices. That is, Modbus TCP/IP combines a physical network (Ethernet), with a networking
standard (TCP/IP), and a standard method of representing data (Modbus as the application protocol). Essentially, the
Modbus TCP/IP message is simply a Modbus communication encapsulated in an Ethernet TCP/IP wrapper.
In practice, Modbus TCP embeds a standard Modbus data frame into a TCP frame, without the Modbus checksum, as
shown in the following diagram.

The Modbus commands and user data are themselves encapsulated into the data container of a TCP/IP telegram
without being modified in any way.
However, the Modbus error checking field (checksum) is not used, as the standard Ethernet TCP/IP link layer
checksum methods are instead used to guaranty data integrity. Further, the Modbus frame address field is supplanted
by the unit identifier in Modbus TCP/IP, and becomes part of the Modbus Application Protocol header (more on this
later).
From the figure, we see that the function code and data fields are absorbed in their original form. Thus, a Modbus
TCP/IP Application Data Unit (ADU) takes the form of a 7 byte header (transaction identifier + protocol identifier +
length field + unit identifier), and the protocol data unit (function code + data). The MBAP header is 7 bytes long and
includes the following fields:
Transaction/invocation Identifier (2 Bytes): This identification field is used for transaction pairing when multiple
messages are sent along the same TCP connection by a client without waiting for a prior response.
Protocol Identifier (2 bytes): This field is always 0 for Modbus services and other values are reserved for future
extensions.
Length (2 bytes): This field is a byte count of the remaining fields and includes the unit identifier byte, function code
byte, and the data fields.
Unit Identifier (1 byte): This field is used to identify a remote server located on a non TCP/IP network (for serial
bridging).

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v0.1

Page 1 of 36

Why combine modbus with ethernet?


IEEE 802.3 Ethernet is a long-standing office networking protocol that has gained universal world-wide acceptance. It
is also an open standard that is supported by many manufacturers and its infrastructure is widely available and largely
installed. Consequently, its TCP/IP suite of protocols is used world-wide and even serves as the foundation for access
to the World Wide Web.
As many devices already support Ethernet, it is only natural to augment it for use in industrial applications.
Just as with Ethernet, Modbus is freely available, accessible to anyone, and widely supported by many manufacturers
of industrial equipment. It is also easy to understand and a natural candidate for use in building other industrial
communication standards. With so much in common, the marriage of the Modbus application protocol with traditional
IEEE 802.3 Ethernet transmission forms a powerful industrial communication standard in Modbus TCP/IP. And
because Modbus TCP/IP shares the same physical
and data link layers of traditional IEEE 802.3 Ethernet and uses the same TCP/IP suite of protocols, it remains fully
compatible with the already installed Ethernet infrastructure of cables, connectors, network interface cards, hubs, and
switches.
Application Layer
The uppermost layer of the TCP/IP and OSI Reference Models is the Application Layer. There are many application
layer protocols that may reside here, such as FTP, Telnet, HTTP, SMPT, DNS, and NNTP, among others. While each
of these protocols has their own specific purpose, for Modbus TCP/IP, the primary application layer protocol of interest
is Modbus.
Modbus is an application protocol or messaging structure that defines rules for organizing and interpreting data
independent of the data transmission medium. Traditional serial Modbus is a register-based protocol that defines
message transactions that occur between masters and slaves. Slave devices listen for communication from the master
and simply respond as instructed. The master always controls the communication and may communicate directly to
one slave, or all connected slaves, but the slaves cannot communicate directly with each other.
Thus, we see that Modbus operates according to the common client/server (master/slave) model. That is, the client
(master) sends a request telegram (service request) to the server (slave), and the server replies with a
response telegram. If the server cannot process a request, it will instead return a error function code (exception
response) that is the original function code plus 80H.
Modbus functions operate on memory registers to configure, monitor, and control device I/O. Modbus devices usually
include a Register Map. You should refer to the register map for your device to gain a better understanding of its
operation. You will also find it helpful to refer to the register map as you review the Modbus functions described later in
this document.
Modbus Functions and Registers
The x following the leading character represents a fourdigit address location in user data memory.
The Modbus registers of a device are organized around the four basic data reference types noted above and this data
type is further identified by the leading number of the reference address as follows:

The client request data field provides the slave (server) with any additional information required by the slave to
complete the action specified by the function code in the clients request. The data field typically includes register
addresses, count values, and written data. For some messages, this field may not exist (has zero length), as not all
messages will require data.
When the slave device responds to the master, it uses the function code field to indicate either a normal (error-free)
response, or that some kind of error has occurred (an exception response).
ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 2 of 36

Modbus Exceptions

Modbus TCP/IP Format


We know that the application layer is said to ride on top of TCP. Prior to passing the application message via TCP, a
Modbus TCP/IP Application Data Unit is formed from a 7-byte Modbus Application Protocol (MBAP) header and the
Protocol Data Unit (Modbus function code and data). This packet takes the following form:
Modbus TCP/IP Application Data Unit

The 7-byte MBAP header includes the following fields:


Transaction/Invocation Identifier (2 Bytes): This identification field is used for transaction pairing when several
Modbus transactions are sent along the same TCP connection without waiting for completion of the prior transaction.
Protocol Identifier (2 bytes): This field is always 0 for Modbus services and other values are reserved for future
extensions.
Length (2 bytes): This field is a byte count of the remaining fields and includes the destination identification and
data fields.
Unit Identifier (1 byte): This field is used to identify a remote server located on a non TCP/IP network (for bridging
Ethernet to a serial sub-network). In a typical slave application, the unit ID is ignored and just echoed back in the
response. It is recommended that a unit ID of FF be used to keep this value insignificant to a serial bridge or gateway.
ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 3 of 36

COMMUNICATION PROTOCOL MODBUS-TCP


Reading of the registers (Function Code $03)
Reads the binary contents of holding registers ( 2X references) in the slave.
Broadcast is not supported.
The Query message specified the starting register and quantity of register to be read.
QUERY:
HEADER
TCP

ADDRESS
FIELD

HEADER TCP
ADDRESS FIELD
FUNCTION CODE
START ADDRESS
No. OF REGISTERS

FUNCTION
CODE

=
=
=
=
=

START
ADDRESS

No. OF
REGISTERS

Transaction ID, Protocol ID, Length of query modbus.


device address (01...F7 HEX)
(1 byte).
Operation code (03 HEX)
(1 byte).
First register address to be read
(2 byte).
Number of registers (max 32) to be read
(4 bytes for 1 measure value).

WARNING:
It is possible to read more than one variable at the same time (max 16) only if their addresses are consecutive and the
variables on the same line cannot be divided.
The register data in the response message are packet as two bytes per register, with the binary contents right justified
within each byte.
For each register, the first byte contains the high order bits and the second contains the low order bits.
RESPONSE:
HEADER
TCP

ADDRESS
FIELD

HEADER TCP
=
ADDRESS FIELD
=
FUNCTION CODE
=
No. OF SEND BYTES =
D0, D1, .., Dn
=

FUNCTION
CODE

No. OF
BYTES

D0, D1, , Dn

Transaction ID, Protocol ID, Length of response modbus.


device address (01...F7 HEX)
(1byte).
Operation code ( 03 HEX)
(1 Byte).
Number of data bytes ( 00...?? HEX)
(1 byte).
data bytes ( 00...?? HEX)
(Nr. of register x 2 = n. byte).

See the TABLE OF ANR-LAN REGISTERS (Appendix A) and the EXAMPLE (Appendix B).

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 4 of 36

Setup of the registers (Function Code $10)


Write values into a sequence of holding registers (2X references).
WARNING: It is possible to write more than one variable at the same time only if their addresses are consecutive and
the variables on the same line cannot be divided. (max of 4 consecutive register on the same message).
QUERY:
HEADER
TCP

ADDRESS
FIELD

HEADER TCP
ADDRESS FIELD
FUNCTION CODE
START ADDRESS
No. OF REGISTER
No. OF BYTES
D0,D1,..,Dn

FUNCTION
CODE

=
=
=
=
=
=
=

START
ADDRESS

No. OF
REGISTERS

No. OF
BYTES

D0, D1, , Dn

Transaction ID, Protocol ID, Length of query modbus.


device address ( 01...F7 HEX)
(1 byte).
Operation code ( 10 HEX)
(1 byte).
First register address to be written
(2 byte).
Number of registers to be written (1 to 4,...) (2 byte).
Number of data bytes (HEX)
(1 byte).
Data bytes ( 00...? HEX)
(1 byte) (Nr. of register x 2 = n. byte).

The normal response returns the slave address, function code, starting address and quantity of register
preset.
RESPONSE:
HEADER
TCP

ADDRESS
FIELD

HEADER TCP
ADDRESS FIELD
FUNCTION CODE
START ADDRESS
No. OF REGISTER

FUNCTION
CODE

=
=
=
=
=

START
ADDRESS

No. OF
REGISTERS

Transaction ID, Protocol ID, Length of response modbus.


device address ( 01...F7 HEX)
(1 byte).
Operation code (10 HEX)
(1 byte).
First register address to be written
(2 byte).
Number of registers to be written
(2 byte).

See the TABLE OF ANR-LAN REGISTERS (Appendix A) and the EXAMPLE (Appendix B).

TABLE OF ANR REGISTERS


The following table shown all the ANR registers.
The M.U. and Type columns are referred to integer register (first column).

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 5 of 36

MEASURED VALUES (Function code $ 03)


Integer
Register
HEX
$1000
$1004
$1008
$100C
$1010
$1014
$1018
$101C
$1020
$1024
$1028
$102C
$1030
$1034
$1038
$103C
$1040
$1044
$1048
$104C
$1050
$1054
$1058
$105C
$1060
$1064
$1068
$106C
$1070
$1074
$1078
$107C
$1080
$1084
$1088
$108C
$1090
$1094
$1098
$109C
$10A0
$10A4
$10A8
$10AC
$11C0
$11C4
$11C8
$11CC
$11D0
$11D4
$11D8
$11DC
$11E0
$11E4
$11E8
$11EC
$11F0
$11F4

Word
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

Float (IEEE)
Register
Word
HEX
$2000
2
$2002
2
$2004
2
$2006
2
$2008
2
$200A
2
$200C
2
$200E
2
$2010
2
$2012
2
$2014
2
$2016
2
$2018
2
$201A
2
$201C
2
$201E
2
$2020
2
$2022
2
$2024
2
$2026
2
$2028
2
$202A
2
$202C
2
$202E
2
$2030
2
$2032
2
$2034
2
$2036
2
$2038
2
$203A
2
$203C
2
$203E
2
$2040
2
$2042
2
$2044
2
$2046
2
$2048
2
$204A
2
$204C
2
$204E
2
$2050
2
$2052
2
$2054
2
$2056
2
$2068
2
$2A3A
2
$2A3C
2
$2A40
2
$2A42
2
$2A44
2
$2A46
2
$2A48
2
$2A4A
2
$2A4C
2
$2A4E
2
$2A3E
2
$2A6A
2
$2A6C
2

Type
Description
3-PHASE SYSTEM VOLTAGE
PHASE VOLTAGE L1-N
PHASE VOLTAGE L2-N
PHASE VOLTAGE L3-N
LINE VOLTAGE L1-2
LINE VOLTAGE L2-3
LINE VOLTAGE L3-1
3-PHASE SYSTEM CURRENT
LINE CURRENT L1
LINE CURRENT L2
LINE CURRENT L3
3-PHASE SYS. POWER FACTOR
POWER FACTOR L1
POWER FACTOR L2
POWER FACTOR L3
3-PHASE SYSTEM COS
PHASE COS1
PHASE COS2
PHASE COS3
3-PHASE S. APPARENT POWER
APPARENT POWER L1
APPARENT POWER L2
APPARENT POWER L3
3-PHASE SYS. ACTIVE POWER
ACTIVE POWER L1
ACTIVE POWER L2
ACTIVE POWER L3
3-PHASE S. REACTIVE POWER
REACTIVE POWER L1
REACTIVE POWER L2
REACTIVE POWER L3
3-PHASE SYS. ACTIVE ENERGY+
3-PHASE S. REACTIVE ENERGY+
3-PHASE SYS.ACTIVE EN.
3-PHASE SYS.REACT.EN.
FREQUENCY
THD VOLTAGE L1
THD VOLTAGE L2
THD VOLTAGE L3
THD CURRENT L1
THD CURRENT L2
THD CURRENT L3
3-PHASE AVG. ACTIVE POWER
3-PHASE AVERAGE CURRENT
TEMPERATURE
NEUTRAL CURRENT
3 PHASE AVG. REACTIVE POWER
AVERAGE LINE CURRENT L1
AVERAGE LINE CURRENT L2
AVERAGE LINE CURRENT L3
MAX AVERAGE 3-PH. CURRENT
MAX AVERAGE LINE CURRENT L1
MAX AVERAGE LINE CURRENT L2
MAX AVERAGE LINE CURRENT L3
MAX AVG NEUTRAL CURRENT LN
AVERAGE NEUTRAL CURRENT LN
VOLTAGE UNBALANCE
CURRENT UNBALANCE

M.U.
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mA]
[mA]
[mA]
[mA]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[mVA]
[mVA]
[mVA]
[mVA]
[mW]
[mW]
[mW]
[mW]
[mVAR
[mVAR
[mVAR
[mVAR
Wh
[VARh]
[Wh]
[VARh]
[mHz]
[m%]
[m%]
[m%]
[m%]
[m%]
[m%]
[mW]
[mA]
[mC]
[mA]
[mVAR]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[m%]
[m%]

(Uns.) MSB=0
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Signed) MSB=1
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Unsigned)
(Unsigned)

NOTE: WHEN THE INSTRUMENT CANT MEASURE IT SEND 0000 AS VALUE.

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 6 of 36

MIN/MAX VALUES (Function code $ 03)


Integer
Register
HEX
$10B0
$10B3
$10B6
$10BA
$10BD
$10C0
$10C4
$10C7
$10CA
$10CE
$10D1
$10D4
$10D8
$10DB
$10DE
$10E2
$10E5
$10E8
$10EC
$10EF
$10F2
$10F6
$10F9
$10FC
$1100
$1103
$1106
$110A
$110D
$1110
$1114
$1117
$111A
$111E
$1121
$1124
$1128
$112B
$112E
$1132
$1135
$1138
$113C
$113F
$1142
$1146
$1149
$114C
$1150
$1153
$1156
$115A
$115D
$1160
$1164
$1167
$116A
$116E
$1171
$1174
$1178
$117B
$117E
$1182
$1185
$1188
$118C
$118F
$1192
$1196
$1199
$119C

Word
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4
3
3
4

Float (IEEE)
Register
Word
HEX
$20B0
3
$20B3
3
$20B6
2
$20B8
3
$20BB
3
$20BE
2
$20C0
3
$20C3
3
$20C6
2
$20C8
3
$20CB
3
$20CE
2
$20D0
3
$20D3
3
$20D6
2
$20D8
3
$20DB
3
$20DE
2
$20E0
3
$20E3
3
$20E6
2
$20E8
3
$20EB
3
$20EE
2
$20F0
3
$20F3
3
$20F6
2
$20F8
3
$20FB
3
$20FE
2
$2100
3
$2103
3
$2106
2
$2108
3
$210B
3
$210E
2
$2110
3
$2113
3
$2116
2
$2118
3
$211B
3
$211E
2
$2120
3
$2123
3
$2126
2
$2128
3
$212B
3
$212E
2
$2130
3
$2133
3
$2136
2
$2138
3
$213B
3
$213E
2
$2140
3
$2143
3
$2146
2
$2148
3
$214B
3
$214E
2
$2150
3
$2153
3
$2156
2
$2158
3
$215B
3
$215E
2
$2160
3
$2163
3
$2166
2
$2168
3
$216B
3
$216E
2

ANR-LAN (Modbus TCP Protocol)

Description
YY MM DD
HH MM SS
MIN 3-PHASE SYSTEM VOLTAGE
YY MM DD
HH MM SS
MAX 3-PHASE SYSTEM VOLTAGE
YY MM DD
HH MM SS
MIN 1-PHASE VOLTAGE L1-N
YY MM DD
HH MM SS
MAX 1-PHASE VOLTAGE L1-N
YY MM DD
HH MM SS
MIN 1-PHASE VOLTAGE L2-N
YY MM DD
HH MM SS
MAX 1-PHASE VOLTAGE L2-N
YY MM DD
HH MM SS
MINIMUN 1-PHASE VOLTAGE L3-N
YY MM DD
HH MM SS
MAXIMUM 1-PHASE VOLTAGE L3-N
YY MM DD
HH MM SS
MIN 3-PHASE SYSTEM CURRENT
YY MM DD
HH MM SS
MAX 3-PHASE SYSTEM CURRENT
YY MM DD
HH MM SS
MINIMUN LINE CURRENT L1
YY MM DD
HH MM SS
MAXIMUM LINE CURRENT L1
YY MM DD
HH MM SS
MINIMUN LINE CURRENT L2
YY MM DD
HH MM SS
MAXIMUM LINE CURRENT L2
YY MM DD
HH MM SS
MINIMUN LINE CURRENT L3
YY MM DD
HH MM SS
MAXIMUM LINE CURRENT L3
YY MM DD
HH MM SS
MIN.3 PHASE SYS. ACTIVE POWER
YY MM DD
HH MM SS
MAX.3 PHASE SYS.ACTIVE POWER
YY MM DD
HH MM SS
MIN.3 PHASE S.APPARENT POWER
YY MM DD
HH MM SS
MAX.3 PHASE S.APPARENT POWER
YY MM DD
HH MM SS
MIN.3 PHASE S..POWER FACTOR
YY MM DD
HH MM SS
MAX.3 PHASE S..POWER FACTOR
YY MM DD
HH MM SS
MIN.3 PHASE AVERAGE POWER
YY MM DD
HH MM SS
MAX 3 PHASE AVERAGE POWER

Instruction Manual

IM158-U v1.0

M.U.

Type

[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mV]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mA]
[-]
[-]
[mW]
[-]
[-]
[mW]
[-]
[-]
[mVA]
[-]
[-]
[mVA]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[mW]
[-]
[-]
[mW]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Signed)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

Page 7 of 36

HARMONICS VALUES (Function code $03)


Integer
Register
HEX
$1200
$1204
$1208
$120C
$1210
$1214
$1218
$121C
$1220
$1224
$1228
$122C
$1230
$1234
$1238
$123C
$1240
$1244
$1248
$124C
$1250
$1254
$1258
$125C
$1260
$1460
$1464
$1468
$146C
$1470
$1474
$1264
$1268
$126C
$1270
$1274
$1278
$127C
$1280
$1284
$1288
$128C
$1290
$1294
$1298
$129C
$12A0
$12A4
$12A8
$12AC
$12B0
$12B4
$12B8
$12BC
$12C0
$12C4
$1478
$147C
$1480
$1484
$1488
$148C

Word
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

Float (IEEE)
Register
Word
HEX
$2200
2
$2202
2
$2204
2
$2206
2
$2208
2
$220A
2
$220C
2
$220E
2
$2210
2
$2212
2
$2214
2
$2216
2
$2218
2
$221A
2
$221C
2
$221E
2
$2220
2
$2222
2
$2224
2
$2226
2
$2228
2
$222A
2
$222C
2
$222E
2
$2230
2
$2400
2
$2402
2
$2404
2
$2406
2
$2408
2
$240A
2
$2232
$2234
$2236
$2238
$223A
$223C
$223E
$2240
$2242
$2244
$2246
$2248
$224A
$224C
$224E
$2250
$2252
$2254
$2256
$2258
$225A
$225C
$225E
$2260
$2262
$240C
$240E
$2410
$2412
$2414
$2416

ANR-LAN (Modbus TCP Protocol)

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Description
ST

M.U.

Type

1 VOLTAGE HARMONIC OF THE L1 PHASE


2ND VOLTAGE HARMONIC OF THE L1 PHASE
3RD VOLTAGE HARMONIC OF THE L1 PHASE
4TH VOLTAGE HARMONIC OF THE L1 PHASE
5TH VOLTAGE HARMONIC OF THE L1 PHASE
6TH VOLTAGE HARMONIC OF THE L1 PHASE
7TH VOLTAGE HARMONIC OF THE L1 PHASE
8TH VOLTAGE HARMONIC OF THE L1 PHASE
9TH VOLTAGE HARMONIC OF THE L1 PHASE
10TH VOLTAGE HARMONIC OF THE L1 PHASE
11TH VOLTAGE HARMONIC OF THE L1 PHASE
12TH VOLTAGE HARMONIC OF THE L1 PHASE
13TH VOLTAGE HARMONIC OF THE L1 PHASE
14TH VOLTAGE HARMONIC OF THE L1 PHASE
15TH VOLTAGE HARMONIC OF THE L1 PHASE
16TH VOLTAGE HARMONIC OF THE L1 PHASE
17TH VOLTAGE HARMONIC OF THE L1 PHASE
18TH VOLTAGE HARMONIC OF THE L1 PHASE
19TH VOLTAGE HARMONIC OF THE L1 PHASE
20TH VOLTAGE HARMONIC OF THE L1 PHASE
21TH VOLTAGE HARMONIC OF THE L1 PHASE
22TH VOLTAGE HARMONIC OF THE L1 PHASE
23TH VOLTAGE HARMONIC OF THE L1 PHASE
24TH VOLTAGE HARMONIC OF THE L1 PHASE
25TH VOLTAGE HARMONIC OF THE L1 PHASE
26TH VOLTAGE HARMONIC OF THE L1 PHASE
27TH VOLTAGE HARMONIC OF THE L1 PHASE
28TH VOLTAGE HARMONIC OF THE L1 PHASE
29TH VOLTAGE HARMONIC OF THE L1 PHASE
30TH VOLTAGE HARMONIC OF THE L1 PHASE
31TH VOLTAGE HARMONIC OF THE L1 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

1ST VOLTAGE HARMONIC OF THE L2 PHASE


2ND VOLTAGE HARMONIC OF THE L2 PHASE
3RD VOLTAGE HARMONIC OF THE L2 PHASE
4TH VOLTAGE HARMONIC OF THE L2 PHASE
5TH VOLTAGE HARMONIC OF THE L2 PHASE
6TH VOLTAGE HARMONIC OF THE L2 PHASE
7TH VOLTAGE HARMONIC OF THE L2 PHASE
8TH VOLTAGE HARMONIC OF THE L2 PHASE
9TH VOLTAGE HARMONIC OF THE L2 PHASE
10TH VOLTAGE HARMONIC OF THE L2 PHASE
11TH VOLTAGE HARMONIC OF THE L2 PHASE
12TH VOLTAGE HARMONIC OF THE L2 PHASE
13TH VOLTAGE HARMONIC OF THE L2 PHASE
14TH VOLTAGE HARMONIC OF THE L2 PHASE
15TH VOLTAGE HARMONIC OF THE L2 PHASE
16TH VOLTAGE HARMONIC OF THE L2 PHASE
17TH VOLTAGE HARMONIC OF THE L2 PHASE
18TH VOLTAGE HARMONIC OF THE L2 PHASE
19TH VOLTAGE HARMONIC OF THE L2 PHASE
20TH VOLTAGE HARMONIC OF THE L2 PHASE
21TH VOLTAGE HARMONIC OF THE L2 PHASE
22TH VOLTAGE HARMONIC OF THE L2 PHASE
23TH VOLTAGE HARMONIC OF THE L2 PHASE
24TH VOLTAGE HARMONIC OF THE L2 PHASE
25TH VOLTAGE HARMONIC OF THE L2 PHASE
26TH VOLTAGE HARMONIC OF THE L2 PHASE
27TH VOLTAGE HARMONIC OF THE L2 PHASE
28TH VOLTAGE HARMONIC OF THE L2 PHASE
29TH VOLTAGE HARMONIC OF THE L2 PHASE
30TH VOLTAGE HARMONIC OF THE L2 PHASE
31TH VOLTAGE HARMONIC OF THE L2 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

Instruction Manual

IM158-U v1.0

Page 8 of 36

$12C8
$12CC
$12D0
$12D4
$12D8
$12DC
$12E0
$12E4
$12E8
$12EC
$12F0
$12F4
$12F8
$12FC
$1300
$1304
$1308
$130C
$1310
$1314
$1318
$131C
$1320
$1324
$1328
$1490
$1494
$1498
$149C
$14A0
$14A4

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$2264
$2266
$2268
$226A
$226C
$226E
$2270
$2272
$2274
$2276
$2278
$227A
$227C
$227E
$2280
$2282
$2284
$2286
$2288
$228A
$228C
$228E
$2290
$2292
$2294
$2418
$241A
$241C
$241E
$2420
$2422

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST VOLTAGE HARMONIC OF THE L3 PHASE


2ND VOLTAGE HARMONIC OF THE L3 PHASE
3RD VOLTAGE HARMONIC OF THE L3 PHASE
4TH VOLTAGE HARMONIC OF THE L3 PHASE
5TH VOLTAGE HARMONIC OF THE L3 PHASE
6TH VOLTAGE HARMONIC OF THE L3 PHASE
7TH VOLTAGE HARMONIC OF THE L3 PHASE
8TH VOLTAGE HARMONIC OF THE L3 PHASE
9TH VOLTAGE HARMONIC OF THE L3 PHASE
10TH VOLTAGE HARMONIC OF THE L3 PHASE
11TH VOLTAGE HARMONIC OF THE L3 PHASE
12TH VOLTAGE HARMONIC OF THE L3 PHASE
13TH VOLTAGE HARMONIC OF THE L3 PHASE
14TH VOLTAGE HARMONIC OF THE L3 PHASE
15TH VOLTAGE HARMONIC OF THE L3 PHASE
16TH VOLTAGE HARMONIC OF THE L3 PHASE
17TH VOLTAGE HARMONIC OF THE L3 PHASE
18TH VOLTAGE HARMONIC OF THE L3 PHASE
19TH VOLTAGE HARMONIC OF THE L3 PHASE
20TH VOLTAGE HARMONIC OF THE L3 PHASE
21TH VOLTAGE HARMONIC OF THE L3 PHASE
22TH VOLTAGE HARMONIC OF THE L3 PHASE
23TH VOLTAGE HARMONIC OF THE L3 PHASE
24TH VOLTAGE HARMONIC OF THE L3 PHASE
25TH VOLTAGE HARMONIC OF THE L3 PHASE
26TH VOLTAGE HARMONIC OF THE L3 PHASE
27TH VOLTAGE HARMONIC OF THE L3 PHASE
28TH VOLTAGE HARMONIC OF THE L3 PHASE
29TH VOLTAGE HARMONIC OF THE L3 PHASE
30TH VOLTAGE HARMONIC OF THE L3 PHASE
31TH VOLTAGE HARMONIC OF THE L3 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$132C
$1330
$1334
$1338
$133C
$1340
$1344
$1348
$134C
$1350
$1354
$1358
$135C
$1360
$1364
$1368
$136C
$1370
$1374
$1378
$137C
$1380
$1384
$1388
$138C
$14A8
$14AC
$14B0
$14B4
$14B8
$14BC

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$2296
$2298
$229A
$229C
$229E
$22A0
$22A2
$22A4
$22A6
$22A8
$22AA
$22AC
$22AE
$22B0
$22B2
$22B4
$22B6
$22B8
$22BA
$22BC
$22BE
$22C0
$22C2
$22C4
$22C6
$2424
$2426
$2428
$242A
$242C
$242E

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST CURRENT HARMONIC OF THE L1 PHASE


2ND CURRENT HARMONIC OF THE L1 PHASE
3RD CURRENT HARMONIC OF THE L1 PHASE
4TH CURRENT HARMONIC OF THE L1 PHASE
5TH CURRENT HARMONIC OF THE L1 PHASE
6TH CURRENT HARMONIC OF THE L1 PHASE
7TH CURRENT HARMONIC OF THE L1 PHASE
8TH CURRENT HARMONIC OF THE L1 PHASE
9TH CURRENT HARMONIC OF THE L1 PHASE
10TH CURRENT HARMONIC OF THE L1 PHASE
11TH CURRENT HARMONIC OF THE L1 PHASE
12TH CURRENT HARMONIC OF THE L1 PHASE
13TH CURRENT HARMONIC OF THE L1 PHASE
14TH CURRENT HARMONIC OF THE L1 PHASE
15TH CURRENT HARMONIC OF THE L1 PHASE
16TH CURRENT HARMONIC OF THE L1 PHASE
17TH CURRENT HARMONIC OF THE L1 PHASE
18TH CURRENT HARMONIC OF THE L1 PHASE
19TH CURRENT HARMONIC OF THE L1 PHASE
20TH CURRENT HARMONIC OF THE L1 PHASE
21TH CURRENT HARMONIC OF THE L1 PHASE
22TH CURRENT HARMONIC OF THE L1 PHASE
23TH CURRENT HARMONIC OF THE L1 PHASE
24TH CURRENT HARMONIC OF THE L1 PHASE
25TH CURRENT HARMONIC OF THE L1 PHASE
26TH CURRENT HARMONIC OF THE L1 PHASE
27TH CURRENT HARMONIC OF THE L1 PHASE
28TH CURRENT HARMONIC OF THE L1 PHASE
29TH CURRENT HARMONIC OF THE L1 PHASE
30TH CURRENT HARMONIC OF THE L1 PHASE
31TH CURRENT HARMONIC OF THE L1 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 9 of 36

$1390
$1394
$1398
$139C
$13A0
$13A4
$13A8
$13AC
$13B0
$13B4
$13B8
$13BC
$13C0
$13C4
$13C8
$13CC
$13D0
$13D4
$13D8
$13DC
$13E0
$13E4
$13E8
$13EC
$13F0
$14C0
$14C4
$14C8
$14CC
$14D0
$14D4

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$22C8
$22CA
$22CC
$22CE
$22D0
$22D2
$22D4
$22D6
$22D8
$22DA
$22DC
$22DE
$22E0
$22E2
$22E4
$22E6
$22E8
$22EA
$22EC
$22EE
$22F0
$22F2
$22F4
$22F6
$22F8
$2430
$2432
$2434
$2436
$2438
$243A

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST CURRENT HARMONIC OF THE L2 PHASE


2ND CURRENT HARMONIC OF THE L2 PHASE
3RD CURRENT HARMONIC OF THE L2 PHASE
4TH CURRENT HARMONIC OF THE L2 PHASE
5TH CURRENT HARMONIC OF THE L2 PHASE
6TH CURRENT HARMONIC OF THE L2 PHASE
7TH CURRENT HARMONIC OF THE L2 PHASE
8TH CURRENT HARMONIC OF THE L2 PHASE
9TH CURRENT HARMONIC OF THE L2 PHASE
10TH CURRENT HARMONIC OF THE L2 PHASE
11TH CURRENT HARMONIC OF THE L2 PHASE
12TH CURRENT HARMONIC OF THE L2 PHASE
13TH CURRENT HARMONIC OF THE L2 PHASE
14TH CURRENT HARMONIC OF THE L2 PHASE
15TH CURRENT HARMONIC OF THE L2 PHASE
16TH CURRENT HARMONIC OF THE L2 PHASE
17TH CURRENT HARMONIC OF THE L2 PHASE
18TH CURRENT HARMONIC OF THE L2 PHASE
19TH CURRENT HARMONIC OF THE L2 PHASE
20TH CURRENT HARMONIC OF THE L2 PHASE
21TH CURRENT HARMONIC OF THE L2 PHASE
22TH CURRENT HARMONIC OF THE L2 PHASE
23TH CURRENT HARMONIC OF THE L2 PHASE
24TH CURRENT HARMONIC OF THE L2 PHASE
25TH CURRENT HARMONIC OF THE L2 PHASE
26TH CURRENT HARMONIC OF THE L2 PHASE
27TH CURRENT HARMONIC OF THE L2 PHASE
28TH CURRENT HARMONIC OF THE L2 PHASE
29TH CURRENT HARMONIC OF THE L2 PHASE
30TH CURRENT HARMONIC OF THE L2 PHASE
31TH CURRENT HARMONIC OF THE L2 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$13F4
$13F8
$13FC
$13F0
$1404
$1408
$140C
$1410
$1414
$1418
$141C
$1420
$1424
$1428
$142C
$1430
$1434
$1438
$143C
$1440
$1444
$1448
$144C
$1450
$1454
$14D8
$14DC
$14E0
$14E4
$14E8
$14EC

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$22FA
$22FC
$22FE
$2300
$2302
$2304
$2306
$2308
$230A
$230C
$230E
$2310
$2312
$2314
$2316
$2318
$231A
$231C
$231E
$2320
$2322
$2324
$2326
$2328
$232A
$243C
$243E
$2440
$2442
$2444
$2446

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST CURRENT HARMONIC OF THE L3 PHASE


2ND CURRENT HARMONIC OF THE L3 PHASE
3RD CURRENT HARMONIC OF THE L3 PHASE
4TH CURRENT HARMONIC OF THE L3 PHASE
5TH CURRENT HARMONIC OF THE L3 PHASE
6TH CURRENT HARMONIC OF THE L3 PHASE
7TH CURRENT HARMONIC OF THE L3 PHASE
8TH CURRENT HARMONIC OF THE L3 PHASE
9TH CURRENT HARMONIC OF THE L3 PHASE
10TH CURRENT HARMONIC OF THE L3 PHASE
11TH CURRENT HARMONIC OF THE L3 PHASE
12TH CURRENT HARMONIC OF THE L3 PHASE
13TH CURRENT HARMONIC OF THE L3 PHASE
14TH CURRENT HARMONIC OF THE L3 PHASE
15TH CURRENT HARMONIC OF THE L3 PHASE
16TH CURRENT HARMONIC OF THE L3 PHASE
17TH CURRENT HARMONIC OF THE L3 PHASE
18TH CURRENT HARMONIC OF THE L3 PHASE
19TH CURRENT HARMONIC OF THE L3 PHASE
20TH CURRENT HARMONIC OF THE L3 PHASE
21TH CURRENT HARMONIC OF THE L3 PHASE
22TH CURRENT HARMONIC OF THE L3 PHASE
23TH CURRENT HARMONIC OF THE L3 PHASE
24TH CURRENT HARMONIC OF THE L3 PHASE
25TH CURRENT HARMONIC OF THE L3 PHASE
26TH CURRENT HARMONIC OF THE L3 PHASE
27TH CURRENT HARMONIC OF THE L3 PHASE
28TH CURRENT HARMONIC OF THE L3 PHASE
29TH CURRENT HARMONIC OF THE L3 PHASE
30TH CURRENT HARMONIC OF THE L3 PHASE
31TH CURRENT HARMONIC OF THE L3 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 10 of 36

TIME BAND ENERGY COUNTER (FUNCTION CODE $03)


Integer
Register
Word
HEX
$1500
4
$1504
4
$1508
4
$150C
4
$1510
4
$1514
4
$1518
4
$151C
4
$1520
4
$1524
4
$1528
4
$152C
4
$15C0
4
$15C4
4
$15C8
4
$15CC
4

Float (IEEE)
Register
Word
HEX
$2500
2
$2502
2
$2504
2
$2506
2
$2508
2
$250A
2
$250C
2
$250E
2
$2510
2
$2512
2
$2514
2
$2516
2
$2560
2
$2562
2
$2564
2
$2566
2

Acquired active energy previous month band 1


Inductive reactive energy previous month band 1
Transferred active energy previous month band 1
Capacitive reactive energy previous month band 1
Acquired active energy previous month band 2
Inductive reactive energy previous month band 2
Transferred active energy previous month band 2
Capacitive reactive energy previous month band 2
Acquired active energy previous month band 3
Inductive reactive energy previous month band 3
Transferred active energy previous month band 3
Capacitive reactive energy previous month band 3
Acquired active energy previous month band 4
Inductive reactive energy previous month band 4
Transferred active energy previous month band 4
Capacitive reactive energy previous month band 4

[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$1530
$1534
$1538
$153C
$1540
$1544
$1548
$154C
$1550
$1554
$1558
$155C
$15D0
$15D4
$15D8
$15DC

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$2518
$251A
$251C
$251E
$2520
$2522
$2524
$2526
$2528
$252A
$252C
$252E
$2568
$256A
$256C
$256E

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Acquired active energy current month band 1


Inductive reactive energy current month band 1
Transferred active energy current month band 1
Capacitive reactive energy current month band 1
Acquired active energy current month band 2
Inductive reactive energy current month band 2
Transferred active energy current month band 2
Capacitive reactive energy current month band 2
Acquired active energy current month band 3
Inductive reactive energy current month band 3
Transferred active energy current month band 3
Capacitive reactive energy current month band 3
Acquired active energy current month band 4
Inductive reactive energy current month band 4
Transferred active energy current month band 4
Capacitive reactive energy current month band 4

[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$1560
$1564
$1568
$156C
$1570
$1574
$1578
$157C
$1580
$1584
$1588
$158C
$15E0
$15E4
$15E8
$15EC

4
4
4
4
4
4
4
4
4
4
4
4
4

$2530
$2532
$2534
$2536
$2538
$253A
$253C
$253E
$2540
$2542
$2544
$2546
$2570
$2572
$2574
$2576

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Acquired active energy previous day band 1


Inductive reactive energy previous day band 1
Transferred active energy previous day band 1
Capacitive reactive energy previous day band 1
Acquired active energy previous day band 2
Inductive reactive energy previous day band 2
Transferred active energy previous day band 2
Capacitive reactive energy previous day band 2
Acquired active energy previous day band 3
Inductive reactive energy previous day band 3
Transferred active energy previous day band 3
Capacitive reactive energy previous day band 3
Acquired active energy previous day band 4
Inductive reactive energy previous day band 4
Transferred active energy previous day band 4
Capacitive reactive energy previous day band 4

[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$1590
$1594
$1598
$159C
$15A0
$15A4
$15A8
$15AC
$15B0
$15B4
$15B8
$15BC
$15F0
$15F4
$15F8
$15FC

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$2548
$254A
$254C
$254E
$2550
$2552
$2554
$2556
$2558
$255A
$255C
$255E
$2578
$257A
$257C
$257E

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Acquired active energy current day band 1


Inductive reactive energy current day band 1
Transferred active energy current day band 1
Capacitive reactive energy current day band 1
Acquired active energy current day band 2
Inductive reactive energy current day band 2
Transferred active energy current day band 2
Capacitive reactive energy current day band 2
Acquired active energy current day band 3
Inductive reactive energy current day band 3
Transferred active energy current day band 3
Capacitive reactive energy current day band 3
Acquired active energy current day band 4
Inductive reactive energy current day band 4
Transferred active energy current day band 4
Capacitive reactive energy current day band 4

[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$1F80
$1F84
$1F88
$1F8C
$1F90
$1F94
$1F98
$1F9C
$1FA0
$1FA4
$1FA8
$1FAC
$1FB0
$1FB4
$1FB8
$1FBC

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$2FA0
$2FA2
$2FA4
$2FA6
$2FA8
$2FAA
$2FAC
$2FAE
$2FB0
$2FB2
$2FB4
$2FB6
$2FB8
$2FBA
$2FBC
$2FBE

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Acquired active energy previous year band 1


Inductive reactive energy previous year band 1
Transferred active energy previous year band 1
Capacitive reactive energy previous year band 1
Acquired active energy previous year band 2
Inductive reactive energy previous year band 2
Transferred active energy previous year band 2
Capacitive reactive energy previous year band 2
Acquired active energy previous year band 3
Inductive reactive energy previous year band 3
Transferred active energy previous year band 3
Capacitive reactive energy previous year band 3
Acquired active energy previous year band 4
Inductive reactive energy previous year band 4
Transferred active energy previous year band 4
Capacitive reactive energy previous year band 4

[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

4
4

ANR-LAN (Modbus TCP Protocol)

Description

Instruction Manual

M.U.

IM158-U v1.0

Type

Page 11 of 36

$1FC0
$1FC4
$1FC8
$1FCC
$1FD0
$1FD4
$1FD8
$1FDC
$1FE0
$1FE4
$1FE8
$1FEC
$1FF0
$1FF4
$1FF8
$1FFC

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$2FC0
$2FC2
$2FC4
$2FC6
$2FC8
$2FCA
$2FCC
$2FCE
$2FD0
$2FD2
$2FD4
$2FD6
$2FD8
$2FDA
$2FDC
$2FDE

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Acquired active energy current year band 1


Inductive reactive energy current year band 1
Transferred active energy current year band 1
Capacitive reactive energy current year band 1
Acquired active energy current year band 2
Inductive reactive energy current year band 2
Transferred active energy current year band 2
Capacitive reactive energy current year band 2
Acquired active energy current year band 3
Inductive reactive energy current year band 3
Transferred active energy current year band 3
Capacitive reactive energy current year band 3
Acquired active energy current year band 4
Inductive reactive energy current year band 4
Transferred active energy current year band 4
Capacitive reactive energy current year band 4

[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]
[Wh]
[VArh]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

TOTAL TIME BAND ENERGY COUNTER- Double format (Function code $03)
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.

$2A60
$2A64
$2A68
$2A6C
$2A70
$2A74
$2A78
$2A7C
$2A80
$2A84
$2A88
$2A8C
$2A90
$2A94
$2A98
$2A9C

ANR-LAN (Modbus TCP Protocol)

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

Total Acquired active energy band 1


Total Transferred active energy band 1
Total Inductive reactive energy band 1
Total Capacitive reactive energy band 1
Total Acquired active energy band 2
Total Transferred active energy band 2
Total Inductive reactive energy band 2
Total Capacitive reactive energy band 2
Total Acquired active energy band 3
Total Transferred active energy band 3
Total Inductive reactive energy band 3
Total Capacitive reactive energy band 3
Total Acquired active energy band 4
Total Transferred active energy band 4
Total Inductive reactive energy band 4
Total Capacitive reactive energy band 4

Instruction Manual

IM158-U v1.0

Page 12 of 36

VALUES STORED IN RAM (Function.code $03)


Integer
Register
Word
HEX
$1600
1
$1601
3
$1604
1
$1605
4
$1609
4

Float (IEEE)
Register
Word
HEX
$2600
1
$2601
3
$2604
1
$2605
2
$2607
2

Description
LOGICAL NUMBER
YYMMDD
nn= order no. of 15energy value stored in a day
ACTIVE 15
REACTIVE 15

M.U.

Type

[-]
[-]
[-]
[mWh]
[mVArh]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

MIN/MAX VALUES STORED IN RAM (Function.code $03)


HEADER
Integer
Register
Word
HEX
$1B30
3
$1B33
3
$1B36
1

Float (IEEE)
Register
Word
HEX
$2B30
3
$2B33
3
$2B36
1

Description
YY MM DD
HH MM SS
time of mem

U.M.

Type

[-]
[-]
[min]

(Unsigned)
(Unsigned)
(Unsigned)

U.M.

Type

[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mW]
[mW]
[mW]
[mW]
[-]
[-]
[mW]
[mW]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)

st

1 DATA BLOCK
Integer
Register
Word
HEX
$1B47
4
$1B4B
4
$1B4F
4
$1B53
4
$1B57
4
$1B5B
4
$1B5F
4
$1B63
4
$1B67
4
$1B6B
4
$1B6F
4
$1B73
4
$1B77
4
$1B7B
4
$1B7F
4
$1B83
4
$1B87
4
$1B8B
4
$1B8F
4
$1B93
4
$1B97
4
$1B9B
4
$1B9F
4
$1BA3
4
$1BA7
4

ND

Float (IEEE)
Register
Word
HEX
$2B47
4
$2B4B
2
$2B4D
2
$2B4F
2
$2B51
2
$2B53
2
$2B55
2
$2B57
2
$2B59
2
$2B5B
2
$2B5D
2
$2B5F
2
$2B61
2
$2B63
2
$2B65
2
$2B67
2
$2B69
2
$2B6B
2
$2B6D
2
$2B6F
2
$2B71
2
$2B73
2
$2B75
2
$2B77
2
$2B79
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
MIN 3-PHASE SYSTEM VOLTAGE
MAX 3-PHASE SYSTEM VOLTAGE
MIN PHASE VOLTAGE L1-N
MAX PHASE VOLTAGE L1-N
MIN PHASE VOLTAGE L2-N
MAX PHASE VOLTAGE L2-N
MIN PHASE VOLTAGE L3-N
MIN PHASE VOLTAGE L3-N
MIN 3-PHASE SYSTEM CURRENT
MAX 3-PHASE SYSTEM CURRENT
MIN LINE CURRENT L1
MAX LINE CURRENT L1
MIN LINE CURRENT L2
MAX LINE CURRENT L2
MIN LINE CURRENT L3
MAX LINE CURRENT L3
MIN 3 PHASE SYSTEM ACTIVE POWER
MAX 3 PHASE SYSTEM ACTIVE POWER
MIN 3 PHASE SYSTEM REACTIVE POWER
MAX 3 PHASE SYSTEM REACTIVE POWER
MIN 3 PHASE SYSTEM POWER FACTOR
MAX 3 PHASE SYSTEM POWER FACTOR
MIN 3 PHASE SYSTEM AVERAGE POWER
MAX 3 PHASE SYSTEM AVERAGE POWER

DATA BLOCK

Integer
Register
Word
HEX
$1BAB
4
$1BAF
4
$1BB3
4
$1BB7
4
$1BBB
4
$1BBF
4
$1BC3
4
$1BC7
4
$1BCB
4
$1BCF
4
$1BD3
4
$1BD7
4
$1BDB
4
$1BDF
4
$1BE3
4
$1BE7
4
$1BEB
4
$1BEF
4
$1BF3
4
$1BF7
4
$1BFB
4
$1BFF
4
$1C03
4
$1C07
4
$1C0B
4

Float (IEEE)
Register
Word
HEX
$2B7B
4
$2B7F
2
$2B81
2
$2B83
2
$2B85
2
$2B87
2
$2B89
2
$2B8B
2
$2B8D
2
$2B8F
2
$2B91
2
$2B93
2
$2B95
2
$2B97
2
$2B99
2
$2B9B
2
$2B9D
2
$2B9F
2
$2BA1
2
$2BA3
2
$2BA5
2
$2BA7
2
$2BA9
2
$2BAB
2
$2BAD
2

ANR-LAN (Modbus TCP Protocol)

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
MIN 3 PHASE SYSTEM VOLTAGE
MAX 3 PHASE SYSTEM VOLTAGE
MIN PHASE VOLTAGE L1-N
MAX PHASE VOLTAGE L1-N
MIN PHASE VOLTAGE L2-N
MAX PHASE VOLTAGE L2-N
MIN PHASE VOLTAGE L3-N
MAX PHASE VOLTAGE L3-N
MIN 3-PHASE SYSTEM CURRENT
MAX 3-PHASE SYSTEM CURRENT
MIN LINE CURRENT L1
MAX LINE CURRENT L1
MIN LINE CURRENT L2
MAX LINE CURRENT L2
MIN LINE CURRENT L3
MAX LINE CURRENT L3
MIN 3-PHASE SYSTEM ACTIVE POWER
MAX 3-PHASE SYSTEM ACTIVE POWER
MIN 3-PHASE SYSTEM REACTIVE POWER
MAX 3-PHASE SYSTEM REACTIVE POWER
MIN 3-PHASE SYSTEM POWER FACTOR
MAX 3-PHASE SYSTEM POWER FACTOR
MIN 3-PHASE SYSTEM AVERAGE POWER
MAX 3-PHASE SYSTEM AVERAGE POWER

Instruction Manual

IM158-U v1.0

U.M.

Type

[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mA]
[mW]
[mW]
[mW]
[mW]
[-]
[-]
[mW]
[mW]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)

Page 13 of 36

RD

TH

3 .......10 DATA BLOCK


RD
(3 DATA BLOCK)
Integer
Register
HEX
$1C0F

$1C6F

(4

TH

TH

TH

TH

TH

TH

Word
4

Float (IEEE)
Register
Word
HEX
$2BE3
4

$2C15
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

U.M.

.
.
[mW]

Type

..............
..............
(Signed)

Word
4

Float (IEEE)
Register
Word
HEX
$2C17
4

$2C49
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

U.M.

.
.
[mW]

Type

..............
..............
(Signed)

Word
4

Float (IEEE)
Register
Word
HEX
$2C4B
4

$2C7D
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

U.M.

.
.
[mW]

Type

..............
..............
(Signed)

Word
4

Float (IEEE)
Register
Word
HEX
$2C7F
4

$2CB1
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

U.M.

.
.
[mW]

Type

..............
..............
(Signed)

Word
4

Float (IEEE)
Register
Word
HEX
$2CB3
4

$2CE5
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

U.M.

.
.
[mW]

Type

..............
..............
(Signed)

DATA BLOCK)

Integer
Register
HEX
$1E67

$1EC7

(10

..............
..............
(Signed)

DATA BLOCK)

Integer
Register
HEX
$1E03

$1E63

(9

.
.
[mW]

DATA BLOCK)

Integer
Register
HEX
$1D9F

$1DFF

(8

Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)


...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

Type

DATA BLOCK)

Integer
Register
HEX
$1D3B

$1D9B

(7

U.M.

DATA BLOCK)

Integer
Register
HEX
$1CD7

$1D37

(6

Description

DATA BLOCK)

Integer
Register
HEX
$1C73

$1CD3

(5

Word

Float (IEEE)
Register
Word
HEX
$2BAF
4

$2BE1
2

TH

Word
4

Float (IEEE)
Register
Word
HEX
$2CE7
4

$2D19
2

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

U.M.

.
.
[mW]

Type

..............
..............
(Signed)

DATA BLOCK)

Integer
Register
HEX
$1ECB

$1F2B

Word
4

Float (IEEE)
Register
Word
HEX
$2D1B
4

$2D4D
2

ANR-LAN (Modbus TCP Protocol)

Description
Block num.(2 word) + $0 (1 word) + Block full of 0=NO/1=Yes (1 word)
...
...
MAX 3-PHASE SYSTEM AVERAGE POWER

Instruction Manual

IM158-U v1.0

U.M.

.
.
[mW]

Page 14 of 36

Type

..............
..............
(Signed)

HARMONICS VALUES STORED IN RAM (Function code $03)


Integer
Register
HEX
$1660
$1661
$1664
$1665
$1669
$166D
$1671
$1675
$1679
$167D
$1681
$1685
$1689
$168D
$1691
$1695
$1699
$169D
$16A1
$16A5
$16A9
$16AD
$16B1
$16B5
$16B9
$16BD
$16C1
$16C5
$1900
$1904
$1908
$190C
$1910
$1914
$16C9
$16CD
$16D1
$16D5
$16D9
$16DD
$16E1
$16E5
$16E9
$16ED
$16F1
$16F5
$16F9
$16FD
$1701
$1705
$1709
$170D
$1711
$1715
$1719
$171D
$1721
$1725
$1729
$1918
$191C
$1920
$1924
$1928
$192C

Word
1
3
1
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

Float (IEEE)
Register
Word
HEX
$2660
1
$2661
3
$2664
1
$2665
2
$2667
2
$2669
2
$266B
2
$266D
2
$266F
2
$2671
2
$2673
2
$2675
2
$2677
2
$2679
2
$267B
2
$267D
2
$267F
2
$2681
2
$2683
2
$2685
2
$2687
2
$2689
2
$268B
2
$268D
2
$268F
2
$2691
2
$2693
2
$2695
2
$2800
2
$2802
2
$2804
2
$2806
2
$2808
2
$280A
2
$2697
$2699
$269B
$269D
$269F
$26A1
$26A3
$26A5
$26A7
$26A9
$26AB
$26AD
$26AF
$26B1
$26B3
$26B5
$26B7
$26B9
$26BB
$26BD
$26BF
$26C1
$26C3
$26C5
$26C7
$280C
$280E
$2810
$2812
$2814
$2816

ANR-LAN (Modbus TCP Protocol)

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

Description

M.U.

Type

LOGICAL NUMBER
YY MM DD
nn=order number of 15 in a day
1ST VOLTAGE HARMONIC OF THE L1 PHASE
2ND VOLTAGE HARMONIC OF THE L1 PHASE
3RD VOLTAGE HARMONIC OF THE L1 PHASE
4TH VOLTAGE HARMONIC OF THE L1 PHASE
5TH VOLTAGE HARMONIC OF THE L1 PHASE
6TH VOLTAGE HARMONIC OF THE L1 PHASE
7TH VOLTAGE HARMONIC OF THE L1 PHASE
8TH VOLTAGE HARMONIC OF THE L1 PHASE
9TH VOLTAGE HARMONIC OF THE L1 PHASE
10TH VOLTAGE HARMONIC OF THE L1 PHASE
11TH VOLTAGE HARMONIC OF THE L1 PHASE
12TH VOLTAGE HARMONIC OF THE L1 PHASE
13TH VOLTAGE HARMONIC OF THE L1 PHASE
14TH VOLTAGE HARMONIC OF THE L1 PHASE
15TH VOLTAGE HARMONIC OF THE L1 PHASE
16TH VOLTAGE HARMONIC OF THE L1 PHASE
17TH VOLTAGE HARMONIC OF THE L1 PHASE
18TH VOLTAGE HARMONIC OF THE L1 PHASE
19TH VOLTAGE HARMONIC OF THE L1 PHASE
20TH VOLTAGE HARMONIC OF THE L1 PHASE
21TH VOLTAGE HARMONIC OF THE L1 PHASE
22TH VOLTAGE HARMONIC OF THE L1 PHASE
23TH VOLTAGE HARMONIC OF THE L1 PHASE
24TH VOLTAGE HARMONIC OF THE L1 PHASE
25TH VOLTAGE HARMONIC OF THE L1 PHASE
26TH VOLTAGE HARMONIC OF THE L1 PHASE
27TH VOLTAGE HARMONIC OF THE L1 PHASE
28TH VOLTAGE HARMONIC OF THE L1 PHASE
29TH VOLTAGE HARMONIC OF THE L1 PHASE
30TH VOLTAGE HARMONIC OF THE L1 PHASE
31TH VOLTAGE HARMONIC OF THE L1 PHASE

[-]
[-]
[-]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

1st VOLTAGE HARMONIC OF THE L2 PHASE


2ND VOLTAGE HARMONIC OF THE L2 PHASE
3RD VOLTAGE HARMONIC OF THE L2 PHASE
4TH VOLTAGE HARMONIC OF THE L2 PHASE
5TH VOLTAGE HARMONIC OF THE L2 PHASE
6TH VOLTAGE HARMONIC OF THE L2 PHASE
7TH VOLTAGE HARMONIC OF THE L2 PHASE
8TH VOLTAGE HARMONIC OF THE L2 PHASE
9TH VOLTAGE HARMONIC OF THE L2 PHASE
10TH VOLTAGE HARMONIC OF THE L2 PHASE
11TH VOLTAGE HARMONIC OF THE L2 PHASE
12TH VOLTAGE HARMONIC OF THE L2 PHASE
13TH VOLTAGE HARMONIC OF THE L2 PHASE
14TH VOLTAGE HARMONIC OF THE L2 PHASE
15TH VOLTAGE HARMONIC OF THE L2 PHASE
16TH VOLTAGE HARMONIC OF THE L2 PHASE
17TH VOLTAGE HARMONIC OF THE L2 PHASE
18TH VOLTAGE HARMONIC OF THE L2 PHASE
19TH VOLTAGE HARMONIC OF THE L2 PHASE
20TH VOLTAGE HARMONIC OF THE L2 PHASE
21TH VOLTAGE HARMONIC OF THE L2 PHASE
22TH VOLTAGE HARMONIC OF THE L2 PHASE
23TH VOLTAGE HARMONIC OF THE L2 PHASE
24TH VOLTAGE HARMONIC OF THE L2 PHASE
25TH VOLTAGE HARMONIC OF THE L2 PHASE
26TH VOLTAGE HARMONIC OF THE L2 PHASE
27TH VOLTAGE HARMONIC OF THE L2 PHASE
28TH VOLTAGE HARMONIC OF THE L2 PHASE
29TH VOLTAGE HARMONIC OF THE L2 PHASE
30TH VOLTAGE HARMONIC OF THE L2 PHASE
31TH VOLTAGE HARMONIC OF THE L2 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

Instruction Manual

IM158-U v1.0

Page 15 of 36

$172D
$1731
$1735
$1739
$173D
$1741
$1745
$1749
$174D
$1751
$1755
$1759
$175D
$1761
$1765
$1769
$176D
$1771
$1775
$1779
$177D
$1781
$1785
$1789
$178D
$1930
$1934
$1938
$193C
$1940
$1944

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$26C9
$26CB
$26CD
$26CF
$26D1
$26D3
$26D5
$26D7
$26D9
$26DB
$26DD
$26DF
$26E1
$26E3
$26E5
$26E7
$26E9
$26EB
$26ED
$26EF
$26F1
$26F3
$26F5
$26F7
$26F9
$2818
$281A
$281C
$281E
$2820
$2822

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST VOLTAGE HARMONIC OF THE L3 PHASE


2ND VOLTAGE HARMONIC OF THE L3 PHASE
3RD VOLTAGE HARMONIC OF THE L3 PHASE
4TH VOLTAGE HARMONIC OF THE L3 PHASE
5TH VOLTAGE HARMONIC OF THE L3 PHASE
6TH VOLTAGE HARMONIC OF THE L3 PHASE
7TH VOLTAGE HARMONIC OF THE L3 PHASE
8TH VOLTAGE HARMONIC OF THE L3 PHASE
9TH VOLTAGE HARMONIC OF THE L3 PHASE
10TH VOLTAGE HARMONIC OF THE L3 PHASE
11TH VOLTAGE HARMONIC OF THE L3 PHASE
12TH VOLTAGE HARMONIC OF THE L3 PHASE
13TH VOLTAGE HARMONIC OF THE L3 PHASE
14TH VOLTAGE HARMONIC OF THE L3 PHASE
15TH VOLTAGE HARMONIC OF THE L3 PHASE
16TH VOLTAGE HARMONIC OF THE L3 PHASE
17TH VOLTAGE HARMONIC OF THE L3 PHASE
18TH VOLTAGE HARMONIC OF THE L3 PHASE
19TH VOLTAGE HARMONIC OF THE L3 PHASE
20TH VOLTAGE HARMONIC OF THE L3 PHASE
21TH VOLTAGE HARMONIC OF THE L3 PHASE
22TH VOLTAGE HARMONIC OF THE L3 PHASE
23TH VOLTAGE HARMONIC OF THE L3 PHASE
24TH VOLTAGE HARMONIC OF THE L3 PHASE
25TH VOLTAGE HARMONIC OF THE L3 PHASE
26TH OLTAGE HARMONIC OF THE L3 PHASE
27TH VOLTAGE HARMONIC OF THE L3 PHASE
28TH OLTAGE HARMONIC OF THE L3 PHASE
29TH OLTAGE HARMONIC OF THE L3 PHASE
30TH VOLTAGE HARMONIC OF THE L3 PHASE
31TH VOLTAGE HARMONIC OF THE L3 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$1791
$1795
$1799
$179D
$17A1
$17A5
$17A9
$17AD
$17B1
$17B5
$17B9
$17BD
$17C1
$17C5
$17C9
$17CD
$17D1
$17D5
$17D9
$17DD
$17E1
$17E5
$17E9
$17ED
$17F1
$1948
$194C
$1950
$1954
$1958
$195C

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$26FB
$26FD
$26FF
$2701
$2703
$2705
$2707
$2709
$270B
$270D
$270F
$2711
$2713
$2715
$2717
$2719
$271B
$271D
$271F
$2721
$2723
$2725
$2727
$2729
$272B
$2824
$2826
$2828
$282A
$282C
$282E

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST CURRENT HARMONIC OF THE L1 PHASE


2ND CURRENT HARMONIC OF THE L1 PHASE
3RD CURRENT HARMONIC OF THE L1 PHASE
4TH CURRENT HARMONIC OF THE L1 PHASE
5TH CURRENT HARMONIC OF THE L1 PHASE
6TH CURRENT HARMONIC OF THE L1 PHASE
7TH CURRENT HARMONIC OF THE L1 PHASE
8TH CURRENT HARMONIC OF THE L1 PHASE
9TH CURRENT HARMONIC OF THE L1 PHASE
10TH CURRENT HARMONIC OF THE L1 PHASE
11TH CURRENT HARMONIC OF THE L1 PHASE
12TH CURRENT HARMONIC OF THE L1 PHASE
13TH CURRENT HARMONIC OF THE L1 PHASE
14TH CURRENT HARMONIC OF THE L1 PHASE
15TH CURRENT HARMONIC OF THE L1 PHASE
16TH CURRENT HARMONIC OF THE L1 PHASE
17TH CURRENT HARMONIC OF THE L1 PHASE
18TH CURRENT HARMONIC OF THE L1 PHASE
19TH CURRENT HARMONIC OF THE L1 PHASE
20TH CURRENT HARMONIC OF THE L1 PHASE
21TH CURRENT HARMONIC OF THE L1 PHASE
22TH CURRENT HARMONIC OF THE L1 PHASE
23TH CURRENT HARMONIC OF THE L1 PHASE
24TH CURRENT HARMONIC OF THE L1 PHASE
25TH CURRENT HARMONIC OF THE L1 PHASE
26TH CURRENT HARMONIC OF THE L1 PHASE
27TH CURRENT HARMONIC OF THE L1 PHASE
28TH CURRENT HARMONIC OF THE L1 PHASE
29TH CURRENT HARMONIC OF THE L1 PHASE
30TH CURRENT HARMONIC OF THE L1 PHASE
31TH CURRENT HARMONIC OF THE L1 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 16 of 36

$17F5
$17F9
$17FD
$1801
$1805
$1809
$180D
$1811
$1815
$1819
$181D
$1821
$1825
$1829
$182D
$1831
$1835
$1839
$183D
$1841
$1845
$1849
$184D
$1851
$1855
$1960
$1964
$1968
$196C
$1970
$1974

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$272D
$272F
$2731
$2733
$2735
$2737
$2739
$273B
$273D
$273F
$2741
$2743
$2745
$2747
$2749
$274B
$274D
$274F
$2751
$2753
$2755
$2757
$2759
$275B
$275D
$2830
$2832
$2834
$2836
$2838
$283A

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1STCURRENT HARMONIC OF THE L2 PHASE


2ND CURRENT HARMONIC OF THE L2 PHASE
3RD CURRENT HARMONIC OF THE L2 PHASE
4TH CURRENT HARMONIC OF THE L2 PHASE
5TH CURRENT HARMONIC OF THE L2 PHASE
6TH CURRENT HARMONIC OF THE L2 PHASE
7TH CURRENT HARMONIC OF THE L2 PHASE
8TH CURRENT HARMONIC OF THE L2 PHASE
9TH CURRENT HARMONIC OF THE L2 PHASE
10TH CURRENT HARMONIC OF THE L2 PHASE
11TH CURRENT HARMONIC OF THE L2 PHASE
12TH CURRENT HARMONIC OF THE L2 PHASE
13TH CURRENT HARMONIC OF THE L2 PHASE
14TH CURRENT HARMONIC OF THE L 2 PHASE
15TH CURRENT HARMONIC OF THE L2 PHASE
16TH CURRENT HARMONIC OF THE L2 PHASE
17TH CURRENT HARMONIC OF THE L2 PHASE
18TH CURRENT HARMONIC OF THE L2 PHASE
19TH CURRENT HARMONIC OF THE L2 PHASE
20TH CURRENT HARMONIC OF THE L2 PHASE
21TH CURRENT HARMONIC OF THE L2 PHASE
22TH CURRENT HARMONIC OF THE L2 PHASE
23TH CURRENT HARMONIC OF THE L2 PHASE
24TH CURRENT HARMONIC OF THE L2 PHASE
25TH CURRENT HARMONIC OF THE L2 PHASE
26TH CURRENT HARMONIC OF THE L2 PHASE
27TH CURRENT HARMONIC OF THE L2 PHASE
28TH CURRENT HARMONIC OF THE L2 PHASE
29TH CURRENT HARMONIC OF THE L2 PHASE
30TH CURRENT HARMONIC OF THE L2 PHASE
31TH CURRENT HARMONIC OF THE L2 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

$1859
$185D
$1861
$1865
$1869
$186D
$1871
$1875
$1879
$187D
$1881
$1885
$1889
$188D
$1891
$1895
$1899
$189D
$18A1
$18A5
$18A9
$18AD
$18B1
$18B5
$18B9
$1978
$197C
$1980
$1984
$1988
$198C

4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

$275F
$2761
$2763
$2765
$2767
$2769
$276B
$276D
$276F
$2771
$2773
$2775
$2777
$2779
$277B
$277D
$277F
$2781
$2783
$2785
$2787
$2789
$278B
$278D
$278F
$283C
$283E
$2840
$2842
$2844
$2846

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2

1ST CURRENT HARMONIC OF THE L3 PHASE


2ND CURRENT HARMONIC OF THE L3 PHASE
3RD CURRENT HARMONIC OF THE L3 PHASE
4TH CURRENT HARMONIC OF THE L3 PHASE
5TH CURRENT HARMONIC OF THE L3 PHASE
6TH CURRENT HARMONIC OF THE L3 PHASE
7TH CURRENT HARMONIC OF THE L3 PHASE
8TH CURRENT HARMONIC OF THE L3 PHASE
9TH CURRENT HARMONIC OF THE L3 PHASE
10TH CURRENT HARMONIC OF THE L3 PHASE
11TH CURRENT HARMONIC OF THE L3 PHASE
12TH CURRENT HARMONIC OF THE L3 PHASE
13TH CURRENT HARMONIC OF THE L3 PHASE
14TH CURRENT HARMONIC OF THE L3 PHASE
15TH CURRENT HARMONIC OF THE L3 PHASE
16TH CURRENT HARMONIC OF THE L3 PHASE
17TH CURRENT HARMONIC OF THE L3 PHASE
18TH CURRENT HARMONIC OF THE L3 PHASE
19TH CURRENT HARMONIC OF THE L3 PHASE
20TH CURRENT HARMONIC OF THE L3 PHASE
21TH CURRENT HARMONIC OF THE L3 PHASE
22TH CURRENT HARMONIC OF THE L3 PHASE
23TH CURRENT HARMONIC OF THE L3 PHASE
24TH CURRENT HARMONIC OF THE L3 PHASE
25TH CURRENT HARMONIC OF THE L3 PHASE
26TH CURRENT HARMONIC OF THE L3 PHASE
27TH CURRENT HARMONIC OF THE L3 PHASE
28TH CURRENT HARMONIC OF THE L3 PHASE
29TH CURRENT HARMONIC OF THE L3 PHASE
30TH CURRENT HARMONIC OF THE L3 PHASE
31TH CURRENT HARMONIC OF THE L3 PHASE

[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]
[%]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 17 of 36

SAMPLES VALUES STORED IN RAM (Function code $03)


Integer
Register
HEX
$19A3
$19A6
$19A9
$1A4D
$1A51
$1A55
$1A59
$1A5D
$1A61
$1A65
$1A69
$1A6D
$1A71
$1A75
$1A79
$1A7D
$1A81
$1A85
$1A89
$1A8D
$1A91
$1A95
$1A99
$1A9D
$1AA1
$1AA5
$1AA9
$1AAD
$1AB1
$1AB5
$1AB9
$1ABD
$1AC1
$1AC5
$1AC9
$1ACD
$1AD1
$1AD5

Word
3
3
1
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4

Float (IEEE)
Register
Word
HEX
$2B37
3
$2B3A
3
$2B3D
1
$2DA0
2
$2DA2
2
$2DA4
2
$2DA6
2
$2DA8
2
$2DAA
2
$2DAC
2
$2DAE
2
$2DB0
2
$2DB2
2
$2DB4
2
$2DB6
2
$2DB8
2
$2DBA
2
$2DBC
2
$2DBE
2
$2DC0
2
$2DC2
2
$2DC4
2
$2DC6
2
$2DC8
2
$2DCA
2
$2DCC
2
$2DCE
2
$2DD0
2
$2DD2
2
$2DD4
2
$2DD6
2
$2DD8
2
$2DDA
2
$2DDC
2
$2DDE
2
$2DE0
2
$2DE2
2
$2DE4
2

Description
YY MM DD
HH MM SS
time of mem
3-PHASE SYSTEM VOLTAGE
PHASE VOLTAGE L1-N
PHASE VOLTAGE L2-N
PHASE VOLTAGE L3-N
LINE VOLTAGE L1-2
LINE VOLTAGE L2-3
LINE VOLTAGE L3-1
3-PHASE SYSTEM CURRENT
LINE CURRENT L1
LINE CURRENT L2
LINE CURRENT L3
3-PHASE SYS. POWER FACTOR
POWER FACTOR L1
POWER FACTOR L2
POWER FACTOR L3
3-PHASE S. APPARENT POWER
APPARENT POWER L1
APPARENT POWER L2
APPARENT POWER L3
3-PHASE SYS. ACTIVE POWER
ACTIVE POWER L1
ACTIVE POWER L2
ACTIVE POWER L3
3-PHASE S. REACTIVE POWER
REACTIVE POWER L1
REACTIVE POWER L2
REACTIVE POWER L3
FREQUENCY
THD VOLTAGE L1
THD VOLTAGE L2
THD VOLTAGE L3
THD CURRENT L1
THD CURRENT L2
THD CURRENT L3
3-PHASE AVG. ACTIVE POWER

M.U.

Type

[-]
[-]
[ min ]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mV]
[mA]
[mA]
[mA]
[mA]
[-]
[-]
[-]
[-]
[mVA]
[mVA]
[mVA]
[mVA]
[mW]
[mW]
[mW]
[mW]
[mVAR
[mVAR
[mVAR
[mVAR
[mHz]
[m%]
[m%]
[m%]
[m%]
[m%]
[m%]
[mW]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Signed)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

COUNTERS VALUES STORED IN RAM (Function.code $03)


Integer
Register
Word
HEX
$1F40
3
$1F43
3
$1F46
1
$1F47
1
$1F48
4
$1F4C
4
$1F50
4
$1F54
4
$1F58
4
$1F5C
4
$1F60
4
$1F64
4
$1F68
4
$1F6C
4
$1F70
4
$1F74
4

Double (IEEE)
Register
Word
HEX
$2E00
3
$2E03
3
$2E06
1
$2E07
1
$2E08
4
$2E0C
4
$2E10
4
$2E14
4
$2E18
4
$2E1C
4
$2E20
4
$2E24
4
$2E28
4
$2E2C
4
$2E30
4
$2E34
4

Description
YY MM DD
HH MM 00
time of mem
Block full of 0=NO/1=Yes (1 word)
Wh+
VArh+
WhVArhCounter 1
Counter 2
Counter 3
Counter 4
Counter 5
Counter 6
Counter 7
Counter 8

U.M.

Type

[-]
[-]
[min]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]
[-]

(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)
(Unsigned)

ENERGY COUNTERS - Double format (Function code $03)


Integer
Register
HEX
N.A.
N.A.
N.A.
N.A.

Word

Float (IEEE)
Register
Word
HEX
$2A50
4
$2A54
4
$2A58
4
$2A5C
4

Description
3-PHASE SYS. ACTIVE ENERGY+
3-PHASE SYS. ACTIVE ENERGY3-PHASE SYS. REACTIVE EN.+
3-PHASE SYS. REACTIVE.EN.-

M.U.

Type

[-]
[-]
[-]
[-]

[-]
[-]
[-]
[-]

ANALOG OUTPUT PWM VALUES (Function code $03)


(Returned values: 0=0mA 255=20mA)
Integer
Register
HEX
$1A1A
$1A1B
$1A1C
$1A1D

Float (IEEE)

2
2
2

Register
HEX
N.A.
N.A.
N.A.

N.A.

Word

ANR-LAN (Modbus TCP Protocol)

Description

Word

M.U.

Type

[-]
[-]
[-]

PWM ANALOG OUTPUT 1


PWM ANALOG OUTPUT 2
PWM ANALOG OUTPUT 3

[-]
[-]
[-]

[-]
[-]
[-]

[-]

PWM ANALOG OUTPUT 4

[-]

[-]

Instruction Manual

IM158-U v1.0

Page 18 of 36

WAVEFORMS SAMPLES (Function code $03)


(64 x integer value)
Integer
Register
HEX
$1F30
$1F32
$1F34
$1F36
$1F38
$1F3A

Float (IEEE)
Register
HEX
N.A.
N.A.
N.A.
N.A.
N.A.
N.A.

Word
64
64
64
64
64
64

Description

M.U.

Type

[-]
[-]
[-]
[-]
[-]
[-]

[-]
[-]
[-]
[-]
[-]
[-]

Word
[-]
[-]
[-]
[-]
[-]
[-]

64 SAMPLES OF LINE VOLTAGE L1


64 SAMPLES OF LINE VOLTAGE L2
64 SAMPLES OF LINE VOLTAGE L3
64 SAMPLES OF LINE CURRENT L1
64 SAMPLES OF LINE CURRENT L2
64 SAMPLES OF LINE CURRENT L3

HOUR COUNTERS Long Integer format (Function code $03)


Integer
Register
HEX
$1625
$1629
$162D
$1631
$1635
$1639

Word
4
4
4
4
4
4

Float (IEEE)
Register
Word
HEX
N.A.
[-]
N.A.
[-]
N.A.
[-]
N.A.
[-]
N.A.
[-]
N.A.
[-]

Description
HOUR COUNTER 1
HOUR COUNTER 2
HOUR COUNTER 3
HOUR COUNTER 4
HOUR COUNTER 5
HOUR COUNTER 6

M.U.

Type

[s]
[s]
[s]
[s]
[s]
[s]

[-]
[-]
[-]
[-]
[-]
[-]

ONLY READ ANR PARAMETERS (Function code $03)


Register HEX
$1A00
$1A05

Word
5
7

Description
SERIAL NUMBER
VERSION NUMBER

$1A0D

$1A0E

$1A0F

NUMBER OF DIGITAL OUTPUTS

$1A10

NUMBER OF ANALOG OUTPUTS

$1A11

NUMBER OF DIGITAL INPUTS

$1A12

INFO STORAGE AVG.POWERS

$1A13
$1A14
$1A15
$1A17
$1A18

9
9
9
9
2

INFO STORAGE MIN./MAX


INFO STORAGE HARMONICS
INFO STORAGE SAMPLES
INFO STORAGE COUNTERS
HARDWARE & OPTIONS INFO

$1A19

SUB-VERSION FIRMWARE

$1A28

BAUD RATE

$1A29

PARITY

TYPE OF RAM

BI/MO DIRECTIONAL

$1A2A

BIT

$1ADB

DIGITAL OUTPUT STATUS

$1ADC

DIGITAL INPUT STATUS

ANR-LAN (Modbus TCP Protocol)

Range
XXXXXXXXX
XXX.XXXX
1=32 kB
2=128 kB
3=256 kB
4=512 kB
5=1024 Kb
1=mono
2=bidir.
0=none
1=1
ecc.=ecc.
0=none
1=1
ecc.=ecc.
0=none
1=1
ecc.=ecc.
byte12: status (0=OFF; 1= ON)
(int)
byte36: number of records
(long)
byte710: memory reserved (KB)
(float)
byte1114: memory used (KB)
(float)
byte1518: memory free (KB)
(float)
as before
as before
as before
as before
bit0: harmonics (0=dis.; 1=en.)
bit1: time bands (0=dis.; 1=en.)
bit23: N.A.
bit47: number of Dig.Inp (015)
bit811: number of Dig.Out (015)
bit1215: number of An.Out
(015)
bit1631: N.A.
XX
2=1200 baud
3=2400 baud
4=4800 baud
5=9600 baud
6=19200 baud
0=none
1=even parity
2=odd parity
7=7 bit
8=8 bit
bit(n)=DI(n+1)
n=0..5
(0=OFF; 1=ON)
bit(n)=DI(n+1)
n=0..5
(0=OFF; 1=ON)

Instruction Manual

IM158-U v1.0

Page 19 of 36

READ & WRITE ANR PARAMETERS (Function code $03 & $10)
NOTE: the variable indicated by yes resets the instrument. Wait 1 second before sending another command
Integer
Register
HEX

Word

$1A16

ENERGY TYPE

$1A20
$1A21

1
3

LOGICAL NUMBER
DATE

$1A24

DAY OF WEEK

$1A25
$1A2B
$1A2C

3
1
1

TIME
TRANSFORM RATIO KCT
TRANSFORM RATIO KVT

Description

$1A2D

SYNCHRO TYPE

$1A2E
$1A2F
$1A30
$1A40

1
1
1
1

FREQUENCY
TIME FOR AVERAGE
BACKLIGHT ON TIME (sec)
MIN/MAX TIME TO STORE IN RAM

$1A41

MIN/MAX 3-PH.VOLTAGE STORE

$1A42

MIN/MAX VOLTAGE L1-N STORE

$1A43

MIN/MAX VOLTAGE L2-N STORE

$1A44

MIN/MAX VOLTAGE L3-N STORE

$1A45

MIN/MAX 3PH.CURRENT STORE

$1A46

MIN/MAX CURRENT L1 STORE

$1A47

MIN/MAX CURRENT L2 STORE

$1A48

MIN/MAX CURRENT L3 STORE

$1A49

MIN/MAX ACTIVE POWER STORE

$1A4A

MIN/MAX APP.POWER STORE

$1A4B

MIN/MAX POWER FACT.STORE

$1A4C

MIN/MAX AV.POWER STORE

DIGITAL INPUT TYPE

WIRING MODE

$1ADA

$1ADD

Float
Register
HEX
$2A32
$2A34
$2A36

Word

Range
0=normal(kWh-kVArh)
1=heavy (MWh-MVArh)
01-255
YY MMDD
1=monday
2=tuesday
3=wednesday
4=thursday
5=friday
6=saturday
7=sunday
HH MM SS
12500
13000
0=internal
1=external
5500 Hz (x100)
199
0360
1-9999
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=do not store
1=store
0=not used
1=sync.rtc
2=periods
3=generic counters
4=GMC
5=GME
6=ELKO
0=4 wire
1=3 wire
2=Aron

Description

2
2
2

Reset
YES
YES
YES

NO

NO
YES
YES
NO
NO
YES
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

YES

YES

Range

TRANFORM CT RATIO floating point


TRANFORM VT RATIO floating point
FORCED FREQUENCY floating point

Reset

0.019999.99
0.019999.99
5.00500.00

YES
YES
(readonly)

(Firmware x.11.15 or previous)


TIMEBANDS- TARIFF PERIOD 1
Integer
Register
HEX
$3100
$3103
$3106
$3109
$310C
$310F
$3112
$3115
$3118
$3119

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

(1) it defines the beginning (hours and minutes) of each tariff band during the day.
it is possible to input up to 8 changes during the day.
it is possible to set four different bands (0,1,2,3).
st
i.e.: to program the start of 2 tariff band (1) at 06:00 send $0006,$0000,$0001

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 20 of 36

(2) DAY: Programming: put to 1 the Bit relative to the day which are selected.
X
Mo

X
Tu

X
We

X
Th

X
Fr

X
Sa

X
Su

i.e.:to program all day from Monday to Friday send $F800


(3) MONTH
X
Ja

X
Fe

Programming: put to 1 the Bit relative to the month which are selected.
X
Ma

X
Ap

X
Ma

X
Ju

X
Ju

X
Au

X
Se

X
Oc

X
No

X
De

i.e.:to programming the month of November,December,January,February and March send $E030


TIMEBANDS-TARIFF PERIOD 2
Integer
Register
HEX
$311A
$311D
$3120
$3123
$3126
$3129
$312C
$312F
$3132
$3133

Word
3
3
3
3
3
3
3
3
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

TIMEBANDS-TARIFF PERIOD 3
Integer
Register
HEX
$3134
$3137
$313A
$313D
$3140
$3143
$3146
$3149
$314C
$314D

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

TIMEBANDS-TARIFF PERIOD 4
Integer
Register
HEX
$314E
$3151
$3154
$3157
$315A
$315D
$3160
$3163
$3166
$3167

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

TIMEBANDS-TARIFF PERIOD 5
Integer
Register
HEX
$3168
$316B
$316E
$3171
$3174
$3177
$317A
$317D
$3180
$3181

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

TIMEBANDS-TARIFF PERIOD 6
Integer
Register
HEX
$3182
$3185
$3188
$318B
$318E
$3191
$3194
$3197
$319A
$319B

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 21 of 36

TIMEBANDS-TARIFF PERIOD 7
Integer
Register
HEX
$319C
$319F
$31A2
$31A5
$31A8
$31AB
$31AE
$31B1
$31B4
$31B5

Word
3
3
3
3
3
3
3
3
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

TIMEBANDS-TARIFF PERIOD 8
Integer
Register
HEX
$31B6
$31B9
$31BC
$31BF
$31C2
$31C5
$31C8
$31CB
$31CE
$31CF

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

TIMEBANDS-TARIFF PERIOD 9
Integer
Register
HEX
$31D0
$31D3
$31D6
$31D9
$31DC
$31DF
$31E2
$31E5
$31E8
$31E9

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

TIMEBANDS-TARIFF PERIOD 10
Integer
Register
HEX
$31EA
$31ED
$31F0
$31F3
$31F6
$31F9
$31FC
$31FF
$3202
$3203

Word
3
3
3
3
3
3
3
3
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
DAY selecting
MONTH selecting

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 22 of 36

(Firmware x.11.16 or upper)


TIMEBANDS- TARIFF PERIOD 1
Integer
Register
HEX
$3100
$3103
$3106
$3109
$310C
$310F
$3112
$3115
$3118
$311B
$311E
$3121
$3124
$3125
$3126
$3127
$3128

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

(1) it defines the beginning (hours and minutes) of each tariff band during the day.
it is possible to input up to 12 changes during the day.
it is possible to set four different bands (0,1,2,3).
st
i.e.: to program the start of 2 tariff band (1) at 06:00 send $0006,$0000,$0001
(2) DAY: Programming: put to 1 the Bit relative to the day which are selected.
X
Mo

X
Tu

X
We

X
Th

X
Fr

X
Sa

X
Su

i.e.:to program all day from Monday to Friday send $F800


(3) it defines the beginning (month and day) and the ending (month and day) of the period.
Month: 1=January, , 12=December.
Day: 131.
TIMEBANDS- TARIFF PERIOD 2
Integer
Register
HEX
$3129
$312C
$312F
$3132
$3135
$3138
$313B
$313E
$3141
$3144
$3147
$314A
$314D
$314E
$314F
$3150
$3151

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

TIMEBANDS- TARIFF PERIOD 3


Integer
Register
HEX
$3152
$3155
$3158
$315B
$315E
$3161
$3164
$3167
$316A
$316D
$3170
$3173
$3176
$3177
$3178
$3179
$317A

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 23 of 36

TIMEBANDS- TARIFF PERIOD 4


Integer
Register
HEX
$317B
$317E
$3181
$3184
$3187
$318A
$318D
$3190
$3193
$3196
$3199
$319C
$319F
$31A0
$31A1
$31A2
$31A3

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

TIMEBANDS- TARIFF PERIOD 5


Integer
Register
HEX
$31A4
$31A7
$31AA
$31AD
$31B0
$31B3
$31B6
$31B9
$31BC
$31BF
$31C2
$31C5
$31C8
$31C9
$31CA
$31CB
$31CC

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

TIMEBANDS- TARIFF PERIOD 6


Integer
Register
HEX
$31CD
$31D0
$31D3
$31D6
$31D9
$31DC
$31DF
$31E2
$31E5
$31E8
$31EB
$31EE
$31F1
$31F2
$31F3
$31F4
$31F5

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

TIMEBANDS- TARIFF PERIOD 7


Integer
Register
HEX
$31F6
$31F9
$31FC
$31FF
$3202
$3205
$3208
$320B
$320E
$3211
$3214
$3217
$321A
$321B
$321C
$321D
$321E

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 24 of 36

TIMEBANDS- TARIFF PERIOD 8


Integer
Register
HEX
$321F
$3222
$3225
$3228
$322B
$322E
$3231
$3234
$3237
$323A
$323D
$3240
$3243
$3244
$3245
$3246
$3247

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

TIMEBANDS- TARIFF PERIOD 9


Integer
Register
HEX
$3248
$324B
$324E
$3251
$3254
$3257
$325A
$325D
$3260
$3263
$3266
$3269
$326C
$326D
$326E
$326F
$3270

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

TIMEBANDS- TARIFF PERIOD 10


Integer
Register
HEX
$3271
$3274
$3277
$327A
$327D
$3280
$3283
$3286
$3289
$328C
$328F
$3292
$3295
$3296
$3297
$3298
$3299

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

TIMEBANDS- TARIFF PERIOD 11


Integer
Register
HEX
$329A
$329D
$32A0
$32A3
$32A6
$32A9
$32AC
$32AF
$32B2
$32B5
$32B8
$32BB
$32BE
$32BF
$32C0
$32C1
$32C2

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 25 of 36

TIMEBANDS- TARIFF PERIOD 12


Integer
Register
HEX
$32C3
$32C6
$32C9
$32CC
$32CF
$32D2
$32D5
$32D8
$32DB
$32DE
$32E1
$32E4
$32E7
$32E8
$32E9
$32EA
$32EB

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(1)
(2)
(3)
(3)
(3)
(3)

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

TIMEBANDS- TARIFF PERIOD 13


Integer
Register
HEX
$32EC
$32EF
$32F2
$32F5
$32F8
$32FB
$32FE
$3301
$3304
$3307
$330A
$330D
$3310
$3311
$3312
$3313
$3314

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
st

Hours and Minutes and band of begin the 1 tariff band


Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

TIMEBANDS- TARIFF PERIOD 14


Integer
Register
HEX
$3315
$3318
$331B
$331E
$3321
$3324
$3327
$332A
$332D
$3330
$3333
$3336
$3339
$333A
$333B
$333C
$333D

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

TIMEBANDS- TARIFF PERIOD 15


Integer
Register
HEX
$333E
$3341
$3344
$3347
$334A
$334D
$3350
$3353
$3356
$3359
$335C
$335F
$3362
$3363
$3364
$3365
$3366

Word
3
3
3
3
3
3
3
3
3
3
3
3
1
1
1
1
1

Description
Hours and Minutes and band of begin the 1st tariff band
Hours and Minutes and band of begin the 2nd tariff band
Hours and Minutes and band of begin the 3rd tariff band
Hours and Minutes and band of begin the 4th tariff band
Hours and Minutes and band of begin the 5th tariff band
Hours and Minutes and band of begin the 6th tariff band
Hours and Minutes and band of begin the 7th tariff band
Hours and Minutes and band of begin the 8th tariff band
Hours and Minutes and band of begin the 9th tariff band
Hours and Minutes and band of begin the 10th tariff band
Hours and Minutes and band of begin the 11th tariff band
Hours and Minutes and band of begin the 12th tariff band
DAY selecting
StartMonth
StartDay
StopMonth
StopDay

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 26 of 36

HOLYDAYS (read only)


Integer
Register
HEX
$3400
$3401
$3402
$3403
$3404
$3405
$3406
$3407
$3408
$3409
$340A
$340B
$340C
$340D
$340E
$340F
$3410
$3411
$3412
$3413
$3414
$3415
$3416
$3417
$3418
$3419
$341A
$341B
$341C
$341D
$341E
$341F
$3420
$3421
$3422
$3423
$3424
$3425
$3426
$3427
$3428
$3429
$342A
$342B
$342C
$342D
$342E
$342F
$3430
$3431
$3432
$3433
$3434
$3435
$3436
$3437
$3438
$3439
$343A
$343B
$343C
$343D
$343E
$343F
$3440
$3441
$3442
$3443
$3444
$3445
$3446
$3447
$3448
$3449
$344A
$344B
$344C
$344D
$344E
$344F

Word
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1

Description
day of holyday no. 1
month of holyday no. 1
day of holyday no. 2
month of holyday no. 2
day of holyday no. 3
month of holyday no. 3
day of holyday no. 4
month of holyday no. 4
day of holyday no. 5
month of holyday no. 5
day of holyday no. 6
month of holyday no. 6
day of holyday no. 7
month of holyday no. 7
day of holyday no. 8
month of holyday no. 8
day of holyday no. 9
month of holyday no. 9
day of holyday no. 10
month of holyday no. 10
day of holyday no. 11
month of holyday no. 11
day of holyday no. 12
month of holyday no. 12
day of holyday no. 13
month of holyday no. 13
day of holyday no. 14
month of holyday no. 14
day of holyday no. 15
month of holyday no. 15
day of holyday no. 16
month of holyday no. 16
day of holyday no. 17
month of holyday no. 17
day of holyday no. 18
month of holyday no. 18
day of holyday no. 19
month of holyday no. 19
day of holyday no. 20
month of holyday no. 20
day of holyday no. 21
month of holyday no. 21
day of holyday no. 22
month of holyday no. 22
day of holyday no. 23
month of holyday no. 23
day of holyday no. 24
month of holyday no. 24
day of holyday no. 25
month of holyday no. 25
day of holyday no. 26
month of holyday no. 26
day of holyday no. 27
month of holyday no. 27
day of holyday no. 28
month of holyday no. 28
day of holyday no. 29
month of holyday no. 29
day of holyday no. 30
month of holyday no. 30
day of holyday no. 31
month of holyday no. 31
day of holyday no. 32
month of holyday no. 32
day of holyday no. 33
month of holyday no. 33
day of holyday no. 34
month of holyday no. 34
day of holyday no. 35
month of holyday no. 35
day of holyday no. 36
month of holyday no. 36
day of holyday no. 37
month of holyday no. 37
day of holyday no. 38
month of holyday no. 38
day of holyday no. 39
month of holyday no. 39
day of holyday no. 40
month of holyday no. 40

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 27 of 36

GENERIC COUNTERS VALUESRegister


HEX
$2B00
$2B02
$2B04
$2B06
$2B08
$2B0A
$2B0C
$2B0E

Double format

Word
4
4
4
4
4
4
4
4

Description
Generic Counter 1 Value
Generic Counter 2 Value
Generic Counter 3 Value
Generic Counter 4 Value
Generic Counter 5 Value
Generic Counter 6 Value
Generic Counter 7 Value
Generic Counter 8 Value

Range

Reset

099999999.9
099999999.9
099999999.9
099999999.9
099999999.9
099999999.9
099999999.9
099999999.9

NO
NO
NO
NO
NO
NO
NO
NO

Range

Reset

(*)
(*)
(*)
(*)
(*)
(*)
(*)
(*)

NO
NO
NO
NO
NO
NO
NO
NO

GENERIC COUNTERS SETTINGS


Register
HEX
$2B10
$2B12
$2B14
$2B16
$2B18
$2B1A
$2B1C
$2B1E
(*)
Description:
Byte(s)
1:
2:
310:
1114:

Word
7
7
7
7
7
7
7
7

Description
Generic Counter 1 Setting
Generic Counter 2 Setting
Generic Counter 3 Setting
Generic Counter 4 Setting
Generic Counter 5 Setting
Generic Counter 6 Setting
Generic Counter 7 Setting
Generic Counter 8 Setting

Read/Write
Counter (i) -> Digital Input association
Counters name type (0=kWh+; 1=kWh-; 2=kVArh+; 3=kVArh-; 4=Water; 5=Gas; 6=User.)
Counters name (ASCII codes)
Pulses weight (01999.99)

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 28 of 36

ONLY WRITE ANR PARAMETERS (Function code $10)


Register HEX
$1A90

Word
1

Description

$1A91

SET RAM STORING

$1A92

15 STORED IN RAM

$1A93

MIN/MAX STORED IN RAM

$1A94

HARMONICS STORED IN RAM

$1A95

SAMPLES STORED IN RAM

$1A96

CONSUMPTION ENERGY COUNTER

DELETING RAM

$1A97

MIN/MAX VALUES

$1A98

COUNTERS STORED IN RAM

$1A4D
$1A50

SAMPLES RATE + SET VARIABLE


COUNTERS RATE

$1A51

Wh+

$1A52

VArh+

$1A53

Wh-

$1A54

VArh-

$1A55

Counter 1

$1A56

Counter 2

$1A57

Counter 3

$1A58

Counter 4

$1A59

Counter 5

$1A5A

Counter 6

$1A5B

Counter 7

$1A5C

Counter 8

Range
9=deleting all archives
0=nothing
1=15
2=min/max
3=15+min/max
4=armonics
5=15+armonics
6=min/max+armonics
7=15+min/max+armonics
8=sample
9=15+sample
A=min/max+sample
B=15+min/max+sample
C=armonics+sample
D=15+armonics+sample
E=min/max+armonics+sample
F=15+min/max+armonics+sample
10=counters
11=15+counters
12=min/max+counters
13=15+min/max+counters
14=armonics+counters
15=15+armonics+counters
16=min/max+armonics+counters
17=15+min/max+armonics+counters
18=sample+counters
19=15+sample+counters
1A=min/max+sample+counters
1B=15+min/max+sample+counters
1C=armonics+sample+counters
1D=15+armonics+sample+counters
1E=min/max+armonics+sample+counters
1F=15+min/max+armonics+sample+counters
0=nothing
1=delete first one
0=nothing
1=sending the following block
2=deleting all min/max value in RAM
0=nothing
1=delete first one
0=nothing
1=delete first one
1=reset count B0...B3
2=reset timebands
3=reset all
1=reset all
0=nothing
1=delete first one
See Note 1
09999 (min.)
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled
0=disabled
1=enabled

Note 1.
The first word is the rate in seconds (Int type).
The following chars are the measure code of the variables that must be enabled.
If the number of the activated variables s odd, then it is necessary to follow a 0x00 char to end the list.
If the number of the activated variables is even, then it is necessary to follow a 0x0000 word to end the list.
Ex.
Setting for all the available variables:
80 81 82 83 84 85 86 88 89 8A 8B 90 91 92 93 98 99 9A 9B A0 A1 A2 A3 A8 A9 AA AB B4 B6 B7 B8 8C 8D 8E B9 00
list of variables plus 0x00 termination
Setting for an even number of variables:
81 82 83 89 8A 8B 00 00

list of variables plus 0x0000 termination

Setting for an odd number of variables:


80 81 83 88 8B 90 B4 00

list of variables plus 0x00 termination

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 29 of 36

Reset
YES

YES

YES
NO
NO
NO
YES
NO
NO
YES
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO

The measure code for the variables available to store into the RAM are the following:
Measure

Code

3-PHASE SYSTEM VOLTAGE

$80

PHASE VOLTAGE L1-N

$81

PHASE VOLTAGE L2-N

$82

PHASE VOLTAGE L3-N

$83

LINE VOLTAGE L1-2

$84

LINE VOLTAGE L2-3

$85

LINE VOLTAGE L3-1

$86

3-PHASE SYSTEM CURRENT

$88

LINE CURRENT L1

$89

LINE CURRENT L2

$8A

LINE CURRENT L3

$8B

3-PHASE SYS. POWER FACTOR

$90

POWER FACTOR L1

$91

POWER FACTOR L2

$92

POWER FACTOR L3

$93

3-PHASE S. APPARENT POWER

$98

APPARENT POWER L1

$99

APPARENT POWER L2

$9A

APPARENT POWER L3

$9B

3-PHASE SYS. ACTIVE POWER

$A0

ACTIVE POWER L1

$A1

ACTIVE POWER L2

$A2

ACTIVE POWER L3

$A3

3-PHASE S. REACTIVE POWER

$A8

REACTIVE POWER L1

$A9

REACTIVE POWER L2

$AA

REACTIVE POWER L3

$AB

FREQUENCY

$B4

THD VOLTAGE L1

$B6

THD VOLTAGE L2

$B7

THD VOLTAGE L3

$B8

THD CURRENT L1

$8C

THD CURRENT L2

$8D

THD CURRENT L3

$8E

3-PHASE AVG. ACTIVE POWER

$B9

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 30 of 36

DIGITAL OUT 1
Register HEX
$1AA0

Word
1

$1AA1
$1AA2
$1AA3
$1AA4
$1AA5
$1AA6
$2AA8
$2AAA
$2AAC

1
1
1
1
1
1
2
2
2

Description
MODE

VARIABLE
PULSE COEFFICIENT
PULSE DURATION (msec)
INTERVENTION VALUE (integer)
HYSTERISIS
DELAY TIME in sec
FLOAT INTERVENTION VALUE
FLOAT INF. BAND VALUE
FLOAT SUP.BAND VALUE

Range

Reset
YES

0= off
1= upper limit
2= lower limit
3= pulse
4= band
5= always on
80-BC
09.999
50999

YES
YES
YES
YES
YES
YES
YES
YES
YES

0-99
0-999

DIGITAL OUT 2
Register HEX
$1AB0

Word
1

$1AB1
$1AB2
$1AB3
$1AB4
$1AB5
$1AB6
$2AB8
$2ABA
$2ABC

1
1
1
1
1
1
2
2
2

Description
MODE

VARIABLE
PULSE COEFFICIENT
PULSE DURATION (msec)
INTERVENTION VALUE
HYSTERISIS
DELAY TIME in sec
FLOAT INTERVENTION VALUE
FLOAT INF. BAND VALUE
FLOAT SUP.BAND VALUE

Range

Reset
YES

0= off
1= upper limit
2= lower limit
3= pulse
4= band
5= always on
80-BC
09.999
50999

YES
YES
YES
YES
YES
YES
YES
YES
YES

0-99
0-999

DIGITAL OUT 3
Register HEX
$1AC0

Word
1

$1AC1
$1AC2
$1AC3
$1AC4
$1AC5
$1AC6
$2AC8
$2ACA
$2ACC

1
1
1
1
1
1
2
2
2

Description
MODE

VARIABLE
PULSE COEFFICIENT
PULSE DURATION (msec)
INTERVENTION VALUE
HYSTERISIS
DELAY TIME in sec
FLOAT INTERVENTION VALUE
FLOAT INF. BAND VALUE
FLOAT SUP.BAND VALUE

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

Range

Reset
YES

0= off
1= upper limit
2= lower limit
3= pulse
4= band
5= always on
80-BC
09.999
50999

YES
YES
YES
YES
YES
YES
YES
YES
YES

0-99
0-999

IM158-U v1.0

Page 31 of 36

DIGITAL OUT 4
Register HEX
$1AD0

Word
1

$1AD1
$1AD2
$1AD3
$1AD4
$1AD5
$1AD6
$2AD8
$2ADA
$2ADC

1
1
1
1
1
1
2
2
2

Description
MODE

VARIABLE
PULSE COEFFICIENT
PULSE DURATION (msec)
INTERVENTION VALUE
HYSTERISIS
DELAY TIME in sec
FLOAT INTERVENTION VALUE
FLOAT INF. BAND VALUE
FLOAT SUP.BAND VALUE

Range

Reset
YES

0= off
1= upper limit
2= lower limit
3= pulse
4= band
5= always on
80-BC
09.999
50999

YES
YES
YES
YES
YES
YES
YES
YES
YES

0-99
0-999

DIGITAL OUT 5
Register HEX
$1A70

Word
1

$1A71
$1A72
$1A73
$1A74
$1A75
$1A76
$2AE8
$2AEA
$2AEC

1
1
1
1
1
1
2
2
2

Description
MODE

VARIABLE
PULSE COEFFICIENT
PULSE DURATION (msec)
INTERVENTION VALUE
HYSTERISIS
DELAY TIME in sec
FLOAT INTERVENTION VALUE
FLOAT INF. BAND VALUE
FLOAT SUP.BAND VALUE

Range

Reset
YES

0= off
1= upper limit
2= lower limit
3= pulse
4= band
5= always on
80-BC
09.999
50999

YES
YES
YES
YES
YES
YES
YES
YES
YES

0-99
0-999

DIGITAL OUT 6
Register HEX
$1A80

Word
1

$1A81
$1A82
$1A83
$1A84
$1A85
$1A86
$2AF8
$2AFA
$2AFC

1
1
1
1
1
1
2
2
2

Description
MODE

VARIABLE
PULSE COEFFICIENT
PULSE DURATION (msec)
INTERVENTION VALUE
HYSTERISIS
DELAY TIME in sec
FLOAT INTERVENTION VALUE
FLOAT INF. BAND VALUE
FLOAT SUP.BAND VALUE

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

Range

Reset
YES

0= off
1= upper limit
2= lower limit
3= pulse
4= band
5= always on
80-BC
09.999
50999

YES
YES
YES
YES
YES
YES
YES
YES
YES

0-99
0-999

IM158-U v1.0

Page 32 of 36

ANALOG OUT1
Register HEX

Word

$1AE0

MODE

Description

$1AE1
$1AE2
$1AE3

1
1
1

VARIABLE
MIN LIMIT VALUE
MAX.LIMIT VALUE

Range

Reset

0=0-20mA mono
1=4-20mA mono
80..BC
YES
YES

YES
YES

ANALOG OUT 2
Register HEX

Word

$1AE8

MODE

Description

$1AE9
$1AEA
$1AEB

1
1
1

VARIABLE
MIN LIMIT VALUE
MAX.LIMIT VALUE

Range

Reset

0=0-20mA mono
1=4-20mA mono
80..BC
YES
YES

YES
YES

ANALOG OUT 3
Register HEX

Word

$1AF0

MODE

Description

$1AF1
$1AF2
$1AF3

1
1
1

VARIABLE
MIN LIMIT VALUE
MAX.LIMIT VALUE

Range

Reset

0=0-20mA mono
1=4-20mA mono
80..BC
YES
YES

YES
YES

ANALOG OUT 4
Register HEX

Word

$1AF8

MODE

Description

$1AF9
$1AFA
$1AFB

1
1
1

VARIABLE
MIN LIMIT VALUE
MAX.LIMIT VALUE

Range

Reset

0=0-20mA mono
1=4-20mA mono
80..BC
YES
YES

YES
YES

DIGITAL IN 1
Register HEX

Word

$1ADA

Description
MODE

Range
0= off
1= sync. RTC
2= Timeband (with Digital In 2)

Reset

Range
0= off
1= sync. RTC
2= Timeband (with Digital In 2)

Reset

YES

DIGITAL IN 2
Register HEX

Word

$1ADB

Description
MODE

YES

ADVICE:PROGRAM OUTPUT PARAMETERS ALL AT THE SAME TIME TO PREVENT THE INSTRUMENT FROM RESETTING
REPEATEDLY,THUS AVOIDING TIME WASTE

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 33 of 36

EXAMPLE
Stream data send to ANR-LAN (3-Phase System Voltage):
TX
00 02 00 00 00 06 01 03 10 00 00 02
HEADER TCP
= 00 02 00 00 00 06
(00 02) Transaction ID
(00 00 00) Protocol ID
(06) Length of query modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
START ADDRESS
= 10 00
No. OF REGISTERS = 00 02
Response from ANR-LAN:
RX
00 02 00 00 00 07 01 03 04 00 00 0E 1D
HEADER TCP
= 00 02 00 00 00 07
(00 02) Transaction ID
(00 00 00) Protocol ID
(07) Length of response modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
No. OF SEND BYTES = 04
D0, D1, .., Dn
= 00 00 0E 1D

Stream data send to ANR-LAN (3-Phase Sys. Active and Reactive Energy):
TX
00 01 00 00 00 06 01 03 10 3E 00 04
HEADER TCP
= 00 01 00 00 00 06
(00 01) Transaction ID
(00 00 00) Protocol ID
(06) Length of query modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
START ADDRESS
= 10 3E
No. OF REGISTERS = 00 04
Response from ANR-LAN:
RX
00 01 00 00 00 0B 01 03 08 0E F7 58 BF 0B F9 13 81
HEADER TCP
= 00 01 00 00 00 0B
(00 02) Transaction ID
(00 00 00) Protocol ID
(0B) Length of response modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
No. OF SEND BYTES = 08
D0, D1, .., Dn
= 0E F7 58 BF 0B F9 13 81

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 34 of 36

Stream data send to ANR-LAN (Record N1 of collect data):


TX 01 17 00 00 00 06 01 03 20 00 00 10
HEADER TCP
= 01 17 00 00 00 06
(01 17) Transaction ID
(00 00 00) Protocol ID
(06) Length of query modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
START ADDRESS
= 20 00
No. OF REGISTERS = 00 10
Response from ANR-LAN
RX 01 17 00 00 00 23 01 03 20 32 30 30 38 30 33 31 31 31 35 34 39 0E 59 37 C8 0B 7A 93 88 20 20 20 20 20 20 20
20 20 20 20 20
HEADER TCP
= 01 17 00 00 00 23
(01 17) Transaction ID
(00 00 00) Protocol ID
(23) Length of response modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
No. OF SEND BYTES = 20
D0, D1, .., Dn
= 32 30 30 38 30 33 31 31 31 35 34 39 0E 59 37 C8 0B 7A 93 88 20 20 20 20 20 20 20 20 20
20 20 20
Stream data send to ANR-LAN (Record N14 of collect data):
TX 00 08 00 00 00 06 01 03 20 10 00 10
HEADER TCP
= 00 08 00 00 00 06
(00 08) Transaction ID
(00 00 00) Protocol ID
(06) Length of query modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
START ADDRESS
= 20 D0
No. OF REGISTERS = 00 10
Response from ANR-LAN:
RX 00 08 00 00 00 23 01 03 20 32 30 30 38 30 33 31 31 31 37 33 32 0E F8 A0 5E 0B FA 13 9F 20 20 20 20 20 20 20
20 20 20 20 20
HEADER TCP
= 00 08 00 00 00 23
(00 08) Transaction ID
(00 00 00) Protocol ID
(23) Length of response modbus
ADDRESS FIELD
= 01
FUNCTION CODE
= 03
No. OF SEND BYTES = 20
D0, D1, .., Dn =
32 30 30 38 30 33 31 31 31 37 33 32 0E F8 A0 5E 0B FA 13 9F 20 20 20 20 20 20 20 20 20
20 20 20

ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 35 of 36

ABB SACE S.p.A.


Apparecchi Modulari
Viale dell industria, 18
20010 Vittuone (MI) Italy
Tel.: 02.9034.1 Telefax: 02.9034.7609
http://bol.it.abb.com
ANR-LAN (Modbus TCP Protocol)

Instruction Manual

IM158-U v1.0

Page 36 of 36

You might also like