You are on page 1of 96

GE Consumer & Industrial Multilin

PQMII Power Quality Meter Communications Guide


Software Revision: 2.2x Manual P/N: 1601-9090-A1 Manual Order Code: GEK-113532 Copyright 2009 GE Multilin

GE Multilin 215 Anderson Avenue, Markham, Ontario Canada L6E 1B3 Tel: (905) 294-6222 Fax: (905) 201-2098 Internet: http://www.GEmultilin.com
GE Multilin's Quality Management System is registered to ISO9001:2000 QMI # 005094 UL # A3775

*1601-9090-A1*

2009 GE Multilin Incorporated. All rights reserved. GE Multilin PQMII Power Quality Meter instruction manual for revision 2.2x. PQMII Power Quality Meter, is a registered trademark of GE Multilin Inc. The contents of this manual are the property of GE Multilin Inc. This documentation is furnished on license and may not be reproduced in whole or in part without the permission of GE Multilin. The content of this manual is for informational use only and is subject to change without notice. Part numbers contained in this manual are subject to change without notice, and should therefore be verified by GE Multilin before ordering. Part number: 1601-9090-A1 (April 2009)

TABLE OF CONTENTS

Table of Contents
COMMUNICATIONS GUIDE MODBUS OVERVIEW ......................................................................................................1 MODBUS PROTOCOL .........................................................................................................1 ELECTRICAL INTERFACE .....................................................................................................1 DATA FRAME FORMAT AND DATA RATE ........................................................................2 DATA PACKET FORMAT .....................................................................................................2 ERROR CHECKING .............................................................................................................3 CRC-16 ALGORITHM .......................................................................................................3 TIMING ................................................................................................................................4 READING LONG INTEGERS FROM THE MEMORY MAP ..................................................4 MODBUS FUNCTIONS ....................................................................................................6 SUPPORTED MODBUS FUNCTIONS .................................................................................6 READ SETPOINTS/ACTUAL VALUES (FUNCTION CODES 03/04H) .............................6 EXECUTE OPERATION (FUNCTION CODE 05H) ..............................................................7 BROADCAST COMMAND (FUNCTION CODE 05H) .........................................................7 STORE SINGLE SETPOINT (FUNCTION CODE 06H) .......................................................8 READ DEVICE STATUS (FUNCTION CODE 07H) ............................................................8 LOOPBACK TEST (FUNCTION CODE 08H) ......................................................................9 STORE MULTIPLE SETPOINTS (FUNCTION CODE 10H) ..............................................10 PERFORMING COMMANDS (FUNCTION CODE 10H) ..................................................10 BROADCAST COMMAND (FUNCTION CODE 10H) ......................................................11 ERROR RESPONSES ........................................................................................................12 MODBUS MEMORY MAP ............................................................................................ 13 MEMORY MAP INFORMATION .......................................................................................13 USER-DEFINABLE MEMORY MAP .................................................................................13 PQMII MEMORY MAP ...................................................................................................14 MEMORY MAP DATA FORMATS ....................................................................................57 ANALOG OUTPUT PARAMETER RANGE ........................................................................74 DNP 3.0 COMMUNICATIONS .................................................................................... 77 DNP 3.0 DEVICE PROFILE DOCUMENT ......................................................................77 IMPLEMENTATION TABLE ...............................................................................................78 DEFAULT VARIATIONS ....................................................................................................80 INTERNAL INDICATION BITS ...........................................................................................80 DNP POINT LISTS ........................................................................................................... 81 BINARY INPUT / BINARY INPUT CHANGE ....................................................................81 BINARY OUTPUT / CONTROL RELAY OUTPUT ............................................................84 ANALOG INPUT/OUTPUT CHANGE ...............................................................................86 COUNTERS .......................................................................................................................92

PQMII POWER QUALITY METER INSTRUCTION MANUAL

TOC1

TABLE OF CONTENTS

TOC2

PQMII POWER QUALITY METER INSTRUCTION MANUAL

Digital Energy Multilin

PQMII Power Quality Meter Communications Guide

Communications Guide

Modbus Overview
1.1 Modbus Protocol
The GE Multilin PQMII implements a subset of the AEG Modicon Modbus RTU serial communication standard. Many popular programmable controllers support this protocol directly with a suitable interface card allowing direct connection of the PQMII. Although the Modbus protocol is hardware independent, the PQMII interface uses 2-wire RS485 and 9pin RS232 interfaces. Modbus is a single-master multiple-slave protocol suitable for a multi-drop configuration provided by RS485 hardware. In this configuration, up to 32 slaves can be daisy-chained together on a single communication channel. The PQMII is always a Modbus slave; it cannot be programmed as a Modbus master. Computers or PLCs are commonly programmed as masters. The Modbus protocol exists in two versions: Remote Terminal Unit (RTU, binary) and ASCII. Only the RTU version is supported by the PQMII. Monitoring, programming and control functions are possible using read and write register commands.

1.2

Electrical Interface
The electrical interface is 2-wire RS485 and 9-pin RS232. In a 2-wire RS485 link, data flow is bi-directional and half duplex. That is, data is never transmitted and received at the same time. RS485 lines should be connected in a daisy-chain configuration (avoid star connections) with a terminating network installed at each end of the link, i.e. at the master end and the slave farthest from the master. The terminating network should consist of a 120 resistor in series with a 1 nF ceramic capacitor when used with Belden 9841 RS485 wire. The value of the terminating resistors should be equal to the characteristic impedance of the line. This is approximately 120 for standard #22 AWG twisted-pair wire. Shielded wire should always be used to minimize noise. Polarity is important in RS485

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM1

CHAPTER COMM: COMMUNICATIONS GUIDE

communications: each '+' terminal of every device must be connected together for the system to operate. See PQMII Intstruction Manual section 2.2.11: RS485 Serial Ports for details on serial port wiring.

1.3

Data Frame Format and Data Rate


One data frame of an asynchronous transmission to or from a PQMII consists of 1 start bit, 8 data bits, and 1 stop bit, resulting in a 10-bit data frame. This is important for high-speed modem transmission, since 11-bit data frames are not supported by Hayes modems at bit rates greater than 300 bps. The Modbus protocol can be implemented at any standard communication speed. The PQMII supports operation at 1200, 2400, 4800, 9600, and 19200 baud.

1.4

Data Packet Format


A complete request/response sequence consists of the following bytes (transmitted as separate data frames): Master Request Transmission: SLAVE ADDRESS: 1 byte FUNCTION CODE: 1 byte DATA: variable number of bytes depending on the Function Code CRC: 2 bytes Slave Response Transmission: SLAVE ADDRESS: 1 byte FUNCTION CODE: 1 byte DATA: variable number of bytes depending on FUNCTION CODE CRC: 2 bytes The Slave Address is the first byte of every transmission. It represents the user-assigned address of the slave device assigned to receive the message sent by the master. Each slave device must be assigned a unique address so only it responds to a transmission that starts with its address. In a master request transmission, the Slave Address represents the address to which the request is being sent. In a slave response transmission the Slave Address represents the address sending the response.

Note

A master transmission with a Slave Address of 0 indicates a broadcast command. Broadcast commands can be used only to store setpoints or perform commands. The Function Code is the second byte of every transmission. Modbus defines function codes of 1 to 127. The PQMII implements some of these functions. See 2.1 Supported Modbus Functions for details of the supported function codes. In a master request transmission the Function Code tells the slave what action to perform. In a slave response transmission if the Function Code sent from the slave is the same as the Function Code sent from the master then the slave performed the function as requested. If the high order bit of the Function Code sent from the slave is a 1 (i.e. if the Function Code is > 127) then the slave did not perform the function as requested and is sending an error or exception response.

COMM2

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

The Data is a variable number of bytes depending on the Function Code. This may be Actual Values, Setpoints, or addresses sent by the master to the slave or by the slave to the master. See 2.1 Supported Modbus Functions for a description of the supported functions and the data required for each. The CRC is a a two byte error checking code. See the following section for details.

1.5

Error Checking
The RTU version of Modbus includes a 2-byte CRC-16 (16-bit cyclic redundancy check) with every transmission. The CRC-16 algorithm essentially treats the entire data stream (data bits only; start, stop and parity are ignored) as one continuous binary number. This number is first shifted left 16 bits and then divided by a characteristic polynomial (11000000000000101B). The 16-bit remainder is appended to the end of the transmission, MSByte first. The resulting message including CRC, when divided by the same polynomial at the receiver, results in a zero remainder if no transmission errors have occurred. If a PQMII Modbus slave device receives a transmission in which an error is indicated by the CRC-16 calculation, the slave device will not respond to the transmission. A CRC-16 error indicates that one or more bytes of the transmission were received incorrectly and thus the entire transmission should be ignored in order to avoid the PQMII performing any incorrect operation. The CRC-16 calculation is an industry standard method used for error detection. An algorithm is included here to assist programmers in situations where no standard CRC-16 calculation routines are available.

1.6

CRC-16 Algorithm
Once the following algorithm is complete, the working register A will contain the CRC value to be transmitted. Note that this algorithm requires the characteristic polynomial to be reverse bit ordered. The MSbit of the characteristic polynomial is dropped since it does not affect the value of the remainder. The following symbols are used in the algorithm: -->: data transfer; A: 16-bit working register; AL: low order byte of A; AH: high order byte of A; CRC: 16-bit CRC-16 value; i and j: loop counters; (+): logical exclusive-OR operator; Di: i-th data byte (i = 0 to N 1); G: 16-bit characteristic polynomial = 1010000000000001 with MSbit dropped and bit order reversed; shr(x): shift right (the LSbit of the low order byte of x shifts into a carry flag, a '0' is shifted into the MSbit of the high order byte of x, all other bits shift right one location The algorithm is shown below:
1. FFFF hex --> A 2. 0 --> i 3. 0 --> j

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM3

CHAPTER COMM: COMMUNICATIONS GUIDE

4. Di (+) AL --> AL 5. j + 1 --> j 6. shr(A) 7. is there a carry? No: go to 8; Yes: G (+) A --> A 8. is j = 8? No: go to 5; Yes: go to 9. 9. i + 1 --> i 10. is i = N? No: go to 3; Yes: go to 11. 11. A --> CRC

1.7

Timing
Data packet synchronization is maintained by timing constraints. The receiving device must measure the time between the reception of characters. If three and one half character times elapse without a new character or completion of the packet, then the communication link must be reset (i.e. all slaves start listening for a new transmission from the master). Thus at 9600 baud a delay of greater than 3.5 1/9600 10 = 3.65 ms will cause the communication link to be reset.

1.8

Reading Long Integers from the Memory Map


1.8.1 Description

The PQMII memory map contains data formatted as a long integer type, or 32 bits. Because the Modbus protocol maximum register size is 16 bits, the PQMII stores long integers in 2 consecutive register locations, 2 high order bytes, and 2 low order bytes. The data can be retrieved by the following logic:
READ THE HIGH ORDER REGISTER AND STORE THIS VALUE INTO A

READ THE LOW ORDER REGISTER AND STORE THIS VALUE INTO B

DATA VALUE = (A x 2 ) + B

16

IS THE MOST SIGNIFICANT BIT OF THE HIGH ORDER REGISTER SET? i.e. is HIGH ORDER REGISTER > 32767? YES

NO

DATA VALUE = DATA VALUE

(DATA VALUE = DATA VALUE 2 ) OR APPLY 2s COMPLEMENT TO DATA VALUE; THE SIGN IS IMPLIED TO BE NEGATIVE

32

1.8.2

Example

Reading a positive 3 Phase Real Power actual value from the PQMII:
Register Actual Value Description Units & Scale Format

02F0

004Fh

3 Phase Real Power (high)

0.01 kW

F4

COMM4

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Register

Actual Value

Description

Units & Scale

Format

02F1

35D1h

3 Phase Real Power (low)

0.01 kW

F4

Following the method described above, we have: DATA VALUE = (004F 216) + 35D1 = 5177344 + 13777 = 5191121 hexadecimal converted to decimal decimal

The most significant bit of the High Order register is not set, therefore the Data Value is as calculated. Applying the Units and Scale parameters to the Data Value, we multiply the Data Value by 0.01 kW. Therefore the resultant value of 3 Phase Real Power as read from the memory map is 51911.21 kW. Reading a negative 3 Phase Real Power actual value from the PQMII:
Register Actual Value Description Units & Scale Format

02F0 02F1

FF3Ah EA7Bh

3 Phase Real Power (high) 3 Phase Real Power (low)

0.01 kW 0.01 kW

F4 F4

Following the method described above: DATA VALUE = (FF3A 216) + EA7B = (65338 216) + 60027 = 4282051195 hexadecimal converted to decimal decimal

The most significant bit of the High Order register is set, therefore the Data Value is: DATA VALUE = DATA VALUE 232 = 4282051195 4294967296 = 12916101 Multiply the Data Value by 0.01 kW according to the Units and Scale parameter. The resultant 3 Phase Real Power value read from the memory map is 129161.01 kW.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM5

CHAPTER COMM: COMMUNICATIONS GUIDE

Modbus Functions
2.1 Supported Modbus Functions
The following functions are supported by the PQMII: 03h: Read Setpoints and Actual Values 04h: Read Setpoints and Actual Values 05h: Execute Operation 06h: Store Single Setpoint 07h: Read Device Status 08h: Loopback Test 10h: Store Multiple Setpoints

2.2

Read Setpoints/Actual Values (Function Codes 03/04h)


Modbus implementation: Read Input and Holding Registers PQMII Implementation: Read Setpoints and Actual Values For the PQMII Modbus implementation, these commands are used to read any setpoint (holding registers) or actual value (input registers). Holding and input registers are 16-bit (two byte) values with the high-order byte transmitted first. Thus, all setpoints and actual values are sent as two bytes. A maximum of 125 registers can be read in one transmission. Function codes 03 and 04 are configured to read setpoints or actual values interchangeably since some PLCs do not support both of them. The slave response to function codes 03/04 is the slave address, function code, number of data bytes to follow, the data, and the CRC. Each data item is sent as a 2 byte number with the high order byte first. Message Format and Example for Modbus Function Code 03/04h: Request slave 17 to respond with 3 registers starting at address 006B. For this example the register data in these addresses is: Address: Data: 006B 022B 006C 0000 006D 0064

The master/slave packet format is shown below: Master Transmission Bytes Example Description

Slave Address Function Code Data Starting Address Number Of Setpoints CRC
Slave Response

1 1 2 2 2
Bytes

11 03 00 6B 00 03 9D 8D
Example

message for slave 17 read registers data starting at 006B 3 registers = 6 bytes total CRC error code
Description

Slave Address

11

message from slave 17

COMM6

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Slave Response

Bytes

Example

Description

Function Code Byte Count Data 1 (see definition above) Data 2 (see definition above) Data 3 (see definition above) CRC

1 1 2 2 2 2

03 06 02 2B 00 00 00 64 C8 B8

read registers 3 registers = 6 bytes value in address 006B value in address 006C value in address 006D CRC error code

2.3

Execute Operation (Function Code 05h)


Modbus Implementation: Force Single Coil PQMII Implementation: Execute Operation This function code allows the master to request a PQMII to perform specific command operations. The command numbers listed in the Commands area of the memory map correspond to operation codes for function code 05. The operation commands can also be initiated by writing to the Commands area of the memory map using function code 16. 2.9 Performing Commands (Function Code 10h) for complete details. Message Format and Example for Modbus Function Code 05h: Reset PQMII (operation code 1).
Master Transmission Bytes Example Description

Slave Address Function Code Operation Code Code Value CRC


Slave Response

1 1 2 2 2
Bytes

11 05 00 01 FF 00 DF 6A
Example

message for slave 17 execute operation Reset command (operation code 1) perform function CRC error code
Description

Slave Address Function Code Operation Code Code Value CRC

1 1 2 2 2

11 05 00 01 FF 00 DF 6A

message from slave 17 execute operation operation code 1 perform function CRC error code

2.4

Broadcast Command (Function Code 05h)


Modbus Implementation: Force Single Coil PQMII Implementation: Execute Operation This function code allows the master to request all PQMIIs on a particular communications link to Clear All Demand Data. The PQMII will recognize a packet as being a broadcast command if the Slave Address is transmitted as 0. Below is an example of the Broadcast Command to Clear All Demand Data. Message Format and Example for Modbus Function Code 05h:

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM7

CHAPTER COMM: COMMUNICATIONS GUIDE

Clear All Demand Data on all PQMIIs (operation code 34).


Master Transmission Bytes Example Description

Slave Address Function Code Operation Code Code Value CRC


Slave Response

1 1 2 2 2
Bytes

00 05 00 22 FF 00 2D E1
Example

broadcast command (address = 0) execute operation clear all demand data (op. code 34) perform function CRC error code
Description

Slave does not respond back to the master.

2.5

Store Single Setpoint (Function Code 06h)


Modbus Implementation: Preset Single Register PQMII Implementation: Store Single Setpoint This command allows the master to store a single setpoint into the memory of a PQMII. The slave response to this function code is to echo the entire master transmission. Message Format and Example for Modbus Function Code 06h: Request slave 17 to store the value 01E4 in setpoint address 1020. After the transmission in this example is complete, setpoint address 1020 will contain the value 01E4.
Master Transmission Bytes Example Description

Slave Address Function Code Data Starting Address Data CRC


Slave Response

1 1 2 2 2
Bytes

11 06 10 20 01 E4 8E 47
Example

message for slave 17 store single setpoint setpoint address 1020 data for setpoint address 1020 CRC error code
Description

Slave Address Function Code Data Starting Address Data CRC

1 1 2 2 2

11 06 10 20 01 E4 8E 47

message from slave 17 store single setpoint setpoint address 1020 data stored in setpoint address 1020 CRC error code

2.6

Read Device Status (Function Code 07h)


Modbus Implementation: Read Exception Status PQMII Implementation: Read Device Status This is a function used to quickly read the status of a selected device. A short message length allows for rapid reading of status. The status byte returned will have individual bits set to 1 or 0 depending on the status of the slave device. PQMII General Device Status Byte:
Bit Position Description

B0 (LSBit)

Alarm Condition = 1

COMM8

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Bit Position

Description

B1 B2 B3 B4 B5 B6 B7 (MSBit)

Self test failure = 1 Alarm relay energized = 1 Aux 1 relay energized = 1 Aux 2 relay energized = 1 Aux 3 relay energized = 1 Not used Not used

Message Format and Example for Modbus Function Code 07h: Request status from slave 17.
Master Transmission Bytes Example Description

Slave Address Function Code CRC


Slave Response

1 1 2
Bytes

11 07 4C 22
Example

message for slave 17 read device status CRC error code


Description

Slave Address Function Code Device Status (see above) CRC

1 1 2 2

11 07 2C 22 28

message from slave 17 read device status status = 00101100 (in binary) CRC error code

2.7

Loopback Test (Function Code 08h)


Modbus Implementation: Loopback Test PQMII Implementation: Loopback Test This function is used to test the integrity of the communication link. The PQMII will echo the request. Message Format and Example for Modbus Function 08h: Loopback test from slave 17.
Master Transmission Bytes Example Description

Slave Address Function Code Diagnostic code Data CRC


Slave Response

1 1 2 2 2
Bytes

11 08 00 00 00 00 E0 0B
Example

message for slave 17 loopback test must be 00 00 must be 00 00 CRC error code
Description

Slave Address Function Code Diagnostic Code Data CRC

1 1 2 2 2

11 08 00 00 00 00 E0 0B

message from slave 17 loopback test must be 00 00 must be 00 00 CRC error code

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM9

CHAPTER COMM: COMMUNICATIONS GUIDE

2.8

Store Multiple Setpoints (Function Code 10h)


Modbus Implementation: Preset Multiple Registers PQMII Implementation: Store Multiple Setpoints This function code allows multiple setpoints to be stored into the PQMII memory. Modbus registers are 16-bit (2-byte) values transmitted high order byte first. Thus all PQMII setpoints are sent as two bytes. The maximum number of setpoints that can be stored in one transmission is dependent on the slave device. Modbus allows up to a maximum of 60 holding registers to be stored. The PQMII allows 60 registers to be stored in one transmission. The PQMII response to this function is to echo the slave address, function code, starting address, the number of setpoints stored, and the CRC. Message Format and Example for function code 10h: Request slave 17 to store the value 01F4 to setpoint address 1028 and the value 2710 to setpoint address 1029.
Master Transmission Bytes Example Description

Slave Address Function Code Data Starting Address Number of Setpoints Byte Count Data 1 Data 2 CRC
Slave Response

1 1 2 2 1 2 2 2
Bytes

11 10 10 28 00 02 04 01 F4 27 10 33 23
Example

message for slave 17 store multiple setpoints setpoint address 1028 2 setpoints = 4 bytes total 4 bytes of data data for setpoint address 1028 data for setpoint address 1029 CRC error code
Description

Slave Address Function Code Data Starting Address Number of Setpoints CRC

1 1 2 2 2

11 10 10 28 00 02 C7 90

message from slave 17 store multiple setpoints setpoint address 1028 2 setpoints CRC error code

2.9

Performing Commands (Function Code 10h)


Some PLCs may not support command execution using function code 05 but do support storing multiple setpoints with function code 10h. To perform this operation using function code 10h, a certain sequence of commands must be written to the PQMII. The sequence consists of: command function register, command operation register and command data (if required). The command function register must be written with the value of 05, indicating an execute operation. The command operation register must then be written with a valid command operation number from the list of commands shown in the memory map. The command data registers must be written with valid data if the command operation requires data. The selected command will be executed immediately upon receipt of a valid transmission. Message Format and Example for Function Code 10h:

COMM10

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Perform a reset on PQMII (operation code 1).


Master Transmission Bytes Example Description

Slave Address Function Code Data Starting Address Number of Setpoints Byte Count Data 1 Data 2 CRC
Slave Response

1 1 2 2 1 2 2 2
Bytes

11 10 00 80 00 02 04 00 05 00 01 B0 D6
Example

message for slave 17 store multiple setpoints setpoint address 0080 2 setpoints = 4 bytes total 4 bytes of data data for setpoint address 0080 data for setpoint address 0081 CRC error code
Description

Slave Address Function Code Data Starting Address Number of Setpoints CRC

1 1 2 2 2

11 10 00 80 00 02 46 7A

message from slave 17 store multiple setpoints setpoint address 0080 2 setpoints CRC error code

2.10

Broadcast Command (Function Code 10h)


In applications where multiple devices are daisy-chained, it may be necessary to synchronize device clocks (date and/or time) through one command. The broadcast command allows such synchronization. The PQMII recognizes a packet as being a broadcast command if the Slave Address is transmitted as 0. Message Format and Example for Function Code 10h: Send broadcast command to store 1:27:10.015 pm, October 29, 1997.
Master Transmission Bytes Example Description

Slave Address Function Code Data Starting Address Number of Setpoints Byte Count Data 1 Data 2 Data 3 Data 4 CRC
Slave Response

1 1 2 2 1 2 2 2 2 2
Bytes

00 10 00 F0 00 04 08 0D 1B 27 1F 0A 1D 07 CD 9D 8D
Example

broadcast command (address = 0) store multiple setpoints setpoint address 00F0 4 setpoints = 8 bytes total 8 bytes of data hours (24-hour format), minutes milliseconds month, day year (four digits, i.e. 1997) CRC error code
Description

Slave does not respond back to the master. The PQMII allows the date and time to be stored separately. In other word, a broadcast command can be sent to store just date or time.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM11

CHAPTER COMM: COMMUNICATIONS GUIDE

2.11

Error Responses
When a PQMII detects an error other than a CRC error, a response will be sent to the master. The MSbit of the Function Code byte will be set to 1 (i.e. the function code sent from the slave will be equal to the function code sent from the master plus 128). The following byte will be an exception code indicating the type of error that occurred. Transmissions received from the master with CRC errors are ignored by the PQMII. The slave response to an error (other than CRC error) will be: Slave Address: 1 byte Function Code: 1 byte (with MSbit set to 1) Exception Code: 1 byte CRC: 2 bytes The PQMII implements the following exception response codes. 01 - Illegal Function: The function code transmitted is not one of the functions supported by the PQMII. 02 - Illegal Data Address: The address referenced in the data field transmitted by the master is not an allowable address for the PQMII. 03 - Illegal Data Value: The value referenced in the data field transmitted by the master is not within range for the selected data address.

COMM12

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Modbus Memory Map


3.1 Memory Map Information
The data stored in the PQMII are grouped by setpoints and actual values. Setpoints can be read and written by a master computer; actual values are read-only. All setpoints and actual values are stored as two-byte values; that is, each register address is the address of a two-byte value. In the Modbus memory map, addresses are shown in hexadecimal notation; data values (setpoint ranges, increments, factory values) are in decimal notation.

3.2

User-definable Memory Map


The PQMII contains a user-definable area in the memory map. This area allows remapping of the addresses of all actual values and setpoints registers. The user-definable area has two sections: A Register Index area (memory map addresses 0180h to 01F7h) that contains 120 actual values or setpoints register addresses. A Register area (memory map addresses 0100h to 017Fh) that contains the data at the addresses in the Register Index. Register data that is separated in the rest of the memory map may be remapped to adjacent register addresses in the user-definable registers area. This is accomplished by writing to register addresses in the user-definable register index area. This allows for improved throughput of data and can eliminate the need for multiple read command sequences. For example, if the values of Phase A Current (register address 0240h) and Phase A Power Factor (register address 02FDh) are required to be read from a PQMII, their addresses may be remapped as follows: 1. 2. Write 0240h to address 0180h (User-Definable Register Index 0000) using Modbus function code 06h or 10h. Write 02FDh to address 0181h (User-Definable Register Index 0001) using Modbus function code 06h or 10h.

A read (function code 03h or 04h) of registers 0100h (User-Definable Register 0000) and 0101h (User-Definable Register 0001) will return the Phase A Current and Phase A Power Factor.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM13

CHAPTER COMM: COMMUNICATIONS GUIDE

3.3

PQMII Memory Map


The PQMII memory map is shown in the following table. Table 1: PQMII Memory Map (Sheet 1 of 43)

GROUP

ADDR (HEX)

DESCRIPTION

RANGE

STEP VALUE

UNITS and SCALE

FORMAT

FACTORY DEFAULT

Product Information (Input Registers) Addresses: 0000 to 007F PRODUCT ID 0000 0001 0002 0003 0004 0005 0006 0007 0008 0009 000A 000B to 001F 0020 0021 0022 0023 0024 to 002F 0030 0031 0032 0033 0034 0035 to 007F COMMANDS 0080 0081 0082 0083 0084 0085 0086 0087 Product Device Code Hardware Version Code Main Software Version Code Modification File Number 1 Boot Software Version Code Reserved Product options Modification File Number 2 Modification File Number 3 Modification File Number 4 Modification File Number 5 CPU Speed Reserved Serial Number Character 1 and 2 Serial Number Character 3 and 4 Serial Number Character 5 and 6 Serial Number Character 7 and 8 Reserved Reserved Manufacture Month/Day Manufacture Year Calibration Month/Day Calibration Year Reserved Reserved Reserved Command Function Code Command Operation Code Command Data 1 Command Data 2 Command Data 3 Command Data 4 Command Data 5 Command Data 6 5 1 to 35 0 to 65535 0 to 65535 0 to 65535 0 to 65535 0 to 65535 0 to 65535 --1 1 1 1 1 1 1 ----------------F1 F7 * F31 F8 F8 F8 F8 5 0 0 0 0 0 0 0 ------------------------F24 F25 F24 F25 manf. month/day manufacture year cal. month/day calibration year ----------------ASCII ASCII ASCII ASCII F10 F10 F10 F10 1st , 2nd char. 3rd, 4th char. 5th, 6th char 7th, 8th char. ----------0 to 1 ----------1 ------------F100 F1 F1 F1 F1 F45 from order code mod. file number 2 mod. file number 3 mod. file number 4 mod. file number 5 16 MHz ------------------------------F1 F5 F1 F1 F1 73 current version current version mod. file number 1 current version

Commands (Holding Registers) Addresses: 0080 to 00EF

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM14

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 2 of 43)


GROUP ADDR (HEX) 0088 0089 008A 008B COMMANDS continued 008C 008D to 00EF 00F0 00F1 00F2 00F3 00F4 to 00FF 0100 0101 0102 0103 0104 0105 0106 0107 0108 0109 010A 010B to 0177 0178 to 017F USER DEFINABLE REGISTER INDEX 0180 0181 0182 0183 0184 0185 0186 0187 0188 0189 018A 018B DESCRIPTION Command Data 7 Command Data 8 Command Data 9 Command Data 10 Command Data 11 Reserved Reserved Time Hours/Minutes Time Seconds Date Month/Day Date Year Reserved Reserved User Definable Data 0000 User Definable Data 0001 User Definable Data 0002 User Definable Data 0003 User Definable Data 0004 User Definable Data 0005 User Definable Data 0006 User Definable Data 0007 User Definable Data 0008 User Definable Data 0009 User Definable Data 000A User Definable Data 000B User Definable Data 0077 Reserved Reserved Register address for User Data 0000 Register address for User Data 0001 Register address for User Data 0002 Register address for User Data 0003 Register address for User Data 0004 Register address for User Data 0005 Register address for User Data 0006 Register address for User Data 0007 Register address for User Data 0008 Register address for User Data 0009 Register address for User Data 000A Register address for User Data 000B ** ** ** ** ** ** ** ** ** ** ** ** 1 1 1 1 1 1 1 1 1 1 1 1 ------------------------F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------ -------------------------- -------------------------- -------------------------- -------------------------- --0 to 65535 0 to 59999 0 to 65535 0 to 2037 1 1 1 1 hr/min ms ----F22 F23 F24 F25 N/A N/A N/A N/A RANGE 0 to 65535 0 to 65535 0 to 65535 0 to 65535 0 to 65535 STEP VALUE 1 1 1 1 1 UNITS and SCALE ----------FORMAT F8 F8 F8 F8 F8 FACTORY DEFAULT 0 0 0 0 0

Broadcast Command (Holding Registers) Addresses: 00F0 to 00FF BROADCAST COMMAND

User Definable Register (Input Registers) Addresses: 0100 to 017F USER DEFINABLE REGISTERS

User Definable Register Index (Holding Registers) Addresses: 0180 to 01FF

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM15

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 3 of 43)


GROUP ADDR (HEX) 018C 018D to 01F7 USER DEFINABLE REGISTER INDEX continued STATUS 01F8 to 01FF 0200 0201 0202 0203 0204 0205 0206 0207 0208 0209 020A 020B 020C 020D 020E 020F 0210 0211 0212 0213 0214 0215 0216 0217 0218 0219 021A 021B 021C 021D 021E to 022F CLOCK 0230 0231 0232 0233 0234 DESCRIPTION Register address for User Data 000C Register address for User Data 000D Register address for User Data 0077 Reserved Reserved Switch Input Status LED Status Flags LED Attribute Flags Output Relay Status Flags Alarm Active Status Flags 1 Alarm Pickup Status Flags 1 Alarm Active Status Flags 2 Alarm Pickup Status Flags 2 Alarm Active Status Flags 3 Alarm Pickup Status Flags 3 Aux. 1 Active Status Flags 1 Aux. 1 Pickup Status Flags 1 Aux. 1 Active Status Flags 2 Aux. 1 Pickup Status Flags 2 Aux. 1 Active Status Flags 3 Aux. 1 Pickup Status Flags 3 Aux. 2 Active Status Flags 1 Aux. 2 Pickup Status Flags 1 Aux. 2 Active Status Flags 2 Aux. 2 Pickup Status Flags 2 Aux. 2 Active Status Flags 3 Aux. 2 Pickup Status Flags 3 Aux. 3 Active Status Flags 1 Aux. 3 Pickup Status Flags 1 Aux. 3 Active Status Flags 2 Aux. 3 Pickup Status Flags 2 Aux. 3 Active Status Flags 3 Aux. 3 Pickup Status Flags 3 General Status Encrypted Passcode Reserved Reserved Time - Hours/Minutes Time - Seconds Time - Month/Day Time Year Reserved ------------------------F22 F23 F24 F25 N/A N/A N/A N/A ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------F101 F102 F103 F104 F105 F105 F106 F106 F107 F107 F105 F105 F106 F106 F107 F107 F105 F105 F106 F106 F107 F107 F105 F105 F106 F106 F107 F107 F109 F1 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE ** ** ** STEP VALUE 1 1 1 UNITS and SCALE ---- --FORMAT F1 F1 F1 FACTORY DEFAULT 0 0 0

Actual Values (Input Registers) Addresses: 0200-0E1F

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM16

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 4 of 43)


GROUP ADDR (HEX) to 023F CURRENT 0240 0241 CURRENT continued 0242 0243 0244 0245 0246 0247 0248 0249 024A 024B 024C 024D 024E 024F 0250 0251 0252 0253 0254 0255 0256 0257 0258 0259 025A 025B 025C 025D 025E 025F 0260 0261 0262 0263 0264 0265 DESCRIPTION Reserved Phase A Current Phase B Current Phase C Current Average Current Neutral Current Current Unbalance Phase A Current - Minimum Phase B Current - Minimum Phase C Current - Minimum Neutral Current - Minimum Current Unbalance - Minimum Phase A Current - Maximum Phase B Current - Maximum Phase C Current - Maximum Neutral Current - Maximum Current Unbalance - Maximum Time - Hour/Minutes of Phase A Curr. Min Date - Month/Day of Phase A Current Min Date - Year of Phase A Current Min Time - Hour/Minutes of Phase B Curr. Min Date - Month/Day of Phase B Current Min Date - Year of Phase B Current Min Time - Hour/Minutes of Phase C Curr. Min Date - Month/Day of Phase C Current Min Date - Year of Phase C Current Min Time - Hour/Minutes of Neutral Current Min Date - Month/Day of Neutral Current Min Date - Year of Neutral Current Min ----------------------------------------------------------------------A A A A A 0.1 x% A A A A 0.1 x% A A A A 0.1 x% --------------------------------------------F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

Time - Seconds of Phase A Current Min ---------

Time - Seconds of Phase B Current Min ---------

Time - Seconds of Phase C Current Min ---------

Time - Seconds of Neutral Current Min -------

Time - Hour/Minutes of Current Unbal. --Min Time - Seconds of Current Unbalance --Min Date - Month/Day of Current Unbal. Min Date - Year of Current Unbalance Min Time - Hour/Minutes of Phase A Curr. Max Time - Seconds of Phase A Current Max ---------

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM17

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 5 of 43)


GROUP ADDR (HEX) 0266 0267 0268 CURRENT continued 0269 026A 026B 026C 026D 026E 026F 0270 0271 0272 0273 0274 0275 0276 0277 0278 to 027F VOLTAGE 0280 0281 0282 0283 0284 0285 0286 0287 0288 0289 028A 028B 028C 028D 028E 028F 0290 0291 0292 DESCRIPTION Date - Month/Day of Phase A Current Max Date - Year of Phase A Current Max Time - Hour/Minutes of Phase B Curr. Max Time - Seconds of Phase B Current Max Date - Month/Day of Phase B Current Max Date - Year of Phase B Current Max Time - Hour/Minutes of Phase C Curr. Max Time - Seconds of Phase C Current Max Date - Month/Day of Phase C Current Max Date - Year of Phase C Current Max Time - Hour/Minutes of Neutral Current Max Date - Month/Day of Neutral Current Max Date - Year of Neutral Current Max RANGE ----------------------STEP VALUE ------------------------------------ UNITS and SCALE ------------------------------------ FORMAT F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Time - Seconds of Neutral Current Max -------

Time - Hour/Minutes of Current Unbal. --Max Time - Seconds of Current Unbal. Max --Date - Month/Day of Current Unbal. Max Reserved Reserved Voltage Van (High) Voltage Van (Low) Voltage Vbn (High) Voltage Vbn (Low) Voltage Vcn (High) Voltage Vcn (Low) Average Phase Voltage (High) Average Phase Voltage (Low) Voltage Vab (High) Voltage Vab (Low) Voltage Vbc (High) Voltage Vbc (Low) Voltage Vca (High) Voltage Vca (Low) Average Line Voltage (High) Average Line Voltage (Low) Voltage Unbalance Voltage Van - Minimum (high) Voltage Van - Minimum (Low) -------------------- ---

Date - Year of Current Unbalance Max ---

---------------------

V V V V V V V V 0.1 x % V

F3 F3 F3 F3 F3 F3 F3 F3 F1 F3

N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM18

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 6 of 43)


GROUP ADDR (HEX) 0293 0294 0295 0296 0297 0298 0299 029A 029B 029C 029D 029E 029F 02A0 02A1 02A2 02A3 02A4 02A5 02A6 02A7 02A8 02A9 02AA 02AB 02AC 02AD 02AE 02AF 02B0 02B1 02B2 02B3 02B4 02B5 02B6 02B7 02B8 02B9 02BA 02BB 02BC 02BD 02BE DESCRIPTION Voltage Vbn - Minimum (high) Voltage Vbn - Minimum (Low) Voltage Vcn - Minimum (high) Voltage Vcn - Minimum (Low) Voltage Vab - Minimum (high) Voltage Vab - Minimum (Low) Voltage Vbc - Minimum (high) Voltage Vbc - Minimum (Low) Voltage Vca - Minimum (high) Voltage Vca - Minimum (Low) Voltage Unbalance - Minimum Voltage Van - Maximum (high) Voltage Van - Maximum (Low) Voltage Vbn - Maximum (high) Voltage Vbn - Maximum (Low) Voltage Vcn - Maximum (high) Voltage Vcn - Maximum (Low) Voltage Vab - Maximum (high) Voltage Vab - Maximum (Low) Voltage Vbc - Maximum (high) Voltage Vbc - Maximum (Low) Voltage Vca - Maximum (high) Voltage Vca - Maximum (Low) Voltage Unbalance - Maximum Time - Hour/Minutes of Voltage Van Min Time - Seconds of Voltage Van Min Date - Month/Day of Voltage Van Min Date - Year of Voltage Van Min Time - Hour/Minutes of Voltage Vbn Min Time - Seconds of Voltage Vbn Min Date - Month/Day of Voltage Vbn Min Date - Year of Voltage Vbn Min Time - Hour/Minutes of Voltage Vcn Min Time - Seconds of Voltage Vcn Min Date - Month/Day of Voltage Vcn Min Date - Year of Voltage Vcn Min Time - Hour/Minutes of Voltage Vab Min Time - Seconds of Voltage Vab Min Date - Month/Day of Voltage Vab Min Date - Year of Voltage Vab Min Time - Hour/Minutes of Voltage Vbc Min Time - Seconds of Voltage Vbc Min Date - Month/Day of Voltage Vbc Min Date - Year of Voltage Vbc Min RANGE ------------------------------------------------------------------STEP VALUE ------------------------------------------------------------------UNITS and SCALE V V V V V 0.1 x% V V V V V V 0.1 x% ----------------------------------------FORMAT F3 F3 F3 F3 F3 F1 F3 F3 F3 F3 F3 F3 F1 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM19

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 7 of 43)


GROUP ADDR (HEX) 02BF VOLTAGE continued 02C0 02C1 02C2 02C3 02C4 02C5 02C6 02C7 02C8 02C9 02CA 02CB 02CC 02CD 02CE 02CF 02D0 02D1 02D2 02D3 02D4 02D5 02D6 02D7 02D8 02D9 02DA 02DB 02DC 02DD 02DE 02DF 02E0 02E1 02E2 02E3 02E4 02E5 02D6 DESCRIPTION Time - Hour/Minutes of Voltage Vca Min Time - Seconds of Voltage Vca Min Date - Month/Day of Voltage Vca Min Date - Year of Voltage Vca Min RANGE --------STEP VALUE ------------------------------------------------------------------------UNITS and SCALE ------------------------------------------------------------------------FORMAT F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Time - Hour/Minutes of Voltage Unbal. --Min Time - Seconds of Voltage Unbalance --Min Date - Month/Day of Voltage Unbal. Min Time - Hour/Minutes of Voltage Van Max Time - Seconds of Voltage Van Max Date - Year of Voltage Van Max Time - Hour/Minutes of Voltage Vbn Max Time - Seconds of Voltage Vbn Max Date - Year of Voltage Vbn Max Time - Hour/Minutes of Voltage Vcn Max Time - Seconds of Voltage Vcn Max Date - Year of Voltage Vcn Max Time - Hour/Minutes of Voltage Vab Max Time - Seconds of Voltage Vab Max Date - Year of Voltage Vab Max Time - Hour/Minutes of Voltage Vbc Max Time - Seconds of Voltage Vbc Max Date - Year of Voltage Vbc Max Time - Hour/Minutes of Voltage Vca Max Time - Seconds of Voltage Vca Max Date - Year of Voltage Vca Max ---

Date - Year of Voltage Unbalance Min ---------------------------------------

Date - Month/Day of Voltage Van Max ---

Date - Month/Day of Voltage Vbn Max ---

Date - Month/Day of Voltage Vcn Max ---

Date - Month/Day of Voltage Vab Max ---

Date - Month/Day of Voltage Vbc Max ---

Date - Month/Day of Voltage Vca Max --Time - Hour/Minutes of Voltage Unbal. --Max Time - Seconds of Voltage Unbalance --Max Date - Month/Day of Voltage Unbalance Max Reserved Reserved Reserved Reserved ---

Date - Year of Voltage Unbalance Max ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM20

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 8 of 43)


GROUP ADDR (HEX) 02E7 VOLTAGE continued 02E8 02E9 02EA 02EB 02EC 02ED 02EE 02EF POWER 02F0 02F1 02F2 02F3 02F4 02F5 02F6 02F7 02F8 02F9 02FA 02FB 02FC 02FD 02FE 02FF 0300 0301 0302 0303 0304 0305 0306 0307 0308 0309 030A 030B 030C 030D 030E 030F 0310 0311 DESCRIPTION Va Phasor Angle Vb Phasor Angle Vc Phasor Angle Ia Phasor Angle Ib Phasor Angle Ic Phasor Angle Reserved Reserved Reserved 3 Phase Real Power (high) 3 Phase Real Power (low) 3 Phase Reactive Power (high) 3 Phase Reactive Power (low) 3 Phase Apparent Power (high) 3 Phase Apparent Power (low) 3 Phase Power Factor Phase A Real Power (high) Phase A Real Power (low) Phase A Reactive Power (high) Phase A Reactive Power (low) Phase A Apparent Power (high) Phase A Apparent Power (low) Phase A Power Factor Phase B Real Power (high) Phase B Real Power (low) Phase B Reactive Power (high) Phase B Reactive Power (low) Phase B Apparent Power (high) Phase B Apparent Power (low) Phase B Power Factor Phase C Real Power (high) Phase C Real Power (low) Phase C Reactive Power (high) Phase C Reactive Power (low) Phase C Apparent Power (high) Phase C Apparent Power (low) Phase C Power Factor 3 Phase Real Power - Minimum (high) 3 Phase Real Power - Minimum (low) 3 Phase Reactive Power - Minimum (high) 3 Phase Reactive Power - Minimum (low) 3 Phase Apparent Power - Minimum (high) 3 Phase Apparent Power - Minimum (low) --------------------------------------------------------------------0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F4 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE ------------STEP VALUE ------------UNITS and SCALE lag lag lag lag lag lag FORMAT F1 F1 F1 F1 F1 F1 FACTORY DEFAULT

---

---

0.01 x kvar

F4

N/A

---

---

0.01 x kVA

F3

N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM21

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 9 of 43)


GROUP ADDR (HEX) 0312 POWER continued 0313 0314 0315 0316 0317 0318 0319 031A 031B 031C 031D 031E 031F 0320 0321 0322 0323 0324 0325 0326 0327 0328 0329 032A 032B 032C 032D 032E 032F 0330 0331 0332 0333 0334 0335 DESCRIPTION 3 Phase Power Factor - Minimum 3 Phase Real Power - Maximum (high) 3 Phase Real Power - Maximum (low) 3 Phase Reactive Power - Maximum (high) 3 Phase Reactive Power - Maximum (low) 3 Phase Apparent Power - Maximum (high) 3 Phase Apparent Power - Maximum (low) 3 Phase Power Factor - Maximum Phase A Real Power - Minimum (high) Phase A Real Power - Minimum (low) Phase A Reactive Power - Minimum (high) Phase A Reactive Power - Minimum (low) Phase A Apparent Power - Minimum (high) Phase A Apparent Power - Minimum (low) Phase A Power Factor - Minimum Phase A Real Power - Maximum (high) Phase A Real Power - Maximum (low) Phase A Reactive Power - Maximum (high) Phase A Reactive Power - Maximum (low) Phase A Apparent Power - Maximum (high) Phase A Apparent Power - Maximum (low) Phase A Power Factor - Maximum Phase B Real Power - Minimum (high) Phase B Real Power - Minimum (low) Phase B Reactive Power - Minimum (high) Phase B Reactive Power - Minimum (low) Phase B Apparent Power - Minimum (high) Phase B Apparent Power - Minimum (low) Phase B Power Factor - Minimum Phase B Real Power - Maximum (high) Phase B Real Power - Maximum (low) Phase B Reactive Power - Maximum (high) Phase B Reactive Power - Maximum (low) Phase B Apparent Power - Maximum (high) Phase B Apparent Power - Maximum (low) Phase B Power Factor - Maximum RANGE ----STEP VALUE ----UNITS and SCALE 0.01 x PF 0.01 x kW FORMAT F2 F4 FACTORY DEFAULT N/A N/A

---

---

0.01 x kvar

F4

N/A

-------

-------

0.01 x kVA 0.01 x PF 0.01 x kW

F3 F2 F4

N/A N/A N/A

---

---

0.01 x kvar

F4

N/A

-------

-------

0.01 x kVA 0.01 xPF 0.01 x kW

F3 F2 F4

N/A N/A N/A

---

---

0.01 x kvar

F4

N/A

-------

-------

0.01 x kVA 0.01 x PF 0.01 x kW

F3 F2 F4

N/A N/A N/A

---

---

0.01 x kvar

F4

N/A

-------

-------

0.01 x kVA 0.01 x PF 0.01 x kW

F3 F2 F4

N/A N/A N/A

---

---

0.01 x kvar

F4

N/A

-----

-----

0.01 x kVA 0.01 x PF

F3 F2

N/A N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM22

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 10 of 43)


GROUP POWER continued ADDR (HEX) 0336 0337 0338 0339 033A 033B 033C 033D 033E 033F 0340 0341 0342 0343 0344 0345 0346 0347 0348 0349 034A 034B 034C 034D 034E 034F 0350 0351 0352 0353 0354 0355 0356 0357 0358 DESCRIPTION Phase C Real Power - Minimum (high) Phase C Real Power - Minimum (low) Phase C Reactive Power - Minimum (high) Phase C Reactive Power - Minimum (low) Phase C Apparent Power - Minimum (high) Phase C Apparent Power - Minimum (low) Phase C Power Factor - Minimum Phase C Real Power - Maximum (high) Phase C Real Power - Maximum (low) Phase C Reactive Power - Maximum (high) Phase C Reactive Power - Maximum (low) Phase C Apparent Power - Maximum (high) Phase C Apparent Power - Maximum (low) Phase C Power Factor - Maximum Time - Seconds of Real Power Min Date - Month/Day of Real Power Min Date - Year of Real Power Min Time - Hour/Minutes of Reactive Pwr Min Date - Month/Day of Reactive Power Min Date - Year of Reactive Power Min RANGE --STEP VALUE --UNITS and SCALE 0.01 x kW FORMAT F4 FACTORY DEFAULT N/A

---

---

0.01 x kvar

F4

N/A

-------

-------

0.01 x kVA 0.01 x PF 0.01 x kW

F3 F2 F4

N/A N/A N/A

---

---

0.01 x kvar

F4

N/A

-------------

-----------------------------------------------

0.01 x kVA 0.01 x PF -------------------------------------------

F3 F2 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22

N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Time - Hour/Minutes of Real Power Min ---

Time - Seconds of Reactive Power Min -------

Time - Hour/Minutes of Apparent Pwr --Min Time - Seconds of Apparent Power Min --Date - Month/Day of Apparent Power Min Date - Year of Apparent Power Min Time - Hour/Minutes of Power Factor Min Time - Seconds of Power Factor Min Date - Year of Power Factor Min Time - Hour/Minutes of Real Power Max Time - Seconds of Real Power Max Date - Month/Day of Real Power Max Date - Year of Real Power Max Time - Hour/Minutes of Reactive Pwr Max ---------------------

Date - Month/Day of Power Factor Min ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM23

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 11 of 43)


GROUP POWER continued ADDR (HEX) 0359 035A 035B 035C 035D 035E 035F 0360 0361 0362 0363 0364 0365 0366 0367 0368 0369 036A 036B 036C 036D 036E 036F 0370 0371 0372 0373 0374 0375 0376 0377 0378 0379 037A DESCRIPTION RANGE STEP VALUE --------------------------------------------------------------------UNITS and SCALE --------------------------------------------------------------------FORMAT F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Time - Seconds of Reactive Power Max --Date - Month/Day of Reactive Pwr Max --Date - Year of Reactive Power Max --Time - Hour/Minutes of Apparent Pwr --Max Time - Seconds of Apparent Pwr Max Date - Month/Day of Apparent Pwr Max Date - Year of Apparent Power Max Time - Hour/Minutes of Power Factor Max Time - Seconds of Power Factor Max Date - Month/Day of Power Factor Max Date - Year of Power Factor Max Time - Hour/Min of Phase A Real Pwr Min Time - Seconds of Phase A Real Pwr Min -------------------

Date - Month/Day of Phase A Real Pwr --Min Date - Year of Phase A Real Pwr Min --Time - Hour/Min of Phase A React Pwr --Min Time - Seconds of Phase A React Pwr Min Date - Month/Day of Phase A React Pwr Min Date - Year of Phase A Reactive Pwr Min Time - Hour/Min of Phase A App Pwr Min Time - Seconds of Phase A App Pwr Min -----------

Date - Month/Day of Phase A App Pwr --Min Date - Year of Phase A Apparent Pwr Min Time - Seconds of Phase A PF Min Date - Month/Day of Phase A PF Min Date - Year of Phase A Power Factor Min Time - Hour/Min of Phase A Real Pwr Max Time - Seconds of Phase A Real Pwr Max ---

Time - Hour/Minutes of Phase A PF Min -------------

Date - Month/Day of Phase A Real Pwr --Max Date - Year of Phase A Real Power Max --Time - Hour/Min of Phase A React Pwr --Max Time - Seconds of Phase A React Pwr Max ---

Date - Mnth/Day of Phase A React Pwr --Max

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM24

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 12 of 43)


GROUP POWER continued ADDR (HEX) 037B 037C 037D 037E 037F 0380 0381 0382 0383 0384 0385 0386 0387 0388 0389 038A 038B 038C 038D 038E 038F 0390 0391 0392 0393 0394 0395 0396 0397 0398 0399 039A 039B DESCRIPTION Date - Year of Phase A Reactive Pwr Max Time - Hour/Min of Phase A App Pwr Max Time - Seconds of Phase A App Pwr Max RANGE ------STEP VALUE ------------------------------------------------------------------UNITS and SCALE ------------------------------------------------------------------FORMAT F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Date - Month/Day of Phase A App Pwr --Max Date - Year of Phase A Apparent Pwr Max Time - Hour/Minutes of Phase A PF Max Time - Seconds of Phase A PF Max Date - Month/Day of Phase A PF Max Date - Year of Phase A Power Factor Max Time - Hour/Min of Phase B Real Pwr Min Time - Seconds of Phase B Real Pwr Min ---------------

Date - Month/Day of Phase B Real Pwr --Min Date - Year of Phase B Real Power Min --Time - Hour/Min of Phase B React Pwr --Min Time - Seconds of Phase B React Pwr Min Date - Month/Day of Phase B React Pwr Min Date - Year of Phase B Reactive Pwr Min Time - Hour/Min of Phase B App Pwr Min Time - Seconds of Phase B App Pwr Min -----------

Date - Month/Day of Phase B App Pwr --Min Date - Year of Phase B Apparent Pwr Min Time - Seconds of Phase B PF Min Date - Month/Day of Phase B PF Min Date - Year of Phase B PF Min Time - Hour/Min of Phase B Real Pwr Max Time - Seconds of Phase B Real Pwr Max ---

Time - Hour/Minutes of Phase B PF Min -------------

Date - Month/Day of Phase B Real Pwr --Max Date - Year of Phase B Real Power Max --Time - Hour/Min of Phase B React Pwr --Max Time - Seconds of Phase B React Pwr Max ---

Date - Mnth/Day of Phase B React Pwr --Max Date - Year of Phase B Reactive Pwr Max ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM25

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 13 of 43)


GROUP POWER continued ADDR (HEX) 039C 039D 039E 039F 03A0 03A1 03A2 03A3 03A4 03A5 03A6 03A7 03A8 03A9 03AA 03AB 03AC 03AD 03AE 03AF 03B0 03B1 03B2 03B3 03B4 03B5 03B6 03B7 03B8 03B9 03BA 03BB 03BC DESCRIPTION Time - Hour/Min of Phase B App Pwr Max Time - Seconds of Phase B App Pwr Max RANGE ----STEP VALUE ------------------------------------------------------------------UNITS and SCALE ------------------------------------------------------------------FORMAT F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Date - Month/Day of Phase B App Pwr --Max Date - Year of Phase B Apparent Pwr Max Time - Hour/Minutes of Phase B PF Max Time - Seconds of Phase B PF Max Date - Month/Day of Phase B PF Max Date - Year of Phase B Power Factor Max Time - Hour/Min of Phase C Real Pwr Min Time - Seconds of Phase C Real Pwr Min ---------------

Date - Month/Day of Phase C Real Pwr --Min Date - Year of Phase C Real Power Min --Time - Hour/Min of Phase C React Pwr --Min Time - Seconds of Phase C React Pwr Min ---

Date - Mnth/Day of Phase C React Pwr --Min Date - Year of Phase C Reactive Pwr Min Time - Hour/Min of Phase C App Pwr Min Time - Seconds of Phase C App Pwr Min -------

Date - Month/Day of Phase C App Pwr --Min Date - Year of Phase C Apparent Pwr Min Time - Seconds of Phase C PF Min Date - Month/Day of Phase C PF Min Date - Year of Phase C Power Factor Min Time - Hour/Min of Phase C Real Pwr Max Time - Seconds of Phase C Real Pwr Max ---

Time - Hour/Minutes of Phase C PF Min -------------

Date - Month/Day of Phase C Real Pwr --Max Date - Year of Phase C Real Power Max --Time - Hour/Min of Phase C React Pwr --Max Time - Seconds of Phase C React Pwr Max ---

Date - Mnth/Day of Phase C React Pwr --Max Date - Year of Phase C Reactive Pwr Max Time - Hour/Min of Phase C App Pwr Max -----

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM26

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 14 of 43)


GROUP POWER continued ADDR (HEX) 03BD 03BE 03BF 03C0 03C1 03C2 03C3 03C4 to 03CF ENERGY 03D0 03D1 03D2 03D3 03D4 03D5 03D6 03D7 03D8 03D9 03DA 03DB 03DC 03DD 03DE 03DF 03E0 03E1 03E2 03E3 03E4 03E5 03E6 03E7 03E8 03E9 DESCRIPTION Time - Seconds of Phase C App Pwr Max RANGE --STEP VALUE --------------UNITS and SCALE --------------FORMAT F23 F24 F25 F22 F23 F24 F25 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A

Date - Month/Day of Phase C App Pwr --Max Date - Year of Phase C Apparent Pwr Max Time - Hour/Minutes of Phase C PF Max Time - Seconds of Phase C PF Max Date - Month/Day of Phase C PF Max Date - Year of Phase C Power Factor Max Reserved Reserved 3 Phase Positive Real Energy Used (high) 3 Phase Positive Real Energy Used (low) 3 Phase Negative Real Energy Used (high) 3 Phase Negative Real Energy Used (low) 3 Phase Positive React. Energy Used (high) 3 Phase Positive React. Energy Used (low) 3 Phase Neg Reactive Energy Used (high) 3 Phase Neg Reactive Energy Used (low) 3 Phase Apparent Energy Used (high) 3 Phase Apparent Energy Used (low) 3 Phase Energy Used in Last 24 h (high) 3 Phase Energy Used in Last 24 h (low) 3 Phase Energy Cost Since Reset (high) 3 Phase Energy Cost Since Reset (low) 3 Phase Energy Cost Per Day (high) 3 Phase Energy Cost Per Day (low) Time - Hours/Minutes of Last Reset Time - Seconds of Last Reset Date - Month/Day of Last Reset Date - Year of Last Reset Tariff Period 1 Positive Real Energy (high) Tariff Period 1 Positive Real Energy (low) Tariff Period 1 Negative Real Energy (high) Tariff Period 1 Negative Real Energy (low) Tariff Period 2 Positive Real Energy (high) Tariff Period 2 Positive Real Energy (low) -- -----------

---

kWh

F3

N/A

---

---

kWh

F3

N/A

---

---

kvarh

F3

N/A

---

---

kvarh

F3

N/A

-------------------

-------------------

kVAh kWh $ x 0.01 $ x 0.01 --------kWh

F3 F3 F3 F3 F22 F23 F24 F25 F3

N/A N/A N/A N/A N/A N/A N/A N/A N/A

---

---

kWh

F3

N/A

---

---

kWh

F3

N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM27

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 15 of 43)


GROUP ENERGY continued ADDR (HEX) 03EA 03EB 03EC 03ED 03EE 03EF 03F0 03F1 03F2 03F3 03F4 03F5 03F6 03F7 03F8 03F9 03FA 03FB 03FC to 03FF DEMAND 0400 0401 0402 0403 0404 0405 0406 0407 0408 0409 040A 040B 040C 040D 040E 040F 0410 0411 0412 0413 0414 DESCRIPTION Tariff Period 2 Negative Real Energy (high) Tariff Period 2 Negative Real Energy (low) Tariff Period 3 Positive Real Energy (high) Tariff Period 3 Positive Real Energy (low) Tariff Period 3 Negative Real Energy (high) Tariff Period 3 Negative Real Energy (low) Tariff Period 1 Cost (high) Tariff Period 1 Cost (low) Tariff Period 2 Cost (high) Tariff Period 2 Cost (low) Tariff Period 3 Cost (high) Tariff Period 3 Cost (low) Tariff Period 1 Net Energy Used (high) Tariff Period 1 Net Energy Used (low) Tariff Period 2 Net Energy Used (high) Tariff Period 2 Net Energy Used (low) Tariff Period 3 Net Energy Used (high) Tariff Period 3 Net Energy Used (low) Reserved Reserved Phase A Current Demand Phase B Current Demand Phase C Current Demand Neutral Current Demand 3 Phase Real Power Demand (high) 3 Phase Real Power Demand (low) 3 Phase React Power Demand (high) 3 Phase React Power Demand (low) 3 Phase Apparent Power Demand (high) 3 Phase Apparent Power Demand (low) Phase A Current Demand - Maximum Phase B Current Demand - Maximum Phase C Current Demand - Maximum Neutral Current Demand - Maximum 3 Phase Real Power Dmd (high) - Max 3 Phase Real Power Dmd (low) - Max 3 Phase React Power Dmd (high) - Max 3 Phase React Power Dmd (low) - Max 3 Phase Apparent Power Dmd (high) Max 3 Phase Apparent Power Dmd (low) Max ----------------------------------------------------A A A A 0.01 x kW 0.01 x kvar 0.01 x kVA A A A A 0.01 x kW 0.01 x kvar F1 F1 F1 F1 F4 F4 F3 F1 F1 F1 F1 F4 F4 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE STEP VALUE UNITS and SCALE kWh FORMAT FACTORY DEFAULT N/A

---

---

F3

---

---

kWh

F3

N/A

---

---

kWh

F3

N/A

-------------

-------------

$ x 0.01 $ x 0.01 $ x 0.01 kWh kWh kWh

F3 F3 F3 F3 F3 F3

N/A N/A N/A N/A N/A N/A

---

---

0.01 x kVA

F3

N/A

Time - Hours/Min of Phase A Cur. Dmd --Max

---

---

F22

N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM28

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 16 of 43)


GROUP DEMAND continued ADDR (HEX) 0415 0416 0417 0418 0419 041A 041B 041C 041D 041E 041F 0420 0421 0422 0423 0424 0425 0426 0427 0428 0429 042A 042B 042C 042D 042E 042F 0430 to 043F FREQUENCY 0440 0441 0442 0443 0444 0445 0446 0447 DESCRIPTION Time - Seconds of Phase A Cur. Dmd Max RANGE --STEP VALUE ------------------------------------------------------ ----------------UNITS and SCALE ------------------------------------------------------ 0.01 x Hz 0.01 x Hz 0.01 x Hz ----------FORMAT F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F1 F1 F1 F22 F23 F24 F25 F22 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Date - Mnth/Day of Phase A Cur. Dmd --Max Date - Year of Phase A Cur. Dmd Max --Time - Hours/Min of Phase B Cur. Dmd --Max Time - Seconds of Phase B Cur. Dmd Max ---

Date - Mnth/Day of Phase B Cur. Dmd --Max Date - Year of Phase B Cur. Dmd Max --Time - Hours/Min of Phase C Cur. Dmd --Max Time - Seconds of Phase C Cur. Dmd Max ---

Date - Mnth/Day of Phase C Cur. Dmd --Max Date - Year of Phase C Cur. Dmd Max --Time - Hours/Min of Neutral Cur. Dmd --Max Time - Seconds of Neutral Cur. Dmd Max ---

Date - Month/Day of Neutral Cur. Dmd --Max Date - Year of Neutral Cur. Dmd Max Time - Hours/Min of Real Pwr Dmd Max Time - Seconds of Real Pwr Dmd Max Date - Month/Day of Real Pwr Dmd Max Date - Year of Real Pwr Dmd Max Time - Hours/Min of React Pwr Dmd Max Date - Month/Day of React Pwr Dmd Max Date - Year of React Pwr Dmd Max -------------

Time - Seconds of React Pwr Dmd Max -------

Time - Hour/Min of App. Pwr Dmd Max --Time - Seconds of Apparent Pwr Dmd --Max Date - Month/Day of App. Pwr Dmd Max Reserved Reserved Frequency Frequency Minimum Frequency Maximum Time - Hours/Min of Frequency Max Time - Seconds of Frequency Max Date - Month/Day of Frequency Max Date - Year of Frequency Max Time - Hours/Min of Frequency Min ---------------- ---

Date - Year of Apparent Pwr Dmd Max ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM29

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 17 of 43)


GROUP FREQUENCY continued ADDR (HEX) 0448 0449 044A 044B to 044F PULSE INPUT 0450 COUNTERS 0451 0452 0453 0454 0455 0456 0457 ANALOG INPUT 0458 0459 045A to 045F PULSE INPUT 0460 COUNTERS 0461 0462 0463 0464 0465 0466 to 046F POWER QUALITY 0470 0471 0472 0473 0474 0475 0476 0477 TOTAL HARMONIC DISTORTION 0478 0479 047A 047B 047C 047D 047E 047F 0480 DESCRIPTION Time - Seconds of Frequency Min Date - Month/Day of Frequency Min Date - Year of Frequency Min Reserved Reserved Pulse Input 1 (high) Pulse Input 1 (low) Pulse Input 2 (high) Pulse Input 2 (low) Pulse Input 3 (high) Pulse Input 3 (low) Pulse Input 4 (high) Pulse Input 4 (low) Main/Alternate Analog Input (High) Main/Alternate Analog Input (low) Reserved Reserved Totalized Pulse Input (high) Totalized Pulse Input (low) Pulse Count Cleared Time Seconds Pulse Count Cleared Date Year Reserved Reserved Ia Crest Factor Ib Crest Factor Ic Crest Factor Ia Transformer Harmonic Derating Factor Ib Transformer Harmonic Derating Factor Ic Transformer Harmonic Derating Factor Reserved Reserved Phase A Current THD Phase B Current THD Phase C Current THD Neutral Current THD Voltage Van THD Voltage Vbn THD Voltage Vcn THD Voltage Vab THD Voltage Vbc THD ------------------------------------0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % F1 F1 F1 F1 F1 F1 F1 F1 F1 N/A N/A N/A N/A N/A N/A N/A N/A N/A ------------------------0.001 xCF 0.001 xCF 0.001 xCF 0.01xTHDF 0.01xTHDF 0.01xTHDF F1 F1 F1 F1 F1 F1 N/A N/A N/A N/A N/A N/A ----------------------F3 F22 F23 F24 F25 N/A N/A N/A N/A N/A ------------------------------F3 F3 F3 F3 F3 N/A N/A N/A N/A N/A RANGE ------STEP VALUE ------UNITS and SCALE ------FORMAT F23 F24 F25 FACTORY DEFAULT N/A N/A N/A

Pulse Count Cleared Time Hours/Min ------Pulse Count Cleared Date Month/Day ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM30

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 18 of 43)


GROUP TOTAL HARMONIC DISTORTION continued ADDR (HEX) 0481 0482 0483 0484 0485 0486 0487 0488 0489 048A 048B 048C 048D 048E 048F 0490 0491 0492 0493 0494 0495 0496 POWER QUALITY continued 0497 0498 0499 049A 049B 049C 049D 049E 049F 04A0 04A1 04A2 04A3 04A4 04A5 04A6 04A7 DESCRIPTION Reserved Phase A Current THD - Maximum Phase B Current THD - Maximum Phase C Current THD - Maximum Neutral Current THD - Maximum Voltage Van THD - Maximum Voltage Vbn THD - Maximum Voltage Vcn THD - Maximum Voltage Vab THD - Maximum Voltage Vbc THD - Maximum Reserved Time - Hour/Min of Phase A Cur. THD Max Time - Seconds of Phase A Cur. THD Max Date - Mnth/Day of Phase A Cur. THD Max Date - Year of Phase A Cur. THD Max Time - Hour/Min of Phase B Cur. THD Max Time - Seconds of Phase B Cur. THD Max Date - Mnth/Day of Phase B Cur. THD Max Date - Year of Phase B Cur. THD Max Time - Hour/Min of Phase C Cur. THD Max Time - Seconds of Phase C Cur. THD Max Date - Mnth/Day of Phase C Cur. THD Max Date - Year of Phase C Cur. THD Max Time - Hour/Min of Neutral Cur. THD Max Time - Seconds of Neutral Cur. THD Max Date - Mnth/Day of Neutral Cur. THD Max Date - Year of Neutral Cur. THD Max Time - Hours/Min of Van THD Max Time - Seconds of Van THD Max Date - Month/Day of Van THD Max Date - Year of Van THD Max Time - Hours/Min of Vbn THD Max Time - Seconds of Vbn THD Max Date - Month/Day of Vbn THD Max Date - Year of Vbn THD Max Time - Hours/Min of Vcn THD Max Time - Seconds of Vcn THD Max Date - Month/Day of Vcn THD Max Date - Year of Vcn THD Max ------------------------------------------------------------------------------------------------------------------------------------------------------------------------F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 F22 F23 F24 F25 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A ------------------------------------0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % F1 F1 F1 F1 F1 F1 F1 F1 F1 N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM31

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 19 of 43)


GROUP TOTAL HARMONIC DISTORTION continued ADDR (HEX) 04A8 04A9 04AA 04AB 04AC 04AD 04AE 04AF 04B0 04B1 04B2 04B3 04B4 04B5 04B6 to 04C7 DEBUG DATA 04C8 04C9 04CA 04CB 04CC 04CD to 04D7 MESSAGE BUFFER 04D8 04D9 04DA 04DB 04DC 04DD 04DE 04DF 04E0 04E1 04E2 04E3 04E4 04E5 04E6 04E7 04E8 04E9 DESCRIPTION Time - Hours/Min of Vab THD Max Time - Seconds of Vab THD Max Date - Month/Day of Vab THD Max Date - Year of Vab THD Max Time - Hours/Min of Vbc THD Max Time - Seconds of Vbc THD Max Date - Month/Day of Vbc THD Max Date - Year of Vbc THD Max Reserved Reserved Reserved Reserved Average Current THD Average Voltage THD Reserved Reserved ADC Reference Power Loss Fine Time Power Loss Coarse Time Current Key Press Internal Fault Error Code Reserved Reserved Message Buffer characters 1 and 2 Message Buffer characters 3 and 4 Message Buffer characters 5 and 6 Message Buffer characters 7 and 8 Message Buffer characters 9 and 10 ----------------------------------------------ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A ----------------------10 ms 0.1 min ----F1 F1 F1 F6 F108 N/A N/A N/A N/A N/A --------0.1 x% 0.1 x% F1 F1 N/A N/A RANGE ----------------STEP VALUE ----------------UNITS and SCALE ----------------FORMAT F22 F23 F24 F25 F22 F23 F24 F25 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A

Message Buffer characters 11 and 12 --Message Buffer characters 13 and 14 --Message Buffer characters 15 and 16 --Message Buffer characters 17 and 18 --Message Buffer characters 19 and 20 --Message Buffer characters 21 and 22 --Message Buffer characters 23 and 24 --Message Buffer characters 25 and 26 --Message Buffer characters 27 and 28 --Message Buffer characters 29 and 30 --Message Buffer characters 31 and 32 --Message Buffer characters 33 and 34 --Message Buffer characters 35 and 36 ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM32

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 20 of 43)


GROUP MESSAGE BUFFER continued ADDR (HEX) 04EA 04EB 04EC to 04F7 HIGH SPEED SAMPLES FOR HARMONIC SPECTRUM 04F8 04F9 04FA 04FB 04FC 04FD 04FE 04FF 0500 0501 0502 0503 to 05FD 05FE 05FF 0600 to 061F WAVEFORM CAPTURE HEADER 0620 0621 0622 0623 0624 0625 0626 0627 WAVEFORM CAPTURE Ia 0628 0629 062A 062B 062C 062D to 06A6 06A7 06A8 06A9 DESCRIPTION RANGE STEP VALUE ---- ----UNITS and SCALE ASCII ASCII --A or V x 10000

FORMAT F10 F10 F26 F3

FACTORY DEFAULT N/A N/A N/A N/A

Message Buffer characters 37 and 38 --Message Buffer characters 39 and 40 --Reserved Reserved High Speed Sampling Parameter High Speed Sampling Scale Factor (high) High Speed Sampling Scale Factor (low) Freq. of High Speed Sampling Waveform Time - Seconds of Last Sampling Date - Month/Day of Last Sampling Date - Year of Last Sampling High Speed Sample Buffer 1 High Speed Sample Buffer 2 High Speed Sample Buffer 3 High Speed Sample Buffer 4 High Speed Sample Buffer 254 High Speed Sample Buffer 255 High Speed Sample Buffer 256 Reserved Reserved Time - Hours/Minutes of Last Capture --Time - Seconds of Last Capture Date - Month/Day of Last Capture Date - Year of Last Capture Frequency of Last Capture Reserved Reserved Reserved Ia Waveform Capture Scale Factor (high) Ia Waveform Capture Scale Factor (low) Ia Sample Buffer 1 Ia Sample Buffer 2 Ia Sample Buffer 3 Ia Sample Buffer 4 Ia Sample Buffer 125 Ia Sample Buffer 126 Ia Sample Buffer 127 Ia Sample Buffer 128 ---------- ---------------- ----

---

------------------ ------ -----------

0.01 xHz --------ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts --------0.01 x Hz

F1 F22 F23 F24 F25 F2 F2 F2 F2 F2 F2 F2 F22 F23 F24 F25 F1

N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Time - Hours/Minutes of Last Sampling ---------------- -------

---------- ---------

A x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts

F3 F2 F2 F2 F2 F2 F2 F2 F2

N/A N/A N/A N/A N/A N/A N/A N/A N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM33

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 21 of 43)


GROUP WAVEFORM CAPTURE Ia continued WAVEFORM CAPTURE Ib ADDR (HEX) 06AA to 06AF 06B0 06B1 06B2 06B3 06B4 06B5 to 072E 072F 0730 0731 0732 to 0737 WAVEFORM CAPTURE Ic 0738 0739 073A 073B 073C 073D to 07B6 07B7 07B8 07B9 07BA to 07BF WAVEFORM CAPTURE In 07C0 07C1 07C2 07C3 07C4 07C5 to 083E 083F 0840 0841 0842 DESCRIPTION Reserved Reserved Ib Waveform Capture Scale Factor (high) Ib Waveform Capture Scale Factor (low) Ib Sample Buffer 1 Ib Sample Buffer 2 Ib Sample Buffer 3 Ib Sample Buffer 4 Ib Sample Buffer 125 Ib Sample Buffer 126 Ib Sample Buffer 127 Ib Sample Buffer 128 Reserved Reserved Ic Waveform Capture Scale Factor (high) Ic Waveform Capture Scale Factor (low) Ic Sample Buffer 1 Ic Sample Buffer 2 Ic Sample Buffer 3 Ic Sample Buffer 4 Ic Sample Buffer 125 Ic Sample Buffer 126 Ic Sample Buffer 127 Ic Sample Buffer 128 Reserved Reserved In Waveform Capture Scale Factor (high) In Waveform Capture Scale Factor (low) In Sample Buffer 1 In Sample Buffer 2 In Sample Buffer 3 In Sample Buffer 4 In Sample Buffer 125 In Sample Buffer 126 In Sample Buffer 127 In Sample Buffer 128 Reserved ---------- ------------------ --------A x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts F3 F2 F2 F2 F2 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A ---------- ------------------ --------A x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts F3 F2 F2 F2 F2 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A ---------- ------------------ --------A x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts F3 F2 F2 F2 F2 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM34

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 22 of 43)


GROUP ADDR (HEX) to 0847 WAVEFORM CAPTURE Van 0848 0849 084A 084B 084C 084D to 08C6 08C7 08C8 08C9 08CA to 08CF WAVEFORM CAPTURE Vbn 08D0 08D1 08D2 08D3 08D4 08D5 to 094E 094F 0950 0951 0952 to 0957 WAVEFORM CAPTURE Vcn 0958 0959 095A 095B 095C 095D to 09D6 09D7 09D8 09D9 DESCRIPTION Reserved Van Waveform Capture Scale Factor (high) Van Waveform Capture Scale Factor (low) Van Sample Buffer 1 Van Sample Buffer 2 Van Sample Buffer 3 Van Sample Buffer 4 Van Sample Buffer 125 Van Sample Buffer 126 Van Sample Buffer 127 Van Sample Buffer 128 Reserved Reserved Vbn Waveform Capture Scale Factor (high) Vbn Waveform Capture Scale Factor (low) Vbn Sample Buffer 1 Vbn Sample Buffer 2 Vbn Sample Buffer 3 Vbn Sample Buffer 4 Vbn Sample Buffer 125 Vbn Sample Buffer 126 Vbn Sample Buffer 127 Vbn Sample Buffer 128 Reserved Reserved Vcn Waveform Capture Scale Factor (high) Vcn Waveform Capture Scale Factor (low) Vcn Sample Buffer 1 Vcn Sample Buffer 2 Vcn Sample Buffer 3 Vcn Sample Buffer 4 Vcn Sample Buffer 125 Vcn Sample Buffer 126 Vcn Sample Buffer 127 Vcn Sample Buffer 128 ---------- ------------------ --------V x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts F3 F2 F2 F2 F2 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A ---------- ------------------ --------V x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts F3 F2 F2 F2 F2 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A ---------- ------------------ --------V x 10000 ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts ADC counts F3 F2 F2 F2 F2 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM35

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 23 of 43)


GROUP WAVEFORM CAPTURE Vcn continued DATA LOGGER DATA ADDR (HEX) 09DA to 09FF 0A00 0A01 0A02 0A03 0A04 to 0A3D 0A3E 0A3F 0A40 0A41 to 0A4F DATA LOGGER LOG NUMBERS 0A50 0A51 0A52 0A53 0A54 0A55 0A56 0A57 0A58 0A59 0A5A 0A5B 0A5C 0A5D 0A5E 0A5F 0A60 0A61 0A62 0A63 0A64 0A65 0A66 0A67 0A68 0A69 0A6A 0A6B 0A6C 0A6D DESCRIPTION Reserved Reserved Data Log Memory Access Block Number Data Log Register 0 Data Log Register 1 Data Log Register 2 Data Log Register 3 Data Log Register 60 Data Log Register 61 Data Log Register 62 Data Log Register 63 Reserved Reserved Ia Log Number Ib Log Number Ic Log Number Iavg Log Number In Log Number I Unbalance Log Number Van Log Number Vbn Log Number Vcn Log Number Vpavg Log Number Vab Log Number Vbc Log Number Vca Log Number Vlavg Log Number V Unbalance Log Number Pa Log Number Qa Log Number Sa Log Number PFa Log Number Pb Log Number Qb Log Number Sb Log Number PFb Log Number Pc Log Number Qc Log Number Sc Log Number PFc Log Number P3 Log Number Q3 Log Number S3 Log Number ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected ---------- ------------------ ------------------ --------F1 F1 F1 F1 F1 F1 F1 F1 F1 0 -------- -------- RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM36

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 24 of 43)


GROUP DATA LOGGER LOG NUMBERS continued ADDR (HEX) 0A6E 0A6F 0A70 0A71 0A72 0A73 0A74 0A75 0A76 0A77 0A78 0A79 0A7A 0A7B 0A7C 0A7D 0A7E 0A7F 0A80 0A81 0A82 0A83 0A84 0A85 0A86 to 0A8F DATA LOGGER LOG 1 HEADER 0A90 0A91 0A92 0A93 0A94 0A95 0A96 0A97 0A98 0A99 0A9A 0A9B 0A9C 0A9D 0A9E 0A9F 0AA0 DESCRIPTION PF3 Log Number Frequency Log Number Positive kWh Log Number Negative kWh Log Number Positive kvarh Log Number Negative kvarh Log Number kVAh Log Number Ia Demand Log Number Ib Demand Log Number Ic Demand Log Number In Demand Log Number P3 Demand Log Number Q3 Demand Log Number S3 Demand Log Number Ia THD Log Number Ib THD Log Number Ic THD Log Number In THD Log Number Van THD Log Number Vbn THD Log Number Vcn THD Log Number Vab THD Log Number Vbc THD Log Number Analog Input Log Number Reserved Reserved Log 1 Time Interval (high) Log 1 Time Interval (low) Log 1 Time - Hours/Minutes Log 1 Time - Seconds Log 1 Date - Month/Day Log 1 Date - Year Log 1 Start Block Number Log 1 Start Register Number Log 1 Record Size Log 1 Total Records (high) Log 1 Total Records (low) Log 1 Block Number of First Record Log 1 Register Number of First Record Log 1 Pointer to 1st Item of 1st Rec. (high) ------------------------------------------s ------------bytes F3 F22 F23 F24 F25 F1 F1 F1 F3 F1 F1 F1 F1 F1 F1 0 0 N/A N/A N/A N/A N/A 0 0 0 RANGE ------------------------------------------------STEP VALUE ------------------------------------------------UNITS and SCALE ------------------------------------------------FORMAT F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 F110 FACTORY DEFAULT 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected 0 = not selected

Log 1 Pointer to 1st Item of 1st Record --(low) Log 1 Block Number of Next Record to Write Log 1 Register No. of Next Record to Write

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM37

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 25 of 43)


GROUP DATA LOGGER LOG 1 HEADER continued ADDR (HEX) 0AA1 0AA2 0AA3 0AA4 0AA5 0AA6 0AA7 0AA8 to 0AAB DATA LOGGER LOG 2 HEADER 0AAC 0AAD 0AAE 0AAF 0AB0 0AB1 0AB2 0AB3 0AB4 0AB5 0AB6 0AB7 0AB8 0AB9 0ABA 0ABB 0ABC 0ABD 0ABE 0ABF 0AC0 0AC1 0AC2 0AC3 0AC4 to 0ACF EVENT RECORD 0AD0 0AD1 0AD2 0AD3 DESCRIPTION Log 1 Pointer of 1st Item of Record after Last (high) Log 1 Pointer of 1st Item of Record after Last (low) Log 1 Status Log 1 Records Used (high) Log 1 Records Used (low) Log 1 Time Until next Reading (high) Log 1 Time Until next Reading (low) Reserved Reserved Log 2 Time Interval (high) Log 2 Time Interval (low) Log 2 Time - Hours/Minutes Log 2 Time - Seconds Log 2 Date - Month/Day Log 2 Date - Year Log 2 Start Block Number Log 2 Start Register Number Log 2 Record Size Log 2 Total Records (high) Log 2 Total Records (low) Log 2 Block Number of First Record Log 2 Register Number of First Record Log 2 Pointer to 1st Item of 1st Rec. (high) ------------------------------------------s ------------bytes F3 F22 F23 F24 F25 F1 F1 F1 F3 F1 F1 F1 F1 F1 F1 0 0 N/A N/A N/A N/A N/A 0 0 0 ----s ------RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

F3 F35 F3 F3 N/A 0 = STOPPED

Log 2 Pointer to 1st Item of 1st Record --(low) Log 2 Block Number of Next Record to Write Log 2 Register No. of Next Record to Write Log 2 Pointer of 1st Item of Record after Last (high) Log 2 Pointer of 1st Item of Record after Last (low) Log 2 Status Log 2 Records Used (high) Log 2 Records Used (low) Log 2 Time Until next Reading (high) Log 2 Time Until next Reading (low) Reserved Reserved Total Number of Events Since Last Clear -- -----

F3 ----F35 F3 --s F3 N/A 0 = STOPPED

---------

---------

F1 F22 F23 F24

0 N/A N/A N/A

Event Record Last Cleared Time - Hrs./ --Min. Event Record Last Cleared Time Seconds Event Record Last Cleared Date Month/Day -----

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM38

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 26 of 43)


GROUP EVENT RECORD continued ADDR (HEX) 0AD4 0AD5 to 0ADF 0AE0 0AE1 0AE2 0AE3 0AE4 0AE5 0AE6 0AE7 0AE8 0AE9 0AEA 0AEB 0AEC 0AED 0AEE 0AEF 0AF0 0AF1 0AF2 0AF3 0AF4 0AF5 0AF6 0AF7 0AF8 0AF9 0AFA 0AFB 0AFC 0AFD 0AFE 0AFF 0B00 0B01 0B02 0B03 0B04 0B05 0B06 0B07 0B08 DESCRIPTION RANGE STEP VALUE -- --------------------------------------------------------UNITS and SCALE -- --------------A A A A 0.1 x% V V V V V V 0.1 x% 0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW FORMAT F25 F1 F36 F22 F23 F24 F25 F111 F1 F1 F1 F1 F1 F3 F3 F3 F3 F3 F3 F1 F4 F4 F3 F2 F4 F4 F3 F2 F4 FACTORY DEFAULT N/A N/A 0 = NO EVENT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Event Record Last Cleared Date - Year --Reserved Reserved Record #N Event Number Record #N Event Cause Record #N Time - Hours/Minutes Record #N Time - Seconds Record #N Date - Month/Day Record #N Date - Year Record #N Ia Record #N Ib Record #N Ic Record #N In Record #N I Unbalance Record #N Van (high) Record #N Van (low) Record #N Vbn (high) Record #N Vbn (low) Record #N Vcn (high) Record #N Vcn (low) Record #N Vab (high) Record #N Vab (low) Record #N Vbc (high) Record #N Vbc (low) Record #N Vca (high) Record #N Vca (low) Record #N V Unbalance Record #N Pa (high) Record #N Pa (low) Record #N Qa (high) Record #N Qa (low) Record #N Sa (high) Record #N Sa (low) Record #N PFa Record #N Pb (high) Record #N Pb (low) Record #N Qb (high) Record #N Qb (low) Record #N Sb (high) Record #N Sb (low) Record #N PFb Record #N Pc (high) Record #N Pc (low) ------------------------------------------------------

Record #N Switches and Relays States ---

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM39

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 27 of 43)


GROUP EVENT RECORD continued ADDR (HEX) 0B09 0B0A 0B0B 0B0C 0B0D 0B0E 0B0F 0B10 0B11 0B12 0B13 0B14 0B15 0B16 0B17 0B18 0B19 0B1A 0B1B 0B1C 0B1D 0B1E 0B1F 0B20 0B21 0B22 0B23 0B24 0B25 0B26 0B27 0B28 0B29 0B2A 0B2B 0B2C 0B2D 0B2E 0B2F 0B30 0B31 0B32 0B33 0B34 0B35 DESCRIPTION Record #N Qc (high) Record #N Qc (low) Record #N Sc (high) Record #N Sc (low) Record #N PFc Record #N P3 (high) Record #N P3 (low) Record #N Q3 (high) Record #N Q3 (low) Record #N S3 (high) Record #N S3 (low) Record #N PF3 Record #N Frequency Record #N Positive kWh (high) Record #N Positive kWh (low) Record #N Negative kWh (high) Record #N Negative kWh (low) Record #N Positive kvarh (high) Record #N Positive kvarh (low) Record #N Negative kvarh (high) Record #N Negative kvarh (low) Record #N kVAh (high) Record #N kVAh (low) Record #N Ia Demand Record #N Ib Demand Record #N Ic Demand Record #N In Demand Record #N P3 Demand (high) Record #N P3 Demand (low) Record #N Q3 Demand (high) Record #N Q3 Demand (low) Record #N S3 Demand (high) Record #N S3 Demand (low) Record #N Ia THD Record #N Ib THD Record #N Ic THD Record #N In THD Record #N Van THD Record #N Vbn THD Record #N Vcn THD Record #N Vab THD Record #N Vbc THD Record #N Analog Input (high) Record #N Analog Input (low) Record #N Trace Memory Trigger Cause RANGE --------------------------------------------------------------STEP VALUE --------------------------------------------------------------UNITS and SCALE 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x kW 0.01 x kvar 0.01 x kVA 0.01 x PF 0.01 x Hz kWh kWh kvarh kvarh kVAh A A A A 0.01 x kW 0.01 x kvar 0.01 x kVA 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % ----FORMAT F4 F3 F2 F4 F4 F3 F2 F1 F3 F3 F3 F3 F3 F1 F1 F1 F1 F4 F4 F3 F1 F1 F1 F1 F1 F1 F1 F1 F1 F3 F41 FACTORY DEFAULT N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM40

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 28 of 43)


GROUP ADDR (HEX) 0B36 EVENT RECORD continued TRACE MEMORY 0B37 to 0B7F 0B80 0B81 0B82 0B83 0B88 0B89 0B8A 0B8B 0B8C 0B8D 0B8E 0B98 0B99 0B9A 0B9B 0B9C 0B9D 0B9E 0BA8 0BA9 0BAA 0BAB 0BAC 0BAD 0BAE 0BB8 0BB9 0BBA 0BBB 0BBC to 0DF9 0DFA 0DFB to 0DFF 0E00 0E01 to 0E1F DESCRIPTION Record #N Internal Fault Error Code Reserved Reserved Trace Memory Usage Trace Memory Trigger Flag Trace Memory Trigger Counter Total Trace Memory Triggers Trigger Cause - Trace 1 Time - Hours/Minutes - Trace 1 Time - Seconds - Trace 1 Date - Month/Day - Trace 1 Date - Year - Trace 1 Trigger Sample Number 1 Frequency 1 Trigger Cause - Trace 2 Time - Hours/Minutes - Trace 2 Time - Seconds - Trace 2 Date - Month/Day - Trace 2 Date - Year - Trace 2 Trigger Sample Number 2 Frequency 2 Trigger Cause - Trace 3 Time - Hours/Minutes - Trace 3 Time - Seconds - Trace 3 Date - Month/Day - Trace 3 Date - Year - Trace 3 Trigger Sample Number 3 Frequency 3 Trace Memory Waveform Selection Waveform Scale Factor (high) Waveform Scale Factor (low) Data Buffer 1 Data Buffer 2 Data Buffer 575 Data Buffer 576 Reserved Reserved Invalid Serial Number Flag Reserved Reserved ------F117 N/A ---------------------------------------------------------- -------------------------------------------------------------- ------------------------0.01 x Hz ------------0.01 x Hz ------------0.01xHz --A/Vx10000 ADCcounts/2 ADCcounts/2 ADCcounts/2 ADCcounts/2 F37 F113 F1 F1 F41 F22 F23 F24 F25 F1 F1 F41 F22 F23 F24 F25 F1 F1 F41 F22 F23 F24 F25 F1 F1 F40 F3 F2 F2 F2 F2 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A RANGE --STEP VALUE --UNITS and SCALE --FORMAT F108 FACTORY DEFAULT N/A

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM41

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 29 of 43)


GROUP VOLTAGE DISTURBANCE RECORDER ADDR (HEX) 0E20 0E21 0E22 0E23 0E24 0E25 to 0E2F 0E30 0E31 0E32 0E33 0E34 0E35 0E36 0E37 0E38 0E39 0E3A 0E3B to 0FFF METER ID 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 100A to 100F
PREFERENCES

DESCRIPTION Disturbances since Last Clear Swell/Sag Last Cleared Time (Sec.) Swell/Sag Last Cleared Date (Month/ Day.) Swell/Sag Last Cleared Date (Year.) Reserved Reserved Record N Disturbance Number Record N Disturbance Type Record N Disturbance Source Record N Time (hours/minutes) Record N Time (seconds) Record N Date (month/day) Record N Date (seconds) Record N Over/Undervoltage Duration (high) Record N Over/Undervoltage Duration (low) Record N Average Voltage (high) Record N Average Voltage (low) Reserved Reserved Meter ID characters 1 and 2 Meter ID characters 3 and 4 Meter ID characters 5 and 6 Meter ID characters 7 and 8 Meter ID characters 9 and 10 Meter ID characters 11 and 12 Meter ID characters 13 and 14 Meter ID characters 15 and 16 Meter ID characters 17 and 18 Meter ID characters 19 and 20 Reserved Reserved Default Message Time Reserved Display Filter Constant Reserved Reserved

RANGE --------

STEP VALUE ----------

UNITS and SCALE ----------

FORMAT F1 F22 F23 F24 F25 F1 F118 F119 F22 F23 F24 F25

FACTORY DEFAULT 0 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A

Swell/Sag Last Cleared Time (Hrs./Min.) ---

cycles

F3

N/A

0.1 V

F3

N/A

Setpoint Values (Holding Registers) Addresses: 1000 to 131F -------------------- 1 to 1201*** 1 to 10 -------------------- 1 1 ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII min x0.1 -- F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F1 F1 N/A N/A N/A N/A N/A N/A N/A N/A N/A N/A 10 = 1.0 min 4

1010 1011 1012 1013 to 1017

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM42

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 30 of 43)


GROUP ADDR (HEX) DESCRIPTION Serial Communication Address Modbus Baud Rate for RS485 COM1 Parity for RS485 COM1 Reserved Reserved Modbus Baud Rate for RS485 COM2 Parity for RS485 COM2 Reserved Reserved Modbus Baud Rate for RS232 Parity for RS232 Reserved Reserved Current Demand Calculation Type Current Demand Time Interval Power Demand Calculation Type Power Demand Time Interval Energy Cost Per kWh Extract Fundamental Reserved Reserved Clear Energy Values Clear Max Demand Values Clear Min/Max Current Values Clear Min/Max Voltage Values Clear Min/Max Power Values Clear Max THD Values Clear Pulse Input Values Clear Event Record Clear All Demand Values Clear Frequency Values Reserved Reserved DNP Port DNP Slave Address DNP Turnaround Time Tariff Period 1 Start Time Tariff Period 1 Cost per kWh Tariff Period 2 Start Time Tariff Period 2 Cost per kWh Tariff Period 3 Start Time Tariff Period 3 Cost per kWh 0 to 3 0 to 255 0 to 100 0 to 1439 1 to 50000 0 to 1439 1 to 50000 0 to 1439 1 to 50000 1 1 10 1 1 1 1 1 1 ----ms minutes 0.01 minutes 0.01 minutes 0.01 F47 F1 F1 F1 F1 F1 F1 F1 F1 0 = NONE 0 10 ms 0 min. 10.00 0 min. 10.00 0 min. 10.00 0 to 1 0 to 1 0 to 1 0 to 1 0 to 1 0 to 1 0 to 1 0 to 1 0 to 1 0 to 1 1 1 1 1 1 1 1 1 1 1 --------------------F31 F31 F31 F31 F31 F31 F31 F31 F31 F31 0 = NO 0 = NO 0 = NO 0 = NO 0 = NO 0 = NO 0 = NO 0 = NO 0 = NO 0 = NO 0 to 2 5 to 180 0 to 2 5 to 180 1 to 50000 0 to 1 1 1 1 1 1 1 --minutes --minutes x 0.01 --F28 F1 F28 F1 F1 F11 0 = Thermal Exponential 30 min 0 = Thermal Exponential 30 min 10.00 0=DISABLE 0 to 4 0 to 2 1 1 ----F12 F13 3 = 9600 0 = NONE 0 to 4 0 to 2 1 1 ----F12 F13 3 = 9600 0 = NONE RANGE 1 to 255 0 to 4 0 to 2 STEP VALUE 1 1 1 UNITS and SCALE ------FORMAT F1 F12 F13 FACTORY DEFAULT 1 3 = 9600 0 = NONE

RS485 COM1 1018 SERIAL PORT 1019 101A 101B to 101F RS485 COM2 1020 SERIAL PORT 1021 1022 to 1027 1028 RS232 SERIAL PORT 1029 102A to 102F 1030 CALCU1031 LATION PARAMETERS 1032 1033 1034 1035 1036 1037 CLEAR DATA 1038 1039 103A 103B 103C 103D 103E 103F 1040 1041 1042 1043 DNP 1044 1045 1046 TARIFF 1047 1048 1049 104A 104B 104C

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM43

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 31 of 43)


GROUP TARIFF continued ADDR (HEX) 104D 104E 104F CURRENT /VOLTAGE CONFIG. 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 to 105F ANALOG OUTPUT 1 1060 1061 1062 1063 1064 1065 1066 1067 ANALOG OUTPUT 2 1068 1069 106A 106B 106C 106D 106E 106F ANALOG OUTPUT 3 1070 1071 1072 1073 1074 1075 1076 1077 DESCRIPTION Reserved Reserved Reserved Phase CT Primary Neutral Current Sensing Neutral CT Primary VT Wiring VT Ratio VT Nominal Secondary Voltage Nominal Direct Input Voltage Nominal Frequency CT Wiring Reserved Reserved Analog Output 1 Main Type Analog Output 1 Main Min Value Analog Output 1 Main Max Value Analog Output 1 Alternate Type Analog Output 1 Alternate Min Value Analog Output 1 Alternate Max Value Reserved Analog Output 1 Serial Value Analog Output 2 Main Type Analog Output 2 Main Min Value Analog Output 2 Main Max Value Analog Output 2 Alternate Type Analog Output 2 Alternate Min Value Analog Output 2 Alternate Max Value Reserved Analog Output 2 Serial Value Analog Output 3 Main Type Analog Output 3 Main Min Value Analog Output 3 Main Max Value Analog Output 3 Alternate Type Analog Output 3 Alternate Min Value Analog Output 3 Alternate Max Value Reserved Analog Output 3 Serial Value 1 --F2 0 0 to 59 1 1 ----F2 F14 0 19=3Ph React Pwr 0 to 59 1 1 ----F2 F14 0 18=3Ph Real Pwr 0 0 0=NOT USED 0 0 0 to 59 1 --F14 5=Avg Ph Current 0 0 0=NOT USED 0 0 See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74 0 to 59 1 --F14 See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74 0 to 12000**** 0 to 2 5 to 6000 0 to 6 10 to 35000 40 to 600 40 to 600 50 to 60 0 to 3 5 1 5 1 1 1 1 10 1 A --A --0.1 ratio V V Hz --F1 F16 F1 F15 F1 F1 F1 F1 F44 0 = OFF 0 = OFF 100 A 0 = OFF 1.0:1 120 V 600 V 60 Hz 0=A,B AND C RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74 0 to 59 1 --F14 See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74

See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74 0 to 59 1 --F14 0=NOT USED See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM44

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 32 of 43)


GROUP ANALOG OUTPUT 4 ADDR (HEX) 1078 1079 107A 107B 107C 107D 107E 107F ANALOG INPUT 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 108A 108B 108C 108D 108E 108F 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 109A 109B 109C 109D DESCRIPTION Analog Output 4 Main Type Analog Output 4 Main Min Value Analog Output 4 Main Max Value Analog Output 4 Alternate Type Analog Output 4 Alternate Min Value Analog Output 4 Alternate Max Value Reserved Analog Output 4 Serial Value Analog Input Main/Alt Select Relay Analog In Main Name 3rd and 4th char. 0 to 3 Analog In Main Name 1st and 2nd char. ----Analog In Main Name 5th and 6th char. --Analog In Main Name 7th and 8th char. --Analog In Main Name 9 and 10 char.
th th

RANGE 0 to 59

STEP VALUE 1

UNITS and SCALE ---

FORMAT F14

FACTORY DEFAULT 17=3Ph Pwr Factor

See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74 0 to 59 1 --F14 0=NOT USED See Analog Output Parameter Range for Serial Ports on page COMM-74 See Analog Output Parameter Range for Serial Ports on page COMM-74 1 1 -----------------------------1 1 1 1 5 ----ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII --------0.1 x s F2 F19 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F1 F1 F29 F1 F1 0 0=OFF MA IN A NA LO G IN PU T U ni ts 0 0 0=OFF 0 100=10.0 s

--------------------

Analog In Main Name 11th and 12th char. Analog In Main Name 13th and 14th char. Analog In Main Name 15h and 16th char. Analog In Main Name 17th and 18th char. Analog In Main Name 19 and 20 char.
th th

Analog In Main Units 1st and 2nd char. Analog In Main Units 3rd and 4th char. Analog In Main Units 5 and 6 char. Analog In Main Units 7th and 8th char. Analog Input Main 4 mA Value Analog Input Main 20 mA Value Analog Input Main Relay Analog Input Main Level Analog Input Main Delay Reserved Reserved Reserved Analog In Alt Name 1st and 2nd char. Analog In Alt Name 3rd and 4th char. Analog In Alt Name 5th and 6th char. Analog In Alt Name 7th and 8th char. Analog In Alt Name 9th and 10th char.
th th

Analog In Main Units 9th and 10th char. --0 to 65000 0 to 65000 0 to 4 0 to 65000 5 to 6000

----------

-----------

ASCII ASCII ASCII ASCII ASCII ASCII

F10 F10 F10 F10 F10 F10

AL T A NA LO

Analog In Alt Name 11th and 12th char. --

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM45

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 33 of 43)


GROUP ADDR (HEX) 109E 109F 10A0 ANALOG INPUT continued 10A1 10A2 10A3 10A4 10A5 10A6 10A7 10A8 10A9 10AA 10AB 10AC to 10AF SWITCH A 10B0 10B1 10B2 10B3 10B4 10B5 10B6 10B7 10B8 10B9 10BA 10BB 10BC 10BD 10BE 10BF SWITCH B 10C0 10C1 10C2 10C3 10C4 10C5 10C6 10C7 10C8 10C9 10CA 10CB 10CC DESCRIPTION RANGE STEP VALUE -------------------1 1 1 1 5 --------------------1 1 1 UNITS and SCALE ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII --------0.1 x s ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ----0.1 x s FORMAT F10 F10 F10 F10 F10 F10 F10 F10 F10 F1 F1 F29 F1 F1 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F20 F27 F1 FACTORY DEFAULT G IN PU T U ni ts 0 0 0=OFF 0 100=10.0 s S WI TC H IN PU T A 0 = Not Used 1 = Closed 0.0 s

Analog In Alt Name 13th and 14th char. --Analog In Alt Name 15h and 16th char. ---Analog In Alt Name 17th and 18th char. --Analog In Alt Name 19th and 20th char.
rd th th

------------0 to 65000 0 to 65000 0-4 0 to 65000 5 to 6000 --------------------0 to 14 0 to 1 0 to 6000

Analog In Alt Units 1st and 2nd char. Analog In Alt Units 3 and 4 char. Analog In Alt Units 5 and 6 char. Analog In Alt Units 7th and 8th char. Analog In Alt Units 9th and 10th char. Analog Input Alt 4 mA Value Analog Input Alt 20 mA Value Analog Input Alt Relay Analog Input Alt Level Analog Input Alt Delay Reserved Reserved Switch A Name characters 1 and 2 Switch A Name characters 3 and 4 Switch A Name characters 5 and 6 Switch A Name characters 7 and 8 Switch A Name characters 9 and 10 Switch A Name characters 11 and 12 Switch A Name characters 13 and 14 Switch A Name characters 15 and 16 Switch A Name characters 17 and 18 Switch A Name characters 19 and 20 Switch A Function Switch A Activation Switch A Time Delay Reserved Reserved Reserved Switch B Name characters 1 and 2 Switch B Name characters 3 and 4 Switch B Name characters 5 and 6 Switch B Name characters 7 and 8 Switch B Name characters 9 and 10 Switch B Name characters 11 and 12 Switch B Name characters 13 and 14 Switch B Name characters 15 and 16 Switch B Name characters 17 and 18 Switch B Name characters 19 and 20 Switch B Function Switch B Activation Switch B Time Delay
th

--------------------0 to 14 0 to 1 0 to 6000

--------------------1 1 1

ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ----0.1 x s

F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F20 F27 F1

S WI TC H IN PU T B 0=NOT USED 1=CLOSED 0.0 s

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM46

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 34 of 43)


GROUP ADDR (HEX) 10CD 10CE 10CF SWITCH C 10D0 10D1 10D2 10D3 10D4 10D5 10D6 10D7 10D8 10D9 10DA 10DB 10DC 10DD 10DE 10DF SWITCH D 10E0 10E1 10E2 10E3 10E4 10E5 10E6 10E7 10E8 10E9 10EA 10EB 10EC 10ED 10EE 10EF PULSE OUTPUT 10F0 10F1 10F2 10F3 10F4 10F5 10F6 10F7 10F8 10F9 10FA DESCRIPTION Reserved Reserved Reserved Switch C Name characters 1 and 2 Switch C Name characters 3 and 4 Switch C Name characters 5 and 6 Switch C Name characters 7 and 8 Switch C Name characters 9 and 10 Switch C Name characters 11 and 12 Switch C Name characters 13 and 14 Switch C Name characters 15 and 16 Switch C Name characters 17 and 18 Switch C Name characters 19 and 20 Switch C Function Switch C Activation Switch C Time Delay Reserved Reserved Reserved Switch D Name characters 1 and 2 Switch D Name characters 3 and 4 Switch D Name characters 5 and 6 Switch D Name characters 7 and 8 Switch D Name characters 9 and 10 Switch D Name characters 11 and 12 Switch D Name characters 13 and 14 Switch D Name characters 15 and 16 Switch D Name characters 17 and 18 Switch D Name characters 19 and 20 Switch D Function Switch D Activation Switch D Time Delay Reserved Reserved Reserved Positive kWh Pulse Output Relay Positive kWh Pulse Output Interval Negative kWh Pulse Output Relay Negative kWh Pulse Output Interval Positive kvarh Pulse Output Relay Positive kvarh Pulse Output Interval Negative kvarh Pulse Output Relay Negative kvarh Pulse Output Interval kVAh Pulse Output Relay kVAh Pulse Output Interval Pulse Output Width 0 to 4 1 to 65000 0 to 4 1 to 65000 0 to 4 1 to 65000 0 to 4 1 to 65000 0 to 4 1 to 65000 100 to 2000 1 1 1 1 1 1 1 1 1 1 10 --kWh --kWh --kvarh --kvarh --kVAh ms F29 F1 F29 F1 F29 F1 F29 F1 F29 F1 F1 0=OFF 100 kWh 0=OFF 100 kWh 0=OFF 100 kvarh 0=OFF 100 kvarh 0=OFF 100 kVAh 100 ms --------------------0 to 14 0 to 1 0 to 6000 --------------------1 1 1 ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ----0.1 x s F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F20 F27 F1 S WI TC H IN PU T D 0=NOT USED 1=CLOSED 0.0 s --------------------0 to 14 0 to 1 0 to 6000 --------------------1 1 1 ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ----0.1 x s F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F20 F27 F1 S WI TC H IN PU T C 0=NOT USED 1=CLOSED 0.0 s RANGE STEP VALUE UNITS and SCALE FORMAT FACTORY DEFAULT

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM47

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 35 of 43)


GROUP ADDR (HEX) 10FB 10FC PULSE INPUT 10FD 10FE 10FF 1100 1101 1102 1103 1104 1105 1106 1107 ALARM RELAY 1108 1109 110A to 110F AUXILIARY RELAY 1 1110 1111 1112 to 1117 AUXILIARY RELAY 2 1118 1119 111A to 111F AUXILIARY RELAY 3 1120 1121 1122 1123 1124 1125 CURRENT/ VOLTAGE ALARMS 1126 1127 1128 1129 112A 112B 112C 112D 112E 112F 1130 1131 DESCRIPTION Serial Pulse Relay Interval Reserved Pulse Input Units 1st and 2nd char. Pulse Input Units 3rd and 4th char. Pulse Input Units 5 and 6 char. Pulse Input Units 7th and 8th char. Pulse Input Units 9th and 10th char. Pulse Input 1 Value Pulse Input 2 Value Pulse Input 3 Value Pulse Input 4 Value Pulse Input Total Reserved Alarm Relay Operation Alarm Relay Activation Reserved Reserved Auxiliary Relay 1 Operation Auxiliary Relay 1 Activation Reserved Reserved Auxiliary Relay 2 Operation Auxiliary Relay 2 Activation Reserved Reserved Auxiliary Relay 3 Operation Auxiliary Relay 3 Activation Reserved Reserved Reserved Reserved Phase Overcurrent Activation Detect I/V Alarms Using Percentage Phase Undercurrent Relay Phase Undercurrent Level in Amps Phase Undercurrent Delay Phase Overcurrent Relay Phase Overcurrent Level in Amps Phase Overcurrent Delay Neutral Overcurrent Relay Neutral Overcurrent Level in Amps Neutral Overcurrent Delay Undervoltage Relay 0 to 1 0 to 1 0 to 4 1 to 12000 5 to 6000 0 to 4 1 to 12000 5 to 6000 0 to 4 1 to 12000 5 to 6000 0 to 4 1 1 1 1 5 1 1 5 1 1 5 1 ------A 0.1 x s --A 0.1 x s --A 0.1 x s --F115 F31 F29 F1 F1 F29 F1 F1 F29 F1 F1 F29 0=AVERAGE 0=NO 0=OFF 100 A 100=10.0 s 0=OFF 100 A 100=10.0 s 0=OFF 100 A 100=10.0 s 0=OFF 0 to 1 0 to 1 1 1 ----F17 F18 0 = NON-FAILSAFE 0 = UNLATCHED 0 to 1 0 to 1 1 1 ----F17 F18 0 = NON-FAILSAFE 0 = UNLATCHED 0 to 1 0 to 1 1 1 ----F17 F18 0 = NON-FAILSAFE 0 = UNLATCHED 0 to 1 0 to 1 1 1 ----F17 F18 0 = NON-FAILSAFE 0 = UNLATCHED
th th

RANGE 100 to 10000

STEP VALUE 100

UNITS and SCALE ms

FORMAT F1

FACTORY DEFAULT 100 ms

----------0 to 65000 0 to 65000 0 to 65000 0 to 65000 0 to 10

----------1 1 1 1 1

ASCII ASCII ASCII ASCII ASCII Units Units Units Units ---

F10 F10 F10 F10 F10 F1 F1 F1 F1 F43

U ni ts 1 1 1 1 9 = 1+2+3+4

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM48

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 36 of 43)


GROUP ADDR (HEX) 1132 1133 CURRENT/ VOLTAGE ALARMS continued 1134 1135 1136 1137 1138 1139 113A 113B 113C 113D 113E 113F 1140 1141 1142 1143 1144 1145 1146 1147 TOTAL HARMONIC DISTORTION ALARMS 1148 1149 114A 114B 114C 114D 114E to 1157 FREQUENCY ALARMS 1158 1159 115A 115B 115C 115D 115E 115F to 1166 POWER ALARMS 1167 1168 1169 116A DESCRIPTION Undervoltage Level in Volts Undervoltage Delay Phases Reqd for Operation of Undervoltage Detect Undervoltage Below 20 V Overvoltage Relay Overvoltage Level in Volts Overvoltage Delay Phases Reqd for Operation of Overvoltage Phase Current Unbalance Relay Phase Current Unbalance Level Phase Current Unbalance Delay Voltage Unbalance Relay Voltage Unbalance Level Voltage Unbalance Delay Voltage Phase Reversal Relay Voltage Phase Reversal Delay Detect Undercurrent When 0A Phase Undercurrent Level in % of CT Phase Overcurrent Level in % of CT Neutral Overcurrent Level in % of CT Undervoltage Level in % of VT Overvoltage Level in % of VT Average Current THD Relay Average Current THD Level Average Current THD Delay Average Voltage THD Relay Average Voltage THD Level Average Voltage THD Delay Reserved Reserved Underfrequency Relay Underfrequency Level Underfrequency Delay Zero Frequency Detect Overfrequency Relay Overfrequency Level Overfrequency Delay Reserved Reserved Power Alarms Level Base Units Positive Real Power Relay Positive Real Power Level in kW Positive Real Power Delay 0 to 1 0 to 4 1 to 65000 5 to 6000 1 1 1 5 ----kW 0.1 x s F114 F29 F1 F1 0=kW/kVAR 0=OFF 1000 kW 100=10.0 s 0 to 4 2000 to 7000 1 to 100 0 to 1 0 to 4 2000 to 12500 1 to 100 1 1 1 1 1 1 1 --0.01 x Hz 0.1 x s ----0.01 x Hz 0.1 x s F29 F1 F1 F11 F29 F1 F1 0=OFF 40.00 Hz 100=10.0 s 0=DISABLE 0=OFF 70.00 Hz 100=10.0 s RANGE 20 to 65000 5 to 6000 0 to 2 0 to 1 0 to 4 1 to 65000 5 to 6000 0 to 2 0 to 4 1 to 100 5 to 6000 0 to 4 1 to 100 5 to 6000 0 to 4 5 to 6000 0 to 1 1 to 100 1 to 150 1 to 150 20 to 100 20 to 150 0 to 4 5 to 1000 5 to 6000 0 to 4 5 to 1000 5 to 6000 STEP VALUE 1 5 1 1 1 1 5 1 1 1 5 1 1 5 1 5 1 1 1 1 1 1 1 5 5 1 5 5 UNITS and SCALE V 0.1 x s ------V 0.1 x s ----% 0.1 x s --% 0.1 x s --0.1 x s --% % % % % --0.1 x % 0.1 x s --0.1 x % 0.1 x s FORMAT F1 F1 F30 F11 F29 F1 F1 F30 F29 F1 F1 F29 F1 F1 F29 F1 F31 F1 F1 F1 F1 F1 F29 F1 F1 F29 F1 F1 FACTORY DEFAULT 100 V 100=10.0 s 0=ANY ONE 0=DISABLE 0=OFF 100 V 100=10.0 s 0=ANY ONE 0=OFF 10% 100=10.0 s 0=OFF 10% 100=10.0 s 0=OFF 100=10.0 s 0=NO 100% 100% 100% 100% 100% 0=OFF 100=10.0% 100=10.0 s 0=OFF 100=10.0% 100=10.0 s

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM49

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 37 of 43)


GROUP ADDR (HEX) 116B 116C POWER ALARMS continued 116D 116E 116F 1170 1171 1172 1173 1174 1175 1176 1177 POWER FACTOR ALARMS 1178 1179 117A 117B 117C 117D 117E 117F 1180 1181 1182 1183 1184 1185 1186 1187 1188 to 118F DEMAND ALARMS 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 119A 119B 119C 119D DESCRIPTION Negative Real Power Relay Negative Real Power Level in kW Negative Real Power Delay Positive Reactive Power Relay Positive Reactive Power Level in kVAR Positive Reactive Power Delay Negative Reactive Power Relay Negative Reactive Power Delay Positive Real Power Level in MW Negative Real Power Level in MW Negative Reactive Power Level in MVAR Power Factor Lead 1 Relay Power Factor Lead 1 Pickup Level Power Factor Lead 1 Dropout Level Power Factor Lead 1 Delay Power Factor Lag 1 Relay Power Factor Lag 1 Pickup Level Power Factor Lag 1 Dropout Level Power Factor Lag 1 Delay Power Factor Lead 2 Relay Power Factor Lead 2 Pickup Level Power Factor Lead 2 Dropout Level Power Factor Lead 2 Delay Power Factor Lag 2 Relay Power Factor Lag 2 Pickup Level Power Factor Lag 2 Dropout Level Power Factor Lag 2 Delay Reserved Reserved Phase A Current Demand Relay Phase A Current Demand Level Phase B Current Demand Relay Phase B Current Demand Level Phase C Current Demand Relay Phase C Current Demand Level Neutral Current Demand Relay Neutral Current Demand Level Positive Real Power Demand Relay Positive Real Power Demand Level 0 to 4 10 to 7500 0 to 4 10 to 7500 0 to 4 10 to 7500 0 to 4 10 to 7500 0 to 4 1 to 65000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 --A --A --A --A --kW --kvar --kVA F29 F1 F29 F1 F29 F1 F29 F1 F29 F1 F29 F1 F29 F1 0=OFF 100 A 0=OFF 100 A 0=OFF 100 A 0=OFF 100 A 0=OFF 1000 kW 0=OFF 1000 kvar 0=OFF 1000 kVA RANGE 0 to 4 1 to 65000 5 to 6000 0 to 4 1 to 65000 5 to 6000 0 to 4 5 to 6000 1 to 65000 1 to 65000 STEP VALUE 1 1 5 1 1 5 1 1 5 1 1 1 1 1 1 1 5 1 1 1 5 1 1 1 5 1 1 1 5 UNITS and SCALE --kW 0.1 x s --kVAR 0.1 x s --kVAR 0.1 x s 0.01 MW 0.01 MW 0.01 MVAR 0.01 MVAR --0.01 x PF 0.01 x PF 0.1 x s --0.01 x PF 0.01 x PF 0.1 x s --0.01 x PF 0.01 x PF 0.1 x s --0.01 x PF 0.01 x PF 0.1 x s FORMAT F29 F1 F1 F29 F1 F1 F29 F1 F1 F1 F1 F1 F1 F29 F1 F1 F1 F29 F1 F1 F1 F29 F1 F1 F1 F29 F1 F1 F1 FACTORY DEFAULT 0=OFF 1000 kW 100=10.0 s 0=OFF 1000 kVAR 100=10.0 s 0=OFF 1000 kVAR 100=10.0 s 10.00MW 10.00MW 10.00MVAR 10.00MVAR 0=OFF 0.99 1.00 100=10.0 s 0=OFF 0.99 1.00 100=10.0 s 0=OFF 0.99 1.00 100=10.0 s 0=OFF 0.99 1.00 100=10.0 s

Negative Reactive Power Level in kVAR 1 to 65000

Positive Reactive Power Level in MVAR 1 to 65000 1 to 65000 0 to 4 0 to 100 0 to 100 5 to 6000 0 to 4 0 to 100 0 to 100 5 to 6000 0 to 4 0 to 100 0 to 100 5 to 6000 0 to 4 0 to 100 0 to 100 5 to 6000

Positive Reactive Power Demand Relay 0 to 4 Positive Reactive Power Demand Level 1 to 65000 Apparent Power Demand Relay Apparent Power Demand Level 0 to 4 1 to 65000

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM50

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 38 of 43)


GROUP ADDR (HEX) 119E 119F DEMAND ALARMS continued 11A0 11A1 11A2 to 11A7 PULSE INPUT ALARMS 11A8 11A9 11AA 11AB to 11AF MISC. ALARMS 11B0 11B1 11B2 11B3 11B4 11B5 11B6 11B7 PULSE INPUT ALARMS 11B8 11B9 11BA 11BB 11BC 11BD 11BE 11BF 11C0 11C1 11C2 11C3 11C4 to 11C7 SIMULATION 11C8 11C9 11CA 11CB 11CC 11CD 11CE 11CF DESCRIPTION Negative Real Power Demand Relay Negative Real Power Demand Level Negative Reactive Power Demand Relay Negative Reactive Power Demand Level Reserved Reserved Pulse Input 1 Relay Pulse Input 1 Level Pulse Input 1 Delay Reserved Reserved Serial COM1 Failure Alarm Delay Serial COM2 Failure Alarm Delay Clock Not Set Alarm Data Log 1 Percentage Full Alarm Level Data Log 2 Percentage Full Alarm Level Reserved Reserved Reserved Pulse Input 2 Relay Pulse Input 2 Level Pulse Input 2 Delay Pulse Input 3 Relay Pulse Input 3 Level Pulse Input 3 Delay Pulse Input 4 Relay Pulse Input 4 Level Pulse Input 4 Delay Totalized Pulse Input Relay Totalized Pulse Input Level Totalized Pulse Input Delay Reserved Reserved Current/Voltage Simulation Current/Voltage Simulation Time Phase A Current Phase B Current Phase C Current Neutral Current Vax Voltage Vbx Voltage 0 to 1 5 to 305 0 to 10000 0 to 10000 0 to 10000 0 to 10000 0 to 65000 0 to 65000 1 5 1 1 1 1 1 1 --min A A A A V V F11 F1 F1 F1 F1 F1 F1 F1
*****

RANGE 0 to 4 1 to 65000 0 to 4 1 to 65000

STEP VALUE 1 1 1 1

UNITS and SCALE --kW --kvar

FORMAT F29 F1 F29 F1

FACTORY DEFAULT 0=OFF 1000 kW 0=OFF 1000 kvar

0 to 4 1 to 65000 5 to 6000 5 to 61*** 5 to 61*** 0 to 1 50 to 101*** 50 to 101***

1 1 5 1 1 1 1 1

----0.1 x s s s --% %

F29 F1 F1 F1 F1 F11 F1 F1

0=OFF 100 100=10.0 s 61=OFF 61=OFF 0 = DISABLED 101=OFF 101=OFF

0 to 4 1 to 65000 5 to 6000 0 to 4 1 to 65000 5 to 6000 0 to 4 1 to 65000 5 to 6000 0 to 4 1 to 65000 5 to 6000

1 1 5 1 1 5 1 1 5 1 1 5

----0.1 x s ----0.1 x s ----0.1 x s ----0.1 x s

F29 F1 F1 F29 F1 F1 F29 F1 F1 F29 F1 F1

0=OFF 100 100=10.0 s 0=OFF 100 100=10.0 s 0=OFF 100 100=10.0 s 0=OFF 100 100=10.0 s 0=OFF 15 min 0A 0A 0A 0A 0V 0V

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM51

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 39 of 43)


GROUP ADDR (HEX) 11D0 11D1 11D2 SIMULATION continued 11D3 11D4 11D5 11D6 11D7 11D8 11D9 11DA 11DB 11DC 11DD 11DE 11DF 11E0 11E1 11E2 11E3 TIME ALARM 11E4 11E5 11E6 11E7 11E8 11E9 to 11EF PROGRAMMABLE MESSAGE 11F0 11F1 11F2 11F3 11F4 11F5 11F6 11F7 11F8 11F9 11FA 11FB 11FC 11FD 11FE 11FF 1200 1201 DESCRIPTION Vcx Voltage Phase Angle Analog Output Simulation Analog Output Simulation Time Analog Output 1 Analog Output 2 Analog Output 3 Analog Output 4 Analog Input Simulation Analog Input Simulation Time Analog Input Switch Input Simulation Switch Input Simulation Time Switch Input A Switch Input B Switch Input C Switch Input D Reserved Reserved Reserved Time Relay Pickup Time Hours/Minutes Pickup Time Seconds Dropout Time Hours/Minutes Dropout Time Seconds Reserved Reserved Programmable message chars 1 & 2 Programmable message chars 3 & 4 Programmable message chars 5 & 6 Programmable message chars 7 & 8 32 to 127 32 to 127 32 to 127 32 to 127 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 Ph on e: 9 05 -2 94 -6 22 2 GE in du st ri al .c om 0 to 4 0 to 65535 0 to 59000 0 to 65535 0 to 59000 1 1 1000 1 1000 --hr./min ms hr./min ms F29 F22 F1 F22 F1 0=OFF 12:00 0 12:00 0 RANGE 0 to 65000 0 to 359 0 to 1 5 to 305 0 to 1201*** 0 to 1201*** 0 to 1201*** 0 to 1201*** 0 to 1 5 to 305 40 to 201 0 to 1 5 to 305 0 to 1 0 to 1 0 to 1 0 to 1 STEP VALUE 1 1 1 5 1 1 1 1 1 5 1 1 5 1 1 1 1 UNITS and SCALE V degrees --min 0.1 x % 0.1 x % 0.1 x % 0.1 x % --min 0.1 x mA --min --------FORMAT F1 F1 F11 F1***** F1 F1 F1 F1 F11 F1***** F1 F11 F1***** F27 F27 F27 F27 FACTORY DEFAULT 0V 0 degrees 0=OFF 15 min 1201=OFF 1201=OFF 1201=OFF 1201=OFF 0=OFF 15 min 201=OFF 0=OFF 15 min 0=OPEN 0=OPEN 0=OPEN 0=OPEN

Programmable message chars 9 & 10 32 to 127 Programmable message chars 11 & 12 32 to 127 Programmable message chars 13 & 14 32 to 127 Programmable message chars 15 & 16 32 to 127 Programmable message chars 17 & 18 32 to 127 Programmable message chars 19 & 20 32 to 127 Programmable message chars 21 & 22 32 to 127 Programmable message chars 23 & 24 32 to 127 Programmable message chars 25 & 26 32 to 127 Programmable message chars 27 & 28 32 to 127 Programmable message chars 29 & 30 32 to 127 Programmable message chars 31 & 32 32 to 127 Programmable message chars 33 & 34 32 to 127 Programmable message chars 35 & 36 32 to 127

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM52

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 40 of 43)


GROUP ADDR (HEX) 1202 1203 PROGRAMMABLE MESSAGE continued FLASH MESSAGE 1204 to 120F 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 121A 121B 121C 121D 121E 121F 1220 1221 1222 1223 1224 to 125F DATA LOGGER 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 126A 126B to 126F 1270 1271 1272 1273 DESCRIPTION RANGE STEP VALUE 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 UNITS and SCALE ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII ASCII FORMAT F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 FACTORY DEFAULT /p m

Programmable message chars 37 & 38 32 to 127 Programmable message chars 39 & 40 32 to 127 Reserved Reserved Flash message characters 1 and 2 Flash message characters 3 and 4 Flash message characters 5 and 6 Flash message characters 7 and 8 Flash message characters 9 and 10 Flash message characters 11 and 12 Flash message characters 13 and 14 Flash message characters 15 and 16 Flash message characters 17 and 18 Flash message characters 19 and 20 Flash message characters 21 and 22 Flash message characters 23 and 24 Flash message characters 25 and 26 Flash message characters 27 and 28 Flash message characters 29 and 30 Flash message characters 31 and 32 Flash message characters 33 and 34 Flash message characters 35 and 36 Flash message characters 37 and 38 Flash message characters 39 and 40 Reserved Reserved Log 1 Interval (high) Log 1 Interval (low) Log 2 Interval (high) Log 2 Interval (low) Log 1 Mode Log 2 Mode Log Size Determination Log 1 Size Data Log Memory Access Block Number Stop Data Log 1 Stop Data Log 2 Reserved Reserved Ia Log Assignment Ib Log Assignment Ic Log Assignment Iavg Log Assignment 0 to 3 0 to 3 0 to 3 0 to 3 1 to 86400 1 to 86400 0 to 1 0 to 1 0 to 1 0 to 100 0 to 511 0 to 1 0 to 1 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127

1 1 1 1 1 1 1 1 1 1 1 1 1

s s ------% ------ ---------

F3 F3 F32 F32 F33 F1 F1 F31 F31 F34 F34 F34 F34

3600 3600 0 = RUN TO FILL 0 = RUN TO FILL 0 = AUTOMATIC 50% 0 0=NO 0=NO 0 = NONE 0 = NONE 0 = NONE 0 = NONE

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM53

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 41 of 43)


GROUP ADDR (HEX) 1274 1275 DATA LOGGER continued 1276 1277 1278 1279 127A 127B 127C 127D 127E 127F 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 128A 128B 128C 128D 128E 128F 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 129A 129B 129C 129D 129E 129F DESCRIPTION In Log Assignment I Unbalance Log Assignment Van Log Assignment Vbn Log Assignment Vcn Log Assignment Vp avg Log Assignment Vab Log Assignment Vbc Log Assignment Vca Log Assignment Vl avg Log Assignment V Unbalance Log Assignment Pa Log Assignment Qa Log Assignment Sa Log Assignment PFa Log Assignment Pb Log Assignment Qb Log Assignment Sb Log Assignment PFb Log Assignment Pc Log Assignment Qc Log Assignment Sc Log Assignment PFc Log Assignment P3 Log Assignment Q3 Log Assignment S3 Log Assignment PF3 Log Assignment Frequency Log Assignment Positive kWh Log Assignment Negative kWh Log Assignment Positive kvarh Log Assignment Negative kvarh Log Assignment kVAh Log Assignment Ia Demand Log Assignment Ib Demand Log Assignment Ic Demand Log Assignment In Demand Log Assignment P3 Demand Log Assignment Q3 Demand Log Assignment S3 Demand Log Assignment Ia THD Log Assignment Ib THD Log Assignment Ic THD Log Assignment In THD Log Assignment RANGE 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 STEP VALUE 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 UNITS and SCALE ----------------------------------------------------------------------------------------FORMAT F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 F34 FACTORY DEFAULT 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM54

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 42 of 43)


GROUP ADDR (HEX) 12A0 12A1 12A2 12A3 DATA LOGGER continued 12A4 12A5 12A6 to 12BF EVENT RECORDER 12C0 12C1 12C2 12C3 12C4 12C5 12C6 to 12CF TRACE MEMORY 12D0 12D1 12D2 12D3 12D4 12D5 12D6 12D7 12D8 12D9 12DA 12DB 12DC 12DD 12DE 12DF 12E0 12E1 12E2 12E3 to 12EF PRODUCT OPTIONS 12F0 12F1 12F2 12F3 12F4 12F5 DESCRIPTION Van THD Log Assignment Vbn THD Log Assignment Vcn THD Log Assignment Vab THD Log Assignment Vbc THD Log Assignment Analog Input Log Assignment Reserved Reserved Event Recorder Memory Access Event 0 to 65535 Num Event Recorder Operation Event Recorder Event Enable Flags 1 Event Recorder Event Enable Flags 2 Event Recorder Event Enable Flags 3 Event Recorder Event Enable Flags 4 Reserved Reserved Trace Memory Usage Trace Memory Trigger Mode Ia Overcurrent Trigger Level Ib Overcurrent Trigger Level Ic Overcurrent Trigger Level In Overcurrent Trigger Level Va Overvoltage Trigger Level Vb Overvoltage Trigger Level Vc Overvoltage Trigger Level Va Undervoltage Trigger Level Vb Undervoltage Trigger Level Vc Undervoltage Trigger Level Switch Input A Trigger Switch Input B Trigger Switch Input C Trigger Switch Input D Trigger Trace Memory Trigger Delay Trace Memory Waveform Selection Trace Memory Trigger Relay Reserved Reserved Product Options Upgrade 1 to 23 1 1 1 1 1 1 ------------F116 F1 F1 F1 F1 F1 1=PQMII 0 0 0 0 0 Product Modifications Upgrade MOD1 0 to 999 Product Modifications Upgrade MOD2 0 to 999 Product Modifications Upgrade MOD3 0 to 999 Product Modifications Upgrade MOD4 0 to 999 Product Modifications Upgrade MOD5 0 to 999 0 to 2 0 to 1 1 to 151*** 1 to 151*** 1 to 151*** 1 to 151*** 20 to 151*** 20 to 151*** 20 to 151*** 20 to 151*** 20 to 151*** 20 to 151*** 0 to 2 0 to 2 0 to 2 0 to 2 0 to 30 0 to 6 0 to 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ----% CT % CT % CT % CT % VT % VT % VT % VT % VT % VT --------cycles ----F37 F38 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F39 F39 F39 F39 F1 F40 F29 0=1x36 cycles 0=ONE SHOT 151=OFF 151=OFF 151=OFF 151=OFF 151=OFF 151=OFF 151=OFF 151=OFF 151=OFF 151=OFF 0=OFF 0=OFF 0=OFF 0=OFF 0 cycles 0=Ia 0=OFF 0 to 1 0 to 65535 0 to 65535 0 to 65535 0 to 65535 1 1 1 1 1 1 ------------F1 F11 F105 F106 F107 F112 0 0 = DISABLE 65535 65535 65535 65535 RANGE 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 0 to 3 STEP VALUE 1 1 1 1 1 1 UNITS and SCALE ------------FORMAT F34 F34 F34 F34 F34 F34 FACTORY DEFAULT 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE 0 = NONE

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM55

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 1: PQMII Memory Map (Sheet 43 of 43)


GROUP ADDR (HEX) 12F6 12F7 12F8 12F9 PRODUCT OPTIONS continued 12FA 12FB 12FC 12FD 12FE 12FF 1300 to 131F
VOLTAGE DISTURBANCE RECORDER

DESCRIPTION Passcode Input 1 Passcode Input 2 Passcode Input 3 Passcode Input 4 Passcode Input 5 Passcode Input 6 Passcode Input 7 Passcode Input 8 Passcode Input 9 Passcode Input 10 Reserved Reserved Record Selector Sag Level % Nominal Swell Level % Nominal Reserved Reserved

RANGE 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 32 to 127 0 to 65535 20 to 100 101 to 151

STEP VALUE 1 1 1 1 1 1 1 1 1 1 1 1 1

UNITS and SCALE -------------------- --% %

FORMAT F10 F10 F10 F10 F10 F10 F10 F10 F10 F10 F1 F1*** F1***

FACTORY DEFAULT 32 32 32 32 32 32 32 32 32 32 0 OFF OFF

1320 1321 1322 1323 to 132F

Notes: *Data type depends on the Command Operation Code. ** Any valid Actual Values or Setpoints address. *** Maximum Setpoint value represents OFF. **** Minimum Setpoint value represents OFF. ***** Maximum Setpoint value represents UNLIMITED.

COMM56

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

3.4

Memory Map Data Formats


Table 2: Data Formats (Sheet 1 of 18)
Code F1 F2 F3 F4 F5 Description Unsigned Integer - Numerical Data Signed Integer - Numerical Data Unsigned Long Integer - Numerical Data Signed Long Integer - Numerical Data Hardware Version Code 1=A 2=B 26 = Z F6 Unsigned Integer - Current Key Press 0000 = no key FE01 = Enter FE02 = Menu FE04 = Message Right FE08 = Value Up FD01 = Reset FD02 = Message Left FD04 = Message Up FD08 = Value Down FB01 = Escape FB02 = Message Down F7 Unsigned Integer - Command 1 = Reset 2 = Alarm Relay On 3 = Alarm Relay Off 4 = Auxiliary Relay 1 On 5 = Auxiliary Relay 1 Off 6 = Auxiliary Relay 2 On 7 = Auxiliary Relay 2 Off 8 = Auxiliary Relay 3 On 9 = Auxiliary Relay 3 Off 10 = Set Clock Time Bitmask FFFF FFFF FFFFFFFF FFFFFFFF FFFF ---- --FFFF ----------------------FFFF ---------------------

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM57

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 2 of 18)


Code 11 = Set Clock Date 12 = Display 40 char. Flash Msg for 5 s 13 = Simulate Keypress 14 = Clear Energy Values 15 = Clear Max. Demand Values 16 = Clear Min./Max. Current Values 17 = Clear Min./Max. Voltage Values 18 = Clear Min./Max. Power Values 19 = Clear Max. THD Values 20 = Clear Switch Input Pulse Count 21 = High Speed Sampling Trigger 22 = Upload Mode Entry 2 23 = Upload Mode Entry 1 24 = Factory Setpoints Reload 2 25 = Factory Setpoints Reload 1 26 = Test Relays and LEDs 27 = Waveform Capture Trigger 28 = Start Data Log(s) 29 = Stop Data Log(s) 30 = Resize Data Logs (valid only if both logs are stopped) 31 = Clear Event Record 32= Trigger Trace Memory 33= Re-arm Trace Mem. 34= Clear All Demand 35= Clear Min./Max. Freq 40 = Clear Voltage Disturbance Recorder F8 Unsigned Integer - Keypress Simulation 49 = '1' = Menu 50 = '2' = Escape 51 = '3' = Reset 52 = '4' = Enter 53 = '5' = Message Up 54 = '6' = Message Down 55 = '7' = Message Left Description -----------------------------------------------------FFFF --------------Bitmask

COMM58

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 3 of 18)


Code Description 56 = '8' = Message Right 57 = '9' = Value Up 97 = 'a' = Value Down F9 Unsigned Integer - Relay/LED Test Data Alarm Relay Auxiliary Relay 1 Auxiliary Relay 2 Auxiliary Relay 3 Alarm LED Program LED Simulation LED Self Test LED Alarm Relay LED Aux 1 Relay LED Aux 2 Relay LED Aux 3 Relay LED F10 Two ASCII Characters 32-127 = ASCII Character 32-127 = ASCII Character F11 Unsigned Integer - Enable/Disable 0 = Disable/OFF 1 = Enable/ON F12 Unsigned Integer - Modbus Baud Rate 0 = 1200 1 = 2400 2 = 4800 3 = 9600 4 = 19200 F13 Unsigned Integer - Parity Type 0 = None 1 = Even 2 = Odd F14 UNSIGNED INTEGER - ANALOG OUTPUT TYPE 0 = Not Used ------FFFF 0001 0002 0004 0008 0010 0020 0040 0080 0100 0200 0400 0800 FFFF 7F00 007F FFFF ----FFFF ----------FFFF ------FFFF --Bitmask

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM59

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 4 of 18)


Code 1 = Phase A Current 2 = Phase B Current 3 = Phase C Current 4 = Neutral Current 5 = Avg Phase Current 6 = Current Unbalance 7 = Voltage Van 8 = Voltage Vbn 9 = Voltage Vcn 10 = Voltage Vab 11 = Voltage Vbc 12 = Voltage Vca 13 = Avg Phase Voltage 14 = Average Line Voltage 15 = Voltage Unbalance 16 = Frequency 17 = 3 Power Factor 18 = 3 Real Power (kW) 19 = 3 Reactive Pwr (kvar) 20 = 3 Apparent Pwr (kVA) 21 = 3 Real Power (MW) 22 = 3 Reactive Power (Mvar) 23 = 3 Apparent Pwr (MVA) 24 = Ph A Power Factor 25 = Phase A Real Power 26 = Ph A Reactive Power 27 = Ph A Apparent Power 28 = Ph B Power Factor 29 = Phase B Real Power 30 = Ph B Reactive Power 31 = Ph B Apparent Power 32 = Ph C Power Factor 33 = Phase C Real Power 34 = Ph C Reactive Power Description --------------------------------------------------------------------Bitmask

COMM60

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 5 of 18)


Code Description 35 = Ph C Apparent Power 36 = 3 Positive Real Energy Used 37 = 3Positive Reactive Energy Used 38 = 3 Negative Real Energy Used 39 = 3 Negative Reactive Energy Used 40 = 3 Apparent Energy Used 41 = Ph A Current Dmd 42 = Ph B Current Dmd 43 = Ph C Current Dmd 44 = Neutral Current Dmd 45 = 3 Real Power Dmd 46 = 3 Reactive Power Demand 47 = 3 Apparent Power Demand 48 = 3 Current THD 49 = 3 Voltage THD 50 = Phase A Current THD 51 = Phase B Current THD 52 = Phase C Current THD 53 = Voltage Van THD 54 = Voltage Vbn THD 55 = Voltage Vcn THD 56 = Voltage Vab THD 57 = Voltage Vbc THD 58 = Neutral Current THD 59 = Serial Control F15 Unsigned Integer VT Wiring 0 = Off 1 = 4 Wire Wye / 3 VTs 2 = 4 Wire Wye Direct 3 = 4 Wire Wye / 2 VTs 4 = 3 Wire Delta / 2 VTs 5 = 3 Wire Direct 6 = Single Phase Direct --------------------------------------------------FFFF --------------Bitmask

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM61

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 6 of 18)


Code F16 Description Unsigned Integer - Neutral Current Sensing 0 = Off 1 = Separate CT 2 = Calculated F17 Unsigned Integer -Failsafe/Non-failsafe 0 =Non-failsafe 1 = Failsafe F18 Unsigned Integer - Unlatched / Latched 0 = Unlatched 1 = Latched F19 Unsigned Integer Aux Relay Function 0 = Off 1 = Aux1 Relay 2 = Aux2 Relay 3 = Aux3 Relay F20 Unsigned Integer - Switch Function 0 = Not Used 1 = Alarm Relay 2 = Auxiliary Relay 1 3 = Auxiliary Relay 2 4 = Auxiliary Relay 3 5 = Pulse Input 1 6 = New Demand Period 7 = Setpoint Access 8 = Select Main/Alt Analog Output 9 = Select Main/Alt Analog Input 10 = Pulse Input 2 11 = Pulse Input 3 12 = Pulse Input 4 13 = Clear Energy 14 = Clear Demand F22 Time Hours/minutes Hours: 0 = 12 am, 1 = 1 am,..., 23 = 11 pm Bitmask FFFF ------FFFF ----FFFF ----FFFF --------FFFF ------------------------------FFFF FF00

COMM62

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 7 of 18)


Code Description Minutes: 0 to 59 in steps of 1 F23 Unsigned Integer - Time Seconds Seconds: 0 = 0.000s,..., 59999 = 59.999s F24 Date Month/day Month: 1=January,..., 12=December Day: 1 to 31 in steps of 1 F25 Unsigned Integer - Date Year Year: 1995, 1996,... F26 Bitmask 00FF FFFF --FFFF FF00 00FF FFFF ---

Unsigned Integer: Harmonic Spectrum Parameter FFFF 0 = None 1 = Phase A Current 2 = Phase B Current 3 = Phase C Current 4 = Neutral Current 5 = Voltage Vax 6 = Voltage Vbx 7 = Voltage Vcx ----------------FFFF ----FFFF ------FFFF ----------FFFF -------

F27

Unsigned Integer - Switch Activation 0 = Open 1 = Closed

F28

Unsigned Integer: Demand Calculation 0 = Thermal Exponential 1 = Block Interval 2 = Rolling Interval

F29

Unsigned Integer: Alarm/Control Relay 0 = Off 1 = Alarm Relay 2 = Auxiliary Relay 1 3 = Auxiliary Relay 2 4 = Auxiliary Relay 3

F30

Unsigned Integer: Phases Required 0 = Any One 1 = Any Two 2 = All Three

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM63

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 8 of 18)


Code F31 Description Unsigned Integer: Yes/No 0 = No 1 = Yes F32 Unsigned Integer: Data Log Mode 0 = Run to Fill 1 = Circulate F33 Unsigned Integer: Data Log Size Determination 0 = Automatic 1 = From Setpoint F34 Unsigned Integer: Data Log Selection 0 = None 1 = Log 1 2 = Log 2 3 = Log 1 and Log 2 F35 Unsigned Integer: Data Log Status 0 = Stopped 1 = Running F36 Unsigned Integer: Cause Of Event 0 = No Event 1 = Clear Event Record 2 = Power On 3 = Power Off 4 = Reset 5 = Setpt Access Enabled 6 = Switch A Alarm 7 = Switch B Alarm 8 = Switch C Alarm 9 = Switch D Alarm 10 = COM1 Fail Alarm 11 = COM2 Fail Alarm 12 = Self Test Alarm 13 = Clock Not Set Alarm 14 = Params Not Set Alrm Bitmask FFFF ----FFFF ----FFFF ----FFFF --------FFFF ----FFFF -------------------------------

COMM64

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 9 of 18)


Code Description 15 = Underfreq Alarm 16 = Overfreq Alarm 17 = Undercurrent Alarm 18 = Overcurrent Alarm 19 = Neutral O/C Alarm 20 = Undervoltage Alarm 21 = Overvoltage Alarm 22 = I Unbalance Alarm 23 = V Unbalance Alarm 24 = Phase Rev Alarm 25 = PF Lead 1 Alarm 26 = PF Lead 2 Alarm 27 = PF Lag 1 Alarm 28 = PF Lag 2 Alarm 29 = Positive kW Alarm 30 = Negative kW Alarm 31 = Positive kvar Alarm 32 = Negative kvar Alarm 33 = +kW Demand Alarm 34 = +kvar Dmd Alarm 35 = kW Demand Alarm 36 = kvar Dmd Alarm 37 = kVA Demand Alarm 38 = Phase A Current Demand Alarm 39 = Phase B Current Demand Alarm 40 = Phase C Current Demand Alarm 41 = Neutral Current Demand Alarm 42 = Pulse Input 1 Alarm 43 = Current THD Alarm 44 = Voltage THD Alarm 45 = Analog In Main Alm 46 = Analog In Alt Alarm 47 = Data Log 1 Alarm 48 = Data Log 2 Alarm --------------------------------------------------------------------Bitmask

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM65

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 10 of 18)


Code Description 49 = Switch A Alarm Clear 50 = Switch B Alarm Clear 51 = Switch C Alarm Clear 52 = Switch D Alarm Clear 53 = COM1 Fail Alarm Clr 54 = COM2 Fail Alarm Clr 55 = Self Test Alarm Clear 56 = Clock Not Set Alarm Clear 57 = Parameters Not Set Alarm Clear 58 = Underfreq Alarm Clr 59 = Overfreq Alarm Clear 60 = U/C Alarm Clear 61 = O/C Alarm Clear 62 = Neutral Overcurrent Alarm Clear 63 = U/V Alarm Clear 64 = O/V Alarm Clear 65 = Current Unbalance Alarm Clear 66 = Voltage Unbalance Alarm Clear 67 = Phase Reversal Alarm Clear 68 = PF Lead 1 Alarm Clr 69 = PF Lead 2 Alarm Clr 70 = PF Lag 1 Alarm Clear 71 = PF Lag 2 Alarm Clear 72 = +kW Alarm Clear 73 = kW Alarm Clear 74 = +kvar Alarm Clear 75 = kvar Alarm Clear 76 = +kW Demand Alarm Clear 77 = +kvar Demand Alarm Clear 78 = kW Demand Alarm Clear 79 = kvar Demand Alarm Clear 80 = kVA Demand Alarm Clear 81 = Phase A Current Demand Alarm Clear 82 = Phase B Current Demand Alarm Clear --------------------------------------------------------------------Bitmask

COMM66

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 11 of 18)


Code Description 83 = Phase C Current Demand Alarm Clear 84 = Neutral Current Demand Alarm Clear 85 = Pulse In 1 Alarm Clr 86 = I THD Alarm Clear 87 = V THD Alarm Clear 88 = Analog Input Main Alarm Clear 89 = Analog Input Alternate Alarm Clear 90 = Data Log 1 Alarm Clr 91 = Data Log 2 Alarm Clr 92 = Pulse Input 2 Alarm 93 = Pulse Input 3 Alarm 94 = Pulse Input 4 Alarm 95 = Pulse Count Total Alarm 96 = Pulse In 2 Alarm Clr 97 = Pulse In 3 Alarm Clr 98 = Pulse In 4 Alarm Clr 99 = Pulse Input Total Alarm Clear 100 = Time Alarm 101 = Time Alarm Clear 102 = Trace Memory Trig F37 Trace Memory Usage 0 = 1 x 36 cycles 1 = 2 x 18 cycles 2 = 3 x 12 cycles F38 Trace Memory Trigger Mode 0 = One Shot 1 = Retrigger F39 Trace Memory Switch Input Trigger 0 = Off 1 = Open-to-closed 2 = Closed-to-open F40 Trace Memory Waveform Selection 0 = Ia 1 = Ib ----------------------------------------FFFF ------FFFF ----FFFF ------FFFF ----Bitmask

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM67

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 12 of 18)


Code 2 = Ic 3 = In 4 = Va 5 = Vb 6 = Vc F41 Trace Memory Triggers 0 = Trace Memory Not Triggered 1 = Ia Overcurrent 2 = Ib Overcurrent 3 = Ic Overcurrent 4 = In Overcurrent 5 = Va Overvoltage 6 = Vb Overvoltage 7 = Vc Overvoltage 8 = Va Undervoltage 9 = Vb Undervoltage 10 = Vc Undervoltage 11 = Switch Input A 12 = Switch Input B 13 = Switch Input C 14 = Switch Input D 15 = Serial Comms. F43 Pulse Input Totalization 0 = 1+2 1 = 1+3 2 = 1+4 3 = 2+3 4 = 2+4 5 = 3+4 6 = 1+2+3 7 = 1+3+4 8 = 2+3+4 9 = 1+2+3+4 10 = 1+2+4 Description ----------FFFF --------------------------------FFFF ----------------------Bitmask

COMM68

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 13 of 18)


Code F44 Phase CT Wiring 0 = Phase A, B and C 1 = Phase A and B only 2 = Phase A and C only 3 = Phase A only F45 CPU Speed 0 = 16 MHz 1 = 25 MHz F47 DNP Port 0 = None 1 = RS232 2 = COM1 3 = COM2 F100 PQMII Options PQMII (Display Version) T20 (4-20mA Transducer) T1 (0-1mA Transducer) C (Control) Option A (Power Analysis) Option F101 Switch Input Status (0 = Open, 1 = Closed) Switch A Switch B Switch C Switch D F102 LED Status Flags: (0=Inactive, 1=Active) Aux 1 Relay Aux 2 Relay Aux 3 Relay Alarm Program Simulation Alarm Relay Self Test Description Bitmask FFFF --------FFFF ----FFFF --------FFFF 0001 0002 0004 0008 0010 FFFF 0100 0200 0400 0800 FFFF 0001 0002 0004 0008 0010 0020 0040 0080

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM69

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 14 of 18)


Code F103 Description LED Attribute Flags (0 = Flashing, 1 = Solid; Active) Aux 1 Relay Aux 2 Relay Aux 3 Relay Alarm Program Simulation Alarm Relay Self Test F104 Output Relay Flag (0=de-energized, 1=energized) Alarm Relay Auxiliary Relay 1 Auxiliary Relay 2 Auxiliary Relay 3 F105 Alarm Status Flags 1 Phase Undercurrent Alarm Phase Overcurrent Alarm Neutral Overcurrent Alarm Undervoltage Alarm Overvoltage Alarm Current Unbalance Alarm Voltage Unbalance Alarm Voltage Phase Reversal PF Lead Alarm 1 PF Lead Alarm 2 Power Factor Lag Alarm 1 Power Factor Lag Alarm 2 Positive Real Power Alarm Neg Real Power Alarm Pos Reactive Power Alarm Neg Reactive Power Alarm F106 Alarm Status Flags 2 Underfrequency Alarm Bitmask FFFF 0001 0002 0004 0008 0010 0020 0040 0080 FFFF 0001 0002 0004 0008 FFFF 0001 0002 0004 0008 0010 0020 0040 0080 0100 0200 0400 0800 1000 2000 4000 8000 FFFF 0001

COMM70

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 15 of 18)


Code Description Overfrequency Alarm Positive Real Power Demand Alarm Positive Reactive Power Demand Alarm Apparent Power Demand Alarm Ph A Current Dmd Alarm Ph B Current Dmd Alarm Ph C Current Dmd Alarm Neutral Current Demand Alarm Switch A Alarm Switch B Alarm Switch C Alarm Switch D Alarm Internal Fault Alarm Serial COM1 Failure Alarm Serial COM2 Failure Alarm F107 Alarm Status Flags 3 Clock Not Set Alarm Parameters Not Set Alarm Pulse Input 1 Alarm Current THD Alarm Voltage THD Alarm Analog Input Main Alarm Analog Input Alt Alarm Data Log 1 Data Log 2 Negative Real Power Demand Alarm Negative Reactive Power Demand Alarm Pulse Input 2 Alarm Pulse Input 3 Alarm Pulse Input 4 Alarm Totalized Pulse In Alarm Time Alarm F108 Internal Fault Error Code ADC Ref Out of Range Bitmask 0002 0004 0008 0010 0020 0040 0080 0100 0200 0400 0800 1000 2000 4000 8000 FFFF 0001 0002 0004 0008 0010 0020 0040 0080 0100 0200 0400 0800 1000 2000 4000 8000 FFFF 0001

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM71

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 16 of 18)


Code Reserved Switch Input Circuit Fault Reserved F109 General Status Alarm Present Clock Not Set Clock Drifting Data Log 1 Running Data Log 2 Running Description Bitmask 0002 0004 0008 FFFF 0001 0002 0004 0008 0010

COMM72

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 17 of 18)


Code F110 Description Data Logger Numbers Log 1 Log 2 F111 Event Record Switches And Relay Status Alarm Relay Auxiliary Relay 1 Auxiliary Relay 2 Auxiliary Relay 3 F112 Event Recorder Event Enable Flags 4 Power On Power Off Alarm / Control Reset Setpoint Access Enable F113 Trace Memory Triggered Flag Status 0 = Trace Memory Not Triggered 1 = Trace Memory Triggered 2 to 16 = Not Used F114 Power Alarms Level Base Units 0 = kW/kVAR 1 = MW/MVAR 2 to 16 = Not Used F115 Phase Overcurrent Activation 0 = Average 1 = Maximum 2 to 16 = Not Used F116 Product Options Upgrade 1=PQMII 3=PQMII-T20 5=PQMII-T1 7=PQMII-C 9=PQMII-T20-C 11=PQMII-T1-C 13=PQMII-A 15=PQMII-T20-A FFFF ------FFFF ------FFFF ----------------Bitmask FFFF 0001 0002 FFFF 0001 0002 0004 0008 FFFF 0001 0002 0004 0008 FFFF -----

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM73

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 2: Data Formats (Sheet 18 of 18)


Code F116 ctd. 17=PQMII-T1-A 19=PQMII-C-A 21=PQMII-T20-C-A 23=PQMII-T1-C-A F117 Invalid Serial Number Flag 0=Serial Number Valid 1= Serial Number Invalid F118 Voltage Disturbance Type Sag Swell Undervoltage Overvoltage F119 Voltage Disturbance Source Voltage Van Voltage Vbn Voltage Vcn Voltage Vab Reserved Voltage Vca Description --------FFFF ----FFFF 0001 0002 0004 0008 FFFF 0001 0002 0004 0008 0010 0020 Bitmask

3.5

Analog Output Parameter Range


Table 3: Analog Output Parameter Range for Serial Ports (Sheet 1 of 3)
No. Analog Out Parameter Range Step Units/scale Default

0 1 2 3 4 5 *

Not Used Phase A Current Phase B Current Phase C Current Neutral Current Average Phase Current

0 0 to 150 0 to 150 0 to 150 0 to 150 0 to 150

0 1 1 1 1 1

--% % % % %

0 0 0 0 0 0

Since values of 0 and +0 both exist for power factor, the value stored in the PQMII serial register is the opposite of the value shown on the display. For example: if a range of 0.23 lead (0.23) to 0.35 lag (+0.35) is required, 77 (100 + 23)and +65 (100 35) must be sent.

COMM74

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 3: Analog Output Parameter Range for Serial Ports (Sheet 2 of 3)


No. Analog Out Parameter Range Step Units/scale Default

6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 *

Current Unbalance Voltage Van Voltage Vbn Voltage Vcn Voltage Vab Voltage Vbc Voltage Vca Average Phase Voltage Average Line Voltage Voltage Unbalance Frequency *3 Phase PF 3 Phase kW 3 Phase kvar 3 Phase kVA 3 Phase MW 3 Phase Mvar 3 Phase MVA *Phase A PF Phase A kW Phase A kvar Phase A kVA *Phase B PF Phase B kW Phase B kvar Phase B kVA *Phase C PF Phase C kW Phase C kvar

0 to 1000 0 to 200 0 to 200 0 to 200 0 to 200 0 to 200 0 to 200 0 to 200 0 to 200 0 to 1000 0 to 7500 99 to +99 32500 to +32500 32500 to +32500 0 to 65400 32500 to +32500 32500 to +32500 0 to 65400 99 to +99 32500 to +32500 32500 to +32500 0 to 65400 99 to +99 32500 to +32500 32500 to +32500 0 to 65400 99 to +99 32500 to +32500 32500 to +32500

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

0.1 x% % % % % % % % % 0.1 x% 0.01 x Hz 0.01 x PF kW kvar kVA 0.1 x MW 0.1 x Mvar 0.1 x MVA 0.01 x PF kW kvar kVA 0.01 x PF kW kvar kVA 0.01 x PF kW kvar

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Since values of 0 and +0 both exist for power factor, the value stored in the PQMII serial register is the opposite of the value shown on the display. For example: if a range of 0.23 lead (0.23) to 0.35 lag (+0.35) is required, 77 (100 + 23)and +65 (100 35) must be sent.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM75

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 3: Analog Output Parameter Range for Serial Ports (Sheet 3 of 3)


No. Analog Out Parameter Range Step Units/scale Default

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 *

Phase C kVA 3 Phase +kWh Used 3 Phase +kvarh Used 3 Phase -kWh Used 3 Phase -kvarh Used 3 Phase kVAh Used Phase A Current Demand Phase B Current Demand Phase C Current Demand Neutral Current Demand 3 Phase kW Demand 3 Phase kvar Demand 3 Phase kVA Demand 3 Phase Current THD Three Phase Voltage THD Phase A Current THD Phase B Current THD Phase C Current THD Voltage Van THD Voltage Vbn THD Voltage Vcn THD Voltage Vab THD Voltage Vbc THD Neutral Current THD Serial Control

0 to 65400 0 to 65400 0 to 65400 0 to 65400 0 to 65400 0 to 65400 0 to 7500 0 to 7500 0 to 7500 0 to 7500 32500 to +32500 32500 to +32500 0 to 65400 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 0 to 1000 32500 to +32500

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

kVA kWh kvarh kWh kvarh kVAh A A A A kW kvar kVA 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % 0.1 % ---

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Since values of 0 and +0 both exist for power factor, the value stored in the PQMII serial register is the opposite of the value shown on the display. For example: if a range of 0.23 lead (0.23) to 0.35 lag (+0.35) is required, 77 (100 + 23)and +65 (100 35) must be sent.

COMM76

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

DNP 3.0 Communications


4.1 DNP 3.0 Device Profile Document
The communications port configured as a DNP slave port must support the full set of features listed in the Level 2 DNP V3.00 Implementation (DNP-L2) described in Chapter 2 of the subset definitions. See the DNP protocol website at http://www.dnp.org for details
DNP 3.0: DEVICE PROFILE DOCUMENT

Vendor Name: General Electric Multilin Inc. Device Name: PQMII Power Quality Meter Highest DNP Level Supported: For Requests: Level 2 For Responses: Level 2 Device Function:  Slave Master

Notable objects, functions, and/or qualifiers supported in addition to the Highest DNP Levels Supported (the complete list is described in the attached table): none Maximum Data Link Frame Size (octets): Transmitted: 249 Received: 292 Maximum Data Link Re-tries:  None Fixed Configurable Requires Data Link Layer Confirmation:  Never Always Sometimes Configurable Requires Application Layer Confirmation: Never Always  When reporting Event Data When sending multi-fragment responses Sometimes Configurable Timeouts while waiting for: Data Link Confirm Complete Appl. Fragment Application Confirm Complete Appl. Response Others: (None)
 None  None None Fixed Fixed  Fixed Variable Variable Variable Configurable Configurable Configurable Configurable

Maximum Application Fragment Size (octets): Transmitted: 2048 Received: 2048 Maximum Application Layer Re-tries:  None Configurable

(fixed value is 5000 milliseconds)  None Fixed Variable

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM77

CHAPTER COMM: COMMUNICATIONS GUIDE

DNP 3.0: DEVICE PROFILE DOCUMENT (Continued)

Executes Control Operations: Write Binary Outputs Select/Operate Direct Operate Direct Operate: No Ack Count > 1 Pulse On Pulse Off Latch On Latch Off Queue Clear Queue

No action is taken if Count is zero; Queue, Clear, Trip, Close, On-Time, and Off-Time fields are ignored  Never Always Sometimes Configurable  Never Always Sometimes Configurable Reports time-tagged Binary Input Change Events when no specific variation requested: Never  Binary Input Change With Time Binary Input Change With Relative Time Configurable Sends Static Data in Unsolicited Responses:  Never When Device Restarts When Status Flags Change Counters Roll Over at: No Counters Reported Configurable  16 Bits  32 Bits Other Value Point-by-point list attached
 No

 Never  Never Never Never  Never Never  Never  Never  Never

Always Always  Always  Always Always Always Always Always Always

Sometimes Sometimes Sometimes Sometimes Sometimes  Sometimes Sometimes Sometimes Sometimes

Configurable Configurable Configurable Configurable Configurable Configurable Configurable Configurable Configurable

Reports Binary Input Change Events when no specific variations requested: Never  Only time-tagged Only non-time-tagged Configurable to send both, one or the other Sends Unsolicited Responses:  Never Configurable Only certain objects Sometimes ENABLE/DISABLE UNSOLICITED Function codes supported Default Counter Object/Variation: No Counters Reported Configurable  Default Object / Default Variation Point-by-point list attached Sends Multi-Fragment Responses:
Yes

4.2

Implementation Table
The following table lists all objects recognized and returned by the PQMII. Additional information provided on the following pages includes lists of the default variations and defined point numbers returned for each object.

Implementation Table Notes:


1. 2. For this object, the quantity specified in the request must be exactly 1 as there is only one instance of this object defined in the relay. All static input data known to the relay is returned in response to a request for Class 0. This includes all objects of type 1 (Binary Input) and type 30 (Analog Input).

COMM78

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

3.

The point tables for Binary Input and Analog Input objects contain a field which defines which event class the corresponding static data has been assigned to. For this object, the qualifier code must specify an index of 7 only. Warm Restart (function code 14) is supported although it is not required by the DNP level 2 specification. Object 1 Variation 1 always indicates On Line for all points. Table 4: DNP Implementation Table
Object Request Func Codes Qual Codes (Hex) 06 00, 01, 06 00, 01, 06 06, 07, 08 06, 07, 08 06, 07, 08 06 00, 01, 06 17, 28 06, 07, 08 06, 07, 08 06, 07, 08 06 00, 01, 06 00, 01, 06 00, 01, 06 00, 01, 06 06, 07, 08 06, 07, 08 06, 07, 08 06, 07, 08 06, 07, 08 07 (Note 1) 06 06, 07, 08 06, 07, 08 06, 07, 08 00 (Note 4) 129 129 129 129 129 129 129 129 129 129 17, 28 17, 28 17, 28 17, 28 07 129 129 129 129 00, 01 00, 01 00, 01 00, 01 129 129 129 129 129 00, 01 17, 28 00. 01 00. 01 00. 01 129 129 17, 28 17, 28 129 129 00, 01 00, 01 Response Func Codes Qual Codes (Hex)

4. 5. 6.

Obj

Var

Description

1 1 1 2 2 2 10 10 12 20 20 20 30 30 30 30 30 32 32 32 32 32 50 60 60 60 60 80

0 1 2 0 1 2 0 2 1 0 5 6 0 1 2 3 4 0 1 2 3 4 1 1 2 3 4 1

Binary Input - All Variations Binary Input Binary Input With Status (Note 6) Binary Input Change - All Variations Binary Input Change Without Time Binary Input Change With Time Binary Output - All Variations Binary Output Status Control Relay Output Block Binary Counter - All Variations 32-Bit Binary Counter Without Flag 16-Bit Binary Counter Without Flag Analog Input - All Variations 32-Bit Analog Input With Flag 16-Bit Analog Input With Flag 32-Bit Analog Input Without Flag 16-Bit Analog Input Without Flag Analog Input Change - All Variations 32-Bit Analog Input Change without Time 16-Bit Analog Input Change without Time 32-Bit Analog Input Change with Time 16-Bit Analog Input Change with Time Time and Date Class 0 Data (Note 2) Class 1 Data (Note 3) Class 2 Data (Note 3) Class 3 Data (Note 3) Internal Indications No object - Cold Start No object - Warm Start (Note 5) No object - enable unsolicited (parsed only) No object - disable unsolicited (parsed only) No object - Delay Measurement

1 1 1 1 1 1 1 1 3, 4, 5, 6 1, 7, 8, 9,10 1, 7, 8, 9, 10 1, 7, 8, 9, 10 1 1 1 1 1 1 1 1 1 1 1, 2 1 1 1 1 2 13 14 20 21 23

1, 2, 3, 4, 5, 6: see the IMPLEMENATION TABLE NOTES above.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM79

CHAPTER COMM: COMMUNICATIONS GUIDE

4.3

Default Variations
The following table specifies the default variation for all objects returned by the relay. These are the variations that will be returned for the object in a response when no specific variation is specified in a request. Table 5: Default Variations
Object Description Default Variation

1 2 10 12 20 30 32

Binary Input - Single Bit Binary Input Change With Time Binary Output Status Control Relay Output Block 32-Bit Binary Counter Without Flag 16-Bit Analog Input Without Flag 16-Bit Analog Input Change Without Time

1 2 2 1 5 2 2

4.4

Internal Indication Bits


The following internal indication bits are supported:

Table 6: Internal Indication Bits


Character Position Bit Position Description

0 0 0 0 0 1

7 4 1 2 3 3

Device Restart: set when PQMII powers up, cleared by writing zero to object 80 Need Time -- set whenever the PQMII has a CLOCK NOT SET alarm, cleared by setting the clock Class 1: indicates that class 1 events are available Class 2: indicates that class 2 events are available Class 3: indicates that class 2 events are available Buffer Overflow: generally indicates that the host has not picked up the event data often enough

COMM80

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

DNP Point Lists


5.1 Binary Input / Binary Input Change
The DNP point list for Binary Input / Binary Input Change Point List (objects 01 and 02, respectively), is shown below.

Note

This point is also reflected in the corresponding internal indication (IIN) bit in each response header. Table 7: Binary Input / Binary Input Change Points (Sheet 1 of 4)
Index Description Event Class Assigned To

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 *

Alarm condition(s) active Clock not set * Clock drifting Internal error: ADC reference out of range Reserved Internal error: switch input circuit fault PQMII (display) option installed ** T20 (4-20 mA transducer) option installed ** T1 (0-1 mA transducer) option installed ** C (control) option installed ** A (power analysis) option installed ** Switch A closed Switch B closed Switch C closed Switch D closed Alarm relay energized Auxiliary relay 1 energized Auxiliary relay 2 energized Auxiliary relay 3 energized Aux 1 relay LED active Aux 2 relay LED active

Class 1 Class 1 Class 1 Class 1 --Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1

This point is also reflected in the corresponding internal indication (IIN) bit in each response header. ** This point is not reflected in a Binary Input Change.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM81

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 7: Binary Input / Binary Input Change Points (Sheet 2 of 4)


Index Description Event Class Assigned To

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 *

Aux 3 relay LED active Alarm LED active Program LED active Simulation LED active Alarm relay LED active Self test LED active Reserved Reserved Reserved Reserved Reserved Reserved Reserved Reserved Alarm active: phase undercurrent Alarm active: phase overcurrent Alarm active: neutral overcurrent Alarm active: undervoltage Alarm active: overvoltage Alarm active: current unbalance Alarm active: voltage unbalance Alarm active: voltage phase reversal Alarm active: power factor lead alarm 1 Alarm active: power factor lead alarm 2 Alarm active: power factor lag alarm 1 Alarm active: power factor lag alarm 2 Alarm active: positive real power Alarm active: negative real power Alarm active: positive reactive power

Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 ----------------Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1

This point is also reflected in the corresponding internal indication (IIN) bit in each response header. ** This point is not reflected in a Binary Input Change.

COMM82

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 7: Binary Input / Binary Input Change Points (Sheet 3 of 4)


Index Description Event Class Assigned To

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 *

Alarm active: negative reactive power Alarm active: underfrequency Alarm active: overfrequency Alarm active: real power demand Alarm active: reactive power demand Alarm active: apparent power demand Alarm active: phase A current demand Alarm active: phase B current demand Alarm active: phase C current demand Alarm active: Neutral demand Alarm active: switch A Alarm active: switch B Alarm active: switch C Alarm active: switch D Alarm active: internal fault Alarm active: serial COM1 failure Alarm active: serial COM2 failure Alarm active: clock not set Alarm active: parameters not set Alarm active: Pulse input 1 Alarm active: current THD Alarm active: voltage THD Alarm active: analog input main Alarm active: analog input alt Alarm active: data log 1 Alarm active: data log 2 Alarm active: Negative real demand Alarm active: Negative reactive demand Alarm active: Pulse input 2

Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1 Class 1

This point is also reflected in the corresponding internal indication (IIN) bit in each response header. ** This point is not reflected in a Binary Input Change.

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM83

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 7: Binary Input / Binary Input Change Points (Sheet 4 of 4)


Index Description Event Class Assigned To

79 80 81 82 *

Alarm active: Pulse input 3 Alarm active: Pulse input 4 Alarm active: Pulse input total Alarm active: Time

Class 1 Class 1 Class 1 Class 1

This point is also reflected in the corresponding internal indication (IIN) bit in each response header. ** This point is not reflected in a Binary Input Change.

5.2

Binary Output / Control Relay Output


The DNP point list for Binary Outputs / Control Relay Outputs (objects 10 and 12, respectively) is shown below: Table 8: Binary Output / Control Relay Output Points
Index Description

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

Reset Alarm relay on Alarm relay off Auxiliary relay 1 on Auxiliary relay 1 off Auxiliary relay 2 on Auxiliary relay 2 off Auxiliary relay 3 on Auxiliary relay 3 off Display 40 character flash message for 5 seconds (the display message must be set up using Modbus) Clear energy values Clear max. demand values Clear min./max current values Clear min./max voltage values Clear min./max power values Clear max. THD values Clear switch input pulse count Clear event record

COMM84

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 8: Binary Output / Control Relay Output Points


Index Description

18 19 20 21 22 23 24 25 26 27
Note

Simulate MENU keypress Simulate ESCAPE keypress Simulate RESET keypress Simulate ENTER keypress Simulate MESSAGE UP keypress Simulate MESSAGE DOWN keypress Simulate MESSAGE LEFT keypress Simulate MESSAGE RIGHT keypress Simulate VALUE UP keypress Simulate VALUE DOWN keypress

Index points 0 and 9 through 27 are not reflected in the Binary Output.

The following restrictions should be observed when using object 12 to control the points listed in the following table. 1. The Count field is checked first. If it is zero, the command will be accepted but no action will be taken. If this field is non-zero, the command will be executed exactly once regardless of its value. The Control Code field of object 12 is then inspected: 3. 4. A NUL Code will cause the command to be accepted without any action being taken. A Code of Pulse On (1) is valid for all points. This is used to activate the function (e.g., Reset) associated with the point. All other Codes are invalid and will be rejected. The Queue, Clear, and Trip/Close sub-fields are ignored.

2.

The On Time and Off Time fields are ignored. A Pulse On Code takes effect immediately when received. Thus, the timing is irrelevant. The Status field in the response will reflect the success or failure of the control attempt thus: A Status of Request Accepted (0) will be returned if the command was accepted. A Status of Request not Accepted due to Formatting Errors (3) will be returned if the Control Code field was incorrectly formatted or an invalid Code was present in the command. A Status of Control Operation not Supported for this Point (4) will be returned in response to a Latch On or Latch Off command

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM85

CHAPTER COMM: COMMUNICATIONS GUIDE

5.

An operate of the Reset, alarm relay on/off or Aux Relay 1-3 on/off points may fail (even if the command is accepted) due to other inputs or conditions (e.g., alarm conditions) existing at the time. To verify the success or failure of an operate of these points it is necessary that the associated Binary Input(s) be examined after the control attempt is performed. When using object 10 to read the status of a Binary Output, a read will always return zero.

6.

5.3

Analog Input/Output Change


In the following point list for Analog Input/Output Change, the entry in the Format column indicates that the format of the associated data point can be determined by looking up the entry in Table 2: Data Formats. For example, an F1 format is described in that table as a (16-bit) unsigned value without any decimal places. Therefore, the value read should be interpreted in this manner. Table 9: Point List for Analog Input/Output Change (Sheet 1 of 6)
Point 0 1 2 3 Modbus Reg 1050 1052 1054 1055 Description Phase CT Primary setpoint 1 Neutral CT Primary setpoint 1 VT Ratio setpoint 2 VT Nominal Secondary Volts setpoint VT Nominal Ph-to-Ph Voltage 7 (VT Ratio x Nominal Sec. adjusted for wye or delta) 3 VT Nominal Phase-to-Neutral Voltage (VT Ratio x Nominal Sec. adjusted for wye or delta) 3 Nominal Single-Phase VA 4, 5 (VT Nominal Pri. Phase CT Pri.) Nominal Three-Phase VA 5 (VT Nominal Pri. Phase CT Pri. 3) Phase A Current Phase B Current Phase C Current Average Current Neutral Current Current Unbalance Voltage Van Voltage Vbn Unit / Value amps amps 0.1 x ratio volts Deadband 1 unit 1 unit 1 unit 1 unit Format Code F1 F1 F1 F1 Event Class Assigned To 3 3 3 3

32-bit volts

1 unit

F3

32-bit volts

1 unit

F3

32-bit VA

1 unit

F3

32-bit VA 1000ths of nominal A 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal tenths of 1 percent 1000ths of nominal V 1000ths of nominal V

1 unit

F3

8 9 10 11 12 13 14 15

0240 0241 0242 0243 0244 0245 0280 0282

20 units 20 units 20 units 20 units 20 units 10 units 20 units 20 units

F1 F1 F1 F1 F1 F1 F3 F3

1 1 1 1 1 2 1 1

footnote reference are located at the end of the table

COMM86

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 9: Point List for Analog Input/Output Change (Sheet 2 of 6)


Point 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 Modbus Reg 0284 0286 0288 028A 028C 028E 0290 02F0 02F2 02F4 02F6 02F7 02F9 02FB 02FD 02FE 0300 0302 0304 0305 0307 0309 030B 0400 0401 0402 0403 0404 0406 0408 0440 0458 Description Voltage Vcn Average Phase Voltage Voltage Vab Voltage Vbc Voltage Vca Average Line Voltage Voltage Unbalance 3 Phase Real Power 3 Phase Reactive Power 3 Phase Apparent Power 3 Phase Power Factor Phase A Real Power Phase A Reactive Power Phase A Apparent Power Phase A Power Factor Phase B Real Power Phase B Reactive Power Phase B Apparent Power Phase B Power Factor Phase C Real Power Phase C Reactive Power Phase C Apparent Power Phase C Power Factor Phase A Current Demand Phase B Current Demand Phase C Current Demand Neutral Current Demand 3 Phase Real Power Demand 3 Phase React Power Demand 3 Phase Apparent Power Demand Frequency Main/Alternate Analog Input Unit / Value 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal 0.1 x % 1000ths of nominal VA 1000ths of nominal VA 1000ths of nominal VA % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 0.01x Hz Unit varies -- 32 bits Deadband 20 units 20 units 20 units 20 units 20 units 20 units 10 units 20 units 20 units 20 units 5 units 20 units 20 units 20 units 5 units 20 units 20 units 20 units 5 units 20 units 20 units 20 units 5 units 20 units 20 units 20 units 20 units 20 units 20 units 20 units .05 Hz 10 Format Code F3 F3 F3 F3 F3 F3 F1 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F1 F1 F1 F1 F4 F4 F3 F1 F3 Event Class Assigned To 1 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 2

footnote reference are located at the end of the table

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM87

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 9: Point List for Analog Input/Output Change (Sheet 3 of 6)


Point 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 04B4 04B5 0246 0247 0248 0249 024A 024B 024C 024D 024E 024F 0291 0293 0295 0297 Modbus Reg 0470 0471 0472 0473 0474 0475 0478 0479 047A 047B 047C 047D 047E 047F 0480 Description Ia Crest Factor Ib Crest Factor Ic Crest Factor Ia Trans Harmonic Derating Factor Ib Trans Harmonic Derating Factor Ic Trans Harmonic Derating Factor Phase A Current THD Phase B Current THD Phase C Current THD Neutral Current THD Voltage Van THD Voltage Vbn THD Voltage Vcn THD Voltage Vab THD Voltage Vbc THD Reserved Average Current THD Average Voltage THD Phase A Current - Minimum Phase B Current - Minimum Phase C Current - Minimum Neutral Current - Minimum Current Unbalance - Minimum Phase A Current - Maximum Phase B Current - Maximum Phase C Current - Maximum Neutral Current - Maximum Current Unbalance - Maximum Voltage Van - Minimum Voltage Vbn - Minimum Voltage Vcn - Minimum Voltage Vab - Minimum 0.1 x % 0.1 x % 1000ths of nominal A 1000ths of nominal A 1000ths of nominal A 1000ths of nominal A tenths of 1 percent 1000ths of nominal A 1000ths of nominal A 1000ths of nominal A 1000ths of nominal A tenths of 1 percent 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 5.0% 5.0% 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F3 F3 F3 F3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 Unit / Value 0.001 x CF 0.001 x CF 0.001 x CF 0.001 x THDF 0.001 x THDF 0.001 x THDF 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % Deadband 5.0% 5.0% 5.0% 5.0% 5.0% 5.0% 5.0% 5.0% 5.0% Format Code F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 F1 Event Class Assigned To 3 3 3 3 3 3 3 3 3

footnote reference are located at the end of the table

COMM88

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 9: Point List for Analog Input/Output Change (Sheet 4 of 6)


Point 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 Modbus Reg 0299 029B 029D 029E 02A0 02A2 02A4 02A6 02A8 02AA 030C 030E 0310 0312 0313 0315 0317 0319 031A 031C 031E 0220 0321 0323 0325 0327 0328 032A 032C Description Voltage Vbc - Minimum Voltage Vca - Minimum Voltage Unbalance - Minimum Voltage Van - Maximum Voltage Vbn - Maximum Voltage Vcn - Maximum Voltage Vab - Maximum Voltage Vbc - Maximum Voltage Vca - Maximum Voltage Unbalance - Maximum 3 Phase Real Power - Minimum 3 Phase Reactive Power Minimum 3 Phase Apparent Power Minimum 3 Phase Power Factor - Minimum 3 Phase Real Power - Maximum 3 Phase Reactive Power Maximum 3 Phase Apparent Power Maximum 3 Phase Power Factor - Maximum Phase A Real Power - Minimum Phase A Reactive Power Minimum Phase A Apparent Power Minimum Phase A Power Factor - Minimum Phase A Real Power - Maximum Phase A Reactive Power Maximum Phase A Apparent Power Maximum Phase A Power Factor Maximum Phase B Real Power Minimum Phase B Reactive Power Minimum Phase B Apparent Power Minimum Unit / Value 1000ths of nominal V 1000ths of nominal V 0.1 x % 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 1000ths of nominal V 0.1 x % 1000ths of nominal W 1000ths of nom. kvar 1000ths of nominal VA % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal Deadband 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit Format Code F3 F3 F1 F3 F3 F3 F3 F3 F3 F1 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 Event Class Assigned To 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3

footnote reference are located at the end of the table

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM89

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 9: Point List for Analog Input/Output Change (Sheet 5 of 6)


Point 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 Modbus Reg 032E 032F 0331 0333 0335 0336 0338 033A 033C 033D 033F 0341 0343 040A 040B 040C 040D 040E 0410 0412 0441 0442 0482 0483 0484 0485 0486 0487 0488 Description Phase B Power Factor Minimum Phase B Real Power Maximum Phase B Reactive Power Maximum Phase B Apparent Power Maximum Phase B Power Factor Maximum Phase C Real Power Minimum Phase C Reactive Power Minimum Phase C Apparent Power Minimum Phase C Power Factor Minimum Phase C Real Power Maximum Phase C Reactive Power Maximum Phase C Apparent Power Maximum Phase C Power Factor Maximum Phase A Current Demand Maximum Phase B Current Demand Maximum Phase C Current Demand Maximum Neutral Current Demand Maximum 3 Phase Real Power Dmd Max 3 Phase React Power Dmd Max 3 Phase Apparent Power Dmd Max Frequency Minimum Frequency Maximum Phase A Current THD - Maximum Phase B Current THD - Maximum Phase C Current THD - Maximum Neutral Current THD - Maximum Voltage Van THD - Maximum Voltage Vbn THD - Maximum Voltage Vcn THD - Maximum % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal % 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 1000ths of nominal 0.01 x Hz 0.01 x Hz 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % 0.1 x % Unit / Value Deadband 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit .01 Hz .01 Hz 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit 1 unit Format Code F2 F4 F4 F3 F2 F4 F4 F3 F2 F4 F4 F3 F2 F1 F1 F1 F1 F4 F4 F3 F1 F1 F1 F1 F1 F1 F1 F1 F1 Event Class Assigned To 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3

footnote reference are located at the end of the table

COMM90

PQMII POWER QUALITY METER INSTRUCTION MANUAL

CHAPTER COMM: COMMUNICATIONS GUIDE

Table 9: Point List for Analog Input/Output Change (Sheet 6 of 6)


Point 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 159 04C8 04CB 04CC 0000 0001 0002 0003 0004 0007 0008 0009 000A 0020 0021 0022 0023 0030 0031 0032 0033 Modbus Reg 0489 048A Description Voltage Vab THD - Maximum Voltage Vbc THD - Maximum Reserved ADC Reference Current Key Press Internal Fault Error Code GE Multilin Product Device Code Hardware Version Code Main Software Version Code Modification File Number 1 Boot Software Version Code Modification File Number 2 Modification File Number 3 Modification File Number 4 Modification File Number 5 Serial Number Character 1 and 2 Serial Number Character 3 and 4 Serial Number Character 5 and 6 Serial Number Character 7 and 8 Manufacture Month/Day Manufacture Year Calibration Month/Day Calibration Year always 73 20 units 1 unit 1 unit F1 F81 F108 F1 F5 F1 F1 F1 F1 F1 F1 F1 F10 F10 F10 F10 F24 F25 F24 F25 2 2 2 Unit / Value 0.1 x % 0.1 x % Deadband 1 unit 1 unit Format Code F1 F1 Event Class Assigned To 3 3

footnote reference are located at the end of the table 1. This point is used to reconstruct current values from the 1,000ths per-unit quantities given in the other points. Multiply the particular point by this one, and divide by 1000 to get amps. For example, given a CT primary setpoint value of 3000 and an actual phase A current reading from the DUT of 1077 A, the reconstructed phase A current is:

Point 0 Point 8 3000 359 Ia(reconstructed) = ---------------------------------------- = --------------------------- = 1077 A 1000 1000
2. 3. The VT Ratio setpoint is always reported, but is not used if a direct (i.e., without VTs) voltage wiring scheme is configured. In this case the VT Ratio setpoint is ignored, and a ratio of 1.0:1 is used in the PQMII. This point is used to reconstruct voltage values from the 1,000ths per-unit quantities given in the other points. Multiply the particular point by this one, and divide by 1000 to get volts. Since some SCADA systems do not read 32 bit values, you can also multiply the VT ratio and nominal secondary (both of which are 16 bit) in the master in cases where the nominal primary may exceed 32767 volts. For example, given a VT ratio of 300:1, a VT nominal secondary volts setting of 115 V, and an actual phase-neutral voltage reading from the DUT of 19919 V, we have:

Point 5 Point 14 577 34500 Van ( reconstructed ) = ------------------------------------------- = ------------------------------ = 19.91 kV 1000 1000 5 Point 18 = 577 59756 = 34.50 kV Vbn ( reconstructed ) = Point -----------------------------------------------------------------------1000 1000

PQMII POWER QUALITY METER INSTRUCTION MANUAL

COMM91

CHAPTER COMM: COMMUNICATIONS GUIDE

4. 5. 6. 7.

This point is used to reconstruct power values from the 1,000ths per-unit quantities given in the other points. Multiply the particular point by this one, and divide by 1000 to get VA, kW or kvar. The maximum value for Nominal Single-Phase VA and Nominal Three-Phase VA is 983010000 VA. When this value is over-range, it will indicate 1; in this case, the DNP power values become the actual value and no formula is used. In Modbus, the current keypress is reported with format code F6. In order to fit the value into a sixteen-bit signed value, F8 is used in DNP, with ASCII zero (48 decimal) returned when no key is pressed. This point is not used for reconstructing any voltage values. The 3 difference between phase-to-phase and phaseto-neutral values is accounted for in the actual voltage points themselves. The VT nominal phase-to-neutral voltage (point 5) is used to reconstruct all voltage values.

5.4

Counters
The DNP point list for Binary Counters (object 20) is shown below: Table 10: Counters Point List
Point Num Modbus Register Description Unit Format code

0 1 2 3 4 5 6 7 8 9 10 11 12
Note

0450 0452 0454 0456 0460 03D0 03D2 03D4 03D6 03D8 03DA 03DC 03DE

Pulse Input 1 Pulse Input 2 Pulse Input 3 Pulse Input 4 Totalized Pulse Input 3 Phase Positive Real Energy Used 3 Phase Negative Real Energy Used 3 Phase Positive React. Energy Used 3 Phase Negative React. Energy Used 3 Phase Apparent Energy Used 3 Phase Energy Used in Last 24 h 3 Phase Energy Cost Since Reset 3 Phase Energy Cost Per Day

kWh kWh kvarh kvarh kVAh kWh cents cents

F3 F3 F3 F3 F3 F3 F3 F3 F3 F3 F3 F3 F3

Only counter points 0 to 4 can be cleared using function codes 9 and 10, and doing so disturbs the totals presented on the display and via Modbus communications. In general, the binary output points which clear data should be used if it is necessary to clear any of these counters.

COMM92

PQMII POWER QUALITY METER INSTRUCTION MANUAL

You might also like