Every effort has been made to ensure that the material herein is complete and accurate.
However, the manufacturer is not responsible for any mistakes in printing or faulty
instructions contained in this book. Notification of any errors or misprints will be received
with appreciation.
For further information regarding a particular installation, operation or maintenance of
equipment, contact the manufacturer or your local representative or distributor.
REVISION HISTORY
A1 May 2006 Release
A2 May 2006 F/W versions 13.1.7, 14.1.7, 15.1.8, 16.1.9 or higher
A3 Apr 2007 F/W versions 13.1.11, 14.1.11 or higher
A4 Nov 2007 PM172P/E, F/W version 13.1.16 or higher
A5 June 2008 PM172P/E, F/W versions 13.1.19 and later, 13.71.12 or higher.
Added GE EGD protocol setup
Added 16-bit BC scaling option in the DNP Options setup
CT primary current extended to 20,000A.
Added DST start/end hour setup.
Added the current unbalance trigger.
Added 16-bit and 32-bit frozen analog inputs and Time and Date object to the Class 0
point list.
Added 3-min power demand interval.
This document specifies a subset of the Modbus serial communications protocol used to
transfer data between a master computer station and the PM172. The document provides
the complete information necessary to develop third-party communications software
capable of communication with the Series PM172 instruments. Additional information
concerning communications operation, configuring the communications parameters, and
communications connections is found in "Series PM172 Powermeters, Installation and
Operation Manual".
IMPORTANT
In 3-wire connection schemes, the unbalanced current and phase readings for power factor,
active power, and reactive power will be zeros, because they have no meaning. Only the
total three-phase power values will be shown.
Most of the advanced features are configured using multiple setup parameters that can be
accessed in a number of contiguous registers. When writing the setup registers, it is
recommended to write all the registers at once using a single request, or to clear (zero) the
setup before writing into separate registers.
Designations used in the guide:
E - available in the meters with the E and EH suffixes
EH - available in the meters with the EH suffix
8
2 Modbus Protocol Implementation
For detailed information about Modbus protocol, Modbus message framing and error checking,
refer to the "Modicon Modbus Protocol Reference Guide". It can be downloaded from the
www.modbus.org
implementation of the Modbus protocol in the PM172.
2.1 Transmission Modes
The PM172 can be set up to communicate on a Modbus network using RTU transmission
mode. Refer to the "Series PM172 Powermeters, Installation and Operation Manual" on how
to select the transmission mode in your meter.
2.2 Address Field
The address field contains a user assigned address of the instrument (1-247) on a Modbus
network. Broadcast mode using address 0 is not supported.
2.3 Function Field
The Modbus functions implemented in the PM172 are shown in Table 2-1. Function 04 can
be used in the same context as function 03.
Table 2-1 Modbus Function Codes
Code (decimal) Meaning in Modbus Action
03 Read holding registers Read multiple registers
04 Read input registers Read multiple registers
06 Preset single register Write single register
16 Preset multiple registers Write multiple registers
081 Loop-back test Communications test
1
The PM172 supports only diagnostic code 0 - return query data.
Website. The following paragraphs outline some issues concerning the
2.4 Exception Responses
The instrument sends an exception response when an error is detected in the received
message. To indicate that the response is notification of an error, the high order bit of the
function code is set to 1.
Implemented exception response codes:
01 - Illegal function
02 - Illegal data address
03 - Illegal data value
04 - Device failure
When the character framing, parity, or redundancy check detects a communication error,
processing of the master's request stops. The instrument will not act on or respond to the
message.
2.5 Modbus Register Addresses
The PM172 Modbus registers are numbered in the range of 0 to 65535. From the Modbus
applications, the PM172 Modbus registers can be accessed by simulating holding registers of
the Modicon 584, 884 or 984 Programmable Controller, using a 5-digit “4XXXX” or 6-digit
“4XXXXX” addressing scheme.
9
To map the PM172 register address to the range of the Modbus holding registers, add a
value of 40001 to the PM172 register address. When a register address exceeds 9999, use
a 6-digit addressing scheme by adding 400001 to the PM172 register address.
2.6 Data Formats
The PM172 uses three data formats to pass data between a master application and the
instrument: 16-bit short integer, 32-bit long integer and 32-bit modulo-10000 formats.
Binary values and counters are always transmitted in 32-bit registers, while analog values
can be read both in 32-bit and in 16-bit scaled registers.
Analog registers 256 through 308 and 6656 through 10935 contain scaled 16-bit values.
2.6.1 16-bit Scaled Integer Format
16-bit scaled analog data is transmitted in a single 16-bit Modbus register bei n g scaled to
the range of 0 to 9999. To get a true reading, a reverse conversion should be done using
the following formula:
)LOHI(X
−×
Y+
=
9999
where:
Y - True reading in engineering units
X - Raw input data in the range of 0 to 9999
LO and HI - Data low and high scales in engineering units
LO
The engineering scales are indicated for every scaled 16-bit register. Refer to Section 4
“Data Scales and Units” for applicable data scales and measurement units.
The default voltage scale in the device is 144V (120V+20%). It can be changed through
register 242 (see Section 3.1, Device Data Scales), or via the supplemental PAS software.
The recommended voltage scale is 120V+20% = 144V for using with external PT’s, and
690V+20% = 828V for a direct connection to power line.
CONVERSION EXAMPLES
1. Voltage readings
a) Assume device settings (direct wiring): PT ratio = 1; Voltage scale = 828V (690V + 20%).
Voltage engineering scales (see Section 4):
LO_ENG = -Pmax = -662.400kW
If the raw data reading is 5500 then the power reading in engineering units will be as follows:
Watts reading = 5500 × (662.400 - (-662.400))/(9999 - 0) + (-662.400) = 66.313kW
If the raw data reading is 500 then the power reading in engineering units will be as follows:
Watts reading = 500 × (662.400 - (-662.400))/(9999 - 0) + (-662.400) = -596.153kW
b) Assume device settings (wiring via PT): Wiring 4LN3; PT = 120; CT primary current = 200A.
Active Power engineering scales (see Section 4):
LO_ENG = -Pmax = -119,232kW
If the raw data reading is 5500 then the power reading in engineering units will be as follows:
Watts reading = 5500 × (119,232 - (-119,232))/(9999 - 0) + (-119,232) = 11,936kW
If the raw data reading is 500 then the power reading in engineering units will be as follows:
32-bit long integer data is transmitted in two adjacent 16-bit Modbus registers as unsigned
(UINT32) or signed (INT32) whole numbers.
The first register contains the low-order word (lower 16 bits) and the second register
contains the high order word (higher 16 bits). The low-order word always starts at an even
Modbus address. The value range for unsigned data is 0 to 4,294,967,295; for signed data
the range is -2,147,483,648 to 2,147,483,647.
If your Modbus driver does not support a 32-bit long integer format, you can read the two
16-bit registers separately, and then convert them into a 32-bit value as follows (using C
notation):
32-bit value = (signed short)high_order_register × 65536L + (unsigned short)low_order_register
EXAMPLES
1. Unsigned 32-bit Values
If you read unsigned Voltage V1 of 69,000V from registers 13952-13953, then the register readings will
be as follows:
(13952) = 3464
(13953) = 1
The 32-bit value is (1 x 65536 + 3464) = 69000V.
11
2. Signed 32-bit Values
If you read signed kW of -789kW from registers 14336-14337, then the register readings will be:
(14336) = 64747 (unsigned)
(14337) = 65535 (unsigned) or -1(signed value).
To take the high order register as a signed value, compare it with 32767. If the value is less or equal to
32767, use it as is. If it is greater than 32767, then this is a negative number in a two's complement
code (like in our example) - just subtract it from 65536 to get the original negative value.
The 32-bit reading is (-1 x 65536 + 64747) = -789kW.
Fractional 32-bit data is transmitted using a decimal pre-multipli er to pass fractional
numbers in an integer format. Fractional numbers are pre-multiplied by 10 to the power N,
where N is the number of digits in the fractional part.
For example, the frequency reading of 50.01 Hz is transmitted as 5001, having been premultiplied by 100. Whenever a data register contains a fractional number, the register
measurement unit is given with a multiplier ×0.1, ×0.01 or ×0.001, showing the weight of
the least significant decimal digit. To get an actual fractional number with specified
precision, multiply the register value by the given multiplier. To write a fractional number
into the register, divide the number by the given multiplier.
2.6.3 32-bit Modulo-10000 Format
Energy counters 287-294 and 301-302 are read in two contiguous 16-bit registers in a
modulo-10000 format. The first (low order) register contains the value mod 10000, and the
second (high order) register contains the value/10000. To get the true energy reading, the
high order register value should be multiplied by 10,000 and added to the low order
register.
2.7 User Assignable Registers
The PM172 contains 120 user assignable registers in the address range of 0 to 119, any of
which you can map to any register address accessible in the instrument. Registers that
reside in different locations may be accessed by a single request by re-mapping them to
adjacent addresses in the user assignable registers area.
The actual addresses of the assignable registers, which are accessed via addresses 0
through 119, are specified in the register map (registers 120 through 239), where register
120 contains the actual address of the register accessed via register 0, register 121
contains the actual address of the register accessed via register 1, and so on. The
assignable registers and the map registers themselves may not be re-mapped.
To build your own register map, write to map registers 120 to 239 the actual addresses you
want to read from or write to via the assignable area (registers 0 to 119). 32-bit long
registers should always be aligned at even addresses. For example, if you want to read
registers 7136 (1-second V1 voltage, scaled short integer) and 14720-14721 (kWh Import,
long integer) via registers 0-2, do the following:
- write 14720 to register 120
- write 14721 to register 121
- write 7136 to register 122
Reading from registers 0-2 will return the kWh reading in registers 0 (low 16 bits) and 1
(high 16 bits), and the voltage reading in register 2.
2.8 Password Protection
The PM172 has a password protection option allowing you to protect your setups,
cumulative registers and logs from being changed or cleared through communications. You
can disable or enable password protection through communications or via the front display.
For details, refer to your instrument Installation and Operation Manual.
12
When password protection is enabled, the user password you set in your instrument should
be written into the device authorization register (2575) before another write request is
issued. If the correct password is not supplied while password protection is enabled, the
instrument will respond to all write requests with the exception code 01 (illegal operation).
It is recommended to clear the password register after you have completed your changes in
order to activate password protection.
2.9 Data Recording and File Transfers
2.9.1 Log File Organization
Historical files are stored to the non-volatile memory with a battery backup. Memory is
allocated for each file statically when you set up your files and will not change unless you
re-organize the files. The PM172 automatically performs de-fragmentation of the memory
each time you re-organize your files. This helps keep all free memory in one continuous
chunk and thus prevents possible leakage of memory caused by fragmentation.
Data records in a file are arranged in the order of their recording. Each record has a unique
16-bit sequence number that is incremented modulo 65536 with each new record. The
sequence number can be used to point to a particular record in the file, or to check the
sequence of records when uploading files from the device.
Each file has a write position pointer that indicates the place where the next record will be
recorded, and a read position pointer that indicates the place from where the current record
will be read. Both pointers show sequence numbers of the records they point to rather than
record offsets in the file.
After acknowledging a record you have read, the read pointer automatically advances to the
next record in the file. When the read pointer gets to the record to which the file write
pointer points, the end-of-file (EOF) flag is set. It is automatically cleared when a new
record is added to the file, or when you explicitly move the read pointer to any record
within a file.
If a file has a wrap-around attribute (circular file), the most recent records can overwrite
the oldest records. When this happens at the current read position, the read pointer
automatically advances forward in order to point to the oldest record in the file.
The PM172 keeps a separate read pointer for each communication port so that access to the
same file through a different port will not affect current active sessions for other ports.
Multi-section Files
Log files can have one or more (up to 16) sections for multi-channel recording. An ordinal
file consists of a single section. Some files, such as daily profile log files and waveform log
files, are arranged as multi-section files.
A multi-section file is subdivided into multiple sections of the same structure, one section
per recording channel. The number of sections in each file is defined at the time you set up
your files and may not change unless you re-organize the file. Each section within a multisection file can be addressed through a particular register window related to the section.
A multi-section file has a single write position pointer for all sections and stores data in all
sections simultaneously. This means that records with the same sequence number in all
sections are associated with the same event. A multi-section file has also a single read
position pointer for all sections.
Data Log Files
Data log files can store up to 16 measured parameters per a record. Any data measured by
the device can be stored in the log file. The number of parameters that each record will hold
and the list of parameters you want to be recorded in the file can be selected through the
Data log setup registers for a particular file.
Recording data to the data log files can be triggered through the setpoints, either on a time
basis using the meter clock or periodic timers, or upon any event detected by the setpoints.
13
Profile Data Log File
Data log file #8 can be configured for a daily profile log of the energy usage and maximum
demand registers. A profile log file is organized as a multi-section file that has a separate
section for each energy and maximum demand register. A file record stores the summary
data (total of all tariffs) and all tariff data for each configured Summary/TOU register. See
Section 3.10 for information on the file record structure.
The number of sections is taken automatically from the Summary/TOU Registers setup.
Since each Summary/TOU energy register has a shadow maximum demand register, the
number of sections in the file can be twice the number of the allocated Summary/TOU
registers. Always configure the Summary/TOU registers before you allocate memory for
your profile log file.
New records are added to the file automatically every day at midnight. You can review the
list of parameters that are recorded to the file through the Data log #8 setup. It is preset
automatically by the meter and shows the recorded data for the first file section, which
represents the first configured energy usage register.
Waveform Log Files
Waveform log files are organized as multi-section files that store data for each recording
channel in a separate section. A waveform log file can record 6 AC channels simultaneously:
three voltage and three current waveforms. The number of sections in a file, or channels
that a file can store, is defined when you set up the file. The channels that a file will record
are selected in the waveform log setup. All selected channels are recorded in successive file
sections.
A waveform file has a single read pointer for all sections, so that data from all channels of a
single record can be read together without repositioning the file pointer. When you point to
a particular file record, data from all sections related to the same event are all available for
a read. Moreover, the PM172 takes all channel data for the currently accessed record to a
separate buffer, so that even when the record is overwritten at the time of reading, you are
still prevented from receiving partially updated data.
A single waveform record for a channel can contain up to 512 points of the sampled input
signal. Refer to the line frequency field in the channel header record to correctly set up the
time scale for the waveforms.
If a waveform log is configured to record more samples per event than a single record can
hold, the waveform recorder will store as many records per event as required to record the
entire event. All waveform records related to the event are merged in a series and have the
same series number, so that they can be plotted together. Each record within a series has a
unique serial number that allows tracking the sequence of records in a series. A single
waveform series can hold up to 81,920 points (2,560 cycles at a rate of 32 samples per
cycle) of a sampled AC signal.
2.9.2 File Transfers
File transfer protocol provides both data transfer and information services. File transfer is
performed through blocks of registers separate for each file and file section. File transfer
control registers allow changing the file or section position in order to point to the desired
record.
The information service uses separate status/control registers for each file. The extended
file information is available including current file pointers’ positions, the number of records
in the file, allocated file size, and more.
See Section 3.9 File Transfer Registers for information on register locations.
Common File Transfer
Log files can be read either in a sequence record-by-record, or in a random order. Each
read request fills the corresponding register block with the data of the record pointed to by
the file (or section) read pointer. If you want to begin reading a file from a particular
record, which sequence number is known, you can change the pointer position by writing
the desired sequence number into the file transfer control register. If you want to read a file
from the beginning, you can simply write a corresponding command to the file command
14
register that moves the pointer to the oldest file record. If you do not change the file
position, then you will continue reading the file from the record following the one you have
read the last time you accessed the file.
You need not explicitly move the file position to the following record if you want to continue
reading a file in a sequence after you have uploaded the current record. Instead, continue
reading the file through the file transfer block.
For the event log files, the file transfer block can contain up to 12 records that can be read
at once: the file position automatically moves to the record following the last one you have
just read in the file transfer block.
The file transfer is completed after you have read the last record of the file. Before storing a
file record to your database, always check bit 1 in the record status word, which contains
the end-of-file (EOF) flag. This bit set to 1 indicates that the file read pointer does not point
to any record within the file, and you should not store any record that has this bit set. The
EOF flag is set only after you have read the last record of the file, so that testing for end-offile requires one extra read. If you wish to stop the transfer just after storing the last file
record, check bit 0 in the record status word. Bit 0 is set to 1 only once when you read the
last record of the file.
The following gives a summary of steps you should do to read an ordinal log file:
1. If you want to begin reading a file from a particular record or from the first record,
either set the file position to the desired record sequence number, or preset the file
position to point to oldest record.
2. Read the record data through the corresponding file transfer block. The file pointer will
be automatically moved to the next file record.
3. Repeat steps 1-2 until all the file records are read, i.e., until either bit 0 or bit 1 is set in
the record status word.
Reading a Profile Log File
Reading a multi-section profile log file does not differ from reading ordinal files with the only
exception that each file section is accessed through a separate transfer block.
If you want to know which registers are recorded to the file sections before reading them,
check the daily profile log sections map through registers 3504-3505 (see Section 3.9, Fi le
Transfer Registers). This is a bitmap that contains one in a bit position if a designated
register is recorded to the file, and contains zero if it is not.
The following gives a summary of steps for a multi-section file:
1. If you want to begin reading a file section from a particular record or from the first
record, either set the file section position to the desired record sequence number, or
preset the file section position to point to oldest record.
2. Read the record data through the corresponding file section transfer block. The file
pointer automatically moves to the next file record.
3. Repeat steps 1-2 until all the file section records are read, i.e., until either bit 0 or bit 1
is set in the record status word.
Reading Waveform Files
Each waveform record consists of 6 channel records that are read in sequence always
starting with channel V1. Each channel’s data is read in two stages. The channel header
record is read first through a separate transfer block followed be reading the channel
sample series. When the channel V1 header is first accessed, the meter stores the
waveform records for all channels together into a communication buffer so you can then
read them through the dedicated transfer blocks without the risk of losing data. The
following gives a summary of steps for a waveform file:
1. If you want to begin reading a file from a particular record or from the first record,
either set the file position to the desired record sequence number, or preset the file
position to point to oldest record.
15
2. Read the V1 channel header data through the corresponding waveform header transfer
block. The record data is moved to the port’s communication buffer, and then the file
pointer automatically moves to the next record.
3. Read the V1 channel sample series through the waveform series transfer block.
4. Read the next channel’s header data through the corresponding waveform header
transfer block.
5. Read the sample series for the selected channel through the waveform series transfer
block.
6. Repeat steps 4, 5 until all channels’ records are read.
7. Repeat steps 2-6 until all the file records are read.
Reading Real-time Waveforms
Real-time waveforms are accessed through the separate transfer blocks just like the
waveform log data. The meter provides a large waveform buffer that can simultaneously
store 6 waveform records – three voltage and three current waveforms. Each time you read
the V1 channel header record, the meter captures new waveforms to the buffer so that you
can then read all of them through the waveform transfer blocks. The following gives a
summary of steps for reading real-time waveforms:
1. Read the V1 channel header data through the corresponding real-time waveform header
transfer block. The captured waveform’s data is moved to the port’s communication
buffer.
2. Read the V1 channel sample series through the waveform series transfer block.
3. Read the next channel’s header data through the corresponding waveform header
transfer block.
4. Read the sample series for the selected channel through the waveform series transfer
block.
5. Repeat steps 3, 4 until all channels’ records are read.
2.10 TCP Notification Client
The TCP notification client can establish connections with a remote Modbus/TCP server and send
notification messages either on events, or periodically on a time basis.
Notification messages are sent via a block of 16 Modbus registers using write function 16. The
following table shows the message exchange structure.
Modbus
Register
+0-1 Device serial number UINT32
+2-4 Device MAC address CHAR6
+5 Device address UINT16 Device port address
+6-7 Device IP address UINT32 Network byte order
+8 Event type UINT16 See F22 in Section 5
+9 Event sequence number UINT16
+10-11 Event timestamp, seconds UINT32 Local time since Jan 1, 1970
+12-13 Event timestamp, seconds fraction, in microseconds UINT32
+14-15 Reserved UINT32 Written as 0
After receiving a write acknowledgement from a server, a TCP connection is still open for 10
seconds (20 seconds via GPRS) to give the server an opportunity to access meter registers
through an open socket. It may help you access the meter from outside your local
network when the server is located on another network, or when using wireless GPRS
communications. The notification client will respond to all server requests as if it were a regular
incoming connection.
Description Type Comment
16
If the server does not close a connection, it will be closed in 20 seconds if there is no activity on
the socket. In the event a connection attempt was unsuccessful, the notification client retries
two more times before announcing a connection failure.
The server’s IP address, port number and starting Modbus register address are programmable in
the meter. See “TCP Notification Client Setup” for more information on the client setup. To
configure and enable the notification client in your meter via PAS, select Communication Setup
in the Meter Setup menu, and click on the TCP Notification Client Setup tab.
Client connections are triggered via programmable setpoints. To send event notifications to a
server, configure a setpoint to respond to desired triggers or to periodic time events and add
the "Send notification" action to the end of the setpoint actions list.
17
3 Modbus Register Map
3.1 Modbus Setup Registers
Address Point ID Description Options/Range Units Type R/W Notes
Modbus Assignable Registers
3.2 16-bit Scaled Analog Registers and Energy Counters - Basic Register Set
Address Point ID Description
Low and High Scales
256-308
+0 0x1100 V1/V12 Voltage 0-Vmax U1 UINT16 R 1
+1 0x1101 V2/V23 Voltage 0-Vmax U1 UINT16 R 1
+2 0x1102 V3/V31 Voltage 0-Vmax U1 UINT16 R 1
+3 0x1103 I1 Current 0-Imax U2 UINT16 R
+4 0x1104 I2 Current 0-Imax U2 UINT16 R
+5 0x1105 I3 Current 0-Imax U2 UINT16 R
+6 0x1106 kW L1 -Pmax-Pmax U3 INT16 R
+7 0x1107 kW L2 -Pmax-Pmax U3 INT16 R
+8 0x1108 kW L3 -Pmax-Pmax U3 INT16 R
+9 0x1109 kvar L1 -Pmax-Pmax U3 INT16 R
+10 0x110A kvar L2 -Pmax-Pmax U3 INT16 R
+11 0x110B kvar L3 -Pmax-Pmax U3 INT16 R
+12 0x110C kVA L1 -Pmax-Pmax U3 UINT16 R
+13 0x110D kVA L2 -Pmax-Pmax U3 UINT16 R
+14 0x110E kVA L3 -Pmax-Pmax U3 UINT16 R
+15 0x110F Power factor L1 -1.000-1.000 0.001 INT16 R
+16 0x1110 Power factor L2 -1.000-1.000 0.001 INT16 R
+17 0x1111 Power factor L3 -1.000-1.000 0.001 INT16 R
+18 0x1403 Total PF -1.000-1.000 0.001 INT16 R
+19 0x1400 Total kW -Pmax-Pmax U3 INT16 R
+20 0x1401 Total kvar -Pmax-Pmax U3 INT16 R
+21 0x1402 Total kVA -Pmax-Pmax U3 UINT16 R
+22 0x1501 In (neutral) Current 0-Imax U2 UINT16 R
+23 0x1502 Frequency 45.00-65.00 0.01Hz UINT16 R
+24 0x3709 Maximum kW import sliding window demand -Pmax-Pmax U3 UINT16 R
+25 0x160F kW import accumulated demand -Pmax-Pmax U3 UINT16 R
+26 0x370B Maximum kVA sliding window demand -Pmax-Pmax U3 UINT16 R
+27 0x1611 kVA accumulated demand -Pmax-Pmax U3 UINT16 R
+28 0x3703 I1 Maximum ampere demand 0-Imax U2 UINT16 R
+29 0x3704 I2 Maximum ampere demand 0-Imax U2 UINT16 R
+30 0x3705 I3 Maximum ampere demand 0-Imax U2 UINT16 R
+31 kWh import (low) 0-9999 1kWh UINT16 R
+32 kWh import (high) 0-9999
+33 kWh export (low) 0-9999 1kWh UINT16 R
+34 kWh export (high) 0-9999
+35 +kvarh net (low) 0-9999 1kvarh UINT16 R
+36 +kvarh net (high) 0-9999
+37 -kvarh net (low) 0-9999 1kvarh UINT16 R
+38 -kvarh net (high) 0-9999
2
Units2
×10MWh
×10MWh
×10Mvarh
×10Mvarh
Type R/W Notes
UINT16 R 5
UINT16 R 5
UINT16 R
UINT16 R
5
5
3, 5
3, 5
4, 5
4, 5
19
Address Point ID Description
+39 0x1112 V1/V12 Voltage THD 0-999.9 0.1% UINT16 R
+40 0x1113 V2/V23 Voltage THD 0-999.9 0.1% UINT16 R
+41 0x1114 V3/V31 Voltage THD 0-999.9 0.1% UINT16 R
Low and High Scales
2
Units2
Type R/W Notes
1
3-sec value
1
3-sec value
1
3-sec value
+42 0x1115 I1 Current THD 0-999.9 0.1% UINT16 R 3-sec value
+43 0x1116 I2 Current THD 0-999.9 0.1% UINT16 R 3-sec value
+44 0x1117 I3 Current THD 0-999.9 0.1% UINT16 R 3-sec value
+45 kVAh (low) 0-9999 1kVAh UINT16 R
+46 kVAh (high) 0-9999 10MVAh UINT16 R
5
5
+47 0x1609 Present kW import sliding window demand -Pmax-Pmax U3 UINT16 R
+48 0x160B Present kVA sliding window demand -Pmax-Pmax U3 UINT16 R
+49 0x1615 PF (import) at Max. kVA sliding window demand 0-1.000 0.001 UINT16 R
+50 0x111B I1 Current TDD 0-100.0 0.1% UINT16 R 3-sec value
+51 0x111C I2 Current TDD 0-100.0 0.1% UINT16 R 3-sec value
+52 0x111D I3 Current TDD 0-100.0 0.1% UINT16 R 3-sec value
NOTES:
Energy and Power demand readings are only available in the meters with suffixes E and EH.
1
Voltage and Voltage Harmonics Readings:
When the 4LN3, 3LN3 or 3BLN3 wiring mode is selected, the voltages will be line-to-neutral; for any other wiring mode, they will be line-to-line voltages.
When the 4LN3, 4LL3, 3LN3, 3LL3, 3BLN3 or 3BLL3 wiring mode is selected, the voltage harmonics will be line-to-neutral; for any other wiring mode, they will be line-to-line.
2
All analog registers except of harmonics are 1-second average values. For volts, amps and power scales and units, refer to Section 4 ”Data Scales and Units”. For analog data scaling
formulas and examples, see Section 2.6.1, “16-bit Scaled Integer Format”.
3
Positive readings of kvarh net
4
Negative readings of kvarh net
5
If you use these energy registers instead of 32-bit registers, limit the energy roll value to 8 digits (see Device Options Setup) to avoid overflow.
20
3.3 16-bit Scaled Analog Registers, Binary Registers and Counters
Address Point ID Description
Low and High Scales
6656 0x0000 None 0 UINT16 R
6696-6697 Special Inputs
+0 0x0100
Voltage disturbance
EH
0-100 % UINT16 R
+1 0x0101 Phase rotation order 0=error, 1=positive (ABC),
2=negative (CBA)
6776 0x0300 Event Flags (bitmap) EH 0x0000-0x00FF UINT16 R
6896 0x0600 Digital Inputs (bitmap) 0x0000-0x0003 UINT16 R
6976 0x0800 Relay Outputs (bitmap) 0x0000-0x0003 UINT16 R
+0 0x0C00 V1/V12 Voltage 0-Vmax U1 UINT16 R 1
+1 0x0C01 V2/V23 Voltage 0-Vmax U1 UINT16 R 1
+2 0x0C02 V3/V31 Voltage 0-Vmax U1 UINT16 R 1
+3 0x0C03 I1 Current 0-Imax U2 UINT16 R
+4 0x0C04 I2 Current 0-Imax U2 UINT16 R
+5 0x0C05 I3 Current 0-Imax U2 UINT16 R
+6 0x0C06 kW L1 -Pmax-Pmax U3 INT16 R
+7 0x0C07 kW L2 -Pmax-Pmax U3 INT16 R
+8 0x0C08 kW L3 -Pmax-Pmax U3 INT16 R
+9 0x0C09 kvar L1 -Pmax-Pmax U3 INT16 R
+10 0x0C0A kvar L2 -Pmax-Pmax U3 INT16 R
+11 0x0C0B kvar L3 -Pmax-Pmax U3 INT16 R
+12 0x0C0C kVA L1 0-Pmax U3 UINT16 R
+13 0x0C0D kVA L2 0-Pmax U3 UINT16 R
+14 0x0C0E kVA L3 0-Pmax U3 UINT16 R
+15 0x0C0F Power factor L1 -1.000-1.000 0.001 INT16 R
+16 0x0C10 Power factor L2 -1.000-1.000 0.001 INT16 R
+17 0x0C11 Power factor L3 -1.000-1.000 0.001 INT16 R
+18 0x0C12 V1/V12 Voltage THD 0-999.9 0.1% UINT16 R
+19 0x0C13 V2/V23 Voltage THD 0-999.9 0.1% UINT16 R
+20 0x0C14 V3/V31 Voltage THD 0-999.9 0.1% UINT16 R
+21 0x0C15 I1 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+22 0x0C16 I2 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+23 0x0C17 I3 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+24 0x0C18 I1 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+25 0x0C19 I2 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
2
Units2
Type R/W Notes
UINT16 R
1
4-cycle value
1
4-cycle value
1
4-cycle value
21
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
+26 0x0C1A I3 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+27 0x0C1B I1 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+28 0x0C1C I2 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+29 0x0C1D I3 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+30 0x0C1E V12 Voltage 0-Vmax U1 UINT16 R
+31 0x0C1F V23 Voltage 0-Vmax U1 UINT16 R
+32 0x0C20 V31 Voltage 0-Vmax U1 UINT16 R
7256-7359 1-Cycle Total Values
+0 0x0F00 Total kW -Pmax-Pmax U3 INT16 R
+1 0x0F01 Total kvar -Pmax-Pmax U3 INT16 R
+2 0x0F02 Total kVA 0-Pmax U3 UINT16 R
+3 0x0F03 Total PF -1.000-1.000 0.001 INT16 R
+4 0x0F04 Total PF lag 0-1.000 0.001 UINT16 R
+5 0x0F05 Total PF lead 0-1.000 0.001 UINT16 R
+5 0x0F06 Total kW import 0-Pmax U3 UINT32 R
+7 0x0F07 Total kW export 0-Pmax U3 UINT32 R
+8 0x0F08 Total kvar import 0-Pmax U3 UINT32 R
+9 0x0F09 Total kvar export 0-Pmax U3 UINT32 R
+10 0x0F0A 3-phase average L-N/L-L voltage 0-Vmax U1 UINT32 R
1
+11 0x0F0B 3-phase average L-L voltage 0-Vmax U1 UINT32 R
+12 0x0F0C 3-phase average current 0-Imax U2 UINT32 R
7296-7300 1-Cycle Auxiliary Values
+0 0x1000 Not used UINT16 R
+1 0x1001 In (neutral) Current 0-Imax U2 UINT16 R
+2 0x1002 Frequency 0-Fmax 0.01Hz UINT16 R
+3 0x1003 Voltage unbalance 0-300 % UINT16 R
+4 0x1004 Current unbalance 0-300 % UINT16 R
7316-7331 Phasor
+0 0x1080 V1/V12 Voltage magnitude 0-Vmax U1 UINT16 R
+1 0x1081 V2/V23 Voltage magnitude 0-Vmax U1 UINT16 R
+2 0x1082 V3/V31 Voltage magnitude 0-Vmax U1 UINT16 R
1
1
1
+3 0x1083 Not used UINT16 R
+4 0x1084 I1 Current magnitude 0-Imax U2 UINT16 R
+5 0x1085 I2 Current magnitude 0-Imax U2 UINT16 R
+5 0x1086 I3 Current magnitude 0-Imax U2 UINT16 R
+7 0x1087 Not used UINT16 R
+8 0x1088 V1/V12 Voltage angle -180.0-180.0 0.1º INT16 R
+9 0x1089 V2/V23 Voltage angle -180.0-180.0 0.1º INT16 R
+10 0x108A V3/V31 Voltage angle -180.0-180.0 0.1º INT16 R
1
1
1
+11 0x108B Not used INT16 R
+12 0x108C I1 Current angle -180.0-180.0 0.1º INT16 R
+13 0x108D I2 Current angle -180.0-180.0 0.1º INT16 R
+14 0x108E I3 Current angle -180.0-180.0 0.1º INT16 R
22
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
+15 0x108F Not used INT16 R
7336-7368 1-Second Phase Values
+0 0x1100 V1/V12 Voltage 0-Vmax U1 UINT16 R 1
+1 0x1101 V2/V23 Voltage 0-Vmax U1 UINT16 R 1
+2 0x1102 V3/V31 Voltage 0-Vmax U1 UINT16 R 1
+3 0x1103 I1 Current 0-Imax U2 UINT16 R
+4 0x1104 I2 Current 0-Imax U2 UINT16 R
+5 0x1105 I3 Current 0-Imax U2 UINT16 R
+6 0x1106 kW L1 -Pmax-Pmax U3 INT16 R
+7 0x1107 kW L2 -Pmax-Pmax U3 INT16 R
+8 0x1108 kW L3 -Pmax-Pmax U3 INT16 R
+9 0x1109 kvar L1 -Pmax-Pmax U3 INT16 R
+10 0x110A kvar L2 -Pmax-Pmax U3 INT16 R
+11 0x110B kvar L3 -Pmax-Pmax U3 INT16 R
+12 0x110C kVA L1 0-Pmax U3 UINT16 R
+13 0x110D kVA L2 0-Pmax U3 UINT16 R
+14 0x110E kVA L3 0-Pmax U3 UINT16 R
+15 0x110F Power factor L1 -1.000-1.000 0.001 INT16 R
+16 0x1110 Power factor L2 -1.000-1.000 0.001 INT16 R
+17 0x1111 Power factor L3 -1.000-1.000 0.001 INT16 R
+18 0x1112 V1/V12 Voltage THD 0-999.9 0.1% UINT16 R
+19 0x1113 V2/V23 Voltage THD 0-999.9 0.1% UINT16 R
+20 0x1114 V3/V31 Voltage THD 0-999.9 0.1% UINT16 R
1
3-sec value
1
3-sec value
1
3-sec value
+21 0x1115 I1 Current THD 0-999.9 0.1% UINT16 R 3-sec value
+22 0x1116 I2 Current THD 0-999.9 0.1% UINT16 R 3-sec value
+23 0x1117 I3 Current THD 0-999.9 0.1% UINT16 R 3-sec value
+24 0x1118 I1 K-Factor 1.0-999.9 0.1 UINT16 R 3-sec value
+25 0x1119 I2 K-Factor 1.0-999.9 0.1 UINT16 R 3-sec value
+26 0x111A I3 K-Factor 1.0-999.9 0.1 UINT16 R 3-sec value
+27 0x111B I1 Current TDD 0-100.0 0.1% UINT16 R 3-sec value
+28 0x111C I2 Current TDD 0-100.0 0.1% UINT16 R 3-sec value
+29 0x111D I3 Current TDD 0-100.0 0.1% UINT16 R 3-sec value
+30 0x111E V12 Voltage 0-Vmax U1 UINT16 R
+31 0x111F V23 Voltage 0-Vmax U1 UINT16 R
+32 0x1120 V31 Voltage 0-Vmax U1 UINT16 R
7456-7459 1-Second Total Values
+0 0x1400 Total kW -Pmax-Pmax U3 INT16 R
+1 0x1401 Total kvar -Pmax-Pmax U3 INT16 R
+2 0x1402 Total kVA 0-Pmax U3 UINT16 R
+3 0x1403 Total PF -1.000-1.000 0.001 INT16 R
+4 0x1404 Total PF lag 0-1.000 0.001 UINT16 R
+5 0x1405 Total PF lead 0-1.000 0.001 UINT16 R
+5 0x1406 Total kW import 0-Pmax U3 UINT32 R
23
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
+7 0x1407 Total kW export 0-Pmax U3 UINT32 R
+8 0x1408 Total kvar import 0-Pmax U3 UINT32 R
+9 0x1409 Total kvar export 0-Pmax U3 UINT32 R
+10 0x140A 3-phase average L-N/L-L voltage 0-Vmax U1 UINT32 R
1
+11 0x140B 3-phase average L-L voltage 0-Vmax U1 UINT32 R
+12 0x140C 3-phase average current 0-Imax U2 UINT32 R
7496-7500 1-Second Auxiliary Values
+0 0x1500 Not used UINT16 R
+1 0x1501 In (neutral) Current 0-Imax U2 UINT16 R
+2 0x1502 Frequency 0-Fmax 0.01Hz UINT16 R
+3 0x1503 Voltage unbalance 0-300 % UINT16 R
+4 0x1504 Current unbalance 0-300 % UINT16 R
7516-7527 Present Harmonic Demands
+0 0x1580 V1/V12 THD demand 0-999.9 0.1% UINT16 R
+1 0x1581 V2/V23 THD demand 0-999.9 0.1% UINT16 R
+2 0x1582 V3/V31 THD demand 0-999.9 0.1% UINT16 R
1
1
1
+3 0x1583 Not used UINT16 R
+4 0x1584 I1 THD demand 0-999.9 0.1% UINT16 R
+5 0x1585 I2 THD demand 0-999.9 0.1% UINT16 R
+5 0x1586 I3 THD demand 0-999.9 0.1% UINT16 R
+7 0x1587 Not used UINT16 R
+8 0x1588 I1 TDD demand 0-100.0 0.1% UINT16 R
+9 0x1589 I2 TDD demand 0-100.0 0.1% UINT16 R
+10 0x158A I3 TDD demand 0-100.0 0.1% UINT16 R
+11 0x158B Not used UINT16 R
7536-7565 Present Volt, Ampere and Power Demands
+0 0x1600 V1/V12 Volt demand 0-Vmax U1 UINT16 R
+1 0x1601 V2/V23 Volt demand 0-Vmax U1 UINT16 R
+2 0x1602 V3/V31 Volt demand 0-Vmax U1 UINT16 R
1
1
1
+3 0x1603 I1 Ampere demand 0-Imax U2 UINT16 R
+4 0x1604 I2 Ampere demand 0-Imax U2 UINT16 R
+5 0x1605 I3 Ampere demand 0-Imax U2 UINT16 R
+6 0x1606 kW import block demand 0-Pmax U3 UINT16 R
+7 0x1607 kvar import block demand 0-Pmax U3 UINT16 R
+8 0x1608 kVA block demand 0-Pmax U3 UINT16 R
+9 0x1609 kW import sliding window demand 0-Pmax U3 UINT16 R
+10 0x160A kvar import sliding window demand 0-Pmax U3 UINT16 R
+11 0x160B kVA sliding window demand 0-Pmax U3 UINT16 R
+12 0x160C Not used UINT16 R
+13 0x160D Not used UINT16 R
+14 0x160E Not used UINT16 R
+15 0x160F kW import accumulated demand 0-Pmax U3 UINT16 R
+16 0x1610 kvar import accumulated demand 0-Pmax U3 UINT16 R
24
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
+17 0x1611 kVA accumulated demand 0-Pmax U3 UINT16 R
+18 0x1612 kW import predicted sliding window demand 0-Pmax U3 UINT16 R
+19 0x1613 kvar import predicted sliding window demand 0-Pmax U3 UINT16 R
+20 0x1614 kVA predicted sliding window demand 0-Pmax U3 UINT16 R
+21 0x1615 PF (import) at Max. kVA sliding window demand 0-1.000 0.001 UINT16 R
+22 0x1616 kW export block demand 0-Pmax U3 UINT16 R
+23 0x1617 kvar export block demand 0-Pmax U3 UINT16 R
+24 0x1618 kW export sliding window demand 0-Pmax U3 UINT16 R
+25 0x1619 kvar export sliding window demand 0-Pmax U3 UINT16 R
+26 0x161A kW export accumulated demand 0-Pmax U3 UINT16 R
+27 0x161B kvar export accumulated demand 0-Pmax U3 UINT16 R
+28 0x161C kW export predicted sliding window demand 0-Pmax U3 UINT16 R
+29 0x161D kvar export predicted sliding window demand 0-Pmax U3 UINT16 R
7576-7611 Total Energies E
+0,1 0x1700
kWh import
0-999,999,999 1 kWh UINT32 R
+2,3 0x1701 kWh export 0-999,999,999 1 kWh UINT32 R
+4,5 Not used INT32 R
+6,7 Not used UINT32 R
+8,9 0x1704 kvarh import 0-999,999,999 1 kvarh UINT32 R
+10,11 0x1705 kvarh export 0-999,999,999 1 kvarh UINT32 R
+12,13 Not used INT32 R
+14,15 Not used UINT32 R
+16,17 0x1708 kVAh total 0-999,999,999 1 kVAh UINT32 R
+18-25 Not used UINT32 R
+26,27 0x170D
+28,29 0x170E
Harmonic kWh import
Harmonic kWh export
EH
EH
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
+30-33 Not used UINT32 R
+34,35 0x1711
Harmonic kVAh total
EH
0-999,999,999 1 kVAh UINT32 R
7616-7633 Phase Energies E
+0,1 0x1800
+2,3 0x1801
+4,5 0x1802
kWh import L1
kWh import L2
kWh import L3
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
+6,7 0x1803 kvarh import L1 0-999,999,999 1 kvarh UINT32 R
+8,9 0x1804 kvarh import L2 0-999,999,999 1 kvarh UINT32 R
+10,11 0x1805 kvarh import L3 0-999,999,999 1 kvarh UINT32 R
+12,13 0x1806 kVAh total L1 0-999,999,999 1 kVAh UINT32 R
+14,15 0x1807 kVAh total L2 0-999,999,999 1 kVAh UINT32 R
+16,17 0x1808 kVAh total L3 0-999,999,999 1 kVAh UINT32 R
7656-7695 V1/V12 Harmonic Distortions EH
+0 0x1900
+1 0x1901
H01 Harmonic distortion
H02 Harmonic distortion
0-100.00 0.01% UINT16 R
0-100.00 0.01% UINT16 R
1
...
25
Address Point ID Description
+39 0x1927
H40 Harmonic distortion
Low and High Scales
0-100.00 0.01% UINT16 R
7696-7735 V2/V23 Harmonic Distortions EH
+0 0x1A00
+1 0x1A01
H01 Harmonic distortion
H02 Harmonic distortion
0-100.00 0.01% UINT16 R
0-100.00 0.01% UINT16 R
2
Units2
Type R/W Notes
1
...
+39 0x1A27
H40 Harmonic distortion
7736-7775 V3/V31 Harmonic Distortions EH
+0 0x1B00
+1 0x1B01
H01 Harmonic distortion
H02 Harmonic distortion
0-100.00 0.01% UINT16 R
1
0-100.00 0.01% UINT16 R
0-100.00 0.01% UINT16 R
...
+39 0x1B27
H40 Harmonic distortion
0-100.00 0.01% UINT16 R
7776-7815 I1 Harmonic Distortions EH
+0 0x1C00
+1 0x1C01
H01 Harmonic distortion
H02 Harmonic distortion
0-100.00 0.01% UINT16 R
0-100.00 0.01% UINT16 R
...
+39 0x1C27
H40 Harmonic distortion
0-100.00 0.01% UINT16 R
7816-7855 I2 Harmonic Distortions EH
+0 0x1D00
+1 0x1D01
H01 Harmonic distortion
H02 Harmonic distortion
0-100.00 0.01% UINT16 R
0-100.00 0.01% UINT16 R
...
+39 0x1D27
H40 Harmonic distortion
0-100.00 0.01% UINT16 R
7856-7895 I3 Harmonic Distortions EH
+0 0x1E00
+1 0x1E01
H01 Harmonic distortion
H02 Harmonic distortion
0-100.00 0.01% UINT16 R
0-100.00 0.01% UINT16 R
...
+39 0x1E27
H40 Harmonic distortion
0-100.00 0.01% UINT16 R
8296-8313 Fundamental (H01) Phase Values 4-cycle values
+0 0x2900 V1/V12 Voltage 0-Vmax U1 UINT16 R 1
+1 0x2901 V2/V23 Voltage 0-Vmax U1 UINT16 R 1
+2 0x2902 V3/V31 Voltage 0-Vmax U1 UINT16 R 1
+3 0x2903 I1 Current 0-Imax U2 UINT16 R
+4 0x2904 I2 Current 0-Imax U2 UINT16 R
+5 0x2905 I3 Current 0-Imax U2 UINT16 R
+6 0x2906 kW L1 -Pmax-Pmax U3 INT16 R
+7 0x2907 kW L2 -Pmax-Pmax U3 INT16 R
+8 0x2908 kW L3 -Pmax-Pmax U3 INT16 R
+9 0x2909 kvar L1 -Pmax-Pmax U3 INT16 R
+10 0x290A kvar L2 -Pmax-Pmax U3 INT16 R
+11 0x290B kvar L3 -Pmax-Pmax U3 INT16 R
+12 0x290C kVA L1 0-Pmax U3 UINT16 R
+13 0x290D kVA L2 0-Pmax U3 UINT16 R
26
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
+14 0x290E kVA L3 0-Pmax U3 UINT16 R
+15 0x290F Power factor L1 -1.000-1.000 0.001 INT16 R
+16 0x2910 Power factor L2 -1.000-1.000 0.001 INT16 R
+17 0x2911 Power factor L3 -1.000-1.000 0.001 INT16 R
8336-8343 Harmonic Total Values 4-cycle values
+0 0x2A00 Total fundamental kW -Pmax-Pmax U3 INT16 R
+1 0x2A01 Total fundamental kvar -Pmax-Pmax U3 INT16 R
+2 0x2A02 Total fundamental kVA 0-Pmax U3 UINT16 R
+3 0x2A03 Total fundamental PF -1.000-1.000 0.001 INT16 R
+4 0x2A04
Total harmonic kW
EH
-Pmax-Pmax U3 INT16 R
+5 0x2A05 Not used INT16 R
+6 0x2A06
Total harmonic kVA
EH
0-Pmax U3 UINT16 R
+7 0x2A07 Not used INT16 R
8416-8445 Minimum 1-Cycle Phase Values
+0 0x2C00 V1/V12 Voltage 0-Vmax U1 UINT16 R 1
+1 0x2C01 V2/V23 Voltage 0-Vmax U1 UINT16 R 1
+2 0x2C02 V3/V31 Voltage 0-Vmax U1 UINT16 R 1
+3 0x2C03 I1 Current 0-Imax U2 UINT16 R
+4 0x2C04 I2 Current 0-Imax U2 UINT16 R
+5 0x2C05 I3 Current 0-Imax U2 UINT16 R
+6-17 0x2C06-
Not used 0 INT16 R
0x2C11
+18 0x2C12 V1/V12 Voltage THD 0-9999 0.1% UINT16 R
+19 0x2C13 V2/V23 Voltage THD 0-9999 0.1% UINT16 R
+20 0x2C14 V3/V31 Voltage THD 0-999.9 0.1% UINT16 R
1
4-cycle value
1
4-cycle value
1
4-cycle value
+21 0x2C15 I1 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+22 0x2C16 I2 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+23 0x2C17 I3 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+24 0x2C18 I1 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+25 0x2C19 I2 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+26 0x2C1A I3 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+27 0x2C1B I1 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+28 0x2C1C I2 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+29 0x2C1D I3 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
8456-8459 Minimum 1-Cycle Total Values
+0 0x2D00 Total kW -Pmax-Pmax U3 INT16 R
+1 0x2D01 Total kvar -Pmax-Pmax U3 INT16 R
+2 0x2D02 Total kVA 0-Pmax U3 UINT16 R
+3 0x2D03 Total PF 0-1.000 0.001 UINT16 R Absolute value
8496-8498 Minimum 1-Cycle Auxiliary Values
+0 0x2E00 Not used U2 UINT16 R
+1 0x2E01 In Current 0-Imax U2 UINT16 R
+2 0x2E02 Frequency 0-Fmax 0.01Hz UINT16 R
27
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
8736-8765 Maximum 1-Cycle Phase Values
+0 0x3400 V1/V12 Voltage 0-Vmax U1 UINT16 R 1
+1 0x3401 V2/V23 Voltage 0-Vmax U1 UINT16 R 1
+2 0x3402 V3/V31 Voltage 0-Vmax U1 UINT16 R 1
+3 0x3403 I1 Current 0-Imax U2 UINT16 R
+4 0x3404 I2 Current 0-Imax U2 UINT16 R
+5 0x3405 I3 Current 0-Imax U2 UINT16 R
+6-17 0x3406-
Not used 0 INT16 R
0x3411
+18 0x3412 V1 Voltage THD 0-999.9 0.1% UINT16 R
+19 0x3413 V2 Voltage THD 0-999.9 0.1% UINT16 R
+20 0x3414 V3 Voltage THD 0-999.9 0.1% UINT16 R
1
4-cycle value
1
4-cycle value
1
4-cycle value
+21 0x3415 I1 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+22 0x3416 I2 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+23 0x3417 I3 Current THD 0-999.9 0.1% UINT16 R 4-cycle value
+24 0x3418 I1 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+25 0x3419 I2 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+26 0x341A I3 K-Factor 1.0-999.9 0.1 UINT16 R 4-cycle value
+27 0x341B I1 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+28 0x341C I2 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
+29 0x341D I3 Current TDD 0-100.0 0.1% UINT16 R 4-cycle value
8776-8779 Maximum 1-Cycle Total Values
+0 0x3500 Total kW -Pmax-Pmax U3 INT16 R
+1 0x3501 Total kvar -Pmax-Pmax U3 INT16 R
+2 0x3502 Total kVA 0-Pmax U3 UINT16 R
+3 0x3503 Total PF 0-1.000 0.001 UINT16 R Absolute value
881608818 Maximum 1-Cycle Auxiliary Values
+0 0x3600 Not used U2 UINT16 R
+1 0x3601 In Current 0-Imax U2 UINT16 R
+2 0x3602 Frequency 0-Fmax 0.01Hz UINT16 R
8856-8872 Maximum Demands
+0 0x3700 V1/V12 Maximum volt demand 0-Vmax U1 UINT16 R
+1 0x3701 V2/V23 Maximum volt demand 0-Vmax U1 UINT16 R
+2 0x3702 V3/V31 Maximum volt demand 0-Vmax U1 UINT16 R
1
1
1
+3 0x3703 I1 Maximum ampere demand 0-Imax U2 UINT16 R
+4 0x3704 I2 Maximum ampere demand 0-Imax U2 UINT16 R
+5 0x3705 I3 Maximum ampere demand 0-Imax U2 UINT16 R
+6 0x3706 Not used UINT16 R
+7 0x3707 Not used UINT16 R
+8 0x3708 Not used UINT16 R
+9 0x3709 Maximum kW import sliding window demand 0-Pmax U3 UINT16 R
+10 0x370A Maximum kvar import sliding window demand 0-Pmax U3 UINT16 R
+11 0x370B Maximum kVA sliding window demand 0-Pmax U3 UINT16 R
28
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
+12 0x370C Not used UINT16 R
+13 0x370D Not used UINT16 R
+14 0x370E Not used UINT16 R
+15 0x370F Maximum kW export sliding window demand 0-Pmax U3 UINT16 R
+16 0x3710 Maximum kvar export sliding window demand 0-Pmax U3 UINT16 R
7200-7211 Maximum Harmonic Demands
+0 0x3880 V1/V12 THD demand 0-999.9 0.1% UINT16 R
+1 0x3881 V2/V23 THD demand 0-999.9 0.1% UINT16 R
+2 0x3882 V3/V31 THD demand 0-999.9 0.1% UINT16 R
1
1
1
+3 0x3883 Not used UINT16 R
+4 0x3884 I1 THD demand 0-999.9 0.1% UINT16 R
+5 0x3885 I2 THD demand 0-999.9 0.1% UINT16 R
+6 0x3886 I3 THD demand 0-999.9 0.1% UINT16 R
+7 0x3887 Not used UINT16 R
+8 0x3888 I1 TDD demand 0-100.0 0.1% UINT16 R
+9 0x3889 I2 TDD demand 0-100.0 0.1% UINT16 R
+10 0x388A I3 TDD demand 0-100.0 0.1% UINT16 R
+11 0x388B Not used UINT16 R
9016-9017 Scaled Analog Inputs
+0 0x3B00 Analog input AI1 AI1min-AI1Max UINT16 R
+1 0x3B01 Analog input AI2 AI2min-AI2Max UINT16 R
9036-9037 Raw Analog Inputs
+0 0x3B80 Analog input AI1 0-4095 UINT16 R
+1 0x3B81 Analog input AI2 0-4095 UINT16 R
9056-9057 TOU Parameters E
+0 0x3C00 Active tariff 0-7 UINT16 R/W
+1 0x3C01 Active profile 0-15:
UINT16 R/W
0-3 = Season 1 Profile #1-4,
4-7 = Season 2 Profile #1-4,
8-11 = Season 3 Profile #1-4,
12-15 = Season 4 Profile #1-4
9076-9077 Scaled Analog Outputs
+0 0x3C80 Analog output AO1 0-4095 UINT16 R/W
+1 0x3C81 Analog output AO2 0-4095 UINT16 R/W
9096-9111 TOU Energy Register #1 E
+0,1 0x3D00
+2,3 0x3D01
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
+14,15 0x3D07
Tariff #8 register
0-999,999,999 1 kWh UINT32 R
9136-9151 TOU Energy Register #2 E
+0,1 0x3E00
+2,3 0x3E01
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
29
Address Point ID Description
+14,15 0x3E07
Tariff #8 register
Low and High Scales
0-999,999,999 1 kWh UINT32 R
2
Units2
Type R/W Notes
9176-9191 TOU Energy Register #3 E
+0,1 0x3F00
+2,3 0x3F01
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
+14,15 0x3F07
Tariff #8 register
0-999,999,999 1 kWh UINT32 R
9216-9231 TOU Energy Register #4 E
+0,1 0x4000
+2,3 0x4001
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
+14,15 0x4007
Tariff #8 register
0-999,999,999 1 kWh UINT32 R
9256-9271 TOU Energy Register #5 E
+0,1 0x4100
+2,3 0x4101
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
+14,15 0x4107
Tariff #8 register
0-999,999,999 1 kWh UINT32 R
9296-9311 TOU Energy Register #6 E
+0,1 0x4200
+2,3 0x4201
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
+14,15 0x4207
Tariff #8 register
0-999,999,999 1 kWh UINT32 R
9336-9351 TOU Energy Register #7 E
+0,1 0x4300
+2,3 0x4301
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
… R
+14,15 0x4307
Tariff #8 register
0-999,999,999 1 kWh UINT32 R
9376-9391 TOU Energy Register #8 E
+0,1 0x4400
+2,3 0x4401
Tariff #1 register
Tariff #2 register
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
Summary register #1 maximum demand
Summary register #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4787
Summary register #8 maximum demand
0-Pmax U3 UINT16 R
9536-9543 TOU Maximum Demand Register #1 E
+0 0x4800
+1 0x4801
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4807
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
9576-9583 TOU Maximum Demand Register #2 E
+0 0x4900
+1 0x4901
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4907
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
9616-9623 TOU Maximum Demand Register #3 E
+0 0x4A00
+1 0x4A01
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4A07
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
9556-9563 TOU Maximum Demand Register #4 E
+0 0x4880
+1 0x4881
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4887
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
9596-9603 TOU Maximum Demand Register #5 E
+0 0x4980
+1 0x4981
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4987
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
9636-9643 TOU Maximum Demand Register #6 E
+0 0x4A80
+1 0x4A81
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x4A87
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
31
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
9656-9663 TOU Maximum Demand Register #7 E
+0 0x5300
+1 0x5301
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x5307
Tariff #8 maximum demand
0-Pmax U3 UINT16 R
9676-9683 TOU Maximum Demand Register #8 E
+0 0x5380
+1 0x5381
Tariff #1 maximum demand
Tariff #2 maximum demand
0-Pmax U3 UINT16 R
0-Pmax U3 UINT16 R
… R
+7 0x5387
Tariff #8 maximum demand
10656-10695 V1/V12 Harmonic Angles EH
+0 0x6400
+1 0x6401
H01 Harmonic angle
H02 Harmonic angle
0-Pmax U3 UINT16 R
1, 3
-180.0-180.0 0.1º INT16 R
-180.0-180.0 0.1º INT16 R
...
+39 0x6427
H40 Harmonic angle
10696-10735 V2/V23 Harmonic Angles EH
+0 0x6500
+1 0x6501
H01 Harmonic angle
H02 Harmonic angle
-180.0-180.0 0.1º INT16 R
1, 3
-180.0-180.0 0.1º INT16 R
-180.0-180.0 0.1º INT16 R
...
+39 0x6527
H40 Harmonic angle
10736-10775 V1/V31 Harmonic Angles EH
+0 0x6600
+1 0x6601
H01 Harmonic angle
H02 Harmonic angle
-180.0-180.0 0.1º INT16 R
1, 3
-180.0-180.0 0.1º INT16 R
-180.0-180.0 0.1º INT16 R
...
+39 0x6627
H40 Harmonic angle
10816-10855 I1 Harmonic Angles EH
+0 0x6800
+1 0x6801
H01 Harmonic angle
H02 Harmonic angle
-180.0-180.0 0.1º INT16 R
3
-180.0-180.0 0.1º INT16 R
-180.0-180.0 0.1º INT16 R
...
+39 0x6827
H40 Harmonic angle
10856-10895 I2 Harmonic Angles EH
+0 0x6900
+1 0x6901
H01 Harmonic angle
H02 Harmonic angle
-180.0-180.0 0.1º INT16 R
3
-180.0-180.0 0.1º INT16 R
-180.0-180.0 0.1º INT16 R
...
+39 0x6927
H40 Harmonic angle
10896-10935 I3 Harmonic Angles EH
+0 0x6A00
+1 0x6A01
H01 Harmonic angle
H02 Harmonic angle
-180.0-180.0 0.1º INT16 R
3
-180.0-180.0 0.1º INT16 R
-180.0-180.0 0.1º INT16 R
...
+39 0x6A27
H40 Harmonic angle
-180.0-180.0 0.1º INT16 R
32
Address Point ID Description
Low and High Scales
2
Units2
Type R/W Notes
11616 0x7C00 Setpoint Status (bitmap) 0x0000-0xFFFF UINT16 R
NOTES:
Energy and Power demand readings are only available in the meters with suffixes E and EH.
1
Voltage and Voltage Harmonics Readings:
When the 4LN3, 3LN3 or 3BLN3 wiring mode is selected, the voltages will be line-to-neutral; for any other wiring mode, they will be line-to-line voltages.
When the 4LN3, 4LL3, 3LN3, 3LL3, 3BLN3 or 3BLL3 wiring mode is selected, the voltage harmonics will be line-to-neutral; for any other wiring mode, they will be line-to-line.
2
For volts, amps, power and frequency scales and units refer to Section 4 ”Data Scales and Units”. For analog data scaling formulas and examples, see Section 2.6.1, “16-bit Scaled Integer
Format”.
3
Harmonic angles are referenced to the fundamental voltage harmonic H01 on phase L1.
33
3.4 32-bit Analog Registers, Binary Registers and Counters
Address Point ID Description
11776-11777 0x0000 None 0 UINT32 R
11904-11907 Special Inputs
+0,1 0x0100
+2,3 0x0101 Phase rotation order 0=error, 1=positive (ABC),
12160-12161 0x0300 Event Flags (bitmap) EH 0x00000000-0x000000FF UINT32 R
12544-12545 0x0600 Digital Inputs DI1-DI2 (bitmap) 0x00000000-0x00000003 UINT32 R
12800-12801 0x0800 Relay Outputs RO1-RO2 (bitmap) 0x00000000-0x00000003 UINT32 R
13056-13063 Counters
+0,1 0x0C00 V1/V12 Voltage 0-Vmax U1 UINT32 R 1
+2,3 0x0C01 V2/V23 Voltage 0-Vmax U1 UINT32 R 1
+4,5 0x0C02 V3/V31 Voltage 0-Vmax U1 UINT32 R 1
+6,7 0x0C03 I1 Current 0-Imax U2 UINT32 R
+8,9 0x0C04 I2 Current 0-Imax U2 UINT32 R
+10,11 0x0C05 I3 Current 0-Imax U2 UINT32 R
+12,13 0x0C06 kW L1 -Pmax-Pmax U3 INT32 R
+14,15 0x0C07 kW L2 -Pmax-Pmax U3 INT32 R
+16,17 0x0C08 kW L3 -Pmax-Pmax U3 INT32 R
+18,19 0x0C09 kvar L1 -Pmax-Pmax U3 INT32 R
+20,21 0x0C0A kvar L2 -Pmax-Pmax U3 INT32 R
+22,23 0x0C0B kvar L3 -Pmax-Pmax U3 INT32 R
+24,25 0x0C0C kVA L1 0-Pmax U3 UINT32 R
+26,27 0x0C0D kVA L2 0-Pmax U3 UINT32 R
+28,29 0x0C0E kVA L3 0-Pmax U3 UINT32 R
+30,31 0x0C0F Power factor L1 -1000-1000
+32,33 0x0C10 Power factor L2 -1000-1000
+34,35 0x0C11 Power factor L3 -1000-1000
+36,37 0x0C12 V1/V12 Voltage THD 0-9999
+38,39 0x0C13 V2/V23 Voltage THD 0-9999
+40,41 0x0C14 V3/V31 Voltage THD 0-9999
+42,43 0x0C15 I1 Current THD 0-9999
+44,45 0x0C16 I2 Current THD 0-9999
+46,47 0x0C17 I3 Current THD 0-9999
+48,49 0x0C18 I1 K-Factor 10-9999
INT32 R
INT32 R
INT32 R
UINT32 R 1 4-cycle value
UINT32 R 1 4-cycle value
UINT32 R 1 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
34
Address Point ID Description
+50,51 0x0C19 I2 K-Factor 10-9999
+52,53 0x0C1A I3 K-Factor 10-9999
+54,55 0x0C1B I1 Current TDD 0-1000
+56,57 0x0C1C I2 Current TDD 0-1000
+58,59 0x0C1D I3 Current TDD 0-1000
Options/Range
2
Units2
×0.1
×0.1
×0.1%
×0.1%
×0.1%
Type R/W Notes
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
+60,61 0x0C1E V12 Voltage 0-Vmax U1 UINT32 R
+62,63 0x0C1F V23 Voltage 0-Vmax U1 UINT32 R
+64,65 0x0C20 V31 Voltage 0-Vmax U1 UINT32 R
13696-13703 1-Cycle Total Values
+0,1 0x0F00 Total kW -Pmax-Pmax U3 INT32 R
+2,3 0x0F01 Total kvar -Pmax-Pmax U3 INT32 R
+4,5 0x0F02 Total kVA 0-Pmax U3 UINT32 R
+6,7 0x0F03 Total PF -1000-1000
+8,9 0x0F04 Total PF lag 0-1000
+10,11 0x0F05 Total PF lead 0-1000
×0.001
×0.001
×0.001
INT32 R
UINT16 R
UINT16 R
+12,13 0x0F06 Total kW import 0-Pmax U3 UINT32 R
+14,15 0x0F07 Total kW export 0-Pmax U3 UINT32 R
+16,17 0x0F08 Total kvar import 0-Pmax U3 UINT32 R
+18,19 0x0F09 Total kvar export 0-Pmax U3 UINT32 R
+20,21 0x0F0A 3-phase average L-N/L-L voltage 0-Vmax U1 UINT32 R
1
+22,23 0x0F0B 3-phase average L-L voltage 0-Vmax U1 UINT32 R
+24,25 0x0F0C 3-phase average current 0-Imax U2 UINT32 R
13824-13833 1-Cycle Auxiliary Values
+0,1 0x1000 Not used UINT32 R
+2,3 0x1001 In (neutral) Current 0-Imax U2 UINT32 R
+4,5 0x1002 Frequency 0-Fmax
×0.01Hz
UINT32 R
+6,7 0x1003 Voltage unbalance 0-300 % UINT32 R
+8,9 0x1004 Current unbalance 0-300 % UINT32 R
13864-13895 Phasor
+0,1 0x1080 V1/V12 Voltage magnitude 0-Vmax U1 UINT32 R
+2,3 0x1081 V2/V23 Voltage magnitude 0-Vmax U1 UINT32 R
+4,5 0x1082 V3/V31 Voltage magnitude 0-Vmax U1 UINT32 R
1
1
1
+6,7 0x1083 Not used UINT32 R
+8,9 0x1084 I1 Current magnitude 0-Imax U2 UINT32 R
+10,11 0x1085 I2 Current magnitude 0-Imax U2 UINT32 R
+12,13 0x1086 I3 Current magnitude 0-Imax U2 UINT32 R
+14,15 0x1087 Not used UINT32 R
+16,17 0x1088 V1/V12 Voltage angle -1800-1800
+18,19 0x1089 V2/V23 Voltage angle -1800-1800
+20,21 0x108A V3/V31 Voltage angle -1800-1800
×0.1º
×0.1º
×0.1º
INT32 R 1
INT32 R 1
INT32 R 1
+22,23 0x108B Not used INT32 R
+24,25 0x108C I1 Current angle -1800-1800
+26,27 0x108D I2 Current angle -1800-1800
×0.1º
×0.1º
INT32 R
INT32 R
35
Address Point ID Description
+28,29 0x108E I3 Current angle -1800-1800
Options/Range
2
Units2
×0.1º
Type R/W Notes
INT32 R
+30,31 0x108F Not used INT32 R
13952-14017 1-Second Phase Values
+0,1 0x1100 V1/V12 Voltage 0-Vmax U1 UINT32 R 1
+2,3 0x1101 V2/V23 Voltage 0-Vmax U1 UINT32 R 1
+4,5 0x1102 V3/V31 Voltage 0-Vmax U1 UINT32 R 1
+6,7 0x1103 I1 Current 0-Imax U2 UINT32 R
+8,9 0x1104 I2 Current 0-Imax U2 UINT32 R
+10,11 0x1105 I3 Current 0-Imax U2 UINT32 R
+12,13 0x1106 kW L1 -Pmax-Pmax U3 INT32 R
+14,15 0x1107 kW L2 -Pmax-Pmax U3 INT32 R
+16,17 0x1108 kW L3 -Pmax-Pmax U3 INT32 R
+18,19 0x1109 kvar L1 -Pmax-Pmax U3 INT32 R
+20,21 0x110A kvar L2 -Pmax-Pmax U3 INT32 R
+22,23 0x110B kvar L3 -Pmax-Pmax U3 INT32 R
+24,25 0x110C kVA L1 0-Pmax U3 UINT32 R
+26,27 0x110D kVA L2 0-Pmax U3 UINT32 R
+28,29 0x110E kVA L3 0-Pmax U3 UINT32 R
+30,31 0x110F Power factor L1 -1000-1000
+32,33 0x1110 Power factor L2 -1000-1000
+34,35 0x1111 Power factor L3 -1000-1000
+36,37 0x1112 V1/V12 Voltage THD 0-9999
+38,39 0x1113 V2/V23 Voltage THD 0-9999
+40,41 0x1114 V3/V31 Voltage THD 0-9999
+42,43 0x1115 I1 Current THD 0-9999
+44,45 0x1116 I2 Current THD 0-9999
+46,47 0x1117 I3 Current THD 0-9999
+48,49 0x1118 I1 K-Factor 10-9999
+50,51 0x1119 I2 K-Factor 10-9999
+52,53 0x111A I3 K-Factor 10-9999
+54,55 0x111B I1 Current TDD 0-1000
+56,57 0x111C I2 Current TDD 0-1000
+58,59 0x111D I3 Current TDD 0-1000
INT32 R
INT32 R
INT32 R
UINT32 R 1 3-sec value
UINT32 R 1 3-sec value
UINT32 R 1 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
UINT32 R 3-sec value
+60,61 0x111E V12 Voltage 0-Vmax U1 UINT32 R
+62,63 0x111F V23 Voltage 0-Vmax U1 UINT32 R
+64,65 0x1120 V31 Voltage 0-Vmax U1 UINT32 R
14336-14343 1-Second Total Values
+0,1 0x1400 Total kW -Pmax-Pmax U3 INT32 R
+2,3 0x1401 Total kvar -Pmax-Pmax U3 INT32 R
+4,5 0x1402 Total kVA 0-Pmax U3 UINT32 R
+6,7 0x1403 Total PF -1000-1000
+8,9 0x1404 Total PF lag 0-1000
+10,11 0x1405 Total PF lead 0-1000
×0.001
×0.001
×0.001
INT32 R
UINT16 R
UINT16 R
36
Address Point ID Description
Options/Range
2
Units2
Type R/W Notes
+12,13 0x1406 Total kW import 0-Pmax U3 UINT32 R
+14,15 0x1407 Total kW export 0-Pmax U3 UINT32 R
+16,17 0x1408 Total kvar import 0-Pmax U3 UINT32 R
+18,19 0x1409 Total kvar export 0-Pmax U3 UINT32 R
+20,21 0x140A 3-phase average L-N/L-L voltage 0-Vmax U1 UINT32 R
1
+22,23 0x140B 3-phase average L-L voltage 0-Vmax U1 UINT32 R
+24,25 0x140C 3-phase average current 0-Imax U2 UINT32 R
14464-14473 1-Second Auxiliary Values
+0,1 0x1500 Not used UINT32 R
+2,3 0x1501 In (neutral) Current 0-Imax U2 UINT32 R
+4,5 0x1502 Frequency 0-Fmax
×0.01Hz
UINT32 R
+6,7 0x1503 Voltage unbalance 0-300 % UINT32 R
+8,9 0x1504 Current unbalance 0-300 % UINT32 R
UINT32 R
+14,15 0x1587 Not used UINT32 R
+16,17 0x1588 I1 TDD demand 0-1000
+18,19 0x1589 I2 TDD demand 0-1000
+20,21 0x158A I3 TDD demand 0-1000
×0.1%
×0.1%
×0.1%
UINT32 R
UINT32 R
UINT32 R
+22,23 0x158B Not used UINT32 R
14592-14651 Present Volt, Ampere and Power Demands
+0,1 0x1600 V1/V12 Volt demand 0-Vmax U1 UINT32 R
+2,3 0x1601 V2/V23 Volt demand 0-Vmax U1 UINT32 R
+4,5 0x1602 V3/V31 Volt demand 0-Vmax U1 UINT32 R
1
1
1
+6,7 0x1603 I1 Ampere demand 0-Imax U2 UINT32 R
+8,9 0x1604 I2 Ampere demand 0-Imax U2 UINT32 R
+10,11 0x1605 I3 Ampere demand 0-Imax U2 UINT32 R
+12,13 0x1606 kW import block demand 0-Pmax U3 UINT32 R
+14,15 0x1607 kvar import block demand 0-Pmax U3 UINT32 R
+16,17 0x1608 kVA block demand 0-Pmax U3 UINT32 R
+18,19 0x1609 kW import sliding window demand 0-Pmax U3 UINT32 R
+20,21 0x160A kvar import sliding window demand 0-Pmax U3 UINT32 R
+22,23 0x160B kVA sliding window demand 0-Pmax U3 UINT32 R
+24,25 0x160C Not used UINT32 R
+26,27 0x160D Not used UINT32 R
+28,29 0x160E Not used UINT32 R
+30,31 0x160F kW import accumulated demand 0-Pmax U3 UINT32 R
37
Address Point ID Description
Options/Range
2
Units2
Type R/W Notes
+32,33 0x1610 kvar import accumulated demand 0-Pmax U3 UINT32 R
+34,35 0x1611 kVA accumulated demand 0-Pmax U3 UINT32 R
+36,37 0x1612 kW import predicted sliding window demand 0-Pmax U3 UINT32 R
+38,39 0x1613 kvar import predicted sliding window demand 0-Pmax U3 UINT32 R
+40,41 0x1614 kVA predicted sliding window demand 0-Pmax U3 UINT32 R
+42,43 0x1615 PF (import) at Max. kVA sliding window demand 0-1000
×0.001
UINT32 R
+44,45 0x1616 kW export block demand 0-Pmax U3 UINT32 R
+46,47 0x1617 kvar export block demand 0-Pmax U3 UINT32 R
+48,49 0x1618 kW export sliding window demand 0-Pmax U3 UINT32 R
+50,51 0x1619 kvar export sliding window demand 0-Pmax U3 UINT32 R
+52,53 0x161A kW export accumulated demand 0-Pmax U3 UINT32 R
+54,55 0x161B kvar export accumulated demand 0-Pmax U3 UINT32 R
+56,57 0x161C kW export predicted sliding window demand 0-Pmax U3 UINT32 R
+58,59 0x161D kvar export predicted sliding window demand 0-Pmax U3 UINT32 R
14720-14755 Total Energies E
+0,1 0x1700
kWh import
0-999,999,999 1 kWh UINT32 R
+2,3 0x1701 kWh export 0-999,999,999 1 kWh UINT32 R
+4,5 0x1702 Not used INT32 R
+6,7 0x1703 Not used UINT32 R
+8,9 0x1704 kvarh import 0-999,999,999 1 kvarh UINT32 R
+10,11 0x1705 kvarh export 0-999,999,999 1 kvarh UINT32 R
+12,13 0x1706 Not used INT32 R
+14,15 0x1707 Not used UINT32 R
+16,17 0x1708 kVAh total 0-999,999,999 1 kVAh UINT32 R
+18-25 Not used UINT32 R
+26,27 0x170D
+28,29 0x170E
Harmonic kWh import
Harmonic kWh export
EH
EH
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
+30-33 Not used UINT32 R
+34,35 0x1711
Harmonic kVAh total
EH
0-999,999,999 1 kVAh UINT32 R
14760-14775 Summary Energy Registers E
+0,1 0x1780
+2,3 0x1781
Summary energy register #1
Summary energy register #2
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
…
+14,15 0x1787
Summary energy register #16
0-999,999,999 1 kWh UINT32 R
14848-14865 Phase Energies E
+0,1 0x1800
+2,3 0x1801
+4,5 0x1802
kWh import L1
kWh import L2
kWh import L3
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
0-999,999,999 1 kWh UINT32 R
+6,7 0x1803 kvarh import L1 0-999,999,999 1 kvarh UINT32 R
+8,9 0x1804 kvarh import L2 0-999,999,999 1 kvarh UINT32 R
+10,11 0x1805 kvarh import L3 0-999,999,999 1 kvarh UINT32 R
+12,13 0x1806 kVAh total L1 0-999,999,999 1 kVAh UINT32 R
38
Address Point ID Description
Options/Range
2
Units2
Type R/W Notes
+14,15 0x1807 kVAh total L2 0-999,999,999 1 kVAh UINT32 R
+16,17 0x1808 kVAh total L3 0-999,999,999 1 kVAh UINT32 R
14976-15055 V1/V12 Harmonic Distortions EH
+0,1 0x1900
+2,3 0x1901
H01 Harmonic distortion
H02 Harmonic distortion
0-10000 0.01% UINT32 R
0-10000 0.01% UINT32 R
1
...
+78,79 0x1927
H40 Harmonic distortion
15104-15183 V2/V23 Harmonic Distortions EH
+0,1 0x1A00
+2,3 0x1A01
H01 Harmonic distortion
H02 Harmonic distortion
0-10000 0.01% UINT32 R
1
0-10000 0.01% UINT32 R
0-10000 0.01% UINT32 R
...
+78,79 0x1A27
H40 Harmonic distortion
15232-15311 V3/V31 Harmonic Distortions EH
+0,1 0x1B00
+2,3 0x1B01
H01 Harmonic distortion
H02 Harmonic distortion
0-10000 0.01% UINT32 R
1
0-10000 0.01% UINT32 R
0-10000 0.01% UINT32 R
...
+78,79 0x1B27
H40 Harmonic distortion
0-10000 0.01% UINT32 R
15360-15439 I1 Harmonic Distortions EH
+0,1 0x1C00
+2,3 0x1C01
H01 Harmonic distortion
H02 Harmonic distortion
0-10000 0.01% UINT32 R
0-10000 0.01% UINT32 R
...
+78,79 0x1C27
H40 Harmonic distortion
0-10000 0.01% UINT32 R
15488-15567 I2 Harmonic Distortions EH
+0,1 0x1D00
+2,3 0x1D01
H01 Harmonic distortion
H02 Harmonic distortion
0-10000 0.01% UINT32 R
0-10000 0.01% UINT32 R
...
+78,79 0x1D27
H40 Harmonic distortion
0-10000 0.01% UINT32 R
15616-15695 I3 Harmonic Distortions EH
+0,1 0x1E00
+2,3 0x1E01
H01 Harmonic distortion
H02 Harmonic distortion
0-10000 0.01% UINT32 R
0-10000 0.01% UINT32 R
...
+78,79 0x1E27
H40 Harmonic distortion
0-10000 0.01% UINT32 R
17024-17059 Fundamental (H01) Phase Values 4-cycle values
+0,1 0x2900 V1/V12 Voltage 0-Vmax U1 UINT32 R 1
+2,3 0x2901 V2/V23 Voltage 0-Vmax U1 UINT32 R 1
+4,5 0x2902 V3/V31 Voltage 0-Vmax U1 UINT32 R 1
+6,7 0x2903 I1 Current 0-Imax U2 UINT32 R
+8,9 0x2904 I2 Current 0-Imax U2 UINT32 R
+10,11 0x2905 I3 Current 0-Imax U2 UINT32 R
+12,13 0x2906 kW L1 -Pmax-Pmax U3 INT32 R
+14,15 0x2907 kW L2 -Pmax-Pmax U3 INT32 R
39
Address Point ID Description
Options/Range
2
Units2
Type R/W Notes
+16,17 0x2908 kW L3 -Pmax-Pmax U3 INT32 R
+18,19 0x2909 kvar L1 -Pmax-Pmax U3 INT32 R
+20,21 0x290A kvar L2 -Pmax-Pmax U3 INT32 R
+22,23 0x290B kvar L3 -Pmax-Pmax U3 INT32 R
+24,25 0x290C kVA L1 0-Pmax U3 UINT32 R
+26,27 0x290D kVA L2 0-Pmax U3 UINT32 R
+28,29 0x290E kVA L3 0-Pmax U3 UINT32 R
+30,31 0x290F Power factor L1 -1000-1000
+32,33 0x2910 Power factor L2 -1000-1000
+34,35 0x2911 Power factor L3 -1000-1000
×0.001
×0.001
×0.001
INT32 R
INT32 R
INT32 R
17152-17164 Harmonic Total Values 4-cycle values
+0,1 0x2A00 Total fundamental kW -Pmax-Pmax U3 INT32 R
+2,3 0x2A01 Total fundamental kvar -Pmax-Pmax U3 INT32 R
+4,5 0x2A02 Total fundamental kVA 0-Pmax U3 UINT32 R
+6,7 0x2A03 Total fundamental PF -1000-1000
+8,9 0x2A04
Total harmonic kW
EH
-Pmax-Pmax U3 INT32 R
×0.001
INT32 R
+10,11 0x2A05 Not used INT32 R
+12,13 0x2A06
Total harmonic kVA
EH
0-Pmax U3 UINT32 R
+14,15 0x2A07 Not used INT32 R
17408-17467 Minimum 1-Cycle Phase Values
+0,1 0x2C00 V1/V12 Voltage 0-Vmax U1 UINT32 R 1
+2,3 0x2C01 V2/V23 Voltage 0-Vmax U1 UINT32 R 1
+4,5 0x2C02 V3/V31 Voltage 0-Vmax U1 UINT32 R 1
+6,7 0x2C03 I1 Current 0-Imax U2 UINT32 R
+8,9 0x2C04 I2 Current 0-Imax U2 UINT32 R
+10,11 0x2C05 I3 Current 0-Imax U2 UINT32 R
+12-35 0x2C06-
Not used 0 INT32 R
0x2C11
+36,37 0x2C12 V1/V12 Voltage THD 0-9999
+38,39 0x2C13 V2/V23 Voltage THD 0-9999
+40,41 0x2C14 V3/V31 Voltage THD 0-9999
+42,43 0x2C15 I1 Current THD 0-9999
+44,45 0x2C16 I2 Current THD 0-9999
+46,47 0x2C17 I3 Current THD 0-9999
+48,49 0x2C18 I1 K-Factor 10-9999
+50,51 0x2C19 I2 K-Factor 10-9999
+52,53 0x2C1A I3 K-Factor 10-9999
+54,55 0x2C1B I1 Current TDD 0-1000
+56,57 0x2C1C I2 Current TDD 0-1000
+58,59 0x2C1D I3 Current TDD 0-1000
UINT32 R 1 4-cycle value
UINT32 R 1 4-cycle value
UINT32 R 1 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
17536-17543 Minimum 1-Cycle Total Values
+0,1 0x2D00 Total kW -Pmax-Pmax U3 INT32 R
+2,3 0x2D01 Total kvar -Pmax-Pmax U3 INT32 R
40
Address Point ID Description
Options/Range
2
Units2
Type R/W Notes
+4,5 0x2D02 Total kVA 0-Pmax U3 UINT32 R
+6,7 0x2D03 Total PF 0-1000
×0.001
UINT32 R Absolute value
17664-17669 Minimum 1-Cycle Auxiliary Values
+0,1 0x2E00 Not used UINT32 R
+2,3 0x2E01 In Current 0-Imax U2 UINT32 R
+4,5 0x2E02 Frequency 0-Fmax
×0.01Hz
UINT32 R
18432-18491 Maximum 1-Cycle Phase Values
+0,1 0x3400 V1/V12 Voltage 0-Vmax U1 UINT32 R 1
+2,3 0x3401 V2/V23 Voltage 0-Vmax U1 UINT32 R 1
+4,5 0x3402 V3/V31 Voltage 0-Vmax U1 UINT32 R 1
+6,7 0x3403 I1 Current 0-Imax U2 UINT32 R
+8,9 0x3404 I2 Current 0-Imax U2 UINT32 R
+10,11 0x3405 I3 Current 0-Imax U2 UINT32 R
+12-35 0x3406-
Not used 0 INT32 R
0x3411
+36,37 0x3412 V1/V12 Voltage THD 0-9999
+38,39 0x3413 V2/V23 Voltage THD 0-9999
+40,41 0x3414 V3/V31 Voltage THD 0-9999
+42,43 0x3415 I1 Current THD 0-9999
+44,45 0x3416 I2 Current THD 0-9999
+46,47 0x3417 I3 Current THD 0-9999
+48,49 0x3418 I1 K-Factor 10-9999
+50,51 0x3419 I2 K-Factor 10-9999
+52,53 0x341A I3 K-Factor 10-9999
+54,55 0x341B I1 Current TDD 0-1000
+56,57 0x341C I2 Current TDD 0-1000
+58,59 0x341D I3 Current TDD 0-1000
UINT32 R 1 4-cycle value
UINT32 R 1 4-cycle value
UINT32 R 1 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
UINT32 R 4-cycle value
18560-18567 Maximum 1-Cycle Total Values
+0,1 0x3500 Total kW -Pmax-Pmax U3 INT32 R
+2,3 0x3501 Total kvar -Pmax-Pmax U3 INT32 R
+4,5 0x3502 Total kVA 0-Pmax U3 UINT32 R
+6,7 0x3503 Total PF 0-1000
×0.001
UINT32 R Absolute value
18688-18693 Maximum 1-Cycle Auxiliary Values
+0,1 0x3600 Not used UINT32 R
+2,3 0x3601 In Current 0-Imax U2 UINT32 R
+4,5 0x3602 Frequency 0-Fmax
×0.01Hz
UINT32 R
18816-18849 Maximum Demands
+0,1 0x3700 V1/V12 Maximum volt demand 0-Vmax U1 UINT32 R
+2,3 0x3701 V2/V23 Maximum volt demand 0-Vmax U1 UINT32 R
+4,5 0x3702 V3/V31 Maximum volt demand 0-Vmax U1 UINT32 R
1
1
1
+6,7 0x3703 I1 Maximum ampere demand 0-Imax U2 UINT32 R
+8,9 0x3704 I2 Maximum ampere demand 0-Imax U2 UINT32 R
+10,11 0x3705 I3 Maximum ampere demand 0-Imax U2 UINT32 R
41
Address Point ID Description
Options/Range
2
Units2
Type R/W Notes
+12,13 0x3706 Not used UINT32 R
+14,15 0x3707 Not used UINT32 R
+16,17 0x3708 Not used UINT32 R
+18,19 0x3709 Maximum kW import sliding window demand 0-Pmax U3 UINT32 R
+20,21 0x370A Maximum kvar import sliding window demand 0-Pmax U3 UINT32 R
+22,23 0x370B Maximum kVA sliding window demand 0-Pmax U3 UINT32 R
+24,25 0x3737 Not used UINT32 R
+26,27 0x370D Not used UINT32 R
+28,29 0x370E Not used UINT32 R
+30,31 0x370F Maximum kW export sliding window demand 0-Pmax U3 UINT32 R
+32,33 0x3710 Maximum kvar export sliding window demand 0-Pmax U3 UINT32 R
27648-27649 0x7C00 Setpoint Status SP1-SP16 (bitmap) 0x00000000-0x0000FFFF UINT32 R
NOTES:
Energy and Power demand readings are only available in the meters with suffixes E and EH.
1
Voltage and Voltage Harmonics Readings:
When the 4LN3, 3LN3 or 3BLN3 wiring mode is selected, the voltages will be line-to-neutral; for any other wiring mode, they will be line-to-line voltages.
When the 4LN3, 4LL3, 3LN3, 3LL3, 3BLN3 or 3BLL3 wiring mode is selected, the voltage harmonics will be line-to-neutral; for any other wiring mode, they will be line-to-line.
2
For volts, amps, power and frequency scales and units, refer to Section 4 ”Data Scales and Units”.
3
Harmonic angles are referenced to the fundamental voltage harmonic H01 on phase L1.
0x3887 Not used UINT32
+30,31
+32,33
+34,35
+36,37
+38,39
+40,41
+42,43
+44,45
0x3888 I1 TDD demand
0-1000
Timestamp
0x3889 I2 TDD demand
0-1000
Timestamp
0x388A I3 TDD demand
0-1000
Timestamp
0x388B Not used UINT32
+46,47
2
Units2
sec
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
×0.1%
sec
Type R/WNotes
R
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
UINT32
R
R
R
R
R
R
R
R
R
1
R
R
R
R
R
1
1
R
R
R
R
R
R
R
R
R
R
R
R
R
R
R
R
R
R
R
38144-38175 TOU Maximum Demand Register #1 E
+0,1
0x4800 Tariff #1 maximum demand
+2,3
+4,5
0x4801 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
0-Pmax U3
sec
0-Pmax U3
sec
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x4807 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
38400-38431 TOU Maximum Demand Register #2 E
50
Address Point ID Description
+0,1
0x4900 Tariff #1 maximum demand
+2,3
+4,5
0x4901 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
Options/Range/Format
0-Pmax U3
0-Pmax U3
2
Units2
sec
sec
Type R/WNotes
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x4907 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
38656-38687 TOU Maximum Demand Register #3 E
+0,1
0x4A00 Tariff #1 maximum demand
+2,3
+4,5
0x4A01 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
0-Pmax U3
sec
0-Pmax U3
sec
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x4A07 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
38272-38313 TOU Maximum Demand Register #4 E
+0,1
0x4880 Tariff #1 maximum demand
+2,3
+4,5
0x4881 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
0-Pmax U3
sec
0-Pmax U3
sec
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x4887 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
38528-38559 TOU Maximum Demand Register #5 E
+0,1
0x4980 Tariff #1 maximum demand
+2,3
+4,5
0x4981 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
0-Pmax U3
sec
0-Pmax U3
sec
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x4987 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
38784-38815 TOU Maximum Demand Register #6 E
+0,1
0x4A80 Tariff #1 maximum demand
+2,3
+4,5
0x4A81 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
0-Pmax U3
sec
0-Pmax U3
sec
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x4A87 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
38912-38943 TOU Maximum Demand Register #7 E
+0,1
0x5300 Tariff #1 maximum demand
+2,3
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
51
Address Point ID Description
+4,5
0x5301 Tariff #2 maximum demand
+6,7
Timestamp
Options/Range/Format
0-Pmax U3
2
Units2
sec
Type R/WNotes
UINT32
UINT32
R
R
… R
+28,29
+30,31
0x5307 Tariff #8 maximum demand
Timestamp
0-Pmax
U3
sec
UINT32
UINT32
R
R
39040-39071 TOU Maximum Demand Register #8 E
+0,1
0x5380 Tariff #1 maximum demand
+2,3
+4,5
0x5381 Tariff #2 maximum demand
+6,7
Timestamp
Timestamp
0-Pmax U3
sec
0-Pmax U3
sec
UINT32
UINT32
UINT32
UINT32
R
R
R
R
… R
+28,29
+30,31
0x5387 Tariff #8 maximum demand
Timestamp
0-Pmax U3
sec
UINT32
UINT32
R
R
NOTES:
Power demand readings are only available in the meters with suffixes E and EH.
1
Voltage and Voltage Harmonics Readings:
When the 4LN3, 3LN3 or 3BLN3 wiring mode is selected, the voltages will be line-to-neutral; for any other wiring mode, they will be line-to-line voltages.
When the 4LN3, 4LL3, 3LN3, 3LL3, 3BLN3 or 3BLL3 wiring mode is selected, the voltage harmonics will be line-to-neutral; for any other wiring mode, they will be line-to-line.
2
For volts, amps, power and frequency scales and units, refer to Section 4 ”Data Scales and Units”.
52
3.6 Device Control and Status Registers
Address Point ID Description Options/Range Units Type R/W Notes
Device Restart Register
2560 Warm restart of the device 0 when read,
0xFFFF when written = restart the
device
Device Authorization Registers
2575 When write: 4-digit password. When read: 0 = access
permitted, -1 = authorization required.
44378-44379 When write: 8-digit password. When read: 0 = access
2916 Event Flag #1 Status 0-1 UINT16 R/W
2917 Event Flag #2 Status 0-1 UINT16 R/W
2918 Event Flag #3 Status 0-1 UINT16 R/W
2919 Event Flag #4 Status 0-1 UINT16 R/W
2920 Event Flag #5 Status 0-1 UINT16 R/W
2921 Event Flag #6 Status 0-1 UINT16 R/W
2922 Event Flag #7 Status 0-1 UINT16 R/W
2923 Event Flag #8 Status 0-1 UINT16 R/W
Remote Relay Control
3244-3245
+0 Remote relay command 0 = remove a remote command
1 = operate relay
2 = remove a remote command and
release a locally latched relay
3244 RO1 Control
3245 RO2 Control
Device Reset/Clear Registers
3404 Clear total energy registers 0 UINT16 W
3405 Clear total maximum demand registers 0 = Clear all maximum demands
1 = Clear power demands
E
2 = Clear volt, ampere and
harmonic demands
3406
3407
Clear TOU energy registers
Clear TOU maximum demand registers
E
E
0 UINT16 W
0 UINT16 W
3408 Clear pulse counters 0 = Clear all counters
2563 Firmware build number 1-99 UINT16 R
2564 Reserved 0 UINT16 R
2565 Firmware version number 1300-1399,1500-1599(PM172P/E),
1400-1499,1600-1699 (PM172EH)
UINT16 R Two higher decimal digits = major
version number, two lower decimal
digits = minor version number
2566,2567 Instrument options F28 UINT32 R
3484 Current serial port number 0=COM1, 1=COM2 UINT16 R
Device Status Registers
3452 Relay status RO1-RO2 (bitmap) 0x0000-0x0003 UINT16 R Bits set to 1 indicate closed relay
contacts.
3453
Event flags (bitmap)
EH
0x0000-0x00FF UINT16 R
3454 Digital (status) inputs DI1-DI2 0x0000-0x0003 UINT16 R Bits set to 1 indicate closed input
contacts.
3455 Present setpoint status SP1-SP16 (bitmap) 0x0000-0xFFFF UINT16 R Bits set to 1 indicate operated
(activated) setpoints.
Log Notification Registers E
3456 Log status (bitmap) F26 UINT16 R Bits set to 1 indicate that at least
one new record is present in the
designated files.
3457 Data log status (bitmap) F27 UINT16 R Bits set to 1 indicate that at least
one new record is present in the
designated files.
3458-3473 Reserved 0 UINT16 R
Alarm Notification Registers
3474 Setpoint alarm status SP1-SP16 (bitmap). Nonvolatile
register that keeps the status of the operated
setpoints.
0x0000-0xFFFF UINT16 R/W When read: Bits set to 1 indicate
that the designated setpoint have
been operated at least once since
the alarm bits were reset.
When written: Bits preset to 0 clear
corresponding alarms, Bits set to 1
have no effect.
3475 Self-check alarm status (device diagnostics). F23 UINT16 R/W When read: Bits set to 1 indicate
54
Address Point ID Description Options/Range Units Type R/W Notes
Nonvolatile register that keeps the status of the
internal device diagnostics.
3476-3483 Reserved 0 UINT16 R
3485 Battery status 0 = low battery, 1 = normal UINT16 R
Communication Status
44394 RSSI (received signal strength) 0 = not known or not detectable,
51-113 = -51 to -113 dBm
44395 GPRS status 0 = not connected,
1 = not registered,
2 = registered
44396-44409 Reserved UINT16 R 65535 = N/A
Communication Counters
44410 Successful eXpertPower client connections 0-65534 UINT16 R
44411 Failed eXpertPower client connections 0-65534 UINT16 R
44412 Successful TCP notification client connections 0-65534 UINT16 R
44413 Failed TCP notification client connections 0-65534 UINT16 R
44414-44441 Reserved UINT16 R 65535 = N/A
UINT16 R
UINT16 R
that the designated diagnostics
failed at least once since the alarm
bits were reset.
When written: Bits preset to 0 clear
corresponding alarms; bits set to 1
have no effect.
55
3.7 Device Setup Registers
Address Point ID Description Options/Range Units Type R/W Notes
Device Identification
46080-46111
+0,1 Device serial number 0-999999 UINT32 R
+2,3 Device model ID 17210=PM172P, 17220=PM172E,
+4-11 Device model name “PM172P”, “PM172E”, “PM172EH” CHAR16 R Null-terminated string
+12-13 Device options (bitmap) 0 UINT32 R
+14-19 Reserved UINT16 R
+20 Device firmware version number 1300-1399,1500-1599(PM172P/E),
+21 Device firmware build number 1-99 UINT16 R
+22,23 Reserved UINT16 R
+24 Boot loader version number UINT16 R Two higher decimal digits = major
+25 Boot loader build number 1-99 UINT16 R
+26-31 Reserved UINT16 R
Factory Device Settings
46112-46125
+0 V1-V3 input range 690, 120 (option U) V UINT16 R Does not limit the 690V input range
+1 V1-V3 input overload 120 % UINT16 R
+2,3 Reserved UINT16 R
+4 I1-I3 input range 1, 5 A UINT16 R
+5 I1-I3 input overload 200 % UINT16 R
+6-13 Reserved UINT16 R
+14-63 Unused UINT16
+64 Ethernet MAC address 0-1 0x0500 UINT16 R
+65 Ethernet MAC address 2-3 0x00F0 UINT16 R
+66 Ethernet MAC address 4-5 0x0000-0xFFFF UINT16 R
Basic Setup
2304-2324
+0 Wiring mode F2 UINT16 R/W
+1 PT ratio 10 to 65000
+2 CT primary current 1 to 20,000 A UINT16 R/W
+3
+0 Power calculation mode 0=using reactive power: S=f(P,Q),
UINT16 R/W
1=using non-active power:
Q=f(S,P)
+1
+2
Energy roll value
E
0=1×104, 1=1×105, 2=1×106,
Phase energy calculation mode
7
E
0=disabled, 1=enabled UINT16 R/W
3=1×10
, 4=1×108, 5=1x109
UINT16 R/W
E
E
+3 Reserved UINT16 R/W Read as 65535
+4 Analog expander output option 0=none
UINT16 R/W
1=0-20 mA
2=4-20 mA
3=0-1 mA
4=±1 mA
+5 Battery mode 0 = battery is OFF, 1 = battery is
UINT16 R/W
ON
+6-8 Reserved UINT16 R/W Read as 65535
+9
+10
Harmonic power/energy calculation mode
Energy LED test mode
E
EH
0=disabled, 1=enabled UINT16 R/W
0=disabled, 1=Wh test, 2=varh test UINT16 R/W LED pulse rate is 10,000
EH
pulses/kWh
+11 Reserved UINT16 R/W Read as 65535
+12 Starting current, percent of full scale 1-20
×0.1%
UINT16 R/W
Local Settings
4320-4330
+0 Daylight savings time (DST) option 0 = DST disabled (standard time
UINT16 R/W
only), 1 = DST enabled
+1 DST start month 1-12 UINT16 R/W
+2 DST start week of the month 1-4 = 1st, 2nd, 3rd and 4th week,
UINT16 R/W
5=the last week of the month
+3 DST start weekday 1-7 (1=Sun, 7=Sat) UINT16 R/W
+4 DST end month 1-12 UINT16 R/W
+5 DST end week of the month 1-4=1st, 2nd, 3rd and 4th week,
UINT16 R/W
5=the last week of the month
+6 DST end weekday 1-7 (1=Sun, 7=Sat) UINT16 R/W
+7 Clock synchronization source 1-2 = DI1-DI2, 32767 = meter
clock
UINT16 R/W A DI input is considered a pulse or
KYZ in
ut. The pulse edge adjusts
58
Address Point ID Description Options/Range Units Type R/W Notes
the clock at the nearest whole
+8 Country code ITU calling number UINT16 R/W
+9 DST start hour 1-6 UINT16 R/W
+10 DST end hour 1-6 UINT16 R/W
Clock Indication and Setup
4352-4358
+0 Seconds 0-59 UINT16 R/W
+1 Minutes 0-59 UINT16 R/W
+2 Hour 0-23 UINT16 R/W
+3 Day of month 1-31 UINT16 R/W
+4 Month 1-12 UINT16 R/W
+5 Year (calendar year minus 2000) 0-99 UINT16 R/W
+6 Weekday 1-7 (1=Sun, 7=Sat) UINT16 R/W Ignored when written
+0 Data log parameter #1 ID See Section 3.4 UINT16 R/W
+1 Data log parameter #2 ID UINT16 R/W
+2 Data log parameter #3 ID UINT16 R/W
+3 Data log parameter #4 ID UINT16 R/W
+4 Data log parameter #5 ID UINT16 R/W
+5 Data log parameter #6 ID UINT16 R/W
+6 Data log parameter #7 ID UINT16 R/W
+7 Data log parameter #8 ID UINT16 R/W
+8 Data log parameter #9 ID UINT16 R/W
+9 Data log parameter #10 ID UINT16 R/W
+10 Data log parameter #11 ID UINT16 R/W
+11 Data log parameter #12 ID UINT16 R/W
+12 Data log parameter #13 ID UINT16 R/W
+13 Data log parameter #14 ID UINT16 R/W
+14 Data log parameter #15 ID UINT16 R/W
+15 Data log parameter #16 ID UINT16 R/W
×0.1 sec
×0.1 sec
UINT16 R/W
UINT16 R/W
60
Address Point ID Description Options/Range Units Type R/W Notes
1792-1807 Data log #1 Setup
1808-1823 Data log #2 Setup
1824-1839 Data log #3 Setup
1840-1855 Data log #4 Setup
1856-1871 Data log #5 Setup
1872-1887 Data log #6 Setup
1888-1903 Data log #7 Setup
1904-1919 Data log #8 Setup
Pulse Counters Setup
2940-2947
+0 Source digital input ID 0=not assigned, 1=DI1, 2=DI2 UINT16 R/W
+0 Number of records in the file 0=delete a file, 1-65535 UINT16 R/W
+1 Number of parameters per record 1-16 UINT16 R/W Write 0 for event and waveform log
+2 File attributes (bitmap) F3 UINT16 R/W
+3 File record size, bytes (for info only) UINT16 R
+4,5 Allocated file size, bytes (for info only) UINT32 R
+6,7 Reserved UINT16 R
3660-3667 Event Log Setup
3668-3675 Data Log #1 Setup
3676-3683 Data Log #2 Setup
3684-3691 Data Log #3 Setup
3692-3699 Data Log #4 Setup
3700-3707 Data Log #5 Setup
3708-3715 Data Log #6 Setup
3716-3723 Data Log #7 Setup
3724-3729 Data Log #8 Setup
+0,1 Expert Power server IP Address 0x01000000-0xFFFFFFFF UINT32 R/W Default = 207.232.60.18
+2,3 Expert Power server TCP service port 0-65535 UINT32 R/W Default = 5001
+4,5 Expert Power client enabled 0 = client disabled, 1 = client
+6,7 Time to next session 1-99999 min UINT32 R/W
Time to next session 1-99999 min UINT32 R Same as previous
+8,9
+10-15 Reserved
Internet Service Provider (ISP) accounts
46784-46831
+0-15 ISP telephone number CHAR32 R/W
+16-31 Login name CHAR32 R/W
+32-47 Login password CHAR32 R/W
GPRS Setup
46832-46879
+0-15 Access Point Name (APN) CHAR32 R/W
+16-31 User name CHAR32 R/W
+32-39 Password CHAR16 R/W
+40-47 Reserved CHAR16 R/W
TCP Notification Client Setup
46896-46991
+0,1 Client enabled 0 = disabled, 1 = enabled UINT32 R/W
+2,3 Server address 0x01000000-0xFFFFFFFF UINT32 R/W
+4,5 Server port 0-65535 UINT32 R/W
+6,7 Message exchange address 0-65535 UINT32 R/W
+8-15 Reserved
Transformer Correction Setup
47072-47099
+0 Ratio correction factor 900-1100
+1 Phase angle error -600 to 600 minutes INT16 R/W -2700 to 2700 in V13.71.12
+2, 3 Reserved INT16 R/W
20000 = DNP3.0/TCP
enabled
UINT32 R/W
UINT32 R/W
×0.001
UINT16 R/W
63
Address Point ID Description Options/Range Units Type R/W Notes
+0-1 Exchange consumer IP Address 0x01000000-0xFFFFFFFF UINT32 R/W Network byte order
+2 Production interval 1-60000
+3 Exchange status 0=disabled, 1=enabled UINT16 R/W
+4,5 Reserved 0 UINT16 R/W
+6 Address range #1: Start point ID 0-65535, 0=end of the range list UINT16 R/W
+7 Address range #1: End point ID 1-65535 UINT16 R/W
+8 Address range #1: Data type 0=Word, 1=DWord, 2= Float UINT16 R/W
+9 Address range #2: Start point ID 0-65535, 0=end of the range list UINT16 R/W
+10 Address range #2: End point ID 1-65535 UINT16 R/W
+11 Address range #2: Data type 0=Word, 1=DWord, 2= Float UINT16 R/W
… R/W
+93 Address range #30: Start point ID 0-65535, 0=end of the range list UINT16 R/W
+94 Address range #30: End point ID 1-65535 UINT16 R/W
+95 Address range #30: Data type 0=Word, 1=DWord, 2= Float UINT16 R/W
+9 Analog Input Change Event Objects F24 (default 2) UINT16 R/W
+10 Re-mapping static point indices for event objects 0=disabled (default), 1=enabled UINT16 R/W
+11 16-bit BC Scaling
+12 16-bit AI Scaling 0 – scaling OFF, 1-scaling ON UINT16 R/W
0=×1 (default), 1=×10, 2=×100,
3=×1000
×10 ms
UINT16 R/W
UINT16 R/W
64
Address Point ID Description Options/Range Units Type R/W Notes
+13 Number of mapped points of the Analog Input object 0 to 43 (default 43) UINT16 R/W
+14 Number of mapped points of the Binary Input object 0 to 32 (default 21) UINT16 R/W
+15 Number of mapped points of the Binary Counter
object
0 to 16 (default 0)
UINT16 R/W
+16 Select/Operate Timeout 2 to 30 seconds (default 10 sec) UINT16 R/W
+17 Multi Fragment Interval 50 to 500 ms (default 50 ms) UINT16 R/W
+18-21 Reserved Read as 65535 UINT16 R/W
+22,23 Time Sync Period 1 to 86400 seconds (default 86400
UINT32 R/W
sec)
+24 Voltage scale, volts secondary 60 to 828V (default 144V) V UINT16 R/W
+25 Current scale, amps secondary 100
×0.1A
UINT16 R/W
51184-51189 Reserved
DNP Events Setup
51190-51445
+0,1 Threshold/Deadband
0 to 4.3×10
9
UINT32 R/W A hysteresis for the point return
threshold is 0.05Hz for frequency
and 2% of the operating threshold
for other points
+2 DNP point number DNP point number available for the
UINT16 R/W
selected object
+3 Event scan control field (bitmap) Bits 0-1 - DNP Object:
0 = none, 1=AI, 2=BI, 3=BC
Bit 2 – Object change event scan:
0= event disabled, 1=enabled
Bits 5-6 - DNP event poll class:
UINT16 R/W I f E vent log is enabled, the source
of a DNP event will be recorded to
the device Event log file as a
general Setpoint #17.
0=Class 1, 1=Class 2, 2=Class 3
Bit 7 - Event log on an event:
0= disabled, 1=enabled
Bits 8-9 – Threshold/Deadband
relation:
0=Delta, 1= more than (over
threshold), 2=less than (under
threshold)
51190-51193 DNP Event #1
51194-51197 DNP Event #2
…
51442-51445 DNP Event #64
51446-51701 Reserved
DNP Class 0 Point Assignments
51702-51797
+0 DNP object and variation F25 UINT16 R/W
+1 DNP point number Point number for the selected object UINT16 R/W
+2 Number of points 0-128 UINT16 R/W
65
Address Point ID Description Options/Range Units Type R/W Notes
51702-51704
51705-51707
51795-51797 DNP Cl ass 0 Points Group 32
51798-51893 Reserved
55574-55581 Daily profile #1: Season 1, Day type 1
55582-55589 Daily profile #2: Season 1, Day type 2
55590-55597 Daily profile #3: Season 1, Day type 3
55598-55605 Daily profile #4: Season 1, Day type 4
55606-55613 Daily profile #5: Season 2, Day type 1
55614-55621 Daily profile #6: Season 2, Day type 2
55622-55629 Daily profile #7: Season 2, Day type 3
55630-55637 Daily profile #8: Season 2, Day type 4
55638-55645 Daily profile #9: Season 3, Day type 1
55646-55653 Daily profile #10: Season 3, Day type 2
55654-55661 Daily profile #11: Season 3, Day type 3
55662-55669 Daily profile #12: Season 3, Day type 4
55670-55677 Daily profile #13: Season 4, Day type 1
55678-55685 Daily profile #14: Season 4, Day type 2
55686-55693 Daily profile #15: Season 4, Day type 3
DNP Class 0 Points Group 1
DNP Class 0 Points Group 2
…
+0 Sampling rate, samples per cycle 32 (Waveform log #1),
+1 Number of cycles per series 16-2560 (32 samples/cycle),
+3 Not used 0 UINT16 R/W
+4 Number of cycles before a trigger 1-20 UINT16 R/W
+4,5 File channel mask, bitmap F9, 0x00000033 UINT32 R/W Ignored when written
+6,7 Not used 0 UINT32 R/W
+0 1st tariff change F10 UINT16 R/W
+1 2nd tariff change F10 UINT16 R/W
+2 3rd tariff change F10 UINT16 R/W
+3 4th tariff change F10 UINT16 R/W
+4 5th tariff change F10 UINT16 R/W
+5 6th tariff change F10 UINT16 R/W
+6 7th tariff change F10 UINT16 R/W
+7 8th tariff change F10 UINT16 R/W
UINT16 R/W Ignored when written
128 (Waveform log #2)
UINT16 R/W
4-640 (128 samples/cycle)
66
Address Point ID Description Options/Range Units Type R/W Notes
55694-55701 Daily profile #16: Season 4, Day type 4
55702-55711
TOU Calendar Setup E
55712-56031
+0-9 Calendar entry record R/W
+0 Daily profile 0-3 = Season 1, Day types 0-3
+1 Week of month 0=all, 1=1st, 2=2nd, 3=3rd, 4=4th,
+2 Weekday 0=all, 1-7 (Sun=1, Sat=7) UINT16 R/W
+3 Till Weekday 0=all, 1-7 (Sun=1, Sat=7) UINT16 R/W
+4 Month 0=all, 1-12=January - December UINT16 R/W
+5 Day of month 0=all, 1-31=day 1-31 UINT16 R/W
+6 Till Month 0=all, 1-12=January - December UINT16 R / W
+7 Till Day of month 0=all, 1-31=day 1-31 UINT16 R/W
+8-9 Reserved UINT16 R/W
+2,3 Multiplier 0-1000000
56928-56931 Energy Source #1
56932-56935 Energy Source #2
56936-56939 Energy Source #3
56940-56943 Energy Source #4
56944-56947 Energy Source #5
56948-56951 Energy Source #6
56952-56955 Energy Source #7
56956-56959 Energy Source #8
Digital Inputs Setup
61728-61735
+0 Pulse mode 0 = pulse, 1 = KYZ UINT16 R/W
+1 Polarity 0 = normal, 1 = inverting UINT16 R/W
+2 De-bounce time, ms 1-1000 UINT16 R/W Debounce time will be the same for
+1 Total number of I/O's of this type 0-2 UINT16 R
+2 Number of I/O's in the slot 0-2 UINT16 R
+3 Not used 0 UINT16 R
63056-63059 DI Type Info
63060-63063 RO Type Info
63064-63067 AI Type Info
63068-63071 AO Type Info
63076-63119 Reserved
70
3.9 File Transfer Registers E
Address Point ID Description Options/Range Units Type R/W Notes
File Allocation Status Registers
3500,3501 File allocation map (bitmap) F6 UINT32 R Bits set to 1 indicate that the
3502,3503 Reserved 0 UINT32 R
3504,3505 Daily profile log sections map (bitmap) F7 UINT32 R Bits set to 1 indicate that the
3506,3507 File memory size, Bytes 1040384 UINT32 R
3508,3509 Free file memory size, Bytes 0-1040384 UINT32 R
3510 Total number of records in the Event log file 0-65535 UINT16 R
3511 Total number of records in the Data log #1 file 0-65535 UINT16 R
3512 Total number of records in the Data log #2 file 0-65535 UINT16 R
3513 Total number of records in the Data log #3 file 0-65535 UINT16 R
3514 Total number of records in the Data log #4 file 0-65535 UINT16 R
3515 Total number of records in the Data log #5 file 0-65535 UINT16 R
3516 Total number of records in the Data log #6 file 0-65535 UINT16 R
3517 Total number of records in the Data log #7 file 0-65535 UINT16 R
3518 Total number of records in the Data log #8 file 0-65535 UINT16 R
3519-3526 Reserved 0 UINT16 R
3527 Total number of records in the Waveform log #1 file 0-65535 UINT16 R
3528 Total number of records in the Waveform log #2 file 0-65535 UINT16 R
3529 Number of new records in the Event log file 0-65535 UINT16 R
3530 Number of new records in the Data log #1 file 0-65535 UINT16 R
3531 Number of new records in the Data log #2 file 0-65535 UINT16 R
3532 Number of new records in the Data log #3 file 0-65535 UINT16 R
3533 Number of new records in the Data log #4 file 0-65535 UINT16 R
3534 Number of new records in the Data log #5 file 0-65535 UINT16 R
3535 Number of new records in the Data log #6 file 0-65535 UINT16 R
3536 Number of new records in the Data log #7 file 0-65535 UINT16 R
3537 Number of new records in the Data log #8 file 0-65535 UINT16 R
3538-3545 Reserved 0 UINT16 R
3546 Number of new records in the Waveform log #1 file 0-65535 UINT16 R
3547 Number of new records in the Waveform log #2 file 0-65535 UINT16 R
File Transfer Control/Status Registers
28160-28927
+0 File status (bitmap) F4 UINT16 R
+1 Number of records logged in the file 0 to 65535 UINT16 R
memory is allocated to the
designated files
corresponding sections are allocated
in the Data log #8 file to the
designated energy/maximum
demand registers
1
71
Address Point ID Description Options/Range Units Type R/W Notes
+2 Number of the new records never read before 0 to 65535 UINT16 R
+3 Sequence number of the last record in a file + 1
(modulo 65536)
+4 Sequence number of the first (oldest) record in a file 0 to 65535 UINT16 R
+5 Sequence number of the first new record in a file
never read before
+6 Sequence number of the current record to be read
through the file read window. Can be overwritten to
point to the desired record in a file
+7 Command register (write-only) Write value:
28160-28167 Event log file control UINT16 R
28168-28175 Data log #1 file control UINT16 R
28176-28183 Data log #2 file control UINT16 R
28184-28191 Data log #3 file control UINT16 R
28192-28199 Data log #4 file control UINT16 R
28200-28207 Data log #5 file control UINT16 R
28208-28215 Data log #6 file control UINT16 R
28216-28223 Data log #7 file control UINT16 R
28224-28231 Data log #8 file control UINT16 R
28232-28295 Reserved UINT16 R
28296-28303 Waveform log #1 file control UINT16 R
28304-28311 Waveform log #2 file control UINT16 R
28312-28671 Reserved UINT16 R
28672-28679 Daily Profile Log, Energy/Usage Reg.#1 control UINT16 R
28680-28687 Daily Profile Log, Energy/Usage Reg.#2 control UINT16 R
28688-28695 Daily Profile Log, Energy/Usage Reg.#3 control UINT16 R
28696-28703 Daily Profile Log, Energy/Usage Reg.#4 control UINT16 R
28704-28711 Daily Profile Log, Energy/Usage Reg.#5 control UINT16 R
28712-28719 Daily Profile Log, Energy/Usage Reg.#6 control UINT16 R
28720-28727 Daily Profile Log, Energy/Usage Reg.#7 control UINT16 R
28728-28735 Daily Profile Log, Energy/Usage Reg.#8 control UINT16 R
28736-28799 Reserved UINT16 R
28800-28807 Daily Profile Log, Max. Demand Reg.#1 control UINT16 R
28808-28815 Daily Profile Log, Max. Demand Reg.#2 control UINT16 R
28816-28823 Daily Profile Log, Max. Demand Reg.#3 control UINT16 R
28824-28823 Daily Profile Log, Max. Demand Reg.#4 control UINT16 R
28832-28839 Daily Profile Log, Max. Demand Reg.#5 control UINT16 R
0 to 65535 (increments modulo
65536 with each new record)
0 to 65535 UINT16 R
0 to 65535 UINT16 R/W If there is no a record in the file
0 = point to the first (oldest) record
in a file
1 = point to the first new record
never read before. If there are no
new records, the file pointer will be
set to the oldest record in a file
UINT16 R Will return zero if the file is empty
that matches the written sequence,
the device will respond with the
exception code 03 (invalid data)
UINT16 R/W Read as 0
72
Address Point ID Description Options/Range Units Type R/W Notes
28840-28847 Daily Profile Log, Max. Demand Reg.#6 control UINT16 R
28848-28855 Daily Profile Log, Max. Demand Reg.#7 control UINT16 R
28856-28823 Daily Profile Log, Max. Demand Reg.#8 control UINT16 R
28824-28927 Reserved UINT16 R
Event Log File Transfer Registers
29440-29559
Event Record Structure
+0 Record status (bitmap) F5 UINT16 R
+1 Record sequence number 0 to 65535 (increments modulo
+2,3 Record time, sec F1 s UINT32 R
+4 Record time, fractional seconds, ms 0-999 ms UINT16 R
+5 Event point/cause ID F19 UINT16 R
+6,7 Log value UINT32 R 32-bit non-scaled register
+8 Event effect F20 UINT16 R
+9 Reserved 0 UINT16 R
Event Log Transfer Blocks
29440-29449 Event log record #1 R
29450-29459 Event log record #2 R
29460-29469 Event log record #3 R
29470-29479 Event log record #4 R
29480-29489 Event log record #5 R
29490-29499 Event log record #6 R
29500-29509 Event log record #7 R
29510-29519 Event log record #8 R
29520-29529 Event log record #9 R
29530-29539 Event log record #10 R
29540-29549 Event log record #11 R
29550-29559 Event log record #12 R
Data Log File Transfer Registers
29696-32895
Data Log Record Structure
+0 Record status (bitmap) F5 UINT16 R
+1 Record sequence number 0 to 65535 (increments modulo
+2,3 Record time, sec F1 sec UINT32 R
+4 Record time, fractional seconds, ms 0-999 ms UINT16 R
+5 Trigger event ID 0=Profile log file, 1-16=SP1-SP16 UINT16 R
+6,7 Parameter #1 value INT32 R 32-bit non-scaled register
+8,8 Parameter #2 value INT32 R 32-bit non-scaled register
+10,11 Parameter #3 value INT32 R 32-bit non-scaled register
+12,13 Parameter #4 value INT32 R 32-bit non-scaled register
+14,15 Parameter #5 value INT32 R 32-bit non-scaled register
UINT16 R
65536)
UINT16 R
65536)
73
Address Point ID Description Options/Range Units Type R/W Notes
+16,17 Parameter #6 value INT32 R 32-bit non-scaled register
+18,19 Parameter #7 value INT32 R 32-bit non-scaled register
+20,21 Parameter #8 value INT32 R 32-bit non-scaled register
+22,23 Parameter #9 value INT32 R 32-bit non-scaled register
+24,25 Parameter #10 value INT32 R 32-bit non-scaled register
+26,27 Parameter #12 value INT32 R 32-bit non-scaled register
+28,29 Parameter #13 value INT32 R 32-bit non-scaled register
+30,31 Parameter #13 value INT32 R 32-bit non-scaled register
+32,33 Parameter #14 value INT32 R 32-bit non-scaled register
+34,35 Parameter #15 value INT32 R 32-bit non-scaled register
+36,37 Parameter #16 value INT32 R 32-bit non-scaled register
+38,39 Reserved INT32 R 32-bit non-scaled register
Data Log Transfer Blocks
29696-29735 Data log #1 R
29736-29775 Data log #2 R
29776-29815 Data log #3 R
29816-29855 Data log #4 R
29856-29895 Data log #5 R
29896-29935 Data log #6 R
29936-29975 Data log #7 R
29976-30015 Data log #8 R
30016-31615 Reserved R
31616-31655 Daily Profile Log, Energy/Usage Reg.#1 section R
31656-31695 Daily Profile Log, Energy/Usage Reg.#2 section R
31696-31735 Daily Profile Log, Energy/Usage Reg.#3 section R
31736-31775 Daily Profile Log, Energy/Usage Reg.#4 section R
31776-31815 Daily Profile Log, Energy/Usage Reg.#5 section R
31816-31855 Daily Profile Log, Energy/Usage Reg.#6 section R
31856-31895 Daily Profile Log, Energy/Usage Reg.#7 section R
31896-31935 Daily Profile Log, Energy/Usage Reg.#8 section R
31936-32255 Reserved R
32256-32295 Daily Profile Log, Max. Demand Reg.#1 section R
32296-32335 Daily Profile Log, Max. Demand Reg.#2 section R
32336-32375 Daily Profile Log, Max. Demand Reg.#3 section R
32376-32415 Daily Profile Log, Max. Demand Reg.#4 section R
32416-32455 Daily Profile Log, Max. Demand Reg.#5 section R
32456-32495 Daily Profile Log, Max. Demand Reg.#6 section R
32496-32535 Daily Profile Log, Max. Demand Reg.#7 section R
32536-32575 Daily Profile Log, Max. Demand Reg.#8 section R
32576-32895 Reserved R
74
Address Point ID Description Options/Range Units Type R/W Notes
Waveform Header Transfer Registers EH
29696-32895
Waveform Header Structure
+0 Record status (bitmap) F5 UINT16 R
+1 Record sequence number in a file 0 to 65535 (increments modulo
UINT16 R
65536)
+2,3 Record time, sec F1 sec UINT32 R Indicates the time for the last
sample point in the record
+4 Record time, fractional seconds, ms 0-999 ms UINT16 R
+5 Trigger event ID 0=real-time waveform, 1-16=SP1-
UINT16 R
SP16
+6 Waveform series (compound waveform) number 1-65535 (rolls over to 1 after
65535)
UINT16 R Each series can comprise up to 160
contiguous records of a compound
waveform
+7 Record sequence number in a waveform series 0-159 UINT16 R
+8,9 Analog input full scale, engineering units
Vmax, Imax UINT32 R
(volts/amperes) (ANALOG_SCALE)
+10 Digital full scale for the channel, sample code
(DIGITAL_SCALE)
-32768 to 32767 INT16 R Corresponds to twice the analog
input full-scale range.
+11 Zero offset, sample code (ZERO_OFFSET) 0 INT16 R Corresponds to the center of the
digital scale range
+12 Line frequency 0 to 6500 x 0.01Hz UINT16 R The sampling frequency is equal to
the line frequency multiplied by the
sampling rate in samples per cycle
(32 for Waveform log #1 and 128
for Waveform log #2)
+13 Trigger sample point offset in the waveform series 0-511 UINT16 R Corresponds to the first record in
the series
+14,15 Reserved 0 UINT16 R
Waveform Header Transfer Blocks
35456-35471 Real-time waveform, channel V1/V12 R
35472-35487 Real-time waveform, channel V2/V23 R
35488-35503 Real-time waveform, channel V3/V31 R
2
2
2
35504-35519 Real-time waveform, channel I1 R
35520-35535 Real-time waveform, channel I2 R
35536-35551 Real-time waveform, channel I3 R
35552-35567 Waveform log #1, channel V1/L12 R
35568-35583 Waveform log #1, channel V2/L23 R
35584-35599 Waveform log #1, channel V3/V31 R
2
2
2
35600-35615 Waveform log #1, channel I1 R
35616-35631 Waveform log #1, channel I2 R
35632-35647 Waveform log #1, channel I3 R
35648-35663 Waveform log #2, channel V1/V12 R
35664-35679 Waveform log #2, channel V2/V23 R
2
2
75
Address Point ID Description Options/Range Units Type R/W Notes
35680-35695 Waveform log #2, channel V3/V31 R
2
35696-35711 Waveform log #2, channel I1 R
35712-35727 Waveform log #2, channel I2 R
35728-35743 Waveform log #2, channel I3 R
Waveform Series Transfer Block EH
6144-6655
Waveform Sample Series
3
+0 Sample point 1 -32768 to 32767 INT16 R
+1 Sample point 2 -32768 to 32767 INT16 R
+2 Sample point 2 -32768 to 32767 INT16 R
+511 Sample point 512 -32768 to 32767 INT16 R
NOTES:
1
If a file is read through a TCP connection, your assignments for the transfer will be effective only within the current connection socket. Since the device cannot guarantee that your next
connection will be made through the same socket, you should not make any assumptions regarding the pr esent block settings. When you open a new connection, always check the file status
and pointers before reading file records.
2
When the 4LN3, 4LL3, 3LN3, 3LL3, 3BLN3 or 3BLL3 wiring mode is selected, the voltages will be line-to-neutral; for any other wiring mode, they will be line-to-line.
3
To convert digital samples to their analog equivalents in input measurement units (volts, amps), the following scaling should be applied:
An energy use profile section is allocated for registers for which a source input is selected in the Summary/TOU Register setup and for which energy use profile is enabled. A maxim um
demand profile section is allocated for registers for which maximum demand profile is enabled in the Summary/TOU Register setup. Not configured sections/channels are not available for
download. Refer to the file channel mask in the file info for configured channels.
2
The number of parameters in a section is automatically configured depending on the number of actually used tariffs selected in the TOU Daily Profiles.
3
For power scale and units, refer to Section 4 ”Data Scales and Units”.
78
4 Data Scales and Units
Code Condition Value/Range Notes
Data Scales
Vmax
Imax
Pmax
AImin
AImax
Data Units
U2 0.01A
Wiring 4LN3, 3LN3, 3BLN3
Wiring 4LL3, 3LL3, 3BLL3,
3OP2, 3OP3, 3DIR2
Nominal frequency 25, 50
or 60 Hz
Nominal frequency 400Hz 500 Hz
+/-1mA
0-20mA AImin = AI zero scale
4-20mA AImin = AI zero scale
0-1mA AImin = AI zero scale
PT Ratio = 1 0.1V U1
PT Ratio > 1 1V
PT Ratio = 1 1W/Var/VA U3
PT Ratio > 1 1kW/kvar/kVA
Voltage scale
Current scale (2A/10A)
Vmax
Vmax
100 Hz Fmax
AImin = -AI full scale
AImax = AI full scale
AImax = AI full scale
AImax = AI full scale
AImax = AI full scale
× PT Ratio, V
× Imax × 3, W
× Imax × 2, W
× CT Ratio = CT Primary current × 2, A
× 2
× 2
1
CT Ratio = CT primary current/CT secondary current
2
The default Voltage scale is 144V (120V +20%) unless you changed it in your device through the Device Data Scale setup
registers (see Section 3.1) or via the supplemental PAS software.
3
The default Current scale is 2 × CT secondary current (1A or 5A depending on the order).
4
Pmax is rounded to whole kilowatts. With PT=1.0, if Pmax is greater than 9,999,000 W, it is truncated to 9,999,000 W.
2
1, 3
4
79
5 Data Formats
Format Code Value Description Notes
Timestamp
F1 Local time in a UNIX-style format. Represents the number
Wiring Mode
F2
File Attributes
File Status Word
F4
File Record Status Word
F5
File Allocation Map
F6
Profile Log Sections Map
Waveform Log Channel Mask
F9
TOU Tariff Change Time
F10
0 3OP2 - 3-wire open delta using 2 CTs (2 element)
1 4LN3 - 4-wire WYE using 3 PTs (3 element), line-to-
2 3DIR2 - 3-wire direct connection using 2 CTs (2 element)
3 4LL3 - 4-wire WYE using 3 PTs (3 element), line-to-line
4 3OP3 - 3-wire open delta using 3 CTs (2 1/2 element)
5 3LN3 - 4-wire WYE using 2 PTs (2 1/2 element), line-to-
Bit 0 = 0
Bit 0 = 1
Bit 5 = 1 TOU daily p r ofile log
Bit 0 = 0
Bit 0 = 1
Bit 5 = 1 Daily profile log file
Bit 9 = 1 Reading after EOF
Bit 0 = 1 The last record of the file is being read
Bit 1 = 1 Reading after EOF
Bit 8 = 1 File is empty
Bit 9 = 1 Corrupted record (CRC error)
Bit 15 = 1 Generic read error (with one of the bits 8-9)
Bit 0 Event log file
Bit 1 Data log #1 file
Bit 2 Data log #2 file
Bit 3 Data log #3 file
Bit 4 Data log #4 file
Bit 5 Data log #5 file
Bit 6 Data log #6 file
Bit 7 Data log #7 file
Bit 8 Data log #8 file
Bits 9-16 Reserved
Bit 17 Waveform log #1 file
Bit 18 Waveform log #2 file
Bits 19-31 Reserved
Bit 0:7 = 1 Summary/TOU energy/usage registers #1-#8 F7
Bit 16:23 = 1 Summary/TOU maximum demand registers #1-#8
Bit 0 = 1 Channel V1/V12 Note 1
Bit 1 = 1 Channel V2/V23
Bit 2 = 1 Channel V3/V31
Bit 3 = 1 N/A
Bit 4 = 1 Channel I1
Bit 5 = 1 Channel I2
Bit 6 = 1 Channel I3
Bits 8:15 = 0-7 Tariff number #1-#8
Bits 2:7 = 0-23 Tariff start hour
Bits 0:1 = 0-3 Tariff start quarter of an hour
of seconds since midnight (00:00:00), January 1, 1970.
The time is valid after January 1, 2000.
neutral voltage readings
voltage readings
neutral voltage readings
line voltage readings
line-to-neutral voltage readings
line-to-line voltage readings
Non-wrap (stop when filled)
Wrap-around (circular file)
Non-wrap (stop when filled)
Wrap-around (circular file)
0x0300 Event flag #1 ON
0x0301 Event flag #2 ON
0x0302 Event flag #3 ON
0x0303 Event flag #4 ON
0x0304 Event flag #5 ON
0x0305 Event flag #6 ON
0x0306 Event flag #7 ON
0x0307 Event flag #8 ON
0x8300 Event flag #1 OFF
0x8301 Event flag #2 OFF
0x8302 Event flag #3 OFF
0x8303 Event flag #4 OFF
0x8304 Event flag #5 OFF
0x8305 Event flag #6 OFF
0x8306 Event flag #7 OFF
0x8307 Event flag #8 OFF
Internal Events
0x0400 kWh import pulse
0x0401 kWh export pulse
0x0403 kvarh import pulse
0x0404 kvarh export pulse
0x0405 kvarh total pulse
0x0406 kVAh total pulse
0x0407 Start new demand interval
0x0408 Start new tariff interval
0x0409 Start new volt/ampere demand interval
0x040A Start new sliding window demand interval
Timers
E
E
0x0500 Timer #1
0x0501 Timer #2 Status Inputs
0x0600 Status input #1 ON
0x0601 Status input #2 ON
0x8600 Status input #1 OFF
0x8601 Status input #2 OFF Pulse Inputs
0x0700 Pulse input #1
0x0701 Pulse input #2 Relays
0x0800 Relay #1 ON
0x0801 Relay #2 ON
0x8800 Relay #1 OFF
0x8801 Relay #2 OFF Phase Reversal
4
0x8901 Positive phase rotation reversal
0x8902 Negative phase rotation reversal Pulse Counters
0x0A00 High pulse counter #1
0x0A01 High pulse counter #2
0x0A02 High pulse counter #3
0x0A03 High pulse counter #4
Time and Date Parameters
E
0x0B02 Day of week
81
Format Code Value Description Notes
0x0B03 Year
0x0B04 Month
0x0B05 Day of month
0x0B06 Hour
0x0B07 Minutes
0x0B08 Seconds 1-Cycle Phase Values
0x0C03 High I1 current
0x0C04 High I2 current
0x0C05 High I3 current
0x8C03 Low I1 current
0x8C04 Low I2 current
0x8C05 Low I3 current 1-Cycle Values on any Phase
0x0E00 High voltage
0x8D00 Low voltage
0x0E01 High current
0x8D01 Low current
0x0E07 High voltage THD
0x0E08 High current THD
0x0E09 High K-Factor
0x0E0A High current TDD 1-Cycle Auxiliary Values
0x1002 High frequency
0x9002 Low frequency
0x1003 High voltage unbalance
0x1004 High current unbalance 1-Sec Phase Values
0x1103 High I1 current
0x1104 High I2 current
0x1105 High I3 current
0x9103 Low I1 current
0x9104 Low I2 current
0x9105 Low I3 current 1-Sec Values on any Phase
0x1300 High voltage
0x9200 Low voltage
0x1301 High current
0x9201 Low current 1-Sec Total Values
0x1406 High total kW import
0x1407 High total kW export
0x1408 High total kvar import
0x1409 High total kvar export
0x1402 High total kVA
0x9404 Low total PF Lag
0x9405 Low total PF Lead 1-Sec Auxiliary Values
0x1501 High neutral current
0x1502 High frequency
0x9502 Low frequency
0x1503 High voltage unbalance
0x1504 High current unbalance Present Demands
0x1600 High V1/V12 Volt demand
0x1601 High V2/V23 Volt demand
0x1602 High V3/V31 Volt demand
0x1603 High I1 Ampere demand
0x1604 High I2 Ampere demand
0x1605 High I3 Ampere demand
0x1606 High block kW import demand
0x1607 High block kvar import demand
0x1608 High block kVA demand
0x1609 High sliding window kW import demand
0x160A High sliding window kvar import demand
0x160B High sliding window kVA demand
0x160F High accumulated kW import demand
82
Format Code Value Description Notes
0x1610 High accumulated kvar import demand
0x1611 High accumulated kVA demand
0x1612 High predicted kW import demand
0x1613 High predicted kvar import demand
0x1614 High predicted kVA demand
0x1616 High block kW export demand
0x1617 High block kvar export demand
0x1618 High sliding window kW export demand
0x1619 High sliding window kvar export demand
0x161A High accumulated kW export demand
0x161B High accumulated kvar export demand
0x161C High predicted kW export demand
0x161D High predicted kvar export demand Setpoint Status
0x7C00 Setpoint #1 ON
0x7C01 Setpoint #2 ON
0x7C02 Setpoint #3 ON
0x7C03 Setpoint #4 ON
0x7C04 Setpoint #5 ON
0x7C05 Setpoint #6 ON
0x7C06 Setpoint #7 ON
0x7C07 Setpoint #8 ON
0x7C08 Setpoint #9 ON
0x7C09 Setpoint #10 ON
0x7C0A Setpoint #11 ON
0x7C0B Setpoint #12 ON
0x7C0C Setpoint #13 ON
0x7C0D Setpoint #14 ON
0x7C0E Setpoint #15 ON
0x7C0F Setpoint #16 ON
Set Event flag #1
Set Event flag #2
Set Event flag #3
Set Event flag #4
Clear Event flag #1
Clear Event flag #2
Clear Event flag #3
Clear Event flag #4
0x0000 None (output disabled) Note 2
1-Cycle Phase Values
0x0C00 V1/V12 Voltage
0x0C01 V2/V23 Voltage
0x0C02 V3/V31 Voltage
0x0C03 I1 Current
0x0C04 I2 Current
0x0C05 I3 Current
0x0C1E V12 Voltage
0x0C1F V23 Voltage
0x0C20 V31 Voltage 1-Cycle Total Values
0x0F00 Total kW
0x0F01 Total kvar
0x0F02 Total kVA
0x0F03 Total PF
0x0F04 Total PF Lag
0x0F05 Total PF Lead 1-Cycle Auxiliary Values
0x1001 In Current
0x1002 Frequency 1-Sec Phase Values
0x1100 V1/V12 Voltage
0x1101 V2/V23 Voltage
0x1102 V3/V31 Voltage
0x1103 I1 Current
0x1104 I2 Current
0x1105 I3 Current
0x111E V12 Voltage
0x111F V23 Voltage
0x1120 V31 Voltage 1-Sec Total Values
0x1400 Total kW
0x1401 Total kvar
0x1402 Total kVA
0x1403 Total PF
0x1404 Total PF Lag
0x1405 Total PF Lead 1-Sec Auxiliary Values
0x1501 In Current
0x1502 Frequency
Present Demands
E
0x160F Accumulated kW import demand
0x1610 Accumulated kvar import demand
0x1611 Accumulated kVA demand
0x161A Accumulated kW export demand
0x161B Accumulated kvar export demand
Event Cause/Point ID
F19 Setpoint Operation Events
84
Format Code Value Description Notes
Event Effect ID
F20
Data Point ID
F21
0x0000-0x59FF Trigger parameter ID
0x6400-0xFFFF Trigger parameter ID
Setpoint Action Events
0x5A00-0x5A0F Setpoint #1-#16
Communications Events
0x5B00-0x5BFF Data point ID (low byte, see F21) Front Panel Operations
0x5C00-0x5CFF Data point ID (low byte, see F21)
Data Locations
0x03 Data memory
0x04 Factory setup
0x05 Access/Password setup
0x06 Basic setup
0x07 Communications setup
0x08 Real-time clock
0x09 Digital inputs setup
0x0A Pulse counters setup
0x0B AO setup
0x0E Timers setup
0x10 Event/alarm setpoints
0x11 Pulsing setup
0x12 User assignable register map
85
Format Code Value Description Notes
Device Diagnostics
F23
DNP Object Types
F24
0x13 Programmable Min/Max log setup
0x14 Data log setup
0x15 File/Memory setup
0x16 TOU energy registers setup
0x18 TOU daily profiles
0x19 TOU calendar
0x1D RO Setup
0x1C User selectable options
0x1F DNP 3.0 Class 0 map
0x20 DNP 3.0 options setup
0x21 DNP 3.0 events setup
0x22 DNP 3.0 event setpoints
0x23 Calibration registers
0x24 Date/Time Setup
0x25 Net setup
0x26 AI setup
0x27 Waveform log setup
0x2B-0x3F Reserved
Bit 0 Reserved
Bit 1 Reserved
Bit 2 = 1 RAM/Data error
Bit 3 = 1 CPU watchdog reset
Bit 4 = 1 Sampling fault
Bit 5 = 1 CPU exception
Bit 6 Reserved
Bit 7 = 1 Software watchdog reset
Bit 8 = 1 Power down
Bit 9 = 1 Device reset
Bit 10 = 1 Configuration reset
Bit 11 = 1 RTC fault
Bit 12 Reserved
Bit 13 = 1 Low battery
Bit 14 Reserved
Bit 15 = 1 E E P R O M fault
Static Binary Input Objects
0 Single-Bit Binary Inpu t
1 Binary Input With Status Binary Input Change Event Objects
0 Binary Input Change Without Time
1 Binary Input Change With Time Static Binary Counters
0 32-bit Binary Counter
1 32-bit Binary Counter Without Flag
2 16-bit Binary Counter
3 16-bit Binary Counter Without Flag Binary Counter Change Events
0 32-bit Counter Change E vent Without T im e
1 32-bit Counter Change Event With Time
2 16-bit Counter Change E vent Without T im e
3 16-bit Counter Change Event With Time Frozen Binary Counters
0 32-bit Frozen Counter
1 32-bit Frozen Counter Without Flag
2 32-bit Frozen Counter With Time of Freeze
3 16-bit Frozen Counter
4 16-bit Frozen Counter Without Flag
5 16-bit Frozen Counter With Time of Freeze Static Analog Input Objects
0 32-bit Analog Input
1 32-bit A nalog Input Without Flag
2 16-bit Analog Input
3 16-bit A nalog Input Without Flag Analog Input Change Events
0 32-bit Analog Change Event Without Time
1 32-bit Analog Change Event With Time
86
Format Code Value Description Notes
2 16-bit Analog Change Event Without Time
3 16-bit Analog Change Event With Time
DNP Class 0 Objects
F25
0x1E01 Analog Input 30:01
0x1E02 Analog Input 30:02
0x1E03 Analog Input 30:03
0x1E04 Analog Input 30:04
0x1F01 Frozen Analog Input 31:01
0x1F02 Frozen Analog Input 31:02
0x1F03 Frozen Analog Input 31:03
0x1F04 Frozen Analog Input 31:04
0x1F05 Frozen Analog Input 31:05
0x1F06 Frozen Analog Input 31:06
0x2801 Analog Output 40:01
0x2802 Analog Output 40:02
0x0101 Binary Input 01:01
0x0102 Binary Input 01:02
0x1401 Binary Counter 20:01
0x1402 Binary Counter 20:02
0x1405 Binary Counter 20:05
0x1406 Binary Counter 20:06
0x1501 Frozen Counter 21:01
0x1502 Frozen Counter 21:02
0x1505 Frozen Counter 21:05
0x1506 Frozen Counter 21:06
0x1509 Frozen Counter 21:09
0x150A Frozen Counter 21:10
0x3201 Time and Date 50:01
Log Notification Status
F26
Bit 0 Reserved
Bit 1=1 New Min/Max Log
Bit 2=1 New Event log record
Bit 3=1 New Data log record
Bit 4=1 New Waveform log #1 record
Bit 5=1 New Waveform log #2 record
Bits 6-15 Reserved
Data Log Notification Status
F27
Bit 0=1 New Data log #1 record
Bit 1=1 New Data log #2 record
Bit 2=1 New Data log #3 record
Bit 3=1 New Data log #4 record
Bit 4=1 New Data log #5 record
Bit 5=1 New Data log #6 record
Bit 6=1 New Data log #7 record
Bit 7=1 New Data log #8 record
Bits 8-15 Reserved
Instrument Options
F28
Bit 0=1 120V Option
Bit 1=1 690V Option
Bits 2-5 Reserved
Bit 6=1 Analog output 0/4 or 4/20mA
Bit 7=1 Analog output 0-1mA
Bit 8=1 Analog output ±1mA
Bit 9=1 RO option
Bit 10=1 DI option
Bit 11=1 Reserved
Bit 12=1 Setup is secured by a password (authorization required)
Bit 13=1 Reserved
Bit 14=1 Analog expander option ±1mA
Bit 15 Reserved
Bits 16-18 Number of RO - 1
Bits 19-22 Number of DI – 1
Bits 23-24 Number of AO - 1
Bits 25-29 Reserved
Bits 30-31=11
Memory module 1MBytes
E
I/O Slot Types
F29 DI DRY 00000000B
× = Don’t care
87
Format Code Value Description Notes
RO 00100000B
AI ±1 mA 01010000B
AI 0-20 mA 01010001B
AI 4-20 mA 01010010B
AI 0-1 mA 01010011B
AO ±1 mA 01100000B
AO 0-20 mA 01100001B
AO 4-20 mA 01100010B
AO 0-1 mA 01100011B
Empty slot
1111
××××B
NOTES:
1
Voltage Waveforms
When the 4LN3, 4LL3, 3LN3, 3LL3, 3BLN3 or 3BLL3 wiring mode is selected, the voltage waveforms will be line-to-neutral; for
any other wiring mode, they will be line-to-line.
2
Analog Outputs
1) For bi-directional analog output (
±1 mA), the zero scale setup corresponds to the center (0 mA) of the scale range, and the
direction of the current matches the sign of the output parameter. Unsigned parameters are output within the current range 0
to +1 mA and can be scaled as in the case of single-ended analog output (0-1 mA).
For signed values, such as powers and signed power factor, the scale is always symmetrical with regard to 0 mA, and the full
scale corresponds to +1 mA output for positive readings and to -1 mA output for negative readings. The zero scale (0 mA
output) is permanently set in the instrument to zero for all parameters except the signed power factor for which it is set to
1.000 (see Note 2). In write requests, the zero scale is ignored.
2) Except for the signed power factor, the setup scale is continuous within the entire value range. For signed power factor, the
setup scale is broken at +1.000 in order to provide continuous output current when the power factor changes close to
±1.000.
The setup scale is symmetrical in the range of -0 to +0 with a center at 1.000 (-1.000 is assumed to be equal to +1.000).
Negative power factor is output as -1.000 minus measured value, and non-negative power factor is output as +1.000 minus
measured value. To set the entire range for power factor from-0 to +0, the scales would be specified as -0 to 0. Because of the
fact that negative zero may not be transmitted through communications, the value of -0.001 is used to specify the scale of -0,
and both +0.001 and 0.000 are used to specify the scale of +0.
3
Voltage Disturbance Trigger
The operate limit specifies the voltage deviation in percent of the nominal secondary voltage.
4
Phase Reversal Trigger
The setpoint is operated when the actual phase sequence does not match the designated phase rotation order.
88
Loading...
+ hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.