Anda di halaman 1dari 152

Digital Energy

Multilin

469 Motor Management Relay


Communications Guide

Software revision: 5.1x


GE Multilin part number: 1601-0152-A8
GE publication code: GEK-106491G
Copyright 2011 GE Multilin

RE

Canada L6E 1B3


Tel: (905) 294-6222 Fax: (905) 201-2098
Internet: http://www.GEmultilin.com

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

EM

215 Anderson Avenue, Markham, Ontario

ISO9001:2000
I

GE Multilin

T
GIS ERE

U LT I L

GE Multilin's Quality Management


System is registered to
ISO9001:2000
QMI # 005094
UL # A3775

Table of Contents
MODBUS PROTOCOL

Electrical Interface ...........................................................................................................................................1


Modbus RTU Protocol .....................................................................................................................................1
Data Frame Format and Data Rate.........................................................................................................2
Data Packet Format ........................................................................................................................................2
CRC-16 Algorithm.............................................................................................................................................3
Timing ....................................................................................................................................................................4

MODBUS FUNCTIONS

Supported Functions ......................................................................................................................................5


Read Relay Coil / Digital Input Status .....................................................................................................5
Read Setpoints and Actual Values ...........................................................................................................7
Execute Operation ...........................................................................................................................................8
Store Single Setpoint.......................................................................................................................................8
Read Device Status..........................................................................................................................................9
Loopback Test................................................................................................................................................. 10
Store Multiple Setpoints.............................................................................................................................. 10
Performing Commands .............................................................................................................................. 11
Error Responses ............................................................................................................................................. 12

MODBUS MEMORY
MAP

Memory Map Information ......................................................................................................................... 13


User-Definable Memory Map Area ....................................................................................................... 13
Event Recorder ............................................................................................................................................... 15
Waveform Capture....................................................................................................................................... 15
469 Memory Map .......................................................................................................................................... 19
Format Codes............................................................................................................................................... 110

DEVICENET
PROTOCOL

Overview......................................................................................................................................................... 125
Poll Data.......................................................................................................................................................... 125
Change of State (COS) .............................................................................................................................. 125
DeviceNet Objects...................................................................................................................................... 126
469 Specific Objects.................................................................................................................................. 132
DeviceNet Data Formats ........................................................................................................................ 141

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

TOC

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

Digital Energy
Multilin

469 Motor Management Relay


Communications Guide

Communications Guide

Modbus Protocol
Electrical Interface
The hardware or electrical interface is one of the following: one of two 2-wire RS485 ports
from the rear terminal connector or the RS232 from the front panel connector. In a 2-wire
RS485 link, data flow is bidirectional. Data flow is half duplex for both the RS485 and the
RS232 ports. 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 at 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 communications. Each +
terminal of every 469 must be connected together for the system to operate. See Chapter
2 of the 469 manual for details on correct serial port wiring.

Modbus RTU Protocol


The 469 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 relays. Although the Modbus protocol
is hardware independent, the 469 interfaces include two 2-wire RS485 ports and one
RS232 port. Modbus is a single master, multiple slave protocol suitable for a multi-drop
configuration as provided by RS485 hardware. In this configuration up to 32 slaves can be
daisy-chained together on a single communication channel.
The 469 is always a slave. It cannot be programmed as a 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 469.
Monitoring, programming and control functions are possible using read and write register
commands.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Data Frame Format and Data Rate


One data frame of an asynchronous transmission to or from an 469 is default to 1 start bit,
8 data bits, and 1 stop bit. This produces a 10 bit data frame. This is important for
transmission through modems at high bit rates (11-bit data frames are not supported by
Hayes modems at bit rates of greater than 300 bps). The parity bit is optional as odd or
even. If it is programmed as odd or even, the data frame consists of 1 start bit, 8 data bits,
1 parity bit, and 1 stop bit.
Modbus protocol can be implemented at any standard communication speed. The 469
RS485/RS232 ports support operation at 1200, 2400, 4800, 9600, and 19200 baud.

Data Packet Format


A complete request/response sequence consists of the following bytes (transmitted as
separate data frames):
MASTER QUERY MESSAGE:
SLAVE ADDRESS:

(1 byte)

FUNCTION CODE:

(1 byte)

DATA:

(variable number of bytes depending on FUNCTION CODE)

CRC:

(2 bytes)

SLAVE RESPONSE MESSAGE:

SLAVE ADDRESS:

(1 byte)

FUNCTION CODE:

(1 byte)

DATA:

(variable number of bytes depending on FUNCTION CODE)

CRC:

(2 bytes)

SLAVE ADDRESS: This is the first byte of every transmission. This byte represents the
user-assigned address of the slave device that receives the message sent by the
master. Each slave device must be assigned a unique address and only the addressed
slave responds to a transmission that starts with its address. In a master request
transmission the Slave Address represents the address of the slave to which the
request is being sent. In a slave response transmission the Slave Address represents
the address of the slave that is sending the response. Note that a master transmission
with a Slave Address of 0 indicates a broadcast command. Broadcast commands can
be used for specific functions.

FUNCTION CODE: This is the second byte of every transmission. Modbus defines
function codes of 1 to 127. The 469 implements some of these functions. 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 indicating 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.

DATA: 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 vice versa. Data is
sent MSByte first followed by the LSByte.

CRC: This is a two byte error checking code. CRC is sent LSByte first followed by the
MSByte. The RTU version of Modbus includes a two byte CRC-16 (16-bit cyclic
redundancy check) with every transmission. The CRC-16 algorithm essentially treats

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

the entire data stream (data bits only; start, stop and parity ignored) as one
continuous binary number. This number is first shifted left 16 bits and then divided by
a characteristic polynomial (11000000000000101B). The 16-bit remainder of the
division is appended to the end of the transmission, LSByte first. The resulting
message including CRC, when divided by the same polynomial at the receiver will give
a zero remainder if no transmission errors have occurred.
If an 469 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 CRC16 error indicates than one or more bytes of the transmission were received
incorrectly and thus the entire transmission should be ignored in order to avoid the
469 performing any incorrect operation. The CRC-16 calculation is an industry
standard method used for error detection. An algorithm is included here to assist
programmers in situations where no standard CRC-16 calculation routines are
available.

CRC-16 Algorithm
Once the following algorithm is complete, the working register A will contain the CRC
value to be transmitted. Note that this algorithm requires the characteristic polynomial to
be reverse bit ordered. The MSbit of the characteristic polynomial is dropped since it does
not affect the value of the remainder.
The symbols used in the algorithm are shown below:
-->

data transfer

A; Alow; Ahigh

16-bit working register; low and high order bytes of A (the 16-bit working
register)

CRC

16 bit CRC-16 result

i, j

loop counters

(+)

logical EXCLUSIVE-OR operator

total number of data bytes

Di

i-th data byte (i = 0 to N 1)

16 bit characteristic polynomial = 1010000000000001 (binary) with


MSbit dropped and bit order reversed

shr (x)

right shift operator (the LSbit of x is shifted into a carry flag, a '0' is shifted
into the MSbit of x, all other bits are shifted right one location)

The CRC algorithm is shown below:


1.
2.
3.
4.
5.
6.
7.

FFFF (hex) --> A


0 --> i
0 --> j
Di (+) Alow --> Alow
j + 1 --> j
shr (A)
Is there a carry?No: go to step 8.
Yes: G (+) A --> A and continue.
8. Is j = 8?
No: go to 5.
Yes: continue.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

9. i + 1 --> i
10.Is i = N?

No: go to 3.
Yes: continue.

11.A --> CRC

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.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Modbus Functions
Supported Functions
The following functions are supported by the 469:
Modbus Function Code 01: Read Relay Coil
Modbus Function Code 02: Read Digital Input Status
Modbus Function Code 03: Read Setpoints and Actual Values
Modbus Function Code 04: Read Setpoints and Actual Values
Modbus Function Code 05: Execute Operation
Modbus Function Code 06: Store Single Setpoint
Modbus Function Code 07: Read Device Status
Modbus Function Code 08: Loopback Test
Modbus Function Code 16: Store Multiple Setpoints

Read Relay Coil / Digital Input Status


Modbus implementation: Read Coil and Input Status
469 Implementation: Read Relay Coil and Digital Input Status
For the 469 implementation of Modbus, these commands can be used to read Relay Coil
Status or Digital Input Status.
MESSAGE FORMAT AND EXAMPLE, FUNCTION 01:
The standard implementation requires the following: slave address (one byte), function
code (one byte), starting relay coil (two bytes), number of coils to read (two bytes), and CRC
(two bytes). The slave response is the slave address (one byte), function code (one byte),
relay coil mask byte count (one byte; always 01 since only six relay coils), bit mask
indicating the status of requested relay coils (one byte), and CRC (two bytes).
Request slave 11 to respond with status of relay coil 3 to 5:
Relay

Status

1 TRIP

Energized

2 AUXILIARY

De-energized

3 AUXILIARY

De-energized

4 ALARM

De-energized

5 BLOCK START

Energized

6 SERVCE

Energized

Bit Mask

0011 0001 (0 31)

Master Transmission
Slave Address

Bytes
1

Example
0B

Description
message for slave 11

Function Code

01

read relay coil status

Starting Relay Coil

00 03

starting relay coil 3

Number of Relays

00 03

3 relay coils (relays 3 AUXILIARY,


4 AUXILIARY, and 5 BLOCK START)

CRC

8C A1

computed CRC error code

Slave Response
Slave Address

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

Bytes
1

Example
0B

Description
message from slave 11

COMMUNICATIONS GUIDE

Slave Response

Note

Bytes

Example

Description

Function Code

01

read relay coil status

Byte Count

01

1 byte bit mask

Bit Mask

10

bit mask 0001 0000

CRC (low, high)

53 93

computed CRC error code

If a Starting Relay Coil (Starting Digital Input) of 0 is entered, the 469 will default it to 1. If
the Number of Relays (Number of Digital Inputs) requested exceeds the number of relays
available, the user is prompted with an ILLEGAL DATA message.
MESSAGE FORMAT AND EXAMPLE, FUNCTION 02:
The standard implementation requires the following: slave address (one byte), function
code (one byte), starting digital input (two byte), number of digital inputs to read (two
bytes), and CRC (two bytes). The slave response is the slave address (one byte), function
code (one byte), byte count of digital input mask (one byte), bit mask indicating the status
of requested digital inputs (one or two bytes), and CRC (two bytes).

Note

The CRC is sent as a two byte number with the low order byte sent first.
Example 1: Request slave 11 to respond with status of digital inputs 5 to 9:
Digital Input

Status

Digital Input

Status

D1: Access

Closed

D7: Assignable Input 2

Closed

D2: Test

Open

D8: Assignable Input 3

Closed

D3: Starter Status

Open

D9: Assignable Input 4

Closed

D4: Emergency Restart

Open

Bit Mask (LSB)

1111 0001

D5: Remote Reset

Closed

Bit Mask (MSB)

0000 0001

D6: Assignable Input 1

Closed

Master Transmission

Bytes

Example

Description

Slave Address

0B

message for slave 11

Function Code

02

read digital input status

Starting Digital Input

00 05

starting at digital input 5

Number of Digital Inputs

00 05

5 digital inputs (inputs 5 to 9)

CRC (low, high)

A8 A2

computed CRC error code

Slave Response

Bytes

Example

Description

Slave Address

0B

message from slave 11

Function Code

02

read digital input status

Byte Count

02

2 byte bit mask

Bit Mask

01 F0

bit mask of requested input

CRC (low, high)

C5 B9

computed CRC error code

Example 2: Request slave 11 to respond with status of digital inputs 1 to 4:


Digital Input

Status

Digital Input

Status

D1: Access

Closed

D6: Assignable Input 1

Closed

D2: Test

Open

D7: Assignable Input 2

Closed

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

D3: Starter Status

Open

D8: Assignable Input 3

D4: Emergency Restart

Open

D9: Assignable Input 4

Closed

D5: Remote Reset

Closed

Bit Mask (LSB)

0111 0001

Master Transmission

Bytes

Example

Open

Description

Slave Address

0B

message for slave 11

Function Code

02

read digital input status


starting at digital input 1

Starting Digital Input

00 01

Number of Digital Inputs

00 04

4 digital inputs (inputs 1 to 4)

CRC (low, high)

28 A3

computed CRC error code

Slave Response

Bytes

Example

Description

Slave Address

0B

message from slave 11

Function Code

02

read digital input status

Byte Count

01

1 byte bit mask

Bit Mask

01

bit mask of requested input

CRC (low, high)

63 90

computed CRC error code

Read Setpoints and Actual Values


Modbus implementation: Read Input and Holding Registers
469 Implementation: Read Setpoints and Actual Values
For the 469 implementation of Modbus, these commands can be used to read any setpoint
(holding registers) or actual value (input registers). Holding and input registers are 16 bit
(two byte) values transmitted high order byte first. Thus all 469 setpoints and actual values
are sent as two bytes. The maximum number of registers that can be read in one
transmission is 125. Function codes 03 and 04 are configured to read setpoints or actual
values interchangeably because some PLCs do not support both function codes.
The slave response to these function codes is the slave address, function code, a count of
the number of data bytes to follow, the data itself and the CRC. Each data item is sent as a
two byte number with the high order byte sent first. The CRC is sent as a two byte number
with the low order byte sent first.
MESSAGE FORMAT AND EXAMPLE:
Request slave 11 to respond with 2 registers starting at address 0308. For this example the
register data in these addresses is:
Address

Data

0308

0064

0309

000A

Master Transmission

Bytes

Example

Description

Slave Address

0B

message for slave 11

Function Code

03

read register values

Data Starting Address

03 08

data starting at 0308h

Number of Registers

00 02

2 registers = 4 bytes total

CRC (low, high)

45 27

computed CRC error code

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Slave Response

Bytes

Example

Description

Slave Address

0B

message from slave 11

Function Code

03

read register values

Byte Count

04

2 registers = 4 bytes total


value in address 0308h

Data #1 (high, low)

00 64

Data #2 (high, low)

00 0A

value in address 0309h

CRC (low, high)

EB 91

computed CRC error code

Execute Operation
Modbus Implementation: Force Single Coil
469 Implementation: Execute Operation
This function code allows the master to request an 469 to perform specific command
operations. The command numbers listed in the Commands area of the memory map
correspond to operation code 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.
Refer to Store Multiple Setpoints on page 310 for complete details.
Supported Operations: Reset 469 (operation code 1), Motor Start (operation code 2), Motor
Stop (operation code 3), Waveform Trigger (operation code 4).
MESSAGE FORMAT AND EXAMPLE:
Reset 469 (operation code 1).
Master Transmission
Slave Address

Bytes
1

Example
0B

Description
message for slave 11

Function Code

05

execute operation

Operation Code

00 01

remote reset command

Code Value

FF 00

perform operation

CRC (low, high)

DD 50

computed CRC error code

Slave Response

Bytes

Example

Description

Slave Address

0B

Function Code

05

message from slave 11


execute operation

Operation Code

00 01

remote reset command

Code Value

FF 00

operation performed

CRC (low, high)

DD 50

computed CRC error code

Store Single Setpoint


Modbus Implementation: Preset Single Register
469 Implementation: Store Single Setpoint
This command allows the master to store a single setpoint into the memory of an 469. The
slave response to this function code is to echo the entire master transmission.
MESSAGE FORMAT AND EXAMPLE:
Request slave 11 to store the value 01F4 in Setpoint address 1180. After the transmission
in this example is complete, setpoints address 1180 will contain the value 01F4.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Master Transmission

Bytes

Example

Description

Slave Address

0B

message for slave 11

Function Code

06

store single setpoint

Data Starting Address

11 80

data starting at 1180h

Data

01 F4

data for address 1180h

CRC (low, high)

8D A3

computed CRC error code

Slave Response

Bytes

Example

Description

Slave Address

0B

message from slave 11

Function Code

06

store single setpoint value

Data Starting Address

11 80

data starting at 1180h

Data

01 F4

data from address 1180h

CRC (low, high)

8D A3

computed CRC error code

Read Device Status


Modbus Implementation: Read Exception Status
469 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.
469 General Status Byte:
Bit
B0

Description

Bit

Description

1 TRIP relay operated = 1

B4

5 BLOCK START relay operated = 1

B1

2 AUXILIARY relay operated = 1

B5

6 SERVICE relay operated = 1

B2

3 AUXILIARY relay operated = 1

B6

Stopped = 1

B3

4 ALARM relay operated = 1

B7

Running = 1

If status is neither stopped or running, the motor is starting or has been tripped.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

MESSAGE FORMAT AND EXAMPLE:


Request status from slave 11.
Master Transmission

Bytes

Example

Description

Slave Address

0B

message for slave 11

Function Code

07

read device status

CRC (low, high)

47 42

computed CRC error code

Slave Response
Slave Address

Bytes
1

Example
0B

Description
message from slave 11

Function Code

07

read device status

Device Status

59

status = 01011001b

CRC (low, high)

C2 08

computed CRC error code

Loopback Test
Modbus Implementation: Loopback Test
469 Implementation: Loopback Test
This function is used to test the integrity of the communication link. The 469 will echo the
request.
MESSAGE FORMAT AND EXAMPLE:
Loopback test from slave 11.
Master Transmission
Slave Address

Bytes
1

Example

Description

0B

message for slave 11

Function Code

08

loopback test

Diagnostic Code

00 00

must be 00 00

Data

00 00

must be 00 00

CRC (low, high)

E0 A1

computed CRC error code

Slave Response

Bytes

Example

Description

Slave Address

0B

message from slave 11

Function Code

08

loopback test

Diagnostic Code

00 00

must be 00 00

Data

00 00

must be 00 00

CRC (low, high)

E0 A1

computed CRC error code

Store Multiple Setpoints


Modbus Implementation: Preset Multiple Registers
469 Implementation: Store Multiple Setpoints
This function code allows multiple setpoints to be stored into the 469 memory. Modbus
registers are 16-bit (two byte) values transmitted high order byte first. Thus all 469
setpoints are sent as two byte values. 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 469 response to this function code is to
echo the slave address, function code, starting address, the number of Setpoints stored,
and the CRC.

10

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

MESSAGE FORMAT AND EXAMPLE:


Request slave 11 to store the value 01F4 to setpoint address 1180 and the value 01DE to
setpoint address 1181. After the transmission in this example is complete, 469 slave 11 will
have the following Setpoints information stored:
Address

Data

1180

01F4

1181

01DE

Master Transmission

Bytes

Slave Address

Function Code
Data Starting Address

Example

Description

0B

message for slave 11

10

store multiple setpoint value

11 80

data starting at 1180h

Number of Setpoints

00 02

2 setpoints = 4 bytes total

Byte Count

04

4 bytes of data

Data #1

01 F4

data for address 1180h

Data #2

01 DE

data for address 1181h

CRC (low, high)

DB B1

computed CRC error code

Slave Response

Bytes

Slave Address

Function Code
Data Starting Address

Example

Description

0B

message from slave 11

10

store multiple setpoint value

11 80

data starting at 1180h

Number of Setpoints

00 02

2 setpoints = 4 bytes total

CRC (low, high)

45 B6

computed CRC error code

Performing Commands
Some PLCs may not support execution of commands using function code 5 but do support
storing multiple setpoints using function code 16. To perform this operation using function
code 16 (10H), a certain sequence of commands must be written at the same time to the
469. 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 5 indicating an execute operation is requested. 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 execute immediately
upon receipt of a valid transmission.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

11

COMMUNICATIONS GUIDE

MESSAGE FORMAT AND EXAMPLE:


Perform a reset on 469 (operation code 1).
Master Transmission

Bytes

Example

Description

Slave Address

0B

message for slave 11

Function Code

10

store multiple setpoint value

Data Starting Address

00 80

data starting at 0080h

Number of Setpoints

00 02

2 setpoints = 4 bytes total

Byte Count

04

4 bytes of data

Command Function

00 05

data for address 0080h

Command Operation

00 01

data for address 0081h

CRC (low, high)

0B D6

computed CRC error code

Slave Response

Bytes

Example

Description

Slave Address

0B

Function Code

10

message from slave 11


store multiple setpoint value

Data Starting Address

00 80

data starting at 0080h

Number of Setpoints

00 02

2 setpoints = 4 bytes total

CRC (low, high)

40 8A

computed CRC error code

Error Responses
When an 469 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 will be ignored by the 469.
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 469 implements the following exception response codes.
01: ILLEGAL FUNCTION
The function code transmitted is not one of the functions supported by the 469.
02: ILLEGAL DATA ADDRESS
The address referenced in the data field transmitted by the master is not an allowable
address for the 469.
03: ILLEGAL DATA VALUE
The value referenced in the data field transmitted by the master is not within range for the
selected data address.

12

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Modbus Memory Map


Memory Map Information
The data stored in the 469 is grouped as 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 twobyte value. Addresses are listed in hexadecimal. Data values (setpoint ranges, increments,
factory values) are in decimal.
Note

Many Modbus communications drivers add 40001d to the actual address of the register
addresses. For example: if address 0h was to be read, 40001d would be the address
required by the Modbus communications driver; if address 320h (800d) was to be read,
40801d would be the address required by the Modbus communications driver.

User-Definable Memory Map Area


The 469 has a powerful feature, called the User Definable Memory Map, which allows a
computer to read up to 125 non-consecutive data registers (setpoints or actual values) by
using one Modbus packet. It is often necessary for a master computer to continuously poll
various values in each of the connected slave relays. If these values are scattered
throughout the memory map, reading them would require numerous transmissions and
would burden the communication link. The User Definable Memory Map can be
programmed to join any memory map address to one in the block of consecutive User Map
locations, so that they can be accessed by reading these consecutive locations.
The User Definable area has two sections:
1.

User-Definable Addresses 1 to 125 (memory map registers 0180h to 01FCh) that


contain 125 actual values or setpoints register addresses.

2.

User-Definable Values 1 to 125 (memory map registers 0100h to 017Ch) that contains
the data in the corresponding user-definable addresses.

Register data that is separated in the rest of the memory map may be remapped to
adjacent register addresses in the values area. This is accomplished by writing to register
addresses in the user-definable address area. This improves data throughput and can
eliminate the need for multiple read command sequences.
For example, if the values of Average Phase Current (register address 0306h) and Hottest
Stator RTD Temperature (register address 0320h) are required to be read from an 469, their
addresses may be remapped as follows:
1.

Write 0306h to address 0180h (User Definable Address #1) using function code 06 or
16.

2.

Write 0307h to address 0181h (User Definable Address #2) using function code 06 or
16 (Average Phase Current is a double register number).

3.

Write 0320h to address 0182h (User Definable Address #3) using function code 06 or
16.

A read (function code 03 or 04) of registers 0100h (User Definable Address #1) and 0101h
(User Definable Address #2) will return the Phase A Current and register 0102h (User
Definable Address #3) will return Hottest Stator RTD Temperature.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

13

COMMUNICATIONS GUIDE

The 469 provides default assignments for user map addresses #1 to #55, as shown below.
The User can change the user assigned addresses as per their requirement. To return to
these default assignments, use Enervista 469 Setup to set Modbus User Map User Map
Default.
Table 1: Default assignments for User-Definable Memory Map Area
USER MAP ADDRESS #

14

MODBUS
REGISTER
ADDRESS (HEX)

USER ASSIGNED
ADDRESS (HEX)

DESCRIPTION

User Map Address #1

0100

0200

Motor status

User Map Address #2

0101

0210

General status

User Map Address #3

0102

0211

Output relay status

User Map Address #4

0103

0227

Phase A pre-trip current


(lower word)

User Map Address #5

0104

0228

Phase A pre-trip current


(upper word)

User Map Address #6

0105

0229

Phase B pre-trip current


(lower word)

User Map Address #7

0106

022A

Phase B pre-trip current


(upper word)

User Map Address #8

0107

022B

Phase C pre-trip current


(lower word)

User Map Address #9

0108

022C

Phase C pre-trip current


(upper word)

User Map Address #10

0109

02D0

Access switch status


Test switch status

User Map Address #11

010A

02D1

User Map Address #12

010B

02D2

Starter switch status

User Map Address #13

010C

02D3

Emergency restart switch


status

User Map Address #14

010D

02D4

Remote reset switch status

User Map Address #15

010E

02D9

Trip coil supervision

User Map Address #16

010F

0300

Phase A current (lower word)

User Map Address #17

0110

0301

Phase A current (upper word)

User Map Address #18

0111

0302

Phase B current (lower word)

User Map Address #19

0112

0303

Phase B current (upper word)

User Map Address #20

0113

0304

Phase C current (lower word)

User Map Address #21

0114

0305

Phase C current (upper word)

User Map Address #22

0115

0306

Average phase current (lower


word)

User Map Address #23

0116

0307

Average phase current


(upper word)

User Map Address #24

0117

030B

Ground current (lower word)

User Map Address #25

0118

030C

Ground current (upper word)

User Map Address #26

0119

0321

RTD #1 temperature

User Map Address #27

011A

0322

RTD #2 temperature

User Map Address #28

011B

0323

RTD #3 temperature

User Map Address #29

011C

0324

RTD #4 temperature

User Map Address #30

011D

0325

RTD #5 temperature

User Map Address #31

011E

0326

RTD #6 temperature

User Map Address #32

011F

0327

RTD #7 temperature

User Map Address #33

0120

0328

RTD #8 temperature

User Map Address #34

0121

0329

RTD #9 temperature

User Map Address #35

0122

032A

RTD #10 temperature

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 1: Default assignments for User-Definable Memory Map Area


USER MAP ADDRESS #

MODBUS
REGISTER
ADDRESS (HEX)

USER ASSIGNED
ADDRESS (HEX)

DESCRIPTION

User Map Address #36

0123

032B

RTD #11 temperature

User Map Address #37

0124

032C

RTD #12 temperature

User Map Address #38

0125

0340

Vab

User Map Address #39

0126

0341

Vbc
Vca

User Map Address #40

0127

0342

User Map Address #41

0128

0343

Average line voltage

User Map Address #42

0129

0348

System frequency

User Map Address #43

012A

0370

Power factor

User Map Address #44

012B

0371

Real power (lower word)

User Map Address #45

012C

0372

Real power (upper word)

User Map Address #46

012D

0374

Reactive power (lower word)

User Map Address #47

012E

0375

Reactive power (upper word)

User Map Address #48

012F

0376

Apparent power

User Map Address #49

0130

030D

Phase A differential current

User Map Address #50

0131

030E

Phase B differential current

User Map Address #51

0132

030F

Phase C differential current

User Map Address #52

0133

02D5

Assignable switch #1 status

User Map Address #53

0134

02D6

Assignable switch #2 status

User Map Address #54

0135

02D7

Assignable switch #3 status

User Map Address #55

0136

02D8

Assignable switch #4 status

Event Recorder
The 469 event recorder data starts at address 3000h. Address 3003h is a pointer to the
event of interest (1 representing the latest event and 256 representing the oldest event). To
retrieve Event 1, write 1 to the Event Record Selector (3003h) and read the data from
3004h to 3035h. To retrieve Event 2, write 2 to the Event Record Selector (3003h) and read
the data from 3004h to 3035h. All 256 events may be retrieved in this manner. The time
and date stamp of each event may be used to ensure that all events have been retrieved in
order without new events corrupting the sequence of events (Event 1 should be more
recent than Event 2, Event 2 should be more recent than Event 3, etc.).
Each communications port can individually select an Event ID number by writing address
to 3003h. This allows the front port, rear port, and auxiliary port to read different events
from the event recorder simultaneously.

Waveform Capture
The 469 stores a number of cycles of A/D samples each time a trip occurs in a trace buffer.
The trace buffer is partitioned according to the S1 PREFERENCES ZV TRACE MEMORY BUFFERS
setpoint. The Trace Memory Trigger is set up with the S1 PREFERENCES ZV TRACE MEMORY
TRIGGER setpoint and this determines how many pre-trip and post-trip cycles are stored.
The trace buffer is time and date stamped and may be correlated to a trip in the event
record. 10 waveforms are captured this way when a trip occurs. These are the 3 phase
currents, 3 differential currents, ground current and 3 voltage waveforms. This information
is stored in volatile memory and will be lost if power is cycled to the relay.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

15

COMMUNICATIONS GUIDE

To access the captured waveforms, select the waveform of interest by writing its trace
memory channel (see following table) to the Trace Memory Channel Selector (address
30F1h). Then read the trace memory data from address 3100h to 3700h. There are 720
samples per second when the nominal system frequency (modbus address 11C0) has been
set to 60 Hz or set to Variable. There are 600 samples per second when the nominal system
frequency has been set to 50 Hz. Sample rate may vary within 5% when 469 is tracking the
frequency of the input voltage. The actual sample rate for a trace is 12 x Trace Memory
Sampling Frequency, modbus address 30F9. The values read are in actual amperes or
volts.
TRACE MEMORY
CHANNEL

WAVEFORM

Phase A current

Phase B current

Phase C current

Differential phase A current

Differential phase B current

Differential phase C current

Ground current

Phase A voltage

Phase B voltage

Phase C voltage

10

Relay output states

Address 30F8h shows the number of traces taken. To access the latest use the value at
address 30F0h. To access more than 1 trace, reduce this value to access the older traces.
INTERNAL UNITS SCALE
SR 469 presents modbus values for trace data in internal units. The scale of internal units
for currents is 1 x CT = 500. The scale of internal units for voltage is 1 x VT = 2500.
Let SFcurrent represent scale factor for phase current or ground current.
Let SFvoltage represent scale factor for phase voltage.
SFcurrent = (CT primary )/ (500 )
SFvoltage= (120 V )* (VT ratio) / (2500 )
To calculate a value in units of Ampere from a waveform trace sample for Current:
Phase current [ Ampere ] = (trace sample value) * SFcurrent
To calculate a value in units of Volt from a waveform trace sample for Voltage:
Phase voltage [ Volt ] = (trace sample value) * SFvoltage
Table 2: Modbus registers related to trace value scale factor
Setpoint

16

Description

Units of measure

1180

CT primary

Current [Ampere]

1182

Ground CT Type

Current [Ampere]

1183

Ground CT primary

Current [Ampere]

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

1185

Differential CT primary

Current [Ampere]

11A1

Voltage ratio

Ratio [n:1]

Phase CT
The setpoint in modbus register 1180 provides an external factor for calculating phase
current.
Let A represent external scale, where A = value of register 1180.
Let B represent internal scale, where B = 500 for Phase current on SR469.
SFcurrent = A/B.
Ground CT (type 1A Secondary or type 5A Secondary)
The setpoint in modbus register 1183 provides an external factor for calculating ground
current.
The setpoint in modbus register 1182 has value 1 or value 2, indicating 1A or 5A secondary.
Let A represent external scale, where A = value of register 1183.
Let B represent internal scale, where B = 500 for Ground current on SR469.
SFcurrent = A/B.
Ground CT (type Multilin CT 50/0.025)
The setpoint in modbus register 1182 has value 3, indicating Ground CT type Multilin CT.
Let A represent external scale, where A = 1 Ampere.
Let B represent internal scale, where B = 500 for Ground current on SR469.
SFcurrent = A/B = 0.002 Ampere
Phase Differential CT
The setpoint in modbus register 1185 provides an external factor for calculating phase
differential current.
Let A represent external scale, where A = value of register 1185.
Let B represent internal scale, where B = 500 for Phase Differential current on SR469.
SFcurrent = A/B.
Phase VT
The setpoint in modbus register 11A1 provides an external factor for calculating phase
voltage. The scale factor is:
Let A represent external scale, where A = (120 Volts) * (value of register 11A1).
Let B represent internal scale, where B = 2500 for Phase voltage on SR469.
SFvoltage = A/B.
Table 3: SR469 Internal Units per Channel
Channel
number
0

Input wiring
Phase A current

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

Internal
units scale

Nominal
Unit

500

1 x CT

External Scale factor


SFcurrent or SFvoltage
CT primary /500

Modbus
register
1180

17

COMMUNICATIONS GUIDE

Phase B current

500

1 x CT

CT primary /500

1180

Phase C current

500

1 x CT

CT primary /500

1180

Differential phase A current

500

1 x CT

Differential CT primary /500

1185

Differential phase B current

500

1 x CT

Differential CT primary /500

1185

Differential phase C current

500

1 x CT

Differential CT primary /500

1185

Ground current ,
CT type = 1A or 5A secondary

500

1 x CT

Ground CT primary/500

1183

Ground current ,
CT type = Multlin CT 50/0.025

500

1 x CT

1 Ampere/500

1182

Phase A voltage

2500

1 x VT

120 V * ( Phase VT ratio)/2500

11A1

Phase B voltage

2500

1 x VT

120 V * ( Phase VT ratio)/2500

11A1

Phase C voltage

2500

1 x VT

120 V * ( Phase VT ratio)/2500

11A1

10

Relay output states

N/A

N/A

N/A

EXAMPLE CASES
Table 4: Example cases to demonstrate scaling factor in Phase current
Channel

Let A represent
Modbus value
At register 1180,
CT PRIMARY

Actual
Primary
Current

Value in waveform
capture trace data
register
3100 to 36FF

Scale factor
SFcurrent = A / B

Ia

1500 A

1000 A

333

A/B = 3

Ia

1000 A

1000 A

500

A/B = 2

Ia

500 A

1000 A

1000

A/B = 1

Table 5: Example case to demonstrate scaling factor in Ground Current, CT type 1A


secondary or CT type 5A secondary.
Channel

Ig

Let A represent
Modbus value
At register 1183,
Ground CT PRIMARY
10 A

Actual
Primary
Current
10 A

Value in waveform
capture trace data
register
3100 to 36FF
500

Scale factor
SFcurrent = A / B
A/B=0.02

Table 6: Example case to demonstrate scaling factor in Ground Current, Multilin CT


Let A represent

Channel

Ground CT Type
Multilin.
Modbus register
1182 has value 3.

Ig

18

1A

Actual
Primary
Current
1A

Value in waveform
capture trace data
register
3100 to 36FF
500

Scale factor
SFcurrent = A / B

A/B=0.002

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

469 Memory Map


The 469 memory map is shown in the following table.

Table 7: 469 MEMORY MAP (Sheet 1 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

Product ID (Addresses 0000 to 007F)


PRODUCT ID

0000

Product device code

--

--

--

--

F1

30

0001

Product hardware revision

26

--

F15

--

0002

Product software revision

--

--

--

--

F16

--

0003

Product modification number

999

--

F1

--

0004

Reserved

0005

Reserved

...

...

000F

Reserved

0010

Boot program revision

--

--

--

--

F16

--

0011

Boot program modification number

999

--

F1

--

0012

Reserved

0013

Reserved

...

...

007F

Reserved

Commands (Addresses 0080 to 00FF)


COMMANDS

0080

Command function code

0081

Reserved

0088

Communications port passcode

99999999

--

F12

00F0

Time (broadcast)

--

--

--

--

--

--

00F2

Date (broadcast)

--

--

--

--

--

--

00F4

Reserved

00F5

Reserved

...

...

00FF

Reserved

User Map (Addresses 0100 to 017F)


USER MAP
VALUES

0100

User map value #1

--

--

--

--

--

--

0101

User map value #2

--

--

--

--

--

--

0102

User map value #3

--

--

--

--

--

--

0103

User map value #4

--

--

--

--

--

--

0104

User map value #5

--

--

--

--

--

--

0105

User map value #6

--

--

--

--

--

--

0106

User map value #7

--

--

--

--

--

--

0107

User map value #8

--

--

--

--

--

--

0108

User map value #9

--

--

--

--

--

--

0109

User map value #10

--

--

--

--

--

--

010A

User map value #11

--

--

--

--

--

--

010B

User map value #12

--

--

--

--

--

--

010C

User map value #13

--

--

--

--

--

--

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

19

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 2 of 91)


GROUP

20

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

010D

User map value #14

--

--

--

--

--

--

010E

User map value #15

--

--

--

--

--

--

010F

User map value #16

--

--

--

--

--

--

0110

User map value #17

--

--

--

--

--

--

0111

User map value #18

--

--

--

--

--

--

0112

User map value #19

--

--

--

--

--

--

0113

User map value #20

--

--

--

--

--

--

0114

User map value #21

--

--

--

--

--

--

0115

User map value #22

--

--

--

--

--

--

0116

User map value #23

--

--

--

--

--

--

0117

User map value #24

--

--

--

--

--

--

0118

User map value #25

--

--

--

--

--

--

0119

User map value #26

--

--

--

--

--

--

011A

User map value #27

--

--

--

--

--

--

011B

User map value #28

--

--

--

--

--

--

011C

User map value #29

--

--

--

--

--

--

011D

User map value #30

--

--

--

--

--

--

011E

User map value #31

--

--

--

--

--

--

011F

User map value #32

--

--

--

--

--

--

0120

User map value #33

--

--

--

--

--

--

0121

User map value #34

--

--

--

--

--

--

0122

User map value #35

--

--

--

--

--

--

0123

User map value #36

--

--

--

--

--

--

0124

User map value #37

--

--

--

--

--

--

0125

User map value #38

--

--

--

--

--

--

0126

User map value #39

--

--

--

--

--

--

0127

User map value #40

--

--

--

--

--

--

0128

User map value #41

--

--

--

--

--

--

0129

User map value #42

--

--

--

--

--

--

012A

User map value #43

--

--

--

--

--

--

012B

User map value #44

--

--

--

--

--

--

012C

User map value #45

--

--

--

--

--

--

012D

User map value #46

--

--

--

--

--

--

012E

User map value #47

--

--

--

--

--

--

012F

User map value #48

--

--

--

--

--

--

0130

User map value #49

--

--

--

--

--

--

0131

User map value #50

--

--

--

--

--

--

0132

User map value #51

--

--

--

--

--

--

0133

User map value #52

--

--

--

--

--

--

0134

User map value #53

--

--

--

--

--

--

0135

User map value #54

--

--

--

--

--

--

0136

User map value #55

--

--

--

--

--

--

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 3 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

0137

User map value #56

--

--

--

--

--

--

0138

User map value #57

--

--

--

--

--

--

0139

User map value #58

--

--

--

--

--

--

013A

User map value #59

--

--

--

--

--

--

013B

User map value #60

--

--

--

--

--

--

013C

User map value #61

--

--

--

--

--

--

013D

User map value #62

--

--

--

--

--

--

013E

User map value #63

--

--

--

--

--

--

013F

User map value #64

--

--

--

--

--

--

0140

User map value #65

--

--

--

--

--

--

0141

User map value #66

--

--

--

--

--

--

0142

User map value #67

--

--

--

--

--

--

0143

User map value #68

--

--

--

--

--

--

0144

User map value #69

--

--

--

--

--

--

0145

User map value #70

--

--

--

--

--

--

0146

User map value #71

--

--

--

--

--

--

0147

User map value #72

--

--

--

--

--

--

0148

User map value #73

--

--

--

--

--

--

0149

User map value #74

--

--

--

--

--

--

014A

User map value #75

--

--

--

--

--

--

014B

User map value #76

--

--

--

--

--

--

014C

User map value #77

--

--

--

--

--

--

014D

User map value #78

--

--

--

--

--

--

014E

User map value #79

--

--

--

--

--

--

014F

User map value #80

--

--

--

--

--

--

0150

User map value #81

--

--

--

--

--

--

0151

User map value #82

--

--

--

--

--

--

0152

User map value #83

--

--

--

--

--

--

0153

User map value #84

--

--

--

--

--

--

0154

User map value #85

--

--

--

--

--

--

0155

User map value #86

--

--

--

--

--

--

0156

User map value #87

--

--

--

--

--

--

0157

User map value #88

--

--

--

--

--

--

0158

User map value #89

--

--

--

--

--

--

0159

User map value #90

--

--

--

--

--

--

015A

User map value #91

--

--

--

--

--

--

015B

User map value #92

--

--

--

--

--

--

015C

User map value #93

--

--

--

--

--

--

015D

User map value #94

--

--

--

--

--

--

015E

User map value #95

--

--

--

--

--

--

015F

User map value #96

--

--

--

--

--

--

0160

User map value #97

--

--

--

--

--

--

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

21

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 4 of 91)


GROUP

USER MAP
ADDRESSES

22

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

0161

User map value #98

--

--

--

--

--

--

0162

User map value #99

--

--

--

--

--

--

0163

User map value #100

--

--

--

--

--

--

0164

User map value #101

--

--

--

--

--

--

0165

User map value #102

--

--

--

--

--

--

0166

User map value #103

--

--

--

--

--

--

0167

User map value #104

--

--

--

--

--

--

0168

User map value #105

--

--

--

--

--

--

0169

User map value #106

--

--

--

--

--

--

016A

User map value #107

--

--

--

--

--

--

016B

User map value #108

--

--

--

--

--

--

016C

User map value #109

--

--

--

--

--

--

016D

User map value #110

--

--

--

--

--

--

016E

User map value #111

--

--

--

--

--

--

016F

User map value #112

--

--

--

--

--

--

0170

User map value #113

--

--

--

--

--

--

0171

User map value #114

--

--

--

--

--

--

0172

User map value #115

--

--

--

--

--

--

0173

User map value #116

--

--

--

--

--

--

0174

User map value #117

--

--

--

--

--

--

0175

User map value #118

--

--

--

--

--

--

0176

User map value #119

--

--

--

--

--

--

0177

User map value #120

--

--

--

--

--

--

0178

User map value #121

--

--

--

--

--

--

0179

User map value #122

--

--

--

--

--

--

017A

User map value #123

--

--

--

--

--

--

017B

User map value #124

--

--

--

--

--

--

017C

User map value #125

--

--

--

--

--

--

017D

Reserved

017E

Reserved

017F

Reserved

0180

User map address #1

3FFF

hex

F1

200

0181

User map address #2

3FFF

hex

F1

210

0182

User map address #3

3FFF

hex

F1

211

0183

User map address #4

3FFF

hex

F1

227

0184

User map address #5

3FFF

hex

F1

228

0185

User map address #6

3FFF

hex

F1

229

0186

User map address #7

3FFF

hex

F1

22A

0187

User map address #8

3FFF

hex

F1

22B

0188

User map address #9

3FFF

hex

F1

22C

0189

User map address #10

3FFF

hex

F1

2D0

018A

User map address #11

3FFF

hex

F1

2D1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 5 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

018B

User map address #12

3FFF

hex

F1

2D2

018C

User map address #13

3FFF

hex

F1

2D3

018D

User map address #14

3FFF

hex

F1

2D4

018E

User map address #15

3FFF

hex

F1

2D9

018F

User map address #16

3FFF

hex

F1

300

0190

User map address #17

3FFF

hex

F1

301

0191

User map address #18

3FFF

hex

F1

302

0192

User map address #19

3FFF

hex

F1

303

0193

User map address #20

3FFF

hex

F1

304

0194

User map address #21

3FFF

hex

F1

305

0195

User map address #22

3FFF

hex

F1

306

0196

User map address #23

3FFF

hex

F1

307

0197

User map address #24

3FFF

hex

F1

30B

0198

User map address #25

3FFF

hex

F1

30C

0199

User map address #26

3FFF

hex

F1

321

019A

User map address #27

3FFF

hex

F1

322

019B

User map address #28

3FFF

hex

F1

323

019C

User map address #29

3FFF

hex

F1

324

019D

User map address #30

3FFF

hex

F1

325

019E

User map address #31

3FFF

hex

F1

326

019F

User map address #32

3FFF

hex

F1

327

01A0

User map address #33

3FFF

hex

F1

328

01A1

User map address #34

3FFF

hex

F1

329

01A2

User map address #35

3FFF

hex

F1

32A

01A3

User map address #36

3FFF

hex

F1

32B

01A4

User map address #37

3FFF

hex

F1

32C

01A5

User map address #38

3FFF

hex

F1

340

01A6

User map address #39

3FFF

hex

F1

341

01A7

User map address #40

3FFF

hex

F1

342

01A8

User map address #41

3FFF

hex

F1

343

01A9

User map address #42

3FFF

hex

F1

348

01AA

User map address #43

3FFF

hex

F1

370

01AB

User map address #44

3FFF

hex

F1

371

01AC

User map address #45

3FFF

hex

F1

372

01AD

User map address #46

3FFF

hex

F1

374

01AE

User map address #47

3FFF

hex

F1

375

01AF

User map address #48

3FFF

hex

F1

376

01B0

User map address #49

3FFF

hex

F1

30D

01B1

User map address #50

3FFF

hex

F1

30E

01B2

User map address #51

3FFF

hex

F1

30F

01B3

User map address #52

3FFF

hex

F1

2D5

01B4

User map address #53

3FFF

hex

F1

2D6

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

23

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 6 of 91)


GROUP

24

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

01B5

User map address #54

3FFF

hex

F1

2D7

01B6

User map address #55

3FFF

hex

F1

2D8

01B7

User map address #56

3FFF

hex

F1

000

01B8

User map address #57

3FFF

hex

F1

000

01B9

User map address #58

3FFF

hex

F1

000

01BA

User map address #59

3FFF

hex

F1

000

01BB

User map address #60

3FFF

hex

F1

000

01BC

User map address #61

3FFF

hex

F1

000

01BD

User map address #62

3FFF

hex

F1

000

01BE

User map address #63

3FFF

hex

F1

000

01BF

User map address #64

3FFF

hex

F1

000

01C0

User map address #65

3FFF

hex

F1

000

01C1

User map address #66

3FFF

hex

F1

000

01C2

User map address #67

3FFF

hex

F1

000

01C3

User map address #68

3FFF

hex

F1

000

01C4

User map address #69

3FFF

hex

F1

000

01C5

User map address #70

3FFF

hex

F1

000

01C6

User map address #71

3FFF

hex

F1

000

01C7

User map address #72

3FFF

hex

F1

000

01C8

User map address #73

3FFF

hex

F1

000

01C9

User map address #74

3FFF

hex

F1

000

01CA

User map address #75

3FFF

hex

F1

000

01CB

User map address #76

3FFF

hex

F1

000

01CC

User map address #77

3FFF

hex

F1

000

01CD

User map address #78

3FFF

hex

F1

000

01CE

User map address #79

3FFF

hex

F1

000

01CF

User map address #80

3FFF

hex

F1

000

01D0

User map address #81

3FFF

hex

F1

000

01D1

User map address #82

3FFF

hex

F1

000

01D2

User map address #83

3FFF

hex

F1

000

01D3

User map address #84

3FFF

hex

F1

000

01D4

User map address #85

3FFF

hex

F1

000

01D5

User map address #86

3FFF

hex

F1

000

01D6

User map address #87

3FFF

hex

F1

000

01D7

User map address #88

3FFF

hex

F1

000

01D8

User map address #89

3FFF

hex

F1

000

01D9

User map address #90

3FFF

hex

F1

000

01DA

User map address #91

3FFF

hex

F1

000

01DB

User map address #92

3FFF

hex

F1

000

01DC

User map address #93

3FFF

hex

F1

000

01DD

User map address #94

3FFF

hex

F1

000

01DE

User map address #95

3FFF

hex

F1

000

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 7 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

01DF

User map address #96

3FFF

hex

F1

000

01E0

User map address #97

3FFF

hex

F1

000

01E1

User map address #98

3FFF

hex

F1

000

01E2

User map address #99

3FFF

hex

F1

000

01E3

User map address #100

3FFF

hex

F1

000

01E4

User map address #101

3FFF

hex

F1

000

01E5

User map address #102

3FFF

hex

F1

000

01E6

User map address #103

3FFF

hex

F1

000

01E7

User map address #104

3FFF

hex

F1

000

01E8

User map address #105

3FFF

hex

F1

000

01E9

User map address #106

3FFF

hex

F1

000

01EA

User map address #107

3FFF

hex

F1

000

01EB

User map address #108

3FFF

hex

F1

000

01EC

User map address #109

3FFF

hex

F1

000

01ED

User map address #110

3FFF

hex

F1

000

01EE

User map address #111

3FFF

hex

F1

000

01EF

User map address #112

3FFF

hex

F1

000

01F0

User map address #113

3FFF

hex

F1

000

01F1

User map address #114

3FFF

hex

F1

000

01F2

User map address #115

3FFF

hex

F1

000

01F3

User map address #116

3FFF

hex

F1

000

01F4

User map address #117

3FFF

hex

F1

000

01F5

User map address #118

3FFF

hex

F1

000

01F6

User map address #119

3FFF

hex

F1

000

01F7

User map address #120

3FFF

hex

F1

000

01F8

User map address #121

3FFF

hex

F1

000

01F9

User map address #122

3FFF

hex

F1

000

01FA

User map address #123

3FFF

hex

F1

000

01FB

User map address #124

3FFF

hex

F1

000

01FC

User Map Address #125

3FFF

hex

F1

000

01FD

Reserved

01FE

Reserved

01FF

Reserved

Actual Values (Addresses 0200 to 0FFF)


MOTOR
STATUS

0200

Motor status

--

F133

0201

Motor thermal capacity used

100

F1

0202

Estimated time to trip on overload

99999

F20

0204

Motor speed

--

F135

0205

Communication setpoint access

--

--

F126

--

0206

Reserved

0207

Reserved

...

...

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

25

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 8 of 91)


GROUP

SYSTEM
STATUS

LAST TRIP
DATA ALARM

26

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

020F

Reserved

0210

General status

65535

--

F140

0211

Output relay status

63

--

F141

0212

Reserved

0213

Reserved

...

...

021F

Reserved

0220

Cause of last trip

49

--

F134

0221

Time of last trip (2 words)

--

--

--

--

F19

--

0223

Date of last trip (2 words)

--

--

--

--

F18

--

0225

Motor speed during trip

--

F135

0226

Pre-trip tachometer RPM

3600

RPM

F1

0227

Phase A pre-trip current

100000

F9

0229

Phase B pre-trip current

100000

F9

022B

Phase C pre-trip current

100000

F9

022D

Pre-trip motor load

2000

FLA

F3

022E

Pre-trip current unbalance

100

F1

022F

Pre-trip ground current

5000

F11

0231

Phase A pre-trip differential current

5000

F1

0232

Phase B pre-trip differential current

5000

F1

0233

Phase C pre-trip differential current

5000

F1

0234

Hottest stator RTD during trip

12

--

F1

0235

Pre-trip temperature of hottest stator RTD

50

250

F4

0236

Hottest bearing RTD during trip

12

--

F1

0237

Pre-trip temperature of hottest bearing RTD

50

250

F4

0238

Hottest other RTD during trip

12

--

F1

0239

Pre-trip temperature of hottest other RTD

50

250

F4

023A

Hottest ambient RTD during trip

12

--

F1

023B

Pre-trip ambient RTD temperature

50

250

F4

023C

Pre-trip voltage Vab

20000

F1

023D

Pre-trip voltage Vbc

20000

F1

023E

Pre-trip voltage Vca

20000

F1

023F

Pre-trip voltage Van

20000

F1

0240

Pre-trip voltage Vbn

20000

F1

0241

Pre-trip voltage Vcn

20000

F1

0242

Pre-trip system frequency

12000

Hz

F3

0243

Pre-trip real power

50000

50000

kW

F12

0245

Pre-trip reactive power

50000

50000

kvar

F12

0247

Pre-trip apparent power

50000

kVA

F1

0248

Pre-trip power factor

99

100

--

F21

0249

Analog input #1 pre-trip power

50000

50000

--

F12

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 9 of 91)


GROUP

STATUS

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

024B

Analog input #2 pre-trip power

50000

50000

--

F12

024D

Analog input #3 pre-trip power

50000

50000

--

F12

024F

Analog input #4 pre-trip power

50000

50000

--

F12

0251

Reserved

0252

Reserved

...

...

025B

Reserved

025C

Pre-trip temperature of hottest stator RTD

58

482

F4

32

025D

Pre-trip temperature of hottest bearing RTD

58

482

F4

32

025E

Pre-trip temperature of hottest other RTD

58

482

F4

32

025F

Pre-trip temperature of hottest ambient RTD

58

482

F4

32

0260

Reserved

0261

Reserved

0262

Reserved

0263

Reserved

0264

Reserved

0265

Remote alarm status

--

F123

0266

Pressure switch alarm status

--

F123

0267

Vibration switch alarm status

--

F123

0268

Digital counter alarm status

--

F123

0269

Tachometer alarm status

--

F123

026A

General switch A alarm status

--

F123

026B

General switch B alarm status

--

F123

026C

General switch C alarm status

--

F123

026D

General switch D alarm status

--

F123

026E

Thermal capacity alarm

--

F123

026F

Overload alarm status

--

F123

0270

Undercurrent alarm status

--

F123

0271

Current unbalance alarm status

--

F123

0272

Ground fault alarm status

--

F123

0273

RTD #1 alarm status

--

F123

0274

RTD #2 alarm status

--

F123

0275

RTD #3 alarm status

--

F123

0276

RTD #4 alarm status

--

F123

0277

RTD #5 alarm status

--

F123

0278

RTD #6 alarm status

--

F123

0279

RTD #7 alarm status

--

F123

027A

RTD #8 alarm status

--

F123

027B

RTD #9 alarm status

--

F123

027C

RTD #10 alarm status

--

F123

027D

RTD #11 alarm status

--

F123

027E

RTD #12 alarm status

--

F123

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

27

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 10 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

027F

Open RTD sensor alarm status

--

F123

0280

Short sensor / low temperature alarm status

--

F123

0281

Undervoltage alarm status

--

F123

0282

Overvoltage alarm status

--

F123

0283

System frequency alarm status

--

F123

0284

Power factor alarm status

--

F123

0285

Reactive power alarm status

--

F123

0286

Underpower alarm status

--

F123

0287

Trip counter alarm status

--

F123

0288

Starter failure alarm

--

F123

0289

Current demand alarm status

--

F123

028A

kW demand alarm status

--

F123

028B

kvar demand alarm status

--

F123

028C

kVA demand alarm status

--

F123

028D

Analog input 1 alarm status

--

F123

028E

Analog input 2 alarm status

--

F123

028F

Analog input 3 alarm status

--

F123

0290

Analog input 4 alarm status

--

F123

0291

Reverse power alarm status

--

F123

0292

RTD #1 high alarm status

--

F123

0293

RTD #2 high alarm status

--

F123

0294

RTD #3 high alarm status

--

F123

0295

RTD #4 high alarm status

--

F123

0296

RTD #5 high alarm status

--

F123

0297

RTD #6 high alarm status

--

F123

0298

RTD #7 high alarm status

--

F123

0299

RTD #8 high alarm status

--

F123

029A

RTD #9 high alarm status

--

F123

029B

RTD #10 high alarm status

--

F123

029C

RTD #11 high alarm status

--

F123

029D

RTD #12 high alarm status

--

F123

029E

Analog difference 1-2 alarm status

--

F123

029F

Analog difference 3-4 alarm status

--

F123

02A0

Overtorque alarm status

--

F123

02A1

Reserved

02A2

Reserved
...

START
BLOCKS

28

02AE

Reserved

02AF

Self test alarm

FFFF

--

--

02B0

Overload lockout block

500

minutes

F1

02B1

Start inhibit block lockout time

500

minutes

F1

02B2

Starts/hour block lockout time

60

minutes

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 11 of 91)


GROUP

DIGITAL
INPUTS

REAL TIME
CLOCK
CURRENT
METERING

TEMPERATURE

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

02B3

Time between starts lockout time

500

minutes

F1

02B4

Restart block lockout

50000

F1

02B5

Reserved

02B6

Reserved

...

...

02CF

Reserved

02D0

Access switch status

--

F131

02D1

Test switch status

--

F131

02D2

Starter switch status

--

F131

02D3

Emergency restart switch status

--

F131

02D4

Remote reset switch status

--

F131

02D5

Assignable switch #1 status

--

F131

02D6

Assignable switch #2 status

--

F131

02D7

Assignable switch #3 status

--

F131

02D8

Assignable switch #4 status

--

F131

02D9

Trip coil supervision

--

F132

02DA

Reserved

02DB

Reserved

...

...

02FB

Reserved

02FC

Date (read only)

--

--

--

--

--

--

02FE

Time (read only)

--

--

--

--

--

--

0300

Phase A current

100000

F9

0302

Phase B current

100000

F9

0304

Phase C current

100000

F9

0306

Average phase current

100000

F9

0308

Motor load

2000

FLA

F3

0309

Current unbalance

100

F1

030A

Equivalent motor load

2000

FLA

F3

030B

Ground current

5000

F11

030D

Phase A differential current

5000

F1

030E

Phase B differential current

5000

F1

030F

Phase C differential current

5000

F1

0310

Reserved

0311

Reserved

...

...

031F

Reserved

0320

Hottest stator RTD

50

250

F4

0321

RTD #1 temperature

50

250

F4

0322

RTD #2 temperature

50

250

F4

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

29

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 12 of 91)


GROUP

VOLTAGE
METERING

30

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

0323

RTD #3 temperature

50

250

F4

0324

RTD #4 temperature

50

250

F4

0325

RTD #5 temperature

50

250

F4

0326

RTD #6 temperature

50

250

F4

0327

RTD #7 temperature

50

250

F4

0328

RTD #8 temperature

50

250

F4

0329

RTD #9 temperature

50

250

F4

032A

RTD #10 temperature

50

250

F4

032B

RTD #11 temperature

50

250

F4

032C

RTD #12 temperature

50

250

F4

032D

Reserved

032E

Reserved

032F

Reserved

0330

Hottest stator RTD (in Fahrenheit)

58

482

F4

32

0331

RTD #1 temperature (in Fahrenheit)

58

482

F4

32

0332

RTD #2 temperature (in Fahrenheit)

58

482

F4

32

0333

RTD #3 temperature (in Fahrenheit)

58

482

F4

32

0334

RTD #4 temperature (in Fahrenheit)

58

482

F4

32

0335

RTD #5 temperature (in Fahrenheit)

58

482

F4

32

0336

RTD #6 temperature (in Fahrenheit)

58

482

F4

32

0337

RTD #7 temperature (in Fahrenheit)

58

482

F4

32

0338

RTD #8 temperature (in Fahrenheit)

58

482

F4

32

0339

RTD #9 temperature (in Fahrenheit)

58

482

F4

32

033A

RTD #10 temperature (in Fahrenheit)

58

482

F4

32

033B

RTD #11 temperature (in Fahrenheit)

58

482

F4

32

033C

RTD #12 temperature (in Fahrenheit)

58

482

F4

32

033D

Reserved

033E

Reserved

033F

Reserved

0340

Vab

20000

F1

0341

Vbc

20000

F1

0342

Vca

20000

F1

0343

Average line voltage

20000

F1

0344

Van

20000

F1

0345

Vbn

20000

F1

0346

Vcn

20000

F1

0347

Average phase voltage

20000

F1

0348

System frequency

12000

Hz

F3

0349

Reserved

034A

Reserved

...

...

035F

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 13 of 91)


GROUP
SPEED

POWER
METERING

DEMAND
METERING

ANALOG
INPUTS

ADDR
(HEX)

DESCRIPTION

0360

Tachometer RPM

0361

Reserved

0362

Reserved

...

...

036F

Reserved

0370

Power factor

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

7200

RPM

F1

99

100

F21

0371

Real power

99999

99999

kW

F12

0373

Real power (HP)

65535

hp

F1

0374

Reactive power

99999

99999

kvar

F12

0376

Apparent power

65535

kVA

F1

0377

MWh consumption

99999999
9

MWh

F17

0379

Mvarh consumption

99999999
9

Mvarh

F17

037B

Mvarh generation

99999999
9

Mvarh

F17

037D

Torque

9999999

Nm/ftlb

F10

037F

Reserved

F9

0380

Reserved

...

...

038F

Reserved

0390

Current demand

100000

0392

Real power demand

99999

kW

F12

0394

Reactive power demand

99999

kvar

F12

0396

Apparent power demand

65535

kVA

F1

0397

Peak current demand

100000

F9

0399

Peak real power demand

99999

kW

F12

039B

Peak reactive power demand

99999

kvar

F12

039D

Peak apparent power demand

65535

kVA

F1

039E

Reserved

039F

Reserved

...

...

03AF

Reserved

03B0

Analog input 1

50000

50000

--

F12

03B2

Analog input 2

50000

50000

--

F12

03B4

Analog input 3

50000

50000

--

F12

03B6

Analog input 4

50000

50000

--

F12

03B8

Analog input 1-2 difference

100000

100000

--

F12

03BA

Analog input 3-4 difference

100000

100000

--

F12

03BC

Reserved

03BD

Reserved

03BE

Reserved

03BF

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

31

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 14 of 91)


GROUP
MOTOR
STARTING

AVERAGE
MOTOR LOAD

RTD
MAXIMUMS

32

ADDR
(HEX)
03C0

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

Learned acceleration time

2000

F2

03C1

Learned starting current

50000

F9

03C3

Learned starting capacity

100

F1

03C4

Last acceleration time

2000

F2

03C5

Last starting current

50000

F9

03C7

Last starting capacity

100

F1

03C8

Reserved

03C9

Reserved

2000

FLA

F3

...

...

03CF

Reserved

03D0

Average motor load learned

03D1

Reserved

03D2

Reserved

...

...

03DF

Reserved

03E0

RTD #1 maximum temperature (in C)

50

250

F4

03E1

RTD #2 maximum temperature (in C)

50

250

F4

03E2

RTD #3 maximum temperature (in C)

50

250

F4

03E3

RTD #4 maximum temperature (in C)

50

250

F4

03E4

RTD #5 maximum temperature (in C)

50

250

F4

03E5

RTD #6 maximum temperature (in C)

50

250

F4

03E6

RTD #7 maximum temperature (in C)

50

250

F4

03E7

RTD #8 maximum temperature (in C)

50

250

F4

03E8

RTD #9 maximum temperature (in C)

50

250

F4

03E9

RTD #10 maximum temperature (in C)

50

250

F4

03EA

RTD #11 maximum temperature (in C)

50

250

F4

03EB

RTD #12 maximum temperature (in C)

50

250

F4

03EC

Reserved

03ED

Reserved

03EE

Reserved

03EF

Reserved

03F0

RTD #1 maximum temperature (in F)

58

482

F4

32

03F1

RTD #2 maximum temperature (in F)

58

482

F4

32

03F2

RTD #3 maximum temperature (in F)

58

482

F4

32

03F3

RTD #4 maximum temperature (in F)

58

482

F4

32

03F4

RTD #5 maximum temperature (in F)

58

482

F4

32

03F5

RTD #6 maximum temperature (in F)

58

482

F4

32

03F6

RTD #7 maximum temperature (in F)

58

482

F4

32

03F7

RTD #8 maximum temperature (in F)

58

482

F4

32

03F8

RTD #9 maximum temperature (in F)

58

482

F4

32

03F9

RTD #10 maximum temperature (in F)

58

482

F4

32

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 15 of 91)


GROUP

ANALOG
INPUTS
MINIMUM /
MAXIMUM

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

03FA

RTD #11 maximum temperature (in F)

58

482

F4

32

03FB

RTD #12 maximum temperature (in F)

58

482

F4

32

03FC

Reserved

03FD

Reserved

03FE

Reserved

03FF

Reserved

0400

Analog input 1 minimum

50000

50000

--

F12

0402

Analog input 1 maximum

50000

50000

--

F12

0404

Analog input 2 minimum

50000

50000

--

F12

0406

Analog input 2 maximum

50000

50000

--

F12

0408

Analog input 3 minimum

50000

50000

--

F12

040A

Analog input 3 maximum

50000

50000

--

F12

040C

Analog input 4 minimum

50000

50000

--

F12

040E

Analog input 4 maximum

50000

50000

--

F12

0410

Reserved

0411

Reserved

...
041F
CALIBRATION

TRIP
COUNTERS

Reserved

0420

Original Calibration Date

--

--

--

--

F18

--

0422

Last Calibration Date

--

--

--

--

F18

--

0424

Reserved

0425

Reserved

...

...

042F

Reserved

0430

Total number of trips

50000

--

F1

0431

Incomplete sequence trips

50000

--

F1

0432

Input switch trips

50000

--

F1

0433

Tachometer trips

50000

--

F1

0434

Overload trips

50000

--

F1

0435

Short circuit trips

50000

--

F1

0436

Mechanical jam trips

50000

--

F1

0437

Undercurrent trips

50000

--

F1

0438

Current unbalance trips

50000

--

F1

0439

Ground fault trips

50000

--

F1

043A

Phase differential trips

50000

--

F1

043B

Motor acceleration trips

50000

--

F1

043C

Stator RTD trips

50000

--

F1

043D

Bearing RTD trips

50000

--

F1

043E

Other RTD trips

50000

--

F1

043F

Ambient RTD trips

50000

--

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

33

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 16 of 91)


GROUP

GENERAL
COUNTERS

TIMERS

34

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

0440

Undervoltage trips

50000

--

F1

0441

Overvoltage trips

50000

--

F1

0442

Voltage phase reversal trips

50000

--

F1

0443

Voltage frequency trips

50000

--

F1

0444

Power factor trips

50000

--

F1

0445

Reactive power trips

50000

--

F1

0446

Underpower trips

50000

--

F1

0447

Analog input 1 trips

50000

--

F1

0448

Analog input 2 trips

50000

--

F1

0449

Analog input 3 trips

50000

--

F1

044A

Analog input 4 trips

50000

--

F1

044B

Reverse power trips

50000

--

F1

044C

Analog inputs difference 1-2 trips

50000

--

F1

044D

Analog inputs difference 3-4 trips

50000

--

F1

044E

Reserved

044F

Reserved

...

...

046F

Reserved

0470

Number of motor starts

50000

--

F1

0471

Number of emergency restarts

50000

--

F1

0472

Number of starter operations

50000

--

F1

10000000
00

--

F9

F9

0473

Digital counter

0475

Reserved

0475

Reserved

...

...

049F

Reserved

04A0

Motor running hours

100000

hours

04A2

Time between starts timer

500

minutes

F1

04A3

Start timer 1

60

minutes

F1

04A4

Start timer 2

60

minutes

F1

04A5

Start timer 3

60

minutes

F1

04A6

Start timer 4

60

minutes

F1

04A7

Start timer 5

60

minutes

F1

04A8

Reserved

04A9

Reserved

...

...

04BF

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 17 of 91)


GROUP

ADDR
(HEX)

PHASORS

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

04C0

Order code

65535

--

F136

--

04C1

Relay serial number (read only)

--

--

--

F22

A300000
0

04C5
469 MODEL
INFORMATION
04C6

CALIBRATION
INFO.

DESCRIPTION

Reserved
Reserved

...

...

04DF

Reserved

04E0

Original calibration date

--

--

--

--

F18

--

04E2

Last calibration date

--

--

--

--

F19

--

04E4

Reserved

04E5

Reserved

...

...

04FF

Reserved

0500

Va angle

359

F1

--

0501

Vb angle

359

F1

--

0502

Vc angle

359

F1

--

0503

Ia angle

359

F1

--

0504

Ib angle

359

F1

--

0505

Ic angle

359

F1

--

0507

Reserved

0506

Reserved

DeviceNet explicit connection status

F151

0601

DeviceNet polled I/O connection status

F151

0602

DeviceNet COS connection status

F151

0603

DeviceNet port status

F153

0604

DeviceNet link status

F154

...

...

0FFF

Reserved

COMMUNICAT 0600
IONS

0605

DeviceNet serial number

--

--

--

--

F22

Unknow
n

060A

DeviceNet firmware version

--

--

--

--

F22

Unknow
n

060B

Reserved

060C

Reserved

060D

Reserved

060E

Reserved

0610

CoBox serial number

--

--

--

--

F22

Unknow
n

0624

CoBox MAC address

--

--

--

--

F22

Unknow
n

0638

CoBox firmware version

--

--

--

--

F22

Unknow
n

0639

Reserved

063A

Reserved

...

...

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

35

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 18 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

064B

Reserved

064C

Ethernet status

064D

Reserved

064E

Reserved

...

...

0FFF

Reserved

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

--

--

--

--

F152

--

Setpoints (Addresses 1000 to 1FFF)


PREFERENCES 1000

Default message cycle time

100

F2

20

1001

Default message timeout

10

900

F1

300

1002

Reserved

1003

Average motor load calculation period

90

minutes

F1

15

1004

Temperature display units

--

F100

1005

Trace memory trigger position

100

F1

25

1006

Trace memory buffers

16

cycles

F1

1007

Display update interval

60

F2

1008

Cyclic load filter interval

32

cycles

F1

1009

Passcode (write only)

99999999

--

F12

100B

Encrypted passcode (read only)

--

--

--

--

F12

--

100C

Reserved

100D

Reserved

100E

Reserved

100F

Reserved

SERIAL PORTS 1010

DEVICENET

ETHERNET

36

Slave address

254

--

F1

254

1011

Computer RS485 baud rate

--

F101

1012

Computer RS485 parity

--

F102

1013

Auxiliary RS485 baud rate

--

F101

1014

Auxiliary RS485 parity

--

F102

1015

Front RS232 baud rate

--

F101

1016

DeviceNet MAC ID

63

--

F1

32

1017

DeviceNet baud rate

--

F149

1018

Reserved

1019

Reserved

....

...

101F

Reserved

1020

Ethernet IP address

--

--

--

--

F150

1022

Ethernet subnet mask

--

--

--

--

F150

FFFFFF00

1024

Ethernet gateway address

--

--

--

--

F150

1025

Reserved

1026

Reserved

...

...

102F

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 19 of 91)


GROUP
REAL TIME
CLOCK

DEFAULT
MESSAGES

MESSAGE
SCRATCHPAD

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1030

Date

--

--

--

--

--

--

1032

Time

--

--

--

--

--

--

1034

Reserved

1035

Reserved

...

...

103F

Reserved

1040

Reserved

1041

Reserved

...

...

105F

Reserved

1060

Scratchpad message 1 characters 1 and 2

32

127

--

F1

Te

1061

Scratchpad message 1 characters 3 and 4

32

127

--

F1

xt

1062

Scratchpad message 1 characters 5 and 6

32

127

--

F1

1063

Scratchpad message 1 characters 7 and 8

32

127

--

F1

1064

Scratchpad message 1 characters 9 and 10

32

127

--

F1

1065

Scratchpad message 1 characters 11 and 12 32

127

--

F1

1066

Scratchpad message 1 characters 13 and 14 32

127

--

F1

1067

Scratchpad message 1 characters 15 and 16 32

127

--

F1

1068

Scratchpad message 1 characters 17 and 18 32

127

--

F1

1069

Scratchpad message 1 characters 19 and 20 32

127

--

F1

106A

Scratchpad message 1 characters 21 and 22 32

127

--

F1

106B

Scratchpad message 1 characters 23 and 24 32

127

--

F1

106C

Scratchpad message 1 characters 25 and 26 32

127

--

F1

106D

Scratchpad message 1 characters 27 and 28 32

127

--

F1

106E

Scratchpad message 1 characters 29 and 30 32

127

--

F1

106F

Scratchpad message 1 characters 31 and 32 32

127

--

F1

1070

Scratchpad message 1 characters 33 and 34 32

127

--

F1

1071

Scratchpad message 1 characters 35 and 36 32

127

--

F1

1072

Scratchpad message 1 characters 37 and 38 32

127

--

F1

1073

Scratchpad message 1 characters 39 and 40 32

127

--

F1

1074

Reserved

1075

Reserved

...

...

107F

Reserved

1080

Scratchpad message 2 characters 1 and 2

32

127

--

F1

Te

1081

Scratchpad message 2 characters 3 and 4

32

127

--

F1

xt

1082

Scratchpad message 2 characters 5 and 6

32

127

--

F1

1083

Scratchpad message 2 characters 7 and 8

32

127

--

F1

1084

Scratchpad message 2 characters 9 and 10

32

127

--

F1

1085

Scratchpad message 2 characters 11 and 12 32

127

--

F1

1086

Scratchpad message 2 characters 13 and 14 32

127

--

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

37

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 20 of 91)


GROUP

38

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1087

Scratchpad message 2 characters 15 and 16 32

127

--

F1

1088

Scratchpad message 2 characters 17 and 18 32

127

--

F1

1089

Scratchpad message 2 characters 19 and 20 32

127

--

F1

108A

Scratchpad message 2 characters 21 and 22 32

127

--

F1

108B

Scratchpad message 2 characters 23 and 24 32

127

--

F1

108C

Scratchpad message 2 characters 25 and 26 32

127

--

F1

108D

Scratchpad message 2 characters 27 and 28 32

127

--

F1

108E

Scratchpad message 2 characters 29 and 30 32

127

--

F1

108F

Scratchpad message 2 characters 31 and 32 32

127

--

F1

1090

Scratchpad message 2 characters 33 and 34 32

127

--

F1

1091

Scratchpad message 2 characters 35 and 36 32

127

--

F1

1092

Scratchpad message 2 characters 37 and 38 32

127

--

F1

1093

Scratchpad message 2 characters 39 and 40 32

127

--

F1

1094

Reserved

1095

Reserved

...

...

109F

Reserved

10A0

Scratchpad message 3 characters 1 and 2

32

127

--

F1

Te

10A1

Scratchpad message 3 characters 3 and 4

32

127

--

F1

xt

10A2

Scratchpad message 3 characters 5 and 6

32

127

--

F1

10A3

Scratchpad message 3 characters 7 and 8

32

127

--

F1

10A4

Scratchpad message 3 characters 9 and 10

32

127

--

F1

10A5

Scratchpad message 3 characters 11 and 12 32

127

--

F1

10A6

Scratchpad message 3 characters 13 and 14 32

127

--

F1

10A7

Scratchpad message 3 characters 15 and 16 32

127

--

F1

10A8

Scratchpad message 3 characters 17 and 18 32

127

--

F1

10A9

Scratchpad message 3 characters 19 and 20 32

127

--

F1

10AA

Scratchpad message 3 characters 21 and 22 32

127

--

F1

10AB

Scratchpad message 3 characters 23 and 24 32

127

--

F1

10AC

Scratchpad message 3 characters 25 and 26 32

127

--

F1

10AD

Scratchpad message 3 characters 27 and 28 32

127

--

F1

10AE

Scratchpad message 3 characters 29 and 30 32

127

--

F1

10AF

Scratchpad message 3 characters 31 and 32 32

127

--

F1

10B0

Scratchpad message 3 characters 33 and 34 32

127

--

F1

10B1

Scratchpad message 3 characters 35 and 36 32

127

--

F1

10B2

Scratchpad message 3 characters 37 and 38 32

127

--

F1

10B3

Scratchpad message 3 characters 39 and 40 32

127

--

F1

10B4

Reserved

10B5

Reserved

127

--

F1

Te

...

...

10BF

Reserved

10C0

Scratchpad message 4 characters 1 and 2

32

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 21 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

10C1

Scratchpad message 4 characters 3 and 4

32

127

--

F1

xt

10C2

Scratchpad message 4 characters 5 and 6

32

127

--

F1

10C3

Scratchpad message 4 characters 7 and 8

32

127

--

F1

10C4

Scratchpad message 4 characters 9 and 10

32

127

--

F1

10C5

Scratchpad message 4 characters 11 and 12 32

127

--

F1

10C6

Scratchpad message 4 characters 13 and 14 32

127

--

F1

10C7

Scratchpad message 4 characters 15 and 16 32

127

--

F1

10C8

Scratchpad message 4 characters 17 and 18 32

127

--

F1

10C9

Scratchpad message 4 characters 19 and 20 32

127

--

F1

10CA

Scratchpad message 4 characters 21 and 22 32

127

--

F1

10CB

Scratchpad message 4 characters 23 and 24 32

127

--

F1

10CC

Scratchpad message 4 characters 25 and 26 32

127

--

F1

10CD

Scratchpad message 4 characters 27 and 28 32

127

--

F1

10CE

Scratchpad message 4 characters 29 and 30 32

127

--

F1

10CF

Scratchpad message 4 characters 31 and 32 32

127

--

F1

10D0

Scratchpad message 4 characters 33 and 34 32

127

--

F1

10D1

Scratchpad message 4 characters 35 and 36 32

127

--

F1

10D2

Scratchpad message 4 characters 37 and 38 32

127

--

F1

10D3

Scratchpad message 4 characters 39 and 40 32

127

--

F1

10D4

Reserved

10D5

Reserved

...

...

10DF

Reserved

10E0

Scratchpad message 5 characters 1 and 2

32

127

--

F1

GE

10E1

Scratchpad message 5 characters 3 and 4

32

127

--

F1

10E2

Scratchpad message 5 characters 5 and 6

32

127

--

F1

UL

10E3

Scratchpad message 5 characters 7 and 8

32

127

--

F1

TI

10E4

Scratchpad message 5 characters 9 and 10

32

127

--

F1

LI

10E5

Scratchpad message 5 characters 11 and 12 32

127

--

F1

10E6

Scratchpad message 5 characters 13 and 14 32

127

--

F1

10E7

Scratchpad message 5 characters 15 and 16 32

127

--

F1

10E8

Scratchpad message 5 characters 17 and 18 32

127

--

F1

10E9

Scratchpad message 5 characters 19 and 20 32

127

--

F1

10EA

Scratchpad message 5 characters 21 and 22 32

127

--

F1

46

10EB

Scratchpad message 5 characters 23 and 24 32

127

--

F1

10EC

Scratchpad message 5 characters 25 and 26 32

127

--

F1

MO

10ED

Scratchpad message 5 characters 27 and 28 32

127

--

F1

TO

10EE

Scratchpad message 5 characters 29 and 30 32

127

--

F1

10EF

Scratchpad message 5 characters 31 and 32 32

127

--

F1

RE

10F0

Scratchpad message 5 characters 33 and 34 32

127

--

F1

LA

10F1

Scratchpad message 5 characters 35 and 36 32

127

--

F1

10F2

Scratchpad message 5 characters 37 and 38 32

127

--

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

39

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 22 of 91)


GROUP

CLEAR DATA

INSTALLATION

CURRENT
SENSING

VOLTAGE
SENSING

40

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

10F3

Scratchpad message 5 characters 39 and 40 32

127

--

F1

10F4

Reserved

10F4

Reserved

...

...

112F

Reserved

1130

Clear last trip data prompt

--

F103

1131

Reset MWh and Mvarh meters

--

F103

1132

Clear peak demand data

--

F103

1133

Clear RTD maximums

--

F103

1134

Clear analog input minimum/maximum data

--

F103

1135

Clear trip counters

--

F103

1136

Preset digital counter

--

F103

1137

Clear event records

--

F103

1138

Reserved

1139

Reserved

...

...

113F

Reserved

1140

Reset motor information

--

F103

1141

Reset starter information

--

F103

1142

Reserved

1143

Reserved

...

...

117F

Reserved

1180

Phase CT primary

5001

F1

5001

1181

Motor full load amps

5001

F1

5001

1182

Ground CT type

--

F104

1183

Ground CT primary

5000

F1

100

1184

Phase differential CT type

--

F105

1185

Phase differential CT primary

5000

F1

100

1186

Enable two speed motor option

--

F103

1187

Speed two phase CT primary

5000

F1

100

1188

Speed two motor full load current

5000

F1

1189

Reserved

1190

Reserved

...

...

119F

Reserved

11A0

Voltage transformer connection type

--

F106

11A1

Voltage transformer ratio

100

30000

--

F3

3500

11A2

Motor nameplate voltage

100

36000

F1

4000

11A3

Enable single VT connection

--

F143

11A4

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 23 of 91)


GROUP

POWER
SYSTEM

SERIAL COM.
CONTROL

REDUCED
VOLTAGE

STARTER
STATUS

ASSIGNABLE
INPUTS

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

11A5

Reserved

...

...

11BF

Reserved

11C0

Nominal system frequency

--

F107

11C1

System phase sequence

--

F124

11C2

Speed 2 phase sequence

--

F124

11C3

Reserved

11C3

Reserved

...

...

11C7

Reserved

11C8

Serial communication control

--

F103

11C9

Assign start control relays

--

F137

11CA

Reserved

11CB

Reserved

...

...

11CF

Reserved

11D0

Reduced voltage starting

--

F103

11D1

Control relays for reduced voltage starting

--

F137

11D2

Transition on

--

F108

11D3

Reduced voltage start level

25

300

%FLA

F1

100

11D4

Reduced voltage start timer

600

F1

200

11D5

Incomplete sequence trip relays

--

F111

11D6

Reserved

11D6

Reserved

...

...

122F

Reserved

1230

Starter Status Switch

F109

1231

Reserved

1232

Reserved

...

...

123F

Reserved

1240

Assignable Input 1 Function

18

--

F110

1241

Assignable Input 2 Function

18

--

F110

1242

Assignable Input 3 Function

18

--

F110

1243

Assignable Input 4 Function

18

--

F110

1244

Reserved

1245

Reserved

...

...

1259

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

41

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 24 of 91)


GROUP
REMOTE
ALARM

REMOTE TRIP

SPEED
SWITCH TRIP

LOAD SHED
TRIP

42

ADDR
(HEX)
125A

DESCRIPTION
Remote alarm name characters 1 and 2

MIN.
0

MAX.
65535

STEP
VALUE
1

UNITS
--

FORMAT
DEFAULT
CODE
F22

Re

125B

Remote alarm name characters 3 and 4

65535

--

F22

mo

125C

Remote alarm name characters 5 and 6

65535

--

F22

te

125D

Remote alarm name characters 7 and 8

65535

--

F22

125E

Remote alarm name characters 9 and 10

65535

--

F22

la

125F

Remote alarm name characters 11 and 12

65535

--

F22

rm

1260

Remote alarm name characters 13 and 14

65535

--

F22

1261

Remote alarm name characters 15 and 16

65535

--

F22

1262

Remote alarm name characters 17 and 18

65535

--

F22

1263

Remote alarm name characters 19 and 20

65535

--

F22

1264

Remote alarm function

--

F115

1265

Remote alarm relays

--

F113

1266

Remote alarm events

--

F103

1267

Reserved

1268

Reserved

...

...

1279

Reserved

127A

Remote trip name characters 1 and 2

65535

--

F22

Re

127B

Remote trip name characters 3 and 4

65535

--

F22

mo

127C

Remote trip name characters 5 and 6

65535

--

F22

te

127D

Remote trip name characters 7 and 8

65535

--

F22

127E

Remote trip name characters 9 and 10

65535

--

F22

ri

127F

Remote trip name characters 11 and 12

65535

--

F22

1280

Remote trip name characters 13 and 14

65535

--

F22

1281

Remote trip name characters 15 and 16

65535

--

F22

1282

Remote trip name characters 17 and 18

65535

--

F22

1283

Remote trip name characters 19 and 20

65535

--

F22

1284

Remote trip relays

--

F111

1285

Reserved

1286

Reserved

...

...

128F

Reserved

1290

Speed switch trip relays

--

F111

1291

Speed switch trip delay

10

2500

F2

50

1292

Reserved

--

F111

1293

Reserved

...

...

129F

Reserved

12A0

Load shed trip relays

12A1

Reserved

12A2

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 25 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

...

...

12AF

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

43

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 26 of 91)


GROUP
PRESSURE
SWITCH
ALARM

PRESSURE
SWITCH TRIP

VIBRATION
SWITCH
ALARM

VIBRATION
SWITCH TRIP

DIGITAL
COUNTERS

44

ADDR
(HEX)
12B0

DESCRIPTION
Block pressure switch alarm from start

MIN.
0

MAX.
5000

STEP
VALUE
1

UNITS
s

FORMAT
DEFAULT
CODE
F1

12B1

Pressure switch alarm function

--

F115

12B2

Pressure switch alarm relays

--

F113

12B3

Pressure switch alarm delay

1000

F2

50

12B4

Pressure switch alarm events

--

F103

12B5

Reserved

F1

12B6

Reserved

...

...

12BF

Reserved

12C0

Block pressure switch trip from start

5000

12C1

Pressure switch trip relays

--

F111

12C2

Pressure switch trip delay

1000

F2

50

12C3

Reserved

12CD

Reserved

12CE

Reserved

12CF

Reserved

12D0

Vibration switch alarm function

--

F115

12D1

Vibration switch alarm relays

--

F113

12D2

Vibration switch alarm delay

1000

F2

50

12D3

Vibration switch alarm events

--

F103

12D4

Reserved

12D5

Reserved

...

...

12DF

Reserved

12E0

Vibration switch trip relays

--

F111

12E1

Vibration switch trip delay

1000

F2

50

12E2

Reserved

12E3

Reserved

...

...

12F2

Reserved

12F3

1st and 2nd character of counter units name 0

65535

--

F22

Un

12F4

3rd and 4th character of counter units name

65535

--

F22

it

12F5

5th and 6th character of counter units name

65535

--

F22

12F6

Digital counter preset value

10000000
00

--

F9

12F8

Digital counter type

--

F114

12F9

Digital counter alarm

--

F115

12FA

Digital counter alarm relays

--

F113

12FB

Digital counter alarm level

10000000
00

--

F9

100

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 27 of 91)


GROUP

TACHOMETER

GENERAL
SWITCH A

GENERAL
SWITCH B

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

12FD

Digital counter alarm pickup

--

F130

12FE

Digital counter alarm events

--

F103

12FF

Reserved

1300

Reserved

...

...

130F

Reserved

1310

Rated speed

100

7200

RPM

F1

3600

1311

Tachometer alarm

--

F115

1312

Tachometer alarm relays

--

F113

1313

Tachometer alarm speed

100

%Rated

F1

10

1314

Tachometer alarm delay

250

F1

1315

Tachometer alarm events

--

F103

1316

Tachometer trip

--

F115

1317

Tachometer trip relays

--

F111

1318

Tachometer trip speed

95

%Rated

F1

10

1319

Tachometer trip delay

250

F1

131A

Reserved

131A

Reserved

...

...

1335

Reserved

1336

General switch A name, characters 1 and 2

65535

--

F22

Ge

1337

General switch A name, characters 3 and 4

65535

--

F22

ne

1338

General switch A name, characters 5 and 6

65535

--

F22

ra

1339

General switch A name, characters 7 and 8

65535

--

F22

133A

General switch A name, characters 9 and 10

65535

--

F22

Sw

133B

General switch A name, characters 11 and 12 0

65535

--

F22

133C

General switch A normal state

--

F116

133D

General switch A block input from start

5000

F1

133E

General switch A alarm

--

F115

133F

General switch A alarm relays

--

F113

1340

General switch A alarm delay

50000

F2

50

1341

General switch A alarm events

--

F103

1342

General switch A trip

--

F115

1343

General switch A trip relays

--

F111

1344

General switch A trip delay

50000

F2

50

1345

Reserved

1346

Reserved

...

...

1365

Reserved

1366

General switch B name, characters 1 and 2

65535

--

F22

Ge

1367

General switch B name, characters 3 and 4

65535

--

F22

ne

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

45

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 28 of 91)


GROUP

GENERAL
SWITCH C

GENERAL
SWITCH D

46

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1368

General switch B name, characters 5 and 6

65535

--

F22

ra

1369

General switch B name, characters 7 and 8

65535

--

F22

136A

General switch B name, characters 9 and 10

65535

--

F22

Sw

136B

General switch B name, characters 11 and 12 0

65535

--

F22

136C

General switch B normal state

--

F116

136D

General switch B block input from start

5000

F1

136E

General switch B alarm

--

F115

136F

General switch B alarm relays

--

F113

1370

General switch B alarm delay

50000

F2

50

1371

General switch B alarm events

--

F103

1372

General switch B trip

--

F115

1373

General switch B trip relays

--

F111

1374

General switch B trip delay

50000

F2

50

1375

Reserved

1376

Reserved

...

...

1395

Reserved

1396

General switch C name, characters 1 and 2

65535

--

F22

Ge

1397

General switch C name, characters 3 and 4

65535

--

F22

ne

1398

General switch C name, characters 5 and 6

65535

--

F22

ra

1399

General switch C name, characters 7 and 8

65535

--

F22

139A

General switch C name, characters 9 and 10

65535

--

F22

Sw

139B

General switch C name, characters 11 & 12

65535

--

F22

139C

General switch C normal state

--

F116

139D

General switch C block input from start

5000

F1

139E

General switch C alarm

--

F115

139F

General switch C alarm relays

--

F113

13A0

General switch C alarm delay

50000

F2

50

13A1

General switch C alarm events

--

F103

13A2

General switch C trip

--

F115

13A3

General switch C trip relays

--

F111

13A4

General switch C trip delay

50000

F2

50

13A5

Reserved

13A6

Reserved

...

...

13C5

Reserved

13C6

General switch D name, characters 1 and 2

65535

--

F22

Ge

13C7

General switch D name, characters 3 and 4

65535

--

F22

ne

13C8

General switch D name, characters 5 and 6

65535

--

F22

ra

13C9

General switch D name, characters 7 and 8

65535

--

F22

13CA

General switch D name, characters 9 and 10

65535

--

F22

Sw

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 29 of 91)


GROUP

RELAY RESET
MODE

FORCE
OUTPUT
RELAY

THERMAL
MODEL

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

13CB

General switch D name, characters 11 & 12

65535

--

F22

13CC

General switch D normal state

--

F116

13CD

General switch D block input from start

5000

F1

13CE

General switch D alarm

--

F115

13CF

General switch D alarm relays

--

F113

13D0

General switch D alarm delay

50000

F2

50

13D1

General switch D alarm events

--

F103

13D2

General switch D trip

--

F115

13D3

General switch D trip relays

--

F111

13D4

General switch D trip delay

50000

F2

50

13D5

Reserved

13D6

Reserved

...

...

14FF

Reserved

1500

Reset mode 1 TRIP

--

F117

1501

Reset mode 2 AUXILIARY

--

F117

1502

Reset mode 3 AUXILIARY

--

F117

1503

Reset mode 4 ALARM

--

F117

1504

Reserved

1505

Reset mode 6 SERVICE

--

F117

1506

Force 1 TRIP relay

--

F126

1507

Force 1 TRIP relay duration

300

F1

1508

Force 2 AUXILIARY relay

--

F126

1509

Force 2 AUXILIARY relay duration

300

F1

150A

Force 3 AUXILIARY relay

--

F126

150B

Force 3 AUXILIARY duration

300

F1

150C

Force 4 ALARM relay

--

F126

150D

Force 4 ALARM relay duration

300

F1

150E

Force 5 BLOCK START relay

--

F126

150F

Force 5 BLOCK START relay duration

300

F1

1510

Reserved

1511

Reserved

...

...

157F

Reserved

1580

Curve style

--

F128

1581

Overload pickup level

101

125

FLA

F3

101

1582

Unbalance k factor

12

--

F1

1583

Cool time constant running

1000

minutes

F1

15

1584

Cool time constant stopped

1000

minutes

F1

30

1585

Hot/cold safe stall ratio

100

--

F3

100

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

47

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 30 of 91)


GROUP

OVERLOAD
CURVE SETUP

48

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1586

RTD biasing

--

F103

1587

RTD bias minimum

250

F1

40

1588

RTD bias center point

250

F1

130

1589

RTD bias maximum

250

F1

155

158A

Thermal capacity alarm

--

F115

158B

Thermal capacity alarm relays

--

F113

158C

Thermal capacity alarm level

10

100

%used

F1

75

158D

Thermal capacity alarm events

--

F103

158E

Overload trip relays

--

F111

158F

Reserved

1590

Reserved

...

...

15AE

Reserved

15AF

Standard overload curve number

15

--

F1

15B0

Time to trip at 1.01 x FLA

999999

F10

174145

15B2

Time to trip at 1.05 x FLA

999999

F10

34149

15B4

Time to trip at 1.10 x FLA

999999

F10

16667

15B6

Time to trip at 1.20 x FLA

999999

F10

7954

15B8

Time to trip at 1.30 x FLA

999999

F10

5072

15BA

Time to trip at 1.40 x FLA

999999

F10

3646

15BC

Time to trip at 1.50 x FLA

999999

F10

2800

15BE

Time to trip at 1.75 x FLA

999999

F10

1697

15C0

Time to trip at 2.00 x FLA

999999

F10

1166

15C2

Time to trip at 2.25 x FLA

999999

F10

861

15C4

Time to trip at 2.50 x FLA

999999

F10

666

15C6

Time to trip at 2.75 x FLA

999999

F10

533

15C8

Time to trip at 3.00 x FLA

999999

F10

437

15CA

Time to trip at 3.25 x FLA

999999

F10

366

15CC

Time to trip at 3.50 x FLA

999999

F10

311

15CE

Time to trip at 3.75 x FLA

999999

F10

268

15D0

Time to trip at 4.00 x FLA

999999

F10

233

15D2

Time to trip at 4.25 x FLA

999999

F10

205

15D4

Time to trip at 4.50 x FLA

999999

F10

182

15D6

Time to trip at 4.75 x FLA

999999

F10

162

15D8

Time to trip at 5.00 x FLA

999999

F10

146

15DA

Time to trip at 5.50 x FLA

999999

F10

120

15DC

Time to trip at 6.00 x FLA

999999

F10

100

15DE

Time to trip at 6.50 x FLA

999999

F10

85

15E0

Time to trip at 7.00 x FLA

999999

F10

73

15E2

Time to trip at 7.50 x FLA

999999

F10

63

15E4

Time to trip at 8.00 x FLA

999999

F10

56

15E6

Time to trip at 10.0 x FLA

999999

F10

56

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 31 of 91)


GROUP

SHORT
CIRCUIT TRIP

OVERLOAD
ALARM

MECHANICAL
JAM

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

15E8

Time to trip at 15.0 x FLA

999999

F10

56

15EA

Time to trip at 20.0 x FLA

999999

F10

56

15EC

Reserved

15ED

Reserved

70

95

%Rated

F1

80

...

...

15FF

Reserved

1600

Minimum allowable line voltage

1601

Stall current at minimum Vline

200

1500

FLA

F3

480

1602

Safe stall time at minimum Vline

9999

F2

200

1603

Acceleration intersect at minimum Vline

200

1500

FLA

F3

380

1604

Stall current at 100% Vline

200

1500

FLA

F3

600

1605

Safe stall time at 100% Vline

9999

F2

100

200

1500

FLA

F3

500

--

F115

1606

Acceleration intersect at 100% Vline

1607

Reserved

1608

Reserved

163F

Reserved

1640

Short circuit trip

1641

Overreach filter

--

F103

1642

Short circuit trip relays

--

F118

1643

Short circuit trip pickup

20

200

CT

F2

100

1644

Intentional short circuit trip delay

1000

10

ms

F1

1645

Short circuit trip backup

--

F103

1646

Short circuit backup relays

--

F119

1647

Short circuit trip backup delay

10

2000

10

ms

F1

200

1648

Reserved

1649

Reserved

---

---

164F

Reserved

1650

Overload alarm

--

F115

1651

Overload alarm relays

--

F113

1652

Overload alarm events

--

F103

1653

Overload alarm delay

600

F2

1654

Reserved

1655

Reserved

...

...

165F

Reserved

1660

Mechanical jam trip

--

F115

1661

Mechanical jam trip relays

--

F111

1662

Mechanical jam pickup

101

300

FLA

F3

150

1663

Mechanical jam delay

30

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

49

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 32 of 91)


GROUP

UNDERCURRENT

CURRENT
UNBALANCE

GROUND
FAULT

50

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1664

Reserved

1665

Reserved

...

...

166F

Reserved

1670

Block undercurrent from start

15000

F1

1671

Undercurrent alarm

--

F115

1672

Undercurrent alarm relays

--

F113

1673

Undercurrent alarm pickup

10

95

FLA

F3

70

1674

Undercurrent alarm delay

60

F1

1675

Undercurrent alarm events

--

F103

1676

Undercurrent trip

--

F115

1677

Undercurrent trip relays

--

F111

1678

Undercurrent trip pickup

10

99

FLA

F3

70

1679

Undercurrent trip delay

60

F1

167A

Reserved

167B

Reserved

167C

Reserved

167D

Reserved

167E

Reserved

167F

Reserved

1680

Current unbalance alarm

--

F115

1681

Current unbalance alarm relays

--

F113

1682

Current unbalance alarm pickup

40

F1

15

1683

Current unbalance alarm delay

60

F1

1684

Current unbalance alarm events

--

F103

1685

Current unbalance trip

--

F115

1686

Current unbalance trip relays

--

F111

1687

Current unbalance trip pickup

40

F1

20

1688

Current unbalance trip delay

60

F1

1689

Reserved

1690

Reserved

...

...

169F

Reserved

16A0

Reserved

16A1

Ground fault alarm

--

F115

16A2

Ground fault alarm relays

--

F113

16A3

Ground fault alarm pickup

10

100

CT

F3

10

16A4

Alarm pickup for 50/0.025 CT

25

2500

F3

100

16A5

Intentional ground fault alarm delay

1000

10

ms

F1

16A6

Ground fault alarm events

--

F103

16A7

Ground fault trip

--

F115

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 33 of 91)


GROUP

PHASE
DIFFERENTIAL

ACCELERATION TIMER

ADDR
(HEX)

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

16A8

Ground fault trip relays

--

F118

16A9

Ground fault trip pickup

10

100

CT

F3

20

16AA

Trip pickup for 50/0.025 CT

25

2500

F3

100

16AB

Intentional ground fault trip delay

1000

10

ms

F1

16AC

Ground fault trip backup

--

F103

16AD

Ground fault trip backup relays

--

F119

16AE

Ground fault trip backup delay

10

2000

10

ms

F1

200

16AF

Reserved

16B0

Reserved

...

...

16BF

Reserved

16C0

Phase differential trip

--

F115

16C1

Phase differential trip relays

--

F118

16C2

Differential trip pickup while starting

100

CT

F3

10

16C3

Differential trip delay while starting

60000

10

ms

F1

16C4

Differential trip pickup while running

100

CT

F3

10

16C5

Differential trip delay while running

1000

10

ms

F1

16C4

Reserved

16C5

Reserved

...

...

16CF

Reserved

16D0

Acceleration timer trip

--

F115

16D1

Acceleration timer trip relays

--

F111

16D2

Acceleration timer from start

10

2500

F2

100

16D3

Reserved

16D4

Reserved

...

...

16DF

Reserved
Start inhibit block

--

F103

16E1

Thermal capacity used margin

25

F1

25

16E2

Reserved

16E3

Reserved

START INHIBIT 16E0

JOGGING
BLOCK

DESCRIPTION

...

...

16EF

Reserved

16F0

Jogging block

--

F103

16F1

Maximum starts/hour permissible

--

F1

16F2

Time between starts

500

minutes

F1

10

16F3

Reserved

16F4

Reserved

...

...

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

51

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 34 of 91)


GROUP

RESTART
BLOCK

RTD TYPES

RTD #1

RTD #2

52

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

16FF

Reserved

1700

Restart block

--

F103

1701

Restart block time

50000

F1

1702

Reserved

1703

Reserved

...

...

177F

Reserved

1780

Stator RTD type

--

F120

1781

Bearing RTD type

--

F120

1782

Ambient RTD type

--

F120

1783

Other RTD type

--

F120

1784

Reserved

1785

Reserved

...

...

178F

Reserved

1790

RTD #1 application

--

F121

1791

RTD #1 alarm

--

F115

1792

RTD #1 alarm relays

--

F113

1793

RTD #1 alarm temperature

250

F1

130

1794

RTD #1 alarm events

--

F103

1795

RTD #1 trip

--

F115

1796

RTD #1 trip voting

12

--

F122

1797

RTD #1 trip relays

--

F111

1798

RTD #1 trip temperature

250

F1

155

1799

1st and 2nd characters of RTD #1 name

65535

--

F22

1799

3rd and 4th characters of RTD #1 name

65535

--

F22

1799

5th and 6th characters of RTD #1 name

65535

--

F22

179C

7th and 8th characters of RTD #1 name

65535

--

F22

179D

Reserved

179E

Reserved

...

...

17AD

Reserved

17AE

RTD #1 alarm temperature (in Fahrenheit)

34

482

F1

266

17AF

RTD #1 trip temperature (in Fahrenheit)

34

482

F1

311

17B0

RTD #2 application

--

F121

17B1

RTD #2 alarm

--

F115

17B2

RTD #2 alarm relays

--

F113

17B3

RTD #2 alarm temperature

250

F1

130

17B4

RTD #2 alarm events

--

F103

17B5

RTD #2 trip

--

F115

17B6

RTD #2 trip voting

12

--

F122

17B7

RTD #2 trip relays

--

F111

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 35 of 91)


GROUP

RTD #3

RTD #4

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

17B8

RTD #2 trip temperature

250

F1

155

17B9

1st and 2nd characters of RTD #2 name

65535

--

F22

17BA

3rd and 4th characters of RTD #2 name

65535

--

F22

17BB

5th and 6th characters of RTD #2 name

65535

--

F22

17BC

7th and 8th characters of RTD #2 name

65535

--

F22

17BD

Reserved

17BE

Reserved

...

...

17CD

Reserved

17CE

RTD #2 alarm temperature (in Fahrenheit)

34

482

F1

266

17CF

RTD #2 trip temperature (in Fahrenheit)

34

482

F1

311

17D0

RTD #3 application

--

F121

17D1

RTD #3 alarm

--

F115

17D2

RTD #3 alarm relays

--

F113

17D3

RTD #3 alarm temperature

250

F1

130

17D4

RTD #3 alarm events

--

F103

17D5

RTD #3 trip

--

F115

17D6

RTD #3 trip voting

12

--

F122

17D7

RTD #3 trip relays

--

F111

17D8

RTD #3 trip temperature

250

F1

155

17D9

1st and 2nd characters of RTD #3 name

65535

--

F22

17DA

3rd and 4th characters of RTD #3 name

65535

--

F22

17DB

5th and 6th characters of RTD #3 name

65535

--

F22

17DC

7th and 8th characters of RTD #3 name

65535

--

F22

17DD

Reserved

17DE

Reserved

...

...

17ED

Reserved

17EE

RTD #3 alarm temperature (in Fahrenheit)

34

482

F1

266

17EF

RTD #3 trip temperature (in Fahrenheit)

34

482

F1

311

17F0

RTD #4 application

--

F121

17F1

RTD #4 alarm

--

F115

17F2

RTD #4 alarm relays

--

F113

17F3

RTD #4 alarm temperature

250

F1

130

17F4

RTD #4 alarm events

--

F103

17F5

RTD #4 trip

--

F115

17F6

RTD #4 trip voting

12

--

F122

17F7

RTD #4 trip relays

--

F111

17F8

RTD #4 trip temperature

250

F1

155

17F9

1st and 2nd characters of RTD #4 name

65535

--

F22

17FA

3rd and 4th characters of RTD #4 name

65535

--

F22

17FB

5th and 6th characters of RTD #4 name

65535

--

F22

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

53

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 36 of 91)


GROUP

RTD #5

RTD #6

54

ADDR
(HEX)

DESCRIPTION

17FC

7th and 8th characters of RTD #4 name

17FD

Reserved

17FE

Reserved

...

...

180D

Reserved

180E

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

65535

--

F22

RTD #4 alarm temperature (in Fahrenheit)

34

482

F1

266

180F

RTD #4 trip temperature (in Fahrenheit)

34

482

F1

311

1810

RTD #5 application

--

F121

1811

RTD #5 alarm

--

F115

1812

RTD #5 alarm relays

--

F113

1813

RTD #5 alarm temperature

250

F1

130

1814

RTD #5 alarm events

--

F103

1815

RTD #5 trip

--

F115

1816

RTD #5 trip voting

12

--

F122

1817

RTD #5 trip relays

--

F111

1818

RTD #5 trip temperature

250

F1

155

1819

1st and 2nd characters of RTD #5 name

65535

--

F22

181A

3rd and 4th characters of RTD #5 name

65535

--

F22

181B

5th and 6th characters of RTD #5 name

65535

--

F22

181C

7th and 8th characters of RTD #5 name

65535

--

F22

181D

Reserved

181E

Reserved

...

...

182D

Reserved

182E

RTD #5 alarm temperature (in Fahrenheit)

34

482

F1

266

182F

RTD #5 trip temperature (in Fahrenheit)

34

482

F1

311

1830

RTD #6 application

--

F121

1831

RTD #6 alarm

--

F115

1832

RTD #6 alarm relays

--

F113

1833

RTD #6 alarm temperature

250

F1

130

1834

RTD #6 alarm events

--

F103

1835

RTD #6 trip

--

F115

1836

RTD #6 trip voting

12

--

F122

1837

RTD #6 trip relays

--

F111

1838

RTD #6 trip temperature

250

F1

155

1839

1st and 2nd characters of RTD #6 name

65535

--

F22

183A

3rd and 4th characters of RTD #6 name

65535

--

F22

183B

5th and 6th characters of RTD #6 name

65535

--

F22

183C

7th and 8th characters of RTD #6 name

65535

--

F22

183D

Reserved

183E

Reserved

...

...

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 37 of 91)


GROUP

RTD #7

RTD #8

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

184D

Reserved

184E

RTD #6 alarm temperature (in Fahrenheit)

184F

RTD #6 trip temperature (in Fahrenheit)

34

482

F1

311

1850

RTD #7 application

--

F121

1851

RTD #7 alarm

--

F115

1852

RTD #7 alarm relays

--

F113

1853

RTD #7 alarm temperature

250

F1

80

1854

RTD #7 alarm events

--

F103

1855

RTD #7 trip

--

F115

1856

RTD #7 trip voting

12

--

F122

1857

RTD #7 trip relays

--

F111

1858

RTD #7 trip temperature

250

F1

90

1859

1st and 2nd characters of RTD #7 name

65535

--

F22

185A

3rd and 4th characters of RTD #7 name

65535

--

F22

185B

5th and 6th characters of RTD #7 name

65535

--

F22

185C

7th and 8th characters of RTD #7 name

65535

--

F22

185D

Reserved

34

482

F1

266

185E

Reserved

...

...

186D

Reserved

186E

RTD #7 alarm temperature (in Fahrenheit)

34

482

F1

176

186F

RTD #7 trip temperature (in Fahrenheit)

34

482

F1

194

1870

RTD #8 application

--

F121

1871

RTD #8 alarm

--

F115

1872

RTD #8 alarm relays

--

F113

1873

RTD #8 alarm temperature

250

F1

80

1874

RTD #8 alarm events

--

F103

1875

RTD #8 trip

--

F115

1876

RTD #8 trip voting

12

--

F122

1877

RTD #8 trip relays

--

F111

1878

RTD #8 trip temperature

250

F1

90

1879

1st and 2nd characters of RTD #8 name

65535

--

F22

187A

3rd and 4th characters of RTD #8 name

65535

--

F22

187B

5th and 6th characters of RTD #8 name

65535

--

F22

187C

7th and 8th characters of RTD #8 name

65535

--

F22

187D

Reserved

187E

Reserved

...

...

188D

Reserved

188E

RTD #8 alarm temperature (in Fahrenheit)

34

482

F1

176

188F

RTD #8 trip temperature (in Fahrenheit)

34

482

F1

194

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

55

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 38 of 91)


GROUP
RTD #9

RTD #10

RTD #11

56

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1890

RTD #9 application

--

F121

1891

RTD #9 alarm

--

F115

1892

RTD #9 alarm relays

--

F113

1893

RTD #9 alarm temperature

250

F1

80

1894

RTD #9 alarm events

--

F103

1895

RTD #9 trip

--

F115

1896

RTD #9 trip voting

12

--

F122

1897

RTD #9 trip relays

--

F111

1898

RTD #9 trip temperature

250

F1

90

1899

1st and 2nd characters of RTD #9 name

65535

--

F22

189A

3rd and 4th characters of RTD #9 name

65535

--

F22

189B

5th and 6th characters of RTD #9 name

65535

--

F22

189C

7th and 8th characters of RTD #9 name

65535

--

F22

189D

Reserved

189E

Reserved

...

...

18AD

Reserved

18AE

RTD #9 alarm temperature (in Fahrenheit)

34

482

F1

176

18AF

RTD #9 trip temperature (in Fahrenheit)

34

482

F1

194

18B0

RTD #10 application

--

F121

18B1

RTD #10 alarm

--

F115

18B2

RTD #10 alarm relays

--

F113

18B3

RTD #10 alarm temperature

250

F1

80

18B4

RTD #10 alarm events

--

F103

18B5

RTD #10 trip

--

F115

18B6

RTD #10 trip voting

12

--

F122

10

18B7

RTD #10 trip relays

--

F111

18B8

RTD #10 trip temperature

250

F1

90

18B9

1st and 2nd characters of RTD #10 name

65535

--

F22

18BA

3rd and 4th characters of RTD #10 name

65535

--

F22

18BB

5th and 6th characters of RTD #10 name

65535

--

F22

18BC

7th and 8th characters of RTD #10 name

65535

--

F22

18BD

Reserved

18BE

Reserved

...

...

18CD

Reserved

18CE

RTD #10 alarm temperature (in Fahrenheit)

34

482

F1

176

18CF

RTD #10 trip temperature (in Fahrenheit)

34

482

F1

194

18D0

RTD #11 application

--

F121

18D1

RTD #11 alarm

--

F115

18D2

RTD #11 alarm relays

--

F113

18D3

RTD #11 alarm temperature

250

F1

80

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 39 of 91)


GROUP

RTD #12

OPEN RTD
SENSOR

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

18D4

RTD #11 alarm events

--

F103

18D5

RTD #11 trip

--

F115

18D6

RTD #11 trip voting

12

--

F122

11

18D7

RTD #11 trip relays

--

F111

18D8

RTD #11 trip temperature

250

F1

90

18D9

1st and 2nd characters of RTD #11 name

65535

--

F22

18DA

3rd and 4th characters of RTD #11 name

65535

--

F22

18DB

5th and 6th characters of RTD #11 name

65535

--

F22

18DC

7th and 8th characters of RTD #11 name

65535

--

F22

18DD

Reserved

18DE

Reserved

...

...

18ED

Reserved

18EE

RTD #11 alarm temperature (in Fahrenheit)

34

482

F1

176

18EF

RTD #11 trip temperature (in Fahrenheit)

34

482

F1

194

18F0

RTD #12 application

--

F121

18F1

RTD #12 alarm

--

F115

18F2

RTD #12 alarm relays

--

F113

18F3

RTD #12 alarm temperature

250

F1

60

18F4

RTD #12 alarm events

--

F103

18F5

RTD #12 trip

--

F115

18F6

RTD #12 trip voting

12

--

F122

12

18F7

RTD #12 trip relays

--

F111

18F8

RTD #12 trip temperature

250

F1

80

18F9

1st and 2nd characters of RTD #12 name

65535

--

F22

18FA

3rd and 4th characters of RTD #12 name

65535

--

F22

18FB

5th and 6th characters of RTD #12 name

65535

--

F22

18FC

7th and 8th characters of RTD #12 name

65535

--

F22

18FD

Reserved

18FE

Reserved

...

...

190D

Reserved

190E

RTD #12 alarm temperature (in Fahrenheit)

34

482

F1

140

190F

RTD #12 trip temperature (in Fahrenheit)

34

482

F1

176

1910

Open RTD Sensor Alarm

--

F115

1911

Open RTD Sensor Alarm Relays

--

F113

1912

Open RTD Sensor Alarm Events

--

F103

1913

Reserved

1914

Reserved

...

...

191F

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

57

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 40 of 91)


GROUP
RTD SHORT/
LOW TEMP

RTD HIGH
ALARMS

58

ADDR
(HEX)
1920

DESCRIPTION
RTD Short / Low Temp Alarm

MIN.
0

MAX.
2

STEP
VALUE
1

UNITS

FORMAT
DEFAULT
CODE

--

F115

1921

RTD Short / Low Temp Alarm Relays

--

F113

1922

RTD Short / Low Temp Alarm Events

--

F103

1923

Reserved

1924

Reserved

...

...

192F

Reserved

1930

RTD #1 high alarm

F115

1931

RTD #1 high alarm relays

--

F113

1932

RTD #1 high alarm level

250

F1

130

1933

Reserved

1934

RTD #2 high alarm

--

F115

1935

RTD #2 high alarm relays

--

F113

1936

RTD #2 high alarm level

250

F1

130

1937

Reserved

1938

RTD #3 high alarm

--

F115

1939

RTD #3 high alarm relays

--

F113

193A

RTD #3 high alarm level

250

F1

130

193B

Reserved

193C

RTD #4 high alarm

--

F115

193D

RTD #4 high alarm relays

--

F113

193E

RTD #4 high alarm level

250

F1

130

193F

Reserved

1940

RTD #5 high alarm

--

F115

1941

RTD #5 high alarm relays

--

F113

1942

RTD #5 high alarm level

250

F1

130

1943

Reserved

1944

RTD #6 high alarm

--

F115

1945

RTD #6 high alarm relays

--

F113

1946

RTD #6 high alarm level

250

F1

130

1947

Reserved

1948

RTD #7 high alarm

--

F115

1949

RTD #7 high alarm relays

--

F113

194A

RTD #7 high alarm level

250

F1

80

194B

Reserved

194C

RTD #8 high alarm

--

F115

194D

RTD #8 high alarm relays

--

F113

194E

RTD #8 high alarm level

250

F1

80

194F

Reserved

1950

RTD #9 high alarm

--

F115

1951

RTD #9 high alarm relays

--

F113

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 41 of 91)


GROUP

UNDER
VOLTAGE

OVER
VOLTAGE

ADDR
(HEX)

DESCRIPTION

1952

RTD #9 high alarm level

1953

Reserved

MIN.

MAX.

STEP
VALUE

250

UNITS

FORMAT
DEFAULT
CODE

F1

80

1954

RTD #10 high Alarm

--

F115

1955

RTD #10 high alarm relays

--

F113

1956

RTD #10 high alarm level

250

F1

80

1957

Reserved

1958

RTD #11 high alarm

--

F115

1959

RTD #11 high alarm relays

--

F113

195A

RTD #11 high alarm level

250

F1

80

195B

Reserved

195C

RTD #12 high alarm

--

F115

195D

RTD #12 high alarm relays

--

F113

195E

RTD #12 high alarm level

250

F1

60

195F

Reserved

1960

Undervoltage active only if bus energized

--

F103

1961

Undervoltage alarm

--

F115

1962

Undervoltage alarm relays

--

F113

1963

Undervoltage alarm pickup

60

99

Rated

F3

85

1964

Starting undervoltage alarm pickup

60

1001

Rated

F3

85

1965

Undervoltage alarm delay

600

F2

30

1966

Undervoltage alarm events

--

F103

1967

Undervoltage trip

--

F115

1968

Undervoltage trip relays

--

F111

1969

Undervoltage trip pickup

60

99

Rated

F3

80

196A

Starting undervoltage trip pickup

60

1001

Rated

F3

80

196B

Undervoltage trip delay

600

F2

30

196C

Undervoltage trip mode

--

F149

196D

Reserved

196E

Reserved

...

...

197F

Reserved

1980

Overvoltage alarm

--

F115

1981

Overvoltage relays

--

F113

1982

Overvoltage alarm pickup

101

120

Rated

F3

105

1983

Overvoltage alarm delay

600

F2

30

1984

Overvoltage alarm events

--

F103

1985

Overvoltage trip

--

F115

1986

Overvoltage trip relays

--

F111

1987

Overvoltage trip pickup

101

120

Rated

F3

110

1988

Overvoltage trip delay

600

F2

30

1989

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

59

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 42 of 91)


GROUP

PHASE
REVERSAL

VOLTAGE
FREQUENCY

POWER
FACTOR

60

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

198A

Reserved

...

...

199F

Reserved

19A0

Voltage phase reversal trip

--

F115

19A1

Voltage phase reversal trip relays

--

F111

19A2

Reserved

19A3

Reserved

...

...

19AF

Reserved

19B0

Voltage frequency alarm

--

F115

19B1

Voltage frequency alarm relays

--

F113

19B2

Overfrequency alarm level

2501

7000

Hz

F3

6050

19B3

Underfrequency alarm level

2000

6000

Hz

F3

5950

19B4

Voltage frequency alarm delay

600

F2

10

19B5

Voltage frequency alarm events

--

F103

19B6

Voltage frequency trip

--

F115

19B7

Voltage frequency trip relays

--

F111

19B8

Overfrequency trip level

2501

7000

Hz

F3

6050

19B9

Underfrequency trip level

2000

6000

Hz

F3

5950

19BA

Voltage Frequency trip delay

600

F2

10

19BB

Reserved

19BC

Reserved

...

...

19CF

Reserved

19D0

Block power factor element from start

5000

F1

19D1

Power factor alarm

--

F115

19D2

Power factor alarm relays

--

F113

19D3

Power factor lead alarm level

100

--

F3

100

19D4

Power factor lag alarm level

100

--

F3

100

19D5

Power factor alarm delay

300

F1

10

19D6

Power factor alarm events

--

F103

19D7

Power factor trip

--

F115

19D8

Power factor trip relays

--

F111

19D9

Power factor lead trip level

100

--

F3

100

19DA

Power factor lag trip level

100

--

F3

100

19DB

Power factor trip delay

300

F1

10

19DC

Reserved

19DD

Reserved

...

...

19EF

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 43 of 91)


GROUP
REACTIVE
POWER

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.
5000

STEP
VALUE
1

UNITS
s

FORMAT
DEFAULT
CODE

19F0

Block kvar element from start

F1

19F1

Reactive power alarm

--

F115

19F2

Reactive power alarm relays

--

F113

19F3

Positive reactive power alarm level

25000

kvar

F1

10

19F4

Negative reactive power alarm level

25000

kvar

F1

10

19F5

Reactive power alarm delay

300

F2

10

19F6

Reactive power alarm events

--

F103

19F7

Reactive power trip

--

F115

19F8

Reactive power trip relays

--

F111

19F9

Positive reactive power trip level

25000

kvar

F1

25

19FA

Negative reactive power trip level

25000

kvar

F1

25

19FB

Reactive power trip delay

300

F2

10

19FC

Reserved

19FD

Reserved

...
UNDERPOWER

REVERSE
POWER

1A0F

Reserved

1A10

Block underpower from start

15000

F1

1A11

Underpower alarm

--

F115

1A12

Underpower alarm relays

--

F113

1A13

Underpower alarm level

25000

kW

F1

1A14

Underpower alarm delay

30

F1

1A15

Underpower alarm events

--

F103

1A16

Underpower trip

--

F115

1A17

Underpower trip relays

--

F111

1A18

Underpower trip level

25000

kW

F1

1A19

Underpower trip delay

30

F1

1A1A

Reserved

1A1B

Reserved

...

...

1A1F

Reserved

1A20

Block reverse power from start

5000

F1

1A21

Reverse power alarm

--

F115

1A22

Reverse power alarm relays

--

F113

1A23

Reverse power alarm level

25000

kW

F1

1A24

Reverse power alarm delay

300

F1

10

1A25

Reverse power alarm events

--

F103

1A26

Reverse power trip

--

F115

1A27

Reverse power trip relays

--

F111

1A28

Reverse power trip level

25000

kW

F1

1A29

Reverse power trip delay

300

F1

10

1A2A

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

61

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 44 of 91)


GROUP

TORQUE
SETUP

OVERTORQUE
SETUP

TRIP
COUNTER

STARTER
FAILURE

62

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1A2B

Reserved

1A2F

Reserved

1A30

Torque metering

--

F126

1A31

Stator resistance

50000

F26

1A32

Pole pairs

128

--

F1

1A33

Torque unit

--

F148

1A34

Reserved

--

F115

1A35

Reserved

1A3F

Reserved

1A40

Overtorque alarm

1A41

Overtorque alarm relays

--

F113

1A42

Torque alarm level

10

9999999

Nm/ftlb

F10

40000

1A44

Torque alarm delay

300

F2

10

1A45

Torque alarm events

--

F103

1A46

Reserved

--

F115

1A47

Reserved

...

...

1A7F

Reserved

1A80

Trip counter alarm

1A81

Trip counter alarm relays

--

F113

1A82

Trip counter alarm level

50000

--

F1

25

1A83

Trip counter alarm events

--

F103

1A84

Reserved

1A85

Reserved

...

...

1A8F

Reserved

1A90

Starter failure alarm

--

F115

1A91

Starter type

--

F125

1A92

Starter failure alarm relays

--

F113

1A93

Starter failure alarm delay

10

1000

10

ms

F1

100

1A94

Supervision of trip coil

--

F142

1A95

Starter failure alarm events

--

F103

1A96

Reserved

1A97

Reserved

...

...

1ACF

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 45 of 91)


GROUP
CURRENT
DEMAND

kW DEMAND

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.
90

STEP
VALUE

1AD0

Current demand period

1AD1

Current demand alarm

1AD2

Current demand alarm relays

UNITS
min

FORMAT
DEFAULT
CODE
F1

15

--

F115

--

F113

1AD3

Current demand alarm level

10

100000

F9

100

1AD5

Current demand alarm events

--

F103

1AD6

Reserved

1AD7

Reserved

...

...

1ADF

Reserved

1AE0

kW demand period

90

min

F1

15

1AE1

kW demand alarm

--

F115

1AE2

kW demand alarm relays

--

F113

1AE3

kW demand alarm level

50000

kW

F1

100

1AE4

kW demand alarm events

--

F103

1AE5

Reserved

1AE6

Reserved

...

...

1AEF

Reserved

kvar DEMAND 1AF0

kvar demand period

90

min

F1

15

1AF1

kvar demand alarm

--

F115

1AF2

kvar demand alarm relays

--

F113

1AF3

kvar demand alarm level

50000

kvar

F1

100

1AF4

kvar demand alarm events

--

F103

1AF5

Reserved

1AF6

Reserved

...

...

1AFF

Reserved

1B00

kVA demand period

90

min

F1

15

1B01

kVA demand alarm

--

F115

1B02

kVA demand alarm relays

--

F113

1B03

kVA demand alarm level

50000

kVA

F1

100

1B04

kVA demand alarm events

--

F103

1B05

Reserved

--

F144

kVA DEMAND

PULSE
OUTPUT

1B06

Reserved

...

...

1B0F

Reserved

1B10

Positive kWh pulse output relay

1B11

Positive kWh pulse output interval

50000

kWh

F1

1B12

Positive kvarh pulse output relay

--

F144

1B13

Positive kvarh pulse output interval

50000

kvarh

F1

1B14

Negative kvarh pulse output relay

--

F144

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

63

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 46 of 91)


GROUP

ANALOG
OUTPUTS

64

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1B15

Negative kvarh pulse output interval

50000

kvarh

F1

1B16

Running time pulse relay

--

F144

1B17

Running time pulse interval

50000

F1

1B18

Reserved

1B19

Reserved

...

...

1B3F

Reserved

1B40

Analog output 1 selection

46

--

F127

1B41

Analog output 2 selection

46

--

F127

1B42

Analog output 3 selection

46

--

F127

1B43

Analog output 4 selection

46

--

F127

1B44

Phase A current minimum

100000

F9

1B46

Phase A current maximum

100000

F9

100

1B48

Phase B current minimum

100000

F9

1B4A

Phase B current maximum

100000

F9

100

1B4C

Phase C current minimum

100000

F9

1B4E

Phase C current maximum

100000

F9

100

1B50

Average phase current minimum

100000

F9

1B52

Average phase current maximum

100000

F9

100

1B54

AB line voltage minimum

50

20000

F1

3200

1B55

AB line voltage maximum

50

20000

F1

4500

1B56

BC line voltage minimum

50

20000

F1

3200

1B57

BC line voltage maximum

50

20000

F1

4500

1B58

CA line voltage minimum

50

20000

F1

3200

1B59

CA line voltage maximum

50

20000

F1

4500

1B5A

Average line voltage minimum

50

20000

F1

3200

1B5B

Average line voltage maximum

50

20000

F1

4500

1B5C

Phase AN voltage minimum

50

20000

F1

1900

1B5D

Phase AN voltage maximum

50

20000

F1

2500

1B5E

Phase BN voltage minimum

50

20000

F1

1900

1B5F

Phase BN voltage maximum

50

20000

F1

2500

1B60

Phase CN voltage minimum

50

20000

F1

1900

1B61

Phase CN voltage maximum

50

20000

F1

2500

1B62

Average phase voltage minimum

50

20000

F1

1900

1B63

Average phase voltage maximum

50

20000

F1

2500

1B64

Hottest stator RTD minimum

50

250

F4

1B65

Hottest stator RTD maximum

50

250

F4

200

1B66

Hottest bearing RTD minimum

50

250

F4

1B67

Hottest bearing RTD maximum

50

250

F4

200

1B68

Hottest ambient RTD minimum

50

250

F4

50

1B69

Hottest ambient RTD maximum

50

250

F4

60

1B6A

RTD #1 minimum

50

250

F4

50

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 47 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1B6B

RTD #1 maximum

50

250

F4

250

1B6C

RTD #2 minimum

50

250

F4

50

1B6D

RTD #2 maximum

50

250

F4

250

1B6E

RTD #3 minimum

50

250

F4

50

1B6F

RTD #3 maximum

50

250

F4

250

1B70

RTD #4 minimum

50

250

F4

50

1B71

RTD #4 maximum

50

250

F4

250

1B72

RTD #5 minimum

50

250

F4

50

1B73

RTD #5 maximum

50

250

F4

250

1B74

RTD #6 minimum

50

250

F4

50

1B75

RTD #6 maximum

50

250

F4

250

1B76

RTD #7 minimum

50

250

F4

50

1B77

RTD #7 maximum

50

250

F4

250

1B78

RTD #8 minimum

50

250

F4

50

1B79

RTD #8 maximum

50

250

F4

250

1B7A

RTD #9 minimum

50

250

F4

50

1B7B

RTD #9 maximum

50

250

F4

250

1B7C

RTD #10 minimum

50

250

F4

50

1B7D

RTD #10 maximum

50

250

F4

250

1B7E

RTD #11 minimum

50

250

F4

50

1B7F

RTD #11 maximum

50

250

F4

250

1B80

RTD #12 minimum

50

250

F4

50

1B81

RTD #12 maximum

50

250

F4

250

1B82

Power factor minimum

99

100

lead/lag

F21

0.8 lag

1B83

Power factor maximum

99

100

lead/lag

F21

0.8 lead

1B84

Reactive power minimum

50000

50000

kvar

F12

1B86

Reactive power maximum

50000

50000

kvar

F12

750

1B88

Real power minimum

50000

50000

kW

F12

1B8A

Real power maximum

50000

50000

kW

F12

1000

1B8C

Apparent power minimum

50000

kVA

F1

1B8D

Apparent power maximum

50000

kVA

F1

1250

1B8E

Thermal capacity used minimum

100

%used

F1

1B8F

Thermal capacity used maximum

100

%used

F1

100

1B90

Relay lockout time minimum

500

min

F1

1B91

Relay lockout time maximum

500

min

F1

150

1B92

Current demand minimum

100000

F9

1B94

Current demand maximum

100000

F9

700

1B96

kvar demand minimum

50000

kvar

F1

1B97

kvar demand maximum

50000

kvar

F1

1000

1B98

kW demand minimum

50000

kW

F1

1B99

kW demand maximum

50000

kW

F1

1250

1B9A

kVA demand minimum

50000

kVA

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

65

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 48 of 91)


GROUP

66

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1B9B

kVA demand maximum

50000

kVA

F1

1500

1B9C

Motor load minimum

2000

FLA

F3

1B9D

Motor load maximum

2000

FLA

F3

125

1B9E

Analog input 1 minimum

50000

50000

--

F12

1BA0

Analog input 1 maximum

50000

50000

--

F12

50000

1BA2

Analog input 2 minimum

50000

50000

--

F12

1BA4

Analog input 2 maximum

50000

50000

--

F12

50000

1BA6

Analog input 3 minimum

50000

50000

--

F12

1BA8

Analog input 3 maximum

50000

50000

--

F12

50000

1BAA

Analog input 4 minimum

50000

50000

--

F12

1BAC

Analog input 4 maximum

50000

50000

--

F12

50000

1BAE

Tachometer minimum

100

7200

RPM

F1

3500

1BAF

Tachometer maximum

100

7200

RPM

F1

3700

MWh

F17

50000

1BB0

MWh minimum

99999999
9

1BB2

MWh maximum

99999999
9

MWh

F17

100000

1BB4

Reserved

1BB5

Reserved

...

...

1BBF

Reserved

1BC0

Torque minimum

9999999

Nm/ftlb

F10

1BC2

Torque maximum

9999999

Nm/ftlb

F10

1BC4

Reserved

1BC5

Reserved

1BD3

Reserved

1BD4

Hottest stator RTD minimum (in F)

57

482

F4

32

1BD5

Hottest stator RTD maximum (in F)

57

482

F4

392

1BD6

Hottest bearing RTD minimum (in F)

57

482

F4

32

1BC7

Hottest bearing RTD maximum (in F)

57

482

F4

392

1BD8

Hottest ambient RTD minimum (in F)

57

482

F4

57

1BD9

Hottest ambient RTD maximum (in F)

57

482

F4

140

1BDA

RTD #1 minimum (in Fahrenheit)

57

482

F4

57

1BDB

RTD #1 maximum (in Fahrenheit)

57

482

F4

482

1BDC

RTD #2 minimum (in Fahrenheit)

57

482

F4

57

1BDD

RTD #2 maximum (in Fahrenheit)

57

482

F4

482

1BDE

RTD #3 minimum (in Fahrenheit)

57

482

F4

57

1BDF

RTD #3 maximum (in Fahrenheit)

57

482

F4

482

1BE0

RTD #4 minimum (in Fahrenheit)

57

482

F4

57

1BE1

RTD #4 maximum (in Fahrenheit)

57

482

F4

482

1BE2

RTD #5 minimum (in Fahrenheit)

57

482

F4

57

1BE3

RTD #5 maximum (in Fahrenheit)

57

482

F4

482

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 49 of 91)


GROUP

ANALOG
INPUT 1

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1BE4

RTD #6 minimum (in Fahrenheit)

57

482

F4

57

1BE5

RTD #6 maximum (in Fahrenheit)

57

482

F4

482

1BE6

RTD #7 minimum (in Fahrenheit)

57

482

F4

57

1BE7

RTD #7 maximum (in Fahrenheit)

57

482

F4

482

1BE8

RTD #8 minimum (in Fahrenheit)

57

482

F4

57

1BE9

RTD #8 maximum (in Fahrenheit)

57

482

F4

482

1BEA

RTD #9 minimum (in Fahrenheit)

57

482

F4

57

1BEB

RTD #9 maximum (in Fahrenheit)

57

482

F4

482

1BEC

RTD #10 minimum (in Fahrenheit)

57

482

F4

57

1BED

RTD #10 maximum (in Fahrenheit)

57

482

F4

482

1BEE

RTD #11 minimum (in Fahrenheit)

57

482

F4

57

1BEF

RTD #11 maximum (in Fahrenheit)

57

482

F4

482

1BF0

RTD #12 minimum (in Fahrenheit)

57

482

F4

57

1BF1

RTD #12 maximum (in Fahrenheit)

57

482

F4

482

1BF2

Reserved

1BF3

Reserved

...

...
1

--

F12

1BF7

Reserved

1BF8

Analog input difference 1-2 minimum

50000

50000

1BFA

Analog input difference 1-2 maximum

50000

50000

--

F12

100

1BFC

Analog input difference 3-4 minimum

50000

50000

--

F12

1BFE

Analog input difference 3-4 maximum

50000

50000

--

F12

100

1C00

Reserved

1C01

Reserved

...

...

1C0A

Reserved

1C0B

Analog input 1 setup

--

F129

1C0C

Reserved

1C0D

Reserved

1C0E

Reserved

1C0F

Reserved

1C10

Analog input 1 units, characters 1 and 2

65535

--

F22

Un

1C11

Analog input 1 units, characters 3 and 4

65535

--

F22

it

1C12

Analog input 1 units, characters 5 and 6

65535

--

F22

1C13

Analog input 1 minimum

50000

50000

--

F12

1C15

Analog input 1 maximum

50000

50000

--

F12

100

1C17

Block analog input 1 from start

5000

F1

1C18

Analog input 1 alarm

--

F115

1C19

Analog input 1 alarm relays

--

F113

1C1A

Analog input 1 alarm level

50000

50000

--

F12

10

1C1C

Analog input 1 alarm pickup

--

F130

1C1D

Analog input 1 alarm delay

3000

F2

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

67

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 50 of 91)


GROUP

ANALOG
INPUT 2

68

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1C1E

Analog input 1 alarm events

--

F103

1C1F

Analog input 1 trip

--

F115

1C20

Analog input 1 trip relays

--

F111

1C21

Analog input 1 trip level

50000

50000

--

F12

20

1C23

Analog input 1 trip pickup

--

F130

1C24

Analog input 1 trip delay

3000

F2

1C25

Analog input 1 name, characters 1 and 2

65535

--

F22

An

1C26

Analog input 1 name, characters 3 and 4

65535

--

F22

al

1C27

Analog input 1 name, characters 5 and 6

65535

--

F22

og

1C28

Analog input 1 name, characters 7 and 8

65535

--

F22

1C29

Analog input 1 name, characters 9 and 10

65535

--

F22

p1

1C2A

Analog input 1 name, characters 11 and 12

65535

--

F22

1C2B

Reserved

1C2C

Reserved

...

...

1C4A

Reserved

1C4B

Analog input 2 setup

--

F129

1C4C

Reserved

1C4D

Reserved

1C4E

Reserved

1C4F

Reserved

1C50

Analog input 2 units, characters 1 and 2

65535

--

F22

Un

15C1

Analog input 2 units, characters 3 and 4

65535

--

F22

it

1C52

Analog input 2 units, characters 5 and 6

65535

--

F22

1C53

Analog Input 2 minimum

50000

50000

--

F12

1C55

Analog Input 2 maximum

50000

50000

--

F12

100

1C57

Block analog input 2 from start

5000

F1

1C58

Analog input 2 alarm

--

F115

1C59

Analog input 2 alarm relays

--

F113

1C5A

Analog input 2 alarm level

50000

50000

--

F12

10

1C5C

Analog input 2 alarm pickup

--

F130

1C5D

Analog input 2 alarm delay

3000

F2

1C5E

Analog input 2 alarm events

--

F103

1C5F

Analog input 2 trip

--

F115

1C60

Analog input 2 trip relays

--

F111

1C61

Analog input 2 trip level

50000

50000

--

F12

20

1C63

Analog input 2 trip pickup

--

F130

1C64

Analog input 2 trip delay

3000

F2

1C65

Analog input 2 name, characters 1 and 2

65535

--

F22

An

1C66

Analog input 2 name, characters 3 and 4

65535

--

F22

al

1C67

Analog input 2 name, characters 5 and 6

65535

--

F22

og

1C68

Analog input 2 name, characters 7 and 8

65535

--

F22

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 51 of 91)


GROUP

ANALOG
INPUT 3

ANALOG
INPUT 4

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1C69

Analog input 2 name, characters 9 and 10

65535

--

F22

p2

1C6A

Analog input 2 name, characters 11 and 12

65535

--

F22

1C6B

Reserved

1C6C

Reserved

...

...

1C8A

Reserved

1C8B

Analog input 3 setup

F129

1C8C

Reserved

1C8D

Reserved

1C8E

Reserved

1C8F

Reserved

1C90

Analog input 3 units, characters 1 and 2

65535

--

F22

Un

1C91

Analog input 3 units, characters 3 and 4

65535

--

F22

it

1C92

Analog input 3 units, characters 5 and 6

65535

--

F22

1C93

Analog input 3 minimum

50000

50000

--

F12

1C95

Analog input 3 maximum

50000

50000

--

F12

100

1C97

Block analog input 3 from start

5000

F1

1C98

Analog input 3 alarm

--

F115

1C99

Analog input 3 alarm relays

--

F113

1C9A

Analog input 3 alarm level

50000

50000

--

F12

10

1C9C

Analog input 3 alarm pickup

--

F130

1C9D

Analog input 3 alarm delay

3000

F2

1C9E

Analog input 3 alarm events

--

F103

1C9F

Analog input 3 trip

--

F115

1CA0

Analog input 3 trip relays

--

F111

1CA1

Analog input 3 trip level

50000

50000

--

F12

20

1CA3

Analog input 3 trip pickup

--

F130

1CA4

Analog input 3 trip delay

3000

F2

1CA5

Analog input 3 name, characters 1 and 2

65535

--

F22

An

1CA6

Analog input 3 name, characters 3 and 4

65535

--

F22

al

1CA8

Analog input 3 name, characters 5 and 6

65535

--

F22

og

1CA8

Analog input 3 name, characters 7 and 8

65535

--

F22

1CA9

Analog input 3 name, characters 9 and 10

65535

--

F22

p3

1CAA

Analog input 3 name, characters 11 and 12

65535

--

F22

1CAB

Reserved

1CAC

Reserved

--

F129

...

...

1CCA

Reserved

1CCB

Analog input 4 setup

1CCC

Reserved

1CCD

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

69

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 52 of 91)


GROUP

SIMULATION
MODE

PRE-FAULT
VALUES

70

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1CCE

Reserved

1CCF

Reserved

1CD0

Analog input 4 units, characters 1 and 2

65535

--

F22

Un

1CD1

Analog input 4 units, characters 3 and 4

65535

--

F22

it

1CD2

Analog input 4 units, characters 5 and 6

65535

--

F22

1CD3

Analog input 4 minimum

50000

50000

--

F12

1CD5

Analog input 4 maximum

50000

50000

--

F12

100

1CD7

Block analog input 4 from start

5000

F1

1CD8

Analog input 4 alarm

--

F115

1CD9

Analog input 4 alarm relays

--

F113

1CDA

Analog input 4 alarm level

50000

50000

--

F12

10

1CDC

Analog input 4 alarm pickup

--

F130

1CDD

Analog input 4 alarm delay

3000

F2

1CDE

Analog input 4 alarm events

--

F103

1CDF

Analog input 4 trip

--

F115

1CE0

Analog input 4 trip relays

--

F111

1CE1

Analog input 4 trip level

50000

50000

--

F12

20

1CE3

Analog input 4 trip pickup

--

F130

1CE4

Analog input 4 trip delay

3000

F2

1CE5

Analog input 3 name, characters 1 and 2

65535

--

F22

An

1CE6

Analog input 3 name, characters 3 and 4

65535

--

F22

al

1CE7

Analog input 3 name, characters 5 and 6

65535

--

F22

og

1CE8

Analog input 3 name, characters 7 and 8

65535

--

F22

1CE9

Analog input 3 name, characters 9 and 10

65535

--

F22

p4

1CEA

Analog input 3 name, characters 11 and 12

65535

--

F22

1CEB

Reserved

1CEC

Reserved

...

...

1CFF

Reserved

1D00

Simulation mode

F138

1D01

Pre-fault to fault time delay

300

F1

15

1D02

Reserved

1D03

Reserved

...

...

1D0F

Reserved

1D10

Pre-fault current phase A

2000

CT

F3

1D11

Pre-fault current phase B

2000

CT

F3

1D12

Pre-fault current phase C

2000

CT

F3

1D13

Pre-fault ground current

50000

F2

1D14

Pre-fault line voltages

110

Rated

F3

100

1D15

Pre-fault current lags voltage

359

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 53 of 91)


GROUP

FAULT
VALUES

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1D16

Stator RTD pre-fault temperature

50

250

F4

40

1D17

Bearing RTD pre-fault temperature

50

250

F4

40

1D18

Other RTD pre-fault temperature

50

250

F4

40

1D19

Ambient RTD pre-fault temperature

50

250

F4

40

1D1A

Pre-fault system frequency

450

700

Hz

F2

600

1D1B

Pre-fault analog input 1

100

%range

F1

1D1C

Pre-fault analog input 2

100

%range

F1

1D1D

Pre-fault analog input 3

100

%range

F1

1D1E

Pre-fault analog input 4

100

%range

F1

110

CT

F3

1D1F

Pre-fault differential current

1D20

Reserved

1D21

Reserved

...

...

1D3B

Reserved

1D3C

Pre-fault stator RTD temperature (in F)

58

482

F4

104

1D3D

Pre-fault bearing RTD temperature (in F)

58

482

F4

104

1D3E

Pre-fault other RTD temperature (in F)

58

482

F4

104

1D3F

Pre-fault ambient RTD temperature (in F)

58

482

F4

104

1D40

Fault current phase A

2000

CT

F3

1D41

Fault current phase B

2000

CT

F3

1D42

Fault current phase C

2000

CT

F3

1D43

Fault ground current

50000

F2

1D44

Fault line voltages

110

Rated

F3

100

1D45

Fault current lags voltage

120

30

F1

1D46

Stator RTD fault temperature

50

250

F4

40

1D47

Bearing RTD fault temperature

50

250

F4

40

1D48

Other RTD fault temperature

50

250

F4

40

1D49

Ambient RTD fault temperature

50

250

F4

40

1D4A

Fault system frequency

450

700

Hz

F2

600

1D4B

Fault analog input 1

100

%range

F1

1D4C

Fault analog input 2

100

%range

F1

1D4D

Fault analog input 3

100

%range

F1

1D4E

Fault analog input 4

100

%range

F1

110

CT

F3

1D4F

Fault differential current

1D50

Reserved

1D51

Reserved

...

...

1D7B

Reserved

1D7C

Fault stator RTD temperature (in F)

58

482

F4

104

1D7D

Fault bearing RTD temperature (in F)

58

482

F4

104

1D7E

Fault other RTD temperature (in F)

58

482

F4

104

1D7F

Fault ambient RTD temperature (in F)

58

482

F4

104

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

71

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 54 of 91)


GROUP
TEST
OUTPUT
RELAYS

TEST
ANALOG
OUTPUTS

SPEED 2
O/L SETUP

72

ADDR
(HEX)

DESCRIPTION

1D80

Force operation of relays

1D81

Reserved

1D82

Reserved

...

...

1D8F

Reserved

1D90

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

--

F139

Force analog outputs

--

F126

1D91

Analog output 1 forced value

100

%range

F1

1D92

Analog output 2 forced value

100

%range

F1

1D93

Analog output 3 forced value

100

%range

F1

1D94

Analog output 4 forced value

100

%range

F1

1D95

Reserved

1D96

Reserved

...

...

1DFE

Reserved

1DFF

Speed 2 standard overload curve number

15

--

F1

1E00

Speed 2 time to trip at 1.01 x FLA

999999

F10

174145

1E02

Speed 2 time to trip at 1.05 x FLA

999999

F10

34149

1E04

Speed 2 time to trip at 1.10 x FLA

999999

F10

16667

1E06

Speed 2 time to trip at 1.20 x FLA

999999

F10

7954

1E08

Speed 2 time to trip at 1.30 x FLA

999999

F10

5072

1E0A

Speed 2 time to trip at 1.40 x FLA

999999

F10

3646

1E0C

Speed 2 time to trip at 1.50 x FLA

999999

F10

2800

1E0E

Speed 2 time to trip at 1.75 x FLA

999999

F10

1697

1E10

Speed 2 time to trip at 2.00 x FLA

999999

F10

1166

1E12

Speed 2 time to trip at 2.25 x FLA

999999

F10

861

1E14

Speed 2 time to trip at 2.50 x FLA

999999

F10

666

1E16

Speed 2 time to trip at 2.75 x FLA

999999

F10

533

1E18

Speed 2 time to trip at 3.00 x FLA

999999

F10

437

1E1A

Speed 2 time to trip at 3.25 x FLA

999999

F10

366

1E1C

Speed 2 time to trip at 3.50 x FLA

999999

F10

311

1E1E

Speed 2 time to trip at 3.75 x FLA

999999

F10

268

1E20

Speed 2 time to trip at 4.00 x FLA

999999

F10

233

1E22

Speed 2 time to trip at 4.25 x FLA

999999

F10

205

1E24

Speed 2 time to trip at 4.50 x FLA

999999

F10

182

1E26

Speed 2 time to trip at 4.75 x FLA

999999

F10

162

1E28

Speed 2 time to trip at 5.00 x FLA

999999

F10

146

1E2A

Speed 2 time to trip at 5.50 x FLA

999999

F10

120

1E2C

Speed 2 time to trip at 6.00 x FLA

999999

F10

100

1E2E

Speed 2 time to trip at 6.50 x FLA

999999

F10

85

1E30

Speed 2 time to trip at 7.00 x FLA

999999

F10

73

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 55 of 91)


GROUP

SPEED 2
UNDER
CURRENT

SPEED 2
ACCELERATION

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1E32

Speed 2 time to trip at 7.50 x FLA

999999

F10

63

1E34

Speed 2 time to trip at 8.00 x FLA

999999

F10

56

1E36

Speed 2 time to trip at 10.0 x FLA

999999

F10

56

1E38

Speed 2 time to trip at 15.0 x FLA

999999

F10

56

1E3A

Speed 2 time to trip at 20.0 x FLA

999999

F10

56

1E3C

Reserved

1E3D

Reserved

...

...

1E4F

Reserved

1E50

Speed 2 minimum allowable line voltage

70

95

%Rated

F1

80

1E51

Speed 2 stall current at minimum Vline

200

1500

FLA

F3

480

1E52

Speed 2 safe stall time at minimum Vline

9999

F2

200

1E53

Speed 2 acceleration intersect at min. Vline

200

1500

FLA

F3

380

1E54

Speed 2 stall current at 100% Vline

200

1500

FLA

F3

600

1E55

Speed 2 safe stall time at 100% Vline

9999

F2

100

1E56

Speed 2 acceleration intersect at 100% Vline

200

1500

FLA

F3

500

1E57

Reserved

1E58

Reserved

...

...

1E8F

Reserved

1E90

Block speed 2 undercurrent from start

15000

F1

1E91

Speed 2 undercurrent alarm

--

F115

1E92

Reserved

1E93

Speed 2 undercurrent alarm pickup

10

95

FLA

F3

70

1E94

Speed 2 undercurrent alarm delay

60

F1

1E95

Speed 2 undercurrent alarm events

--

F103

1E96

Speed 2 undercurrent trip

--

F115

1E97

Reserved

1E98

Speed 2 undercurrent trip pickup

10

99

FLA

F3

70

1E99

Speed 2 undercurrent trip delay

60

F1

1E9A

Reserved

1E9B

Reserved

...

...

1EAF

Reserved

1EB0

Speed 2 acceleration timer from start

10

2500

F2

100

1EB1

Acceleration timer from speed one to two

10

2500

F2

100

1EB2

Speed switch trip speed 2 delay

10

2500

F2

50

1EB3

Speed 2 rated speed

100

7200

RPM

F1

3600

1EB4

Reserved

1EB5

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

73

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 56 of 91)


GROUP

ANALOG
INPUT 1-2
DIFF.

ANALOG
INPUT 3-4
DIFF.

74

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

...

...

1EFF

Reserved

1F00

Analog In Differential 1-2 Enable

1F01

1st & 2nd chars. of analog in diff 1-2 name

65535

--

F22

An

1F02

3rd & 4th chars. of analog in diff 1-2 name

65535

--

F22

al

1F03

5th & 6th chars. of analog in diff 1-2 name

65535

--

F22

og

1F04

7th & 8th chars. of analog in diff 1-2 name

65535

--

F22

1F05

9th & 10th chars. of analog in diff 1-2 name

65535

--

F22

-2

1F06

11th & 12th char of analog in diff 1-2 name

65535

--

F22

1F07

Analog input differential 1-2 comparison

--

F145

1F08

Analog input differential 1-2 logic

--

F146

--

F126

1F09

Analog input differential 1-2 active when

--

F147

1F0A

Analog input differential 1-2 block from start

5000

F1

1F0B

Analog input differential 1-2 alarm

--

F115

1F0C

Analog input differential 1-2 alarm relays

--

F113

1F0D

Analog input differential 1-2 percent alarm

500

F1

10

1F0E

Analog input differential 1-2 absolute alarm

50000

Units

F1

10

1F0F

Analog input differential 1-2 alarm delay

3000

F2

1F10

Analog input differential 1-2 alarm events

--

F103

1F11

Analog input differential 1-2 trip

--

F115

1F12

Analog input differential 1-2 trip relays

--

F111

1F13

Analog input differential 1-2 percent trip

500

F1

10

1F14

Analog input differential 1-2 absolute trip

50000

Units

F1

10

1F15

Analog input differential 1-2 trip delay

3000

F2

1F16

Reserved

1F17

Reserved

...

...

1F1F

Reserved

1F20

Analog In Differential 3-4 Enable

--

F126

1F21

1st & 2nd chars. of analog in diff 3-4 name

65535

--

F22

An

1F21

3rd & 4th chars. of analog in diff 3-4 name

65535

--

F22

al

1F21

5th & 6th chars. of analog in diff 3-4 name

65535

--

F22

og

1F21

7th & 8th chars. of analog in diff 3-4 name

65535

--

F22

1F21

9th & 10th chars. of analog in diff 3-4 name

65535

--

F22

-4

1F26

11th & 12th char of analog in diff 3-4 name

65535

--

F22

1F27

Analog input differential 3-4 comparison

--

F145

1F28

Analog input differential 3-4 logic

--

F146

1F29

Analog input differential 3-4 active when

--

F147

1F2A

Analog input differential 3-4 block from start

5000

F1

1F2B

Analog input differential 3-4 alarm

--

F115

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 57 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

1F2C

Analog input differential 3-4 alarm relays

--

F113

1F2D

Analog input differential 3-4 percent alarm

500

F1

10

1F2E

Analog input differential 3-4 absolute alarm

50000

Units

F1

10

1F2F

Analog input differential 3-4 alarm delay

3000

F2

1F30

Analog input differential 3-4 alarm events

--

F103

1F31

Analog input differential 3-4 trip

--

F115

1F32

Analog input differential 3-4 trip relays

--

F111

1F33

Analog input differential 3-4 percent trip

500

F1

10

1F34

Analog input differential 3-4 absolute trip

50000

Units

F1

10

1F35

Analog input differential 3-4 trip delay

3000

F2

1F36

Reserved

1F36

Reserved

--

--

--

--

F18

--

...

...

2FFF

Reserved

Event Recorder / Trace Memory (Addresses 3000 -3FFF)


EVENT
RECORDER

3000

Event recorder last reset (2 words)

3002

Total number of events since last clear

65535

--

F1

3003

Event record select (1=newest, 256=oldest)

256

--

F1

3004

Cause of event

143

F134

3005

Time of event (2 words)

--

--

--

--

F19

--

3007

Date of event (2 words)

--

--

--

--

F18

--

3009

Motor speed during event

F135

300A

Event tachometer RPM

7200

RPM

F1

300B

Event phase A current

100000

F9

300D

Event phase B current

100000

F9

300F

Event phase C current

100000

F9

3011

Event motor load

2000

FLA

F3

3012

Event current unbalance

100

F1

3013

Event ground current

5000

F11

3015

Event phase A differential current

5000

F1

3016

Event phase B differential current

5000

F1

3017

Event phase C differential current

5000

F1

3018

Event hottest stator RTD

12

--

F1

3019

Event temperature of hottest stator RTD

50

250

F4

301A

Event hottest bearing RTD

12

--

F1

301B

Event temperature of hottest bearing RTD

50

250

F4

301C

Event hottest other RTD

12

--

F1

301D

Event temperature of hottest other RTD

50

250

F4

301E

Event hottest ambient RTD

12

--

F1

301F

Event ambient RTD temperature

50

250

F4

3020

Event voltage Vab

20000

F1

3021

Event voltage Vbc

20000

F1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

75

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 58 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3022

Event voltage Vca

20000

F1

3023

Event voltage Van

20000

F1

3024

Event voltage Vbn

20000

F1

3025

Event voltage Vcn

20000

F1

3026

Event system frequency

12000

Hz

F3

3027

Event real power

50000

50000

kW

F12

3029

Event reactive power

50000

50000

kvar

F12

302B

Event apparent power

50000

kVA

F1

302C

Event power factor

99

100

--

F21

302D

Event analog input #1

50000

50000

--

F12

302F

Event analog input #2

50000

50000

--

F12

3031

Event analog input #3

50000

50000

--

F12

3033

Event analog input #4

50000

50000

--

F12

3035

Event torque

9999999

Nm/ftlb

F2

3037

Reserved

3038

Reserved

30E0

Event temperature of hottest stator RTD (F)

58

482

F4

32

30E1

Event temp. of hottest bearing RTD (F)

58

482

F4

32

30E2

Event temperature of hottest other RTD (F)

58

482

F4

32

30E3

Event ambient RTD temperature (in F)

58

482

F4

32

30E4

Reserved

30E5

Reserved
...

TRACE
MEMORY

76

30EF

Reserved

30F0

Trace number selector

65535

F1

30F1

Trace memory channel selector

10

F1

30F2

Trace memory date

--

--

--

--

F18

--

30F4

Trace memory time

--

--

--

--

F19

--

30F6

Trace trigger cause

131

F134

--

30F7

Number of samples per trace

1536

F1

--

30F8

Number of traces taken

65535

F1

--

30F9

Trace memory sampling frequency

--

--

Hz

F3

--

30FA

Trace memory trigger index

Number of
samples
1
per trace

30FB

Reserved

30FC

Reserved

30FD

Reserved

F1

30FE

Reserved

30FF

Reserved

3100

Trace memory sample #1

-32767

32767

--

F157

3101

Trace memory sample #2

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 59 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3102

Trace memory sample #3

-32767

32767

--

F157

3103

Trace memory sample #4

-32767

32767

--

F157

3104

Trace memory sample #5

-32767

32767

--

F157

3105

Trace memory sample #6

-32767

32767

--

F157

3106

Trace memory sample #7

-32767

32767

--

F157

3107

Trace memory sample #8

-32767

32767

--

F157

3108

Trace memory sample #9

-32767

32767

--

F157

3109

Trace memory sample #10

-32767

32767

--

F157

310A

Trace memory sample #11

-32767

32767

--

F157

310B

Trace memory sample #12

-32767

32767

--

F157

310C

Trace memory sample #13

-32767

32767

--

F157

310D

Trace memory sample #14

-32767

32767

--

F157

310E

Trace memory sample #15

-32767

32767

--

F157

310F

Trace memory sample #16

-32767

32767

--

F157

3110

Trace memory sample #17

-32767

32767

--

F157

3111

Trace memory sample #18

-32767

32767

--

F157

3112

Trace memory sample #19

-32767

32767

--

F157

3113

Trace memory sample #20

-32767

32767

--

F157

3114

Trace memory sample #21

-32767

32767

--

F157

3115

Trace memory sample #22

-32767

32767

--

F157

3116

Trace memory sample #23

-32767

32767

--

F157

3117

Trace memory sample #24

-32767

32767

--

F157

3118

Trace memory sample #25

-32767

32767

--

F157

3119

Trace memory sample #26

-32767

32767

--

F157

311A

Trace memory sample #27

-32767

32767

--

F157

311B

Trace memory sample #28

-32767

32767

--

F157

311C

Trace memory sample #29

-32767

32767

--

F157

311D

Trace memory sample #30

-32767

32767

--

F157

311E

Trace memory sample #31

-32767

32767

--

F157

311F

Trace memory sample #32

-32767

32767

--

F157

3120

Trace memory sample #33

-32767

32767

--

F157

3121

Trace memory sample #34

-32767

32767

--

F157

3122

Trace memory sample #35

-32767

32767

--

F157

3123

Trace memory sample #36

-32767

32767

--

F157

3124

Trace memory sample #37

-32767

32767

--

F157

3125

Trace memory sample #38

-32767

32767

--

F157

3126

Trace memory sample #39

-32767

32767

--

F157

3127

Trace memory sample #40

-32767

32767

--

F157

3128

Trace memory sample #41

-32767

32767

--

F157

3129

Trace memory sample #42

-32767

32767

--

F157

312A

Trace memory sample #43

-32767

32767

--

F157

312B

Trace memory sample #44

-32767

32767

--

F157

312C

Trace memory sample #45

-32767

32767

--

F157

312D

Trace memory sample #46

-32767

32767

--

F157

312E

Trace memory sample #47

-32767

32767

--

F157

312F

Trace memory sample #48

-32767

32767

--

F157

3130

Trace memory sample #49

-32767

32767

--

F157

3131

Trace memory sample #50

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

77

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 60 of 91)


GROUP

78

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3132

Trace memory sample #51

-32767

32767

--

F157

3133

Trace memory sample #52

-32767

32767

--

F157

3134

Trace memory sample #53

-32767

32767

--

F157

3135

Trace memory sample #54

-32767

32767

--

F157

3136

Trace memory sample #55

-32767

32767

--

F157

3137

Trace memory sample #56

-32767

32767

--

F157

3138

Trace memory sample #57

-32767

32767

--

F157

3139

Trace memory sample #58

-32767

32767

--

F157

313A

Trace memory sample #59

-32767

32767

--

F157

313B

Trace memory sample #60

-32767

32767

--

F157

313C

Trace memory sample #61

-32767

32767

--

F157

313D

Trace memory sample #62

-32767

32767

--

F157

313E

Trace memory sample #63

-32767

32767

--

F157

313F

Trace memory sample #64

-32767

32767

--

F157

3140

Trace memory sample #65

-32767

32767

--

F157

3141

Trace memory sample #66

-32767

32767

--

F157

3142

Trace memory sample #67

-32767

32767

--

F157

3143

Trace memory sample #68

-32767

32767

--

F157

3144

Trace memory sample #69

-32767

32767

--

F157

3145

Trace memory sample #70

-32767

32767

--

F157

3146

Trace memory sample #71

-32767

32767

--

F157

3147

Trace memory sample #72

-32767

32767

--

F157

3148

Trace memory sample #73

-32767

32767

--

F157

3149

Trace memory sample #74

-32767

32767

--

F157

314A

Trace memory sample #75

-32767

32767

--

F157

314B

Trace memory sample #76

-32767

32767

--

F157

314C

Trace memory sample #77

-32767

32767

--

F157

314D

Trace memory sample #78

-32767

32767

--

F157

314E

Trace memory sample #79

-32767

32767

--

F157

314F

Trace memory sample #80

-32767

32767

--

F157

3150

Trace memory sample #81

-32767

32767

--

F157

3151

Trace memory sample #82

-32767

32767

--

F157

3152

Trace memory sample #83

-32767

32767

--

F157

3153

Trace memory sample #84

-32767

32767

--

F157

3154

Trace memory sample #85

-32767

32767

--

F157

3155

Trace memory sample #86

-32767

32767

--

F157

3156

Trace memory sample #87

-32767

32767

--

F157

3157

Trace memory sample #88

-32767

32767

--

F157

3158

Trace memory sample #89

-32767

32767

--

F157

3159

Trace memory sample #90

-32767

32767

--

F157

315A

Trace memory sample #91

-32767

32767

--

F157

315B

Trace memory sample #92

-32767

32767

--

F157

315C

Trace memory sample #93

-32767

32767

--

F157

315D

Trace memory sample #94

-32767

32767

--

F157

315E

Trace memory sample #95

-32767

32767

--

F157

315F

Trace memory sample #96

-32767

32767

--

F157

3160

Trace memory sample #97

-32767

32767

--

F157

3161

Trace memory sample #98

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 61 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3162

Trace memory sample #99

-32767

32767

--

F157

3163

Trace memory sample #100

-32767

32767

--

F157

3164

Trace memory sample #101

-32767

32767

--

F157

3165

Trace memory sample #102

-32767

32767

--

F157

3166

Trace memory sample #103

-32767

32767

--

F157

3167

Trace memory sample #104

-32767

32767

--

F157

3168

Trace memory sample #105

-32767

32767

--

F157

3169

Trace memory sample #106

-32767

32767

--

F157

316A

Trace memory sample #107

-32767

32767

--

F157

316B

Trace memory sample #108

-32767

32767

--

F157

316C

Trace memory sample #109

-32767

32767

--

F157

316D

Trace memory sample #110

-32767

32767

--

F157

316E

Trace memory sample #111

-32767

32767

--

F157

316F

Trace memory sample #112

-32767

32767

--

F157

3170

Trace memory sample #113

-32767

32767

--

F157

3171

Trace memory sample #114

-32767

32767

--

F157

3172

Trace memory sample #115

-32767

32767

--

F157

3173

Trace memory sample #116

-32767

32767

--

F157

3174

Trace memory sample #117

-32767

32767

--

F157

3175

Trace memory sample #118

-32767

32767

--

F157

3176

Trace memory sample #119

-32767

32767

--

F157

3177

Trace memory sample #120

-32767

32767

--

F157

3178

Trace memory sample #121

-32767

32767

--

F157

3179

Trace memory sample #122

-32767

32767

--

F157

317A

Trace memory sample #123

-32767

32767

--

F157

317B

Trace memory sample #124

-32767

32767

--

F157

317C

Trace memory sample #125

-32767

32767

--

F157

317D

Trace memory sample #126

-32767

32767

--

F157

317E

Trace memory sample #127

-32767

32767

--

F157

317F

Trace memory sample #128

-32767

32767

--

F157

3180

Trace memory sample #129

-32767

32767

--

F157

3181

Trace memory sample #130

-32767

32767

--

F157

3182

Trace memory sample #131

-32767

32767

--

F157

3183

Trace memory sample #132

-32767

32767

--

F157

3184

Trace memory sample #133

-32767

32767

--

F157

3185

Trace memory sample #134

-32767

32767

--

F157

3186

Trace memory sample #135

-32767

32767

--

F157

3187

Trace memory sample #136

-32767

32767

--

F157

3188

Trace memory sample #137

-32767

32767

--

F157

3189

Trace memory sample #138

-32767

32767

--

F157

318A

Trace memory sample #139

-32767

32767

--

F157

318B

Trace memory sample #140

-32767

32767

--

F157

318C

Trace memory sample #141

-32767

32767

--

F157

318D

Trace memory sample #142

-32767

32767

--

F157

318E

Trace memory sample #143

-32767

32767

--

F157

318F

Trace memory sample #144

-32767

32767

--

F157

3190

Trace memory sample #145

-32767

32767

--

F157

3191

Trace memory sample #146

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

79

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 62 of 91)


GROUP

80

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3192

Trace memory sample #147

-32767

32767

--

F157

3193

Trace memory sample #148

-32767

32767

--

F157

3194

Trace memory sample #149

-32767

32767

--

F157

3195

Trace memory sample #150

-32767

32767

--

F157

3196

Trace memory sample #151

-32767

32767

--

F157

3197

Trace memory sample #152

-32767

32767

--

F157

3198

Trace memory sample #153

-32767

32767

--

F157

3199

Trace memory sample #154

-32767

32767

--

F157

319A

Trace memory sample #155

-32767

32767

--

F157

319B

Trace memory sample #156

-32767

32767

--

F157

319C

Trace memory sample #157

-32767

32767

--

F157

319D

Trace memory sample #158

-32767

32767

--

F157

319E

Trace memory sample #159

-32767

32767

--

F157

319F

Trace memory sample #160

-32767

32767

--

F157

31A0

Trace memory sample #161

-32767

32767

--

F157

31A1

Trace memory sample #162

-32767

32767

--

F157

31A2

Trace memory sample #163

-32767

32767

--

F157

31A3

Trace memory sample #164

-32767

32767

--

F157

31A4

Trace memory sample #165

-32767

32767

--

F157

31A5

Trace memory sample #166

-32767

32767

--

F157

31A6

Trace memory sample #167

-32767

32767

--

F157

31A7

Trace memory sample #168

-32767

32767

--

F157

31A8

Trace memory sample #169

-32767

32767

--

F157

31A9

Trace memory sample #170

-32767

32767

--

F157

31AA

Trace memory sample #171

-32767

32767

--

F157

31AB

Trace memory sample #172

-32767

32767

--

F157

31AC

Trace memory sample #173

-32767

32767

--

F157

31AD

Trace memory sample #174

-32767

32767

--

F157

31AE

Trace memory sample #175

-32767

32767

--

F157

31AF

Trace memory sample #176

-32767

32767

--

F157

31B0

Trace memory sample #177

-32767

32767

--

F157

31B1

Trace memory sample #178

-32767

32767

--

F157

31B2

Trace memory sample #179

-32767

32767

--

F157

31B3

Trace memory sample #180

-32767

32767

--

F157

31B4

Trace memory sample #181

-32767

32767

--

F157

31B5

Trace memory sample #182

-32767

32767

--

F157

31B6

Trace memory sample #183

-32767

32767

--

F157

31B7

Trace memory sample #184

-32767

32767

--

F157

31B8

Trace memory sample #185

-32767

32767

--

F157

0
0

31B9

Trace memory sample #186

-32767

32767

--

F157

31BA

Trace memory sample #187

-32767

32767

--

F157

31BB

Trace memory sample #188

-32767

32767

--

F157

31BC

Trace memory sample #189

-32767

32767

--

F157

31BD

Trace memory sample #190

-32767

32767

--

F157

31BE

Trace memory sample #191

-32767

32767

--

F157

31BF

Trace memory sample #192

-32767

32767

--

F157

31C0

Trace memory sample #193

-32767

32767

--

F157

31C1

Trace memory sample #194

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 63 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

31C2

Trace memory sample #195

-32767

32767

--

F157

31C3

Trace memory sample #196

-32767

32767

--

F157

31C4

Trace memory sample #197

-32767

32767

--

F157

31C5

Trace memory sample #198

-32767

32767

--

F157

31C6

Trace memory sample #199

-32767

32767

--

F157

31C7

Trace memory sample #200

-32767

32767

--

F157

31C8

Trace memory sample #201

-32767

32767

--

F157

31C9

Trace memory sample #202

-32767

32767

--

F157

31CA

Trace memory sample #203

-32767

32767

--

F157

31CB

Trace memory sample #204

-32767

32767

--

F157

31CC

Trace memory sample #205

-32767

32767

--

F157

31CD

Trace memory sample #206

-32767

32767

--

F157

31CE

Trace memory sample #207

-32767

32767

--

F157

31CF

Trace memory sample #208

-32767

32767

--

F157

31D0

Trace memory sample #209

-32767

32767

--

F157

31D1

Trace memory sample #210

-32767

32767

--

F157

31D2

Trace memory sample #211

-32767

32767

--

F157

31D3

Trace memory sample #212

-32767

32767

--

F157

31D4

Trace memory sample #213

-32767

32767

--

F157

31D5

Trace memory sample #214

-32767

32767

--

F157

31D6

Trace memory sample #215

-32767

32767

--

F157

31D7

Trace memory sample #216

-32767

32767

--

F157

31D8

Trace memory sample #217

-32767

32767

--

F157

31D9

Trace memory sample #218

-32767

32767

--

F157

31DA

Trace memory sample #219

-32767

32767

--

F157

31DB

Trace memory sample #220

-32767

32767

--

F157

31DC

Trace memory sample #221

-32767

32767

--

F157

31DD

Trace memory sample #222

-32767

32767

--

F157

31DE

Trace memory sample #223

-32767

32767

--

F157

31DF

Trace memory sample #224

-32767

32767

--

F157

31E0

Trace memory sample #225

-32767

32767

--

F157

31E1

Trace memory sample #226

-32767

32767

--

F157

31E2

Trace memory sample #227

-32767

32767

--

F157

31E3

Trace memory sample #228

-32767

32767

--

F157

31E4

Trace memory sample #229

-32767

32767

--

F157

31E5

Trace memory sample #230

-32767

32767

--

F157

31E6

Trace memory sample #231

-32767

32767

--

F157

31E7

Trace memory sample #232

-32767

32767

--

F157

31E8

Trace memory sample #233

-32767

32767

--

F157

31E9

Trace memory sample #234

-32767

32767

--

F157

31EA

Trace memory sample #235

-32767

32767

--

F157

31EB

Trace memory sample #236

-32767

32767

--

F157

31EC

Trace memory sample #237

-32767

32767

--

F157

31ED

Trace memory sample #238

-32767

32767

--

F157

31EE

Trace memory sample #239

-32767

32767

--

F157

31EF

Trace memory sample #240

-32767

32767

--

F157

31F0

Trace memory sample #241

-32767

32767

--

F157

31F1

Trace memory sample #242

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

81

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 64 of 91)


GROUP

82

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

31F2

Trace memory sample #243

-32767

32767

--

F157

31F3

Trace memory sample #244

-32767

32767

--

F157

31F4

Trace memory sample #245

-32767

32767

--

F157

31F5

Trace memory sample #246

-32767

32767

--

F157

31F6

Trace memory sample #247

-32767

32767

--

F157

31F7

Trace memory sample #248

-32767

32767

--

F157

31F8

Trace memory sample #249

-32767

32767

--

F157

31F9

Trace memory sample #250

-32767

32767

--

F157

31FA

Trace memory sample #251

-32767

32767

--

F157

31FB

Trace memory sample #252

-32767

32767

--

F157

31FC

Trace memory sample #253

-32767

32767

--

F157

31FD

Trace memory sample #254

-32767

32767

--

F157

31FE

Trace memory sample #255

-32767

32767

--

F157

31FF

Trace memory sample #256

-32767

32767

--

F157

3200

Trace memory sample #257

-32767

32767

--

F157

3201

Trace memory sample #258

-32767

32767

--

F157

3202

Trace memory sample #259

-32767

32767

--

F157

3203

Trace memory sample #260

-32767

32767

--

F157

3204

Trace memory sample #261

-32767

32767

--

F157

3205

Trace memory sample #262

-32767

32767

--

F157

3206

Trace memory sample #263

-32767

32767

--

F157

3207

Trace memory sample #264

-32767

32767

--

F157

3208

Trace memory sample #265

-32767

32767

--

F157

3209

Trace memory sample #266

-32767

32767

--

F157

320A

Trace memory sample #267

-32767

32767

--

F157

320B

Trace memory sample #268

-32767

32767

--

F157

320C

Trace memory sample #269

-32767

32767

--

F157

320D

Trace memory sample #270

-32767

32767

--

F157

320E

Trace memory sample #271

-32767

32767

--

F157

320F

Trace memory sample #272

-32767

32767

--

F157

3210

Trace memory sample #273

-32767

32767

--

F157

3211

Trace memory sample #274

-32767

32767

--

F157

3212

Trace memory sample #275

-32767

32767

--

F157

3213

Trace memory sample #276

-32767

32767

--

F157

3214

Trace memory sample #277

-32767

32767

--

F157

3215

Trace memory sample #278

-32767

32767

--

F157

3216

Trace memory sample #279

-32767

32767

--

F157

3217

Trace memory sample #280

-32767

32767

--

F157

3218

Trace memory sample #281

-32767

32767

--

F157

3219

Trace memory sample #282

-32767

32767

--

F157

321A

Trace memory sample #283

-32767

32767

--

F157

321B

Trace memory sample #284

-32767

32767

--

F157

321C

Trace memory sample #285

-32767

32767

--

F157

321D

Trace memory sample #286

-32767

32767

--

F157

321E

Trace memory sample #287

-32767

32767

--

F157

321F

Trace memory sample #288

-32767

32767

--

F157

3220

Trace memory sample #289

-32767

32767

--

F157

3221

Trace memory sample #290

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 65 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3222

Trace memory sample #291

-32767

32767

--

F157

3223

Trace memory sample #292

-32767

32767

--

F157

3224

Trace memory sample #293

-32767

32767

--

F157

3225

Trace memory sample #294

-32767

32767

--

F157

3226

Trace memory sample #295

-32767

32767

--

F157

3227

Trace memory sample #296

-32767

32767

--

F157

3228

Trace memory sample #297

-32767

32767

--

F157

3229

Trace memory sample #298

-32767

32767

--

F157

322A

Trace memory sample #299

-32767

32767

--

F157

322B

Trace memory sample #300

-32767

32767

--

F157

322C

Trace memory sample #301

-32767

32767

--

F157

322D

Trace memory sample #302

-32767

32767

--

F157

322E

Trace memory sample #303

-32767

32767

--

F157

322F

Trace memory sample #304

-32767

32767

--

F157

3230

Trace memory sample #305

-32767

32767

--

F157

3231

Trace memory sample #306

-32767

32767

--

F157

3232

Trace memory sample #307

-32767

32767

--

F157

3233

Trace memory sample #308

-32767

32767

--

F157

3234

Trace memory sample #309

-32767

32767

--

F157

3235

Trace memory sample #310

-32767

32767

--

F157

3236

Trace memory sample #311

-32767

32767

--

F157

3237

Trace memory sample #312

-32767

32767

--

F157

3238

Trace memory sample #313

-32767

32767

--

F157

3239

Trace memory sample #314

-32767

32767

--

F157

323A

Trace memory sample #315

-32767

32767

--

F157

323B

Trace memory sample #316

-32767

32767

--

F157

323C

Trace memory sample #317

-32767

32767

--

F157

323D

Trace memory sample #318

-32767

32767

--

F157

323E

Trace memory sample #319

-32767

32767

--

F157

323F

Trace memory sample #320

-32767

32767

--

F157

3240

Trace memory sample #321

-32767

32767

--

F157

3241

Trace memory sample #322

-32767

32767

--

F157

3242

Trace memory sample #323

-32767

32767

--

F157

3243

Trace memory sample #324

-32767

32767

--

F157

3244

Trace memory sample #325

-32767

32767

--

F157

3245

Trace memory sample #326

-32767

32767

--

F157

3246

Trace memory sample #327

-32767

32767

--

F157

3247

Trace memory sample #328

-32767

32767

--

F157

3248

Trace memory sample #329

-32767

32767

--

F157

3249

Trace memory sample #330

-32767

32767

--

F157

324A

Trace memory sample #331

-32767

32767

--

F157

324B

Trace memory sample #332

-32767

32767

--

F157

324C

Trace memory sample #333

-32767

32767

--

F157

324D

Trace memory sample #334

-32767

32767

--

F157

324E

Trace memory sample #335

-32767

32767

--

F157

324F

Trace memory sample #336

-32767

32767

--

F157

3250

Trace memory sample #337

-32767

32767

--

F157

3251

Trace memory sample #338

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

83

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 66 of 91)


GROUP

84

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3252

Trace memory sample #339

-32767

32767

--

F157

3253

Trace memory sample #340

-32767

32767

--

F157

3254

Trace memory sample #341

-32767

32767

--

F157

3255

Trace memory sample #342

-32767

32767

--

F157

3256

Trace memory sample #343

-32767

32767

--

F157

3257

Trace memory sample #344

-32767

32767

--

F157

3258

Trace memory sample #345

-32767

32767

--

F157

3259

Trace memory sample #346

-32767

32767

--

F157

325A

Trace memory sample #347

-32767

32767

--

F157

325B

Trace memory sample #348

-32767

32767

--

F157

325C

Trace memory sample #349

-32767

32767

--

F157

325D

Trace memory sample #350

-32767

32767

--

F157

325E

Trace memory sample #351

-32767

32767

--

F157

325F

Trace memory sample #352

-32767

32767

--

F157

3260

Trace memory sample #353

-32767

32767

--

F157

3261

Trace memory sample #354

-32767

32767

--

F157

3262

Trace memory sample #355

-32767

32767

--

F157

3263

Trace memory sample #356

-32767

32767

--

F157

3264

Trace memory sample #357

-32767

32767

--

F157

3265

Trace memory sample #358

-32767

32767

--

F157

3266

Trace memory sample #359

-32767

32767

--

F157

3267

Trace memory sample #360

-32767

32767

--

F157

3268

Trace memory sample #361

-32767

32767

--

F157

3269

Trace memory sample #362

-32767

32767

--

F157

326A

Trace memory sample #363

-32767

32767

--

F157

326B

Trace memory sample #364

-32767

32767

--

F157

326C

Trace memory sample #365

-32767

32767

--

F157

326D

Trace memory sample #366

-32767

32767

--

F157

326E

Trace memory sample #367

-32767

32767

--

F157

326F

Trace memory sample #368

-32767

32767

--

F157

3270

Trace memory sample #369

-32767

32767

--

F157

3271

Trace memory sample #370

-32767

32767

--

F157

3272

Trace memory sample #371

-32767

32767

--

F157

3273

Trace memory sample #372

-32767

32767

--

F157

3274

Trace memory sample #373

-32767

32767

--

F157

3275

Trace memory sample #374

-32767

32767

--

F157

3276

Trace memory sample #375

-32767

32767

--

F157

3277

Trace memory sample #376

-32767

32767

--

F157

3278

Trace memory sample #377

-32767

32767

--

F157

3279

Trace memory sample #378

-32767

32767

--

F157

327A

Trace memory sample #379

-32767

32767

--

F157

327B

Trace memory sample #380

-32767

32767

--

F157

327C

Trace memory sample #381

-32767

32767

--

F157

327D

Trace memory sample #382

-32767

32767

--

F157

327E

Trace memory sample #383

-32767

32767

--

F157

327F

Trace memory sample #384

-32767

32767

--

F157

3280

Trace memory sample #385

-32767

32767

--

F157

3281

Trace memory sample #386

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 67 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3282

Trace memory sample #387

-32767

32767

--

F157

3283

Trace memory sample #388

-32767

32767

--

F157

3284

Trace memory sample #389

-32767

32767

--

F157

3285

Trace memory sample #390

-32767

32767

--

F157

3286

Trace memory sample #391

-32767

32767

--

F157

3287

Trace memory sample #392

-32767

32767

--

F157

3288

Trace memory sample #393

-32767

32767

--

F157

3289

Trace memory sample #394

-32767

32767

--

F157

328A

Trace memory sample #395

-32767

32767

--

F157

328B

Trace memory sample #396

-32767

32767

--

F157

328C

Trace memory sample #397

-32767

32767

--

F157

328D

Trace memory sample #398

-32767

32767

--

F157

328E

Trace memory sample #399

-32767

32767

--

F157

328F

Trace memory sample #400

-32767

32767

--

F157

3290

Trace memory sample #401

-32767

32767

--

F157

3291

Trace memory sample #402

-32767

32767

--

F157

3292

Trace memory sample #403

-32767

32767

--

F157

3293

Trace memory sample #404

-32767

32767

--

F157

3294

Trace memory sample #405

-32767

32767

--

F157

3295

Trace memory sample #406

-32767

32767

--

F157

3296

Trace memory sample #407

-32767

32767

--

F157

3297

Trace memory sample #408

-32767

32767

--

F157

3298

Trace memory sample #409

-32767

32767

--

F157

3299

Trace memory sample #410

-32767

32767

--

F157

329A

Trace memory sample #411

-32767

32767

--

F157

329B

Trace memory sample #412

-32767

32767

--

F157

329C

Trace memory sample #413

-32767

32767

--

F157

329D

Trace memory sample #414

-32767

32767

--

F157

329E

Trace memory sample #415

-32767

32767

--

F157

329F

Trace memory sample #416

-32767

32767

--

F157

32A0

Trace memory sample #417

-32767

32767

--

F157

32A1

Trace memory sample #418

-32767

32767

--

F157

32A2

Trace memory sample #419

-32767

32767

--

F157

32A3

Trace memory sample #420

-32767

32767

--

F157

32A4

Trace memory sample #421

-32767

32767

--

F157

32A5

Trace memory sample #422

-32767

32767

--

F157

32A6

Trace memory sample #423

-32767

32767

--

F157

32A7

Trace memory sample #424

-32767

32767

--

F157

32A8

Trace memory sample #425

-32767

32767

--

F157

32A9

Trace memory sample #426

-32767

32767

--

F157

32AA

Trace memory sample #427

-32767

32767

--

F157

32AB

Trace memory sample #428

-32767

32767

--

F157

32AC

Trace memory sample #429

-32767

32767

--

F157

32AD

Trace memory sample #430

-32767

32767

--

F157

32AE

Trace memory sample #431

-32767

32767

--

F157

32AF

Trace memory sample #432

-32767

32767

--

F157

32B0

Trace memory sample #433

-32767

32767

--

F157

32B1

Trace memory sample #434

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

85

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 68 of 91)


GROUP

86

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

32B2

Trace memory sample #435

-32767

32767

--

F157

32B3

Trace memory sample #436

-32767

32767

--

F157

32B4

Trace memory sample #437

-32767

32767

--

F157

32B5

Trace memory sample #438

-32767

32767

--

F157

32B6

Trace memory sample #439

-32767

32767

--

F157

32B7

Trace memory sample #440

-32767

32767

--

F157

32B8

Trace memory sample #441

-32767

32767

--

F157

0
0

32B9

Trace memory sample #442

-32767

32767

--

F157

32BA

Trace memory sample #443

-32767

32767

--

F157

32BB

Trace memory sample #444

-32767

32767

--

F157

32BC

Trace memory sample #445

-32767

32767

--

F157

32BD

Trace memory sample #446

-32767

32767

--

F157

32BE

Trace memory sample #447

-32767

32767

--

F157

32BF

Trace memory sample #448

-32767

32767

--

F157

32C0

Trace memory sample #449

-32767

32767

--

F157

32C1

Trace memory sample #450

-32767

32767

--

F157

32C2

Trace memory sample #451

-32767

32767

--

F157

32C3

Trace memory sample #452

-32767

32767

--

F157

32C4

Trace memory sample #453

-32767

32767

--

F157

32C5

Trace memory sample #454

-32767

32767

--

F157

32C6

Trace memory sample #455

-32767

32767

--

F157

32C7

Trace memory sample #456

-32767

32767

--

F157

32C8

Trace memory sample #457

-32767

32767

--

F157

32C9

Trace memory sample #458

-32767

32767

--

F157

32CA

Trace memory sample #459

-32767

32767

--

F157

32CB

Trace memory sample #460

-32767

32767

--

F157

32CC

Trace memory sample #461

-32767

32767

--

F157

32CD

Trace memory sample #462

-32767

32767

--

F157

32CE

Trace memory sample #463

-32767

32767

--

F157

32CF

Trace memory sample #464

-32767

32767

--

F157

32D0

Trace memory sample #465

-32767

32767

--

F157

32D1

Trace memory sample #466

-32767

32767

--

F157

32D2

Trace memory sample #467

-32767

32767

--

F157

32D3

Trace memory sample #468

-32767

32767

--

F157

32D4

Trace memory sample #469

-32767

32767

--

F157

32D5

Trace memory sample #470

-32767

32767

--

F157

32D6

Trace memory sample #471

-32767

32767

--

F157

32D7

Trace memory sample #472

-32767

32767

--

F157

32D8

Trace memory sample #473

-32767

32767

--

F157

32D9

Trace memory sample #474

-32767

32767

--

F157

32DA

Trace memory sample #475

-32767

32767

--

F157

32DB

Trace memory sample #476

-32767

32767

--

F157

32DC

Trace memory sample #477

-32767

32767

--

F157

32DD

Trace memory sample #478

-32767

32767

--

F157

32DE

Trace memory sample #479

-32767

32767

--

F157

32DF

Trace memory sample #480

-32767

32767

--

F157

32E0

Trace memory sample #481

-32767

32767

--

F157

32E1

Trace memory sample #482

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 69 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

32E2

Trace memory sample #483

-32767

32767

--

F157

32E3

Trace memory sample #484

-32767

32767

--

F157

32E4

Trace memory sample #485

-32767

32767

--

F157

32E5

Trace memory sample #486

-32767

32767

--

F157

32E6

Trace memory sample #487

-32767

32767

--

F157

32E7

Trace memory sample #488

-32767

32767

--

F157

32E8

Trace memory sample #489

-32767

32767

--

F157

32E9

Trace memory sample #490

-32767

32767

--

F157

32EA

Trace memory sample #491

-32767

32767

--

F157

32EB

Trace memory sample #492

-32767

32767

--

F157

32EC

Trace memory sample #493

-32767

32767

--

F157

32ED

Trace memory sample #494

-32767

32767

--

F157

32EE

Trace memory sample #495

-32767

32767

--

F157

32EF

Trace memory sample #496

-32767

32767

--

F157

32F0

Trace memory sample #497

-32767

32767

--

F157

32F1

Trace memory sample #498

-32767

32767

--

F157

32F2

Trace memory sample #499

-32767

32767

--

F157

32F3

Trace memory sample #500

-32767

32767

--

F157

32F4

Trace memory sample #501

-32767

32767

--

F157

32F5

Trace memory sample #502

-32767

32767

--

F157

32F6

Trace memory sample #503

-32767

32767

--

F157

32F7

Trace memory sample #504

-32767

32767

--

F157

32F8

Trace memory sample #505

-32767

32767

--

F157

32F9

Trace memory sample #506

-32767

32767

--

F157

32FA

Trace memory sample #507

-32767

32767

--

F157

32FB

Trace memory sample #508

-32767

32767

--

F157

32FC

Trace memory sample #509

-32767

32767

--

F157

32FD

Trace memory sample #510

-32767

32767

--

F157

32FE

Trace memory sample #511

-32767

32767

--

F157

32FF

Trace memory sample #512

-32767

32767

--

F157

3300

Trace memory sample #513

-32767

32767

--

F157

3301

Trace memory sample #514

-32767

32767

--

F157

3302

Trace memory sample #515

-32767

32767

--

F157

3303

Trace memory sample #516

-32767

32767

--

F157

3304

Trace memory sample #517

-32767

32767

--

F157

3305

Trace memory sample #518

-32767

32767

--

F157

3306

Trace memory sample #519

-32767

32767

--

F157

3307

Trace memory sample #520

-32767

32767

--

F157

3308

Trace memory sample #521

-32767

32767

--

F157

3309

Trace memory sample #522

-32767

32767

--

F157

330A

Trace memory sample #523

-32767

32767

--

F157

330B

Trace memory sample #524

-32767

32767

--

F157

330C

Trace memory sample #525

-32767

32767

--

F157

330D

Trace memory sample #526

-32767

32767

--

F157

330E

Trace memory sample #527

-32767

32767

--

F157

330F

Trace memory sample #528

-32767

32767

--

F157

3310

Trace memory sample #529

-32767

32767

--

F157

3311

Trace memory sample #530

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

87

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 70 of 91)


GROUP

88

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3312

Trace memory sample #531

-32767

32767

--

F157

3313

Trace memory sample #532

-32767

32767

--

F157

3314

Trace memory sample #533

-32767

32767

--

F157

3315

Trace memory sample #534

-32767

32767

--

F157

3316

Trace memory sample #535

-32767

32767

--

F157

3317

Trace memory sample #536

-32767

32767

--

F157

3318

Trace memory sample #537

-32767

32767

--

F157

3319

Trace memory sample #538

-32767

32767

--

F157

331A

Trace memory sample #539

-32767

32767

--

F157

331B

Trace memory sample #540

-32767

32767

--

F157

331C

Trace memory sample #541

-32767

32767

--

F157

331D

Trace memory sample #542

-32767

32767

--

F157

331E

Trace memory sample #543

-32767

32767

--

F157

331F

Trace memory sample #544

-32767

32767

--

F157

3320

Trace memory sample #545

-32767

32767

--

F157

3321

Trace memory sample #546

-32767

32767

--

F157

3322

Trace memory sample #547

-32767

32767

--

F157

3323

Trace memory sample #548

-32767

32767

--

F157

3324

Trace memory sample #549

-32767

32767

--

F157

3325

Trace memory sample #550

-32767

32767

--

F157

3326

Trace memory sample #551

-32767

32767

--

F157

3327

Trace memory sample #552

-32767

32767

--

F157

3328

Trace memory sample #553

-32767

32767

--

F157

3329

Trace memory sample #554

-32767

32767

--

F157

332A

Trace memory sample #555

-32767

32767

--

F157

332B

Trace memory sample #556

-32767

32767

--

F157

332C

Trace memory sample #557

-32767

32767

--

F157

332D

Trace memory sample #558

-32767

32767

--

F157

332E

Trace memory sample #559

-32767

32767

--

F157

332F

Trace memory sample #560

-32767

32767

--

F157

3330

Trace memory sample #561

-32767

32767

--

F157

3331

Trace memory sample #562

-32767

32767

--

F157

3332

Trace memory sample #563

-32767

32767

--

F157

3333

Trace memory sample #564

-32767

32767

--

F157

3334

Trace memory sample #565

-32767

32767

--

F157

3335

Trace memory sample #566

-32767

32767

--

F157

3336

Trace memory sample #567

-32767

32767

--

F157

3337

Trace memory sample #568

-32767

32767

--

F157

3338

Trace memory sample #569

-32767

32767

--

F157

3339

Trace memory sample #570

-32767

32767

--

F157

333A

Trace memory sample #571

-32767

32767

--

F157

333B

Trace memory sample #572

-32767

32767

--

F157

333C

Trace memory sample #573

-32767

32767

--

F157

333D

Trace memory sample #574

-32767

32767

--

F157

333E

Trace memory sample #575

-32767

32767

--

F157

333F

Trace memory sample #576

-32767

32767

--

F157

3340

Trace memory sample #577

-32767

32767

--

F157

3341

Trace memory sample #578

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 71 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3342

Trace memory sample #579

-32767

32767

--

F157

3343

Trace memory sample #580

-32767

32767

--

F157

3344

Trace memory sample #581

-32767

32767

--

F157

3345

Trace memory sample #582

-32767

32767

--

F157

3346

Trace memory sample #583

-32767

32767

--

F157

3347

Trace memory sample #584

-32767

32767

--

F157

3348

Trace memory sample #585

-32767

32767

--

F157

3349

Trace memory sample #586

-32767

32767

--

F157

334A

Trace memory sample #587

-32767

32767

--

F157

334B

Trace memory sample #588

-32767

32767

--

F157

334C

Trace memory sample #589

-32767

32767

--

F157

334D

Trace memory sample #590

-32767

32767

--

F157

334E

Trace memory sample #591

-32767

32767

--

F157

334F

Trace memory sample #592

-32767

32767

--

F157

3350

Trace memory sample #593

-32767

32767

--

F157

3351

Trace memory sample #594

-32767

32767

--

F157

3352

Trace memory sample #595

-32767

32767

--

F157

3353

Trace memory sample #596

-32767

32767

--

F157

3354

Trace memory sample #597

-32767

32767

--

F157

3355

Trace memory sample #598

-32767

32767

--

F157

3356

Trace memory sample #599

-32767

32767

--

F157

3357

Trace memory sample #600

-32767

32767

--

F157

3358

Trace memory sample #601

-32767

32767

--

F157

3359

Trace memory sample #602

-32767

32767

--

F157

335A

Trace memory sample #603

-32767

32767

--

F157

335B

Trace memory sample #604

-32767

32767

--

F157

335C

Trace memory sample #605

-32767

32767

--

F157

335D

Trace memory sample #606

-32767

32767

--

F157

335E

Trace memory sample #607

-32767

32767

--

F157

335F

Trace memory sample #608

-32767

32767

--

F157

3360

Trace memory sample #609

-32767

32767

--

F157

3361

Trace memory sample #610

-32767

32767

--

F157

3362

Trace memory sample #611

-32767

32767

--

F157

3363

Trace memory sample #612

-32767

32767

--

F157

3364

Trace memory sample #613

-32767

32767

--

F157

3365

Trace memory sample #614

-32767

32767

--

F157

3366

Trace memory sample #615

-32767

32767

--

F157

3367

Trace memory sample #616

-32767

32767

--

F157

3368

Trace memory sample #617

-32767

32767

--

F157

3369

Trace memory sample #618

-32767

32767

--

F157

336A

Trace memory sample #619

-32767

32767

--

F157

336B

Trace memory sample #620

-32767

32767

--

F157

336C

Trace memory sample #621

-32767

32767

--

F157

336D

Trace memory sample #622

-32767

32767

--

F157

336E

Trace memory sample #623

-32767

32767

--

F157

336F

Trace memory sample #624

-32767

32767

--

F157

3370

Trace memory sample #625

-32767

32767

--

F157

3371

Trace memory sample #626

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

89

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 72 of 91)


GROUP

90

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3372

Trace memory sample #627

-32767

32767

--

F157

3373

Trace memory sample #628

-32767

32767

--

F157

3374

Trace memory sample #629

-32767

32767

--

F157

3375

Trace memory sample #630

-32767

32767

--

F157

3376

Trace memory sample #631

-32767

32767

--

F157

3377

Trace memory sample #632

-32767

32767

--

F157

3378

Trace memory sample #633

-32767

32767

--

F157

3379

Trace memory sample #634

-32767

32767

--

F157

337A

Trace memory sample #635

-32767

32767

--

F157

337B

Trace memory sample #636

-32767

32767

--

F157

337C

Trace memory sample #637

-32767

32767

--

F157

337D

Trace memory sample #638

-32767

32767

--

F157

337E

Trace memory sample #639

-32767

32767

--

F157

337F

Trace memory sample #640

-32767

32767

--

F157

3380

Trace memory sample #641

-32767

32767

--

F157

3381

Trace memory sample #642

-32767

32767

--

F157

3382

Trace memory sample #643

-32767

32767

--

F157

3383

Trace memory sample #644

-32767

32767

--

F157

3384

Trace memory sample #645

-32767

32767

--

F157

3385

Trace memory sample #646

-32767

32767

--

F157

3386

Trace memory sample #647

-32767

32767

--

F157

3387

Trace memory sample #648

-32767

32767

--

F157

3388

Trace memory sample #649

-32767

32767

--

F157

3389

Trace memory sample #650

-32767

32767

--

F157

338A

Trace memory sample #651

-32767

32767

--

F157

338B

Trace memory sample #652

-32767

32767

--

F157

338C

Trace memory sample #653

-32767

32767

--

F157

338D

Trace memory sample #654

-32767

32767

--

F157

338E

Trace memory sample #655

-32767

32767

--

F157

338F

Trace memory sample #656

-32767

32767

--

F157

3390

Trace memory sample #657

-32767

32767

--

F157

3391

Trace memory sample #658

-32767

32767

--

F157

3392

Trace memory sample #659

-32767

32767

--

F157

3393

Trace memory sample #660

-32767

32767

--

F157

3394

Trace memory sample #661

-32767

32767

--

F157

3395

Trace memory sample #662

-32767

32767

--

F157

3396

Trace memory sample #663

-32767

32767

--

F157

3397

Trace memory sample #664

-32767

32767

--

F157

3398

Trace memory sample #665

-32767

32767

--

F157

3399

Trace memory sample #666

-32767

32767

--

F157

339A

Trace memory sample #667

-32767

32767

--

F157

339B

Trace memory sample #668

-32767

32767

--

F157

339C

Trace memory sample #669

-32767

32767

--

F157

339D

Trace memory sample #670

-32767

32767

--

F157

339E

Trace memory sample #671

-32767

32767

--

F157

339F

Trace memory sample #672

-32767

32767

--

F157

33A0

Trace memory sample #673

-32767

32767

--

F157

33A1

Trace memory sample #674

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 73 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

33A2

Trace memory sample #675

-32767

32767

--

F157

33A3

Trace memory sample #676

-32767

32767

--

F157

33A4

Trace memory sample #677

-32767

32767

--

F157

33A5

Trace memory sample #678

-32767

32767

--

F157

33A6

Trace memory sample #679

-32767

32767

--

F157

33A7

Trace memory sample #680

-32767

32767

--

F157

33A8

Trace memory sample #681

-32767

32767

--

F157

33A9

Trace memory sample #682

-32767

32767

--

F157

33AA

Trace memory sample #683

-32767

32767

--

F157

33AB

Trace memory sample #684

-32767

32767

--

F157

33AC

Trace memory sample #685

-32767

32767

--

F157

33AD

Trace memory sample #686

-32767

32767

--

F157

33AE

Trace memory sample #687

-32767

32767

--

F157

33AF

Trace memory sample #688

-32767

32767

--

F157

33B0

Trace memory sample #689

-32767

32767

--

F157

33B1

Trace memory sample #690

-32767

32767

--

F157

33B2

Trace memory sample #691

-32767

32767

--

F157

33B3

Trace memory sample #692

-32767

32767

--

F157

33B4

Trace memory sample #693

-32767

32767

--

F157

33B5

Trace memory sample #694

-32767

32767

--

F157

33B6

Trace memory sample #695

-32767

32767

--

F157

33B7

Trace memory sample #696

-32767

32767

--

F157

33B8

Trace memory sample #697

-32767

32767

--

F157

0
0

33B9

Trace memory sample #698

-32767

32767

--

F157

33BA

Trace memory sample #699

-32767

32767

--

F157

33BB

Trace memory sample #700

-32767

32767

--

F157

33BC

Trace memory sample #701

-32767

32767

--

F157

33BD

Trace memory sample #702

-32767

32767

--

F157

33BE

Trace memory sample #703

-32767

32767

--

F157

33BF

Trace memory sample #704

-32767

32767

--

F157

33C0

Trace memory sample #705

-32767

32767

--

F157

33C1

Trace memory sample #706

-32767

32767

--

F157

33C2

Trace memory sample #707

-32767

32767

--

F157

33C3

Trace memory sample #708

-32767

32767

--

F157

33C4

Trace memory sample #709

-32767

32767

--

F157

33C5

Trace memory sample #710

-32767

32767

--

F157

33C6

Trace memory sample #711

-32767

32767

--

F157

33C7

Trace memory sample #712

-32767

32767

--

F157

33C8

Trace memory sample #713

-32767

32767

--

F157

33C9

Trace memory sample #714

-32767

32767

--

F157

33CA

Trace memory sample #715

-32767

32767

--

F157

33CB

Trace memory sample #716

-32767

32767

--

F157

33CC

Trace memory sample #717

-32767

32767

--

F157

33CD

Trace memory sample #718

-32767

32767

--

F157

33CE

Trace memory sample #719

-32767

32767

--

F157

33CF

Trace memory sample #720

-32767

32767

--

F157

33D0

Trace memory sample #721

-32767

32767

--

F157

33D1

Trace memory sample #722

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

91

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 74 of 91)


GROUP

92

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

33D2

Trace memory sample #723

-32767

32767

--

F157

33D3

Trace memory sample #724

-32767

32767

--

F157

33D4

Trace memory sample #725

-32767

32767

--

F157

33D5

Trace memory sample #726

-32767

32767

--

F157

33D6

Trace memory sample #727

-32767

32767

--

F157

33D7

Trace memory sample #728

-32767

32767

--

F157

33D8

Trace memory sample #729

-32767

32767

--

F157

33D9

Trace memory sample #730

-32767

32767

--

F157

33DA

Trace memory sample #731

-32767

32767

--

F157

33DB

Trace memory sample #732

-32767

32767

--

F157

33DC

Trace memory sample #733

-32767

32767

--

F157

33DD

Trace memory sample #734

-32767

32767

--

F157

33DE

Trace memory sample #735

-32767

32767

--

F157

33DF

Trace memory sample #736

-32767

32767

--

F157

33E0

Trace memory sample #737

-32767

32767

--

F157

33E1

Trace memory sample #738

-32767

32767

--

F157

33E2

Trace memory sample #739

-32767

32767

--

F157

33E3

Trace memory sample #740

-32767

32767

--

F157

33E4

Trace memory sample #741

-32767

32767

--

F157

33E5

Trace memory sample #742

-32767

32767

--

F157

33E6

Trace memory sample #743

-32767

32767

--

F157

33E7

Trace memory sample #744

-32767

32767

--

F157

33E8

Trace memory sample #745

-32767

32767

--

F157

33E9

Trace memory sample #746

-32767

32767

--

F157

33EA

Trace memory sample #747

-32767

32767

--

F157

33EB

Trace memory sample #748

-32767

32767

--

F157

33EC

Trace memory sample #749

-32767

32767

--

F157

33ED

Trace memory sample #750

-32767

32767

--

F157

33EE

Trace memory sample #751

-32767

32767

--

F157

33EF

Trace memory sample #752

-32767

32767

--

F157

33F0

Trace memory sample #753

-32767

32767

--

F157

33F1

Trace memory sample #754

-32767

32767

--

F157

33F2

Trace memory sample #755

-32767

32767

--

F157

33F3

Trace memory sample #756

-32767

32767

--

F157

33F4

Trace memory sample #757

-32767

32767

--

F157

33F5

Trace memory sample #758

-32767

32767

--

F157

33F6

Trace memory sample #759

-32767

32767

--

F157

33F7

Trace memory sample #760

-32767

32767

--

F157

33F8

Trace memory sample #761

-32767

32767

--

F157

33F9

Trace memory sample #762

-32767

32767

--

F157

33FA

Trace memory sample #763

-32767

32767

--

F157

33FB

Trace memory sample #764

-32767

32767

--

F157

33FC

Trace memory sample #765

-32767

32767

--

F157

33FD

Trace memory sample #766

-32767

32767

--

F157

33FE

Trace memory sample #767

-32767

32767

--

F157

33FF

Trace memory sample #768

-32767

32767

--

F157

3400

Trace memory sample #769

-32767

32767

--

F157

3401

Trace memory sample #770

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 75 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3402

Trace memory sample #771

-32767

32767

--

F157

3403

Trace memory sample #772

-32767

32767

--

F157

3404

Trace memory sample #773

-32767

32767

--

F157

3405

Trace memory sample #774

-32767

32767

--

F157

3406

Trace memory sample #775

-32767

32767

--

F157

3407

Trace memory sample #776

-32767

32767

--

F157

3408

Trace memory sample #777

-32767

32767

--

F157

3409

Trace memory sample #778

-32767

32767

--

F157

340A

Trace memory sample #779

-32767

32767

--

F157

340B

Trace memory sample #780

-32767

32767

--

F157

340C

Trace memory sample #781

-32767

32767

--

F157

340D

Trace memory sample #782

-32767

32767

--

F157

340E

Trace memory sample #783

-32767

32767

--

F157

340F

Trace memory sample #784

-32767

32767

--

F157

3410

Trace memory sample #785

-32767

32767

--

F157

3411

Trace memory sample #786

-32767

32767

--

F157

3412

Trace memory sample #787

-32767

32767

--

F157

3413

Trace memory sample #788

-32767

32767

--

F157

3414

Trace memory sample #789

-32767

32767

--

F157

3415

Trace memory sample #790

-32767

32767

--

F157

3416

Trace memory sample #791

-32767

32767

--

F157

3417

Trace memory sample #792

-32767

32767

--

F157

3418

Trace memory sample #793

-32767

32767

--

F157

3419

Trace memory sample #794

-32767

32767

--

F157

341A

Trace memory sample #795

-32767

32767

--

F157

341B

Trace memory sample #796

-32767

32767

--

F157

341C

Trace memory sample #797

-32767

32767

--

F157

341D

Trace memory sample #798

-32767

32767

--

F157

341E

Trace memory sample #799

-32767

32767

--

F157

341F

Trace memory sample #800

-32767

32767

--

F157

3420

Trace memory sample #801

-32767

32767

--

F157

3421

Trace memory sample #802

-32767

32767

--

F157

3422

Trace memory sample #803

-32767

32767

--

F157

3423

Trace memory sample #804

-32767

32767

--

F157

3424

Trace memory sample #805

-32767

32767

--

F157

3425

Trace memory sample #806

-32767

32767

--

F157

3426

Trace memory sample #807

-32767

32767

--

F157

3427

Trace memory sample #808

-32767

32767

--

F157

3428

Trace memory sample #809

-32767

32767

--

F157

3429

Trace memory sample #810

-32767

32767

--

F157

342A

Trace memory sample #811

-32767

32767

--

F157

342B

Trace memory sample #812

-32767

32767

--

F157

342C

Trace memory sample #813

-32767

32767

--

F157

342D

Trace memory sample #814

-32767

32767

--

F157

342E

Trace memory sample #815

-32767

32767

--

F157

342F

Trace memory sample #816

-32767

32767

--

F157

3430

Trace memory sample #817

-32767

32767

--

F157

3431

Trace memory sample #818

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

93

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 76 of 91)


GROUP

94

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3432

Trace memory sample #819

-32767

32767

--

F157

3433

Trace memory sample #820

-32767

32767

--

F157

3434

Trace memory sample #821

-32767

32767

--

F157

3435

Trace memory sample #822

-32767

32767

--

F157

3436

Trace memory sample #823

-32767

32767

--

F157

3437

Trace memory sample #824

-32767

32767

--

F157

3438

Trace memory sample #825

-32767

32767

--

F157

3439

Trace memory sample #826

-32767

32767

--

F157

343A

Trace memory sample #827

-32767

32767

--

F157

343B

Trace memory sample #828

-32767

32767

--

F157

343C

Trace memory sample #829

-32767

32767

--

F157

343D

Trace memory sample #830

-32767

32767

--

F157

343E

Trace memory sample #831

-32767

32767

--

F157

343F

Trace memory sample #832

-32767

32767

--

F157

3440

Trace memory sample #833

-32767

32767

--

F157

3441

Trace memory sample #834

-32767

32767

--

F157

3442

Trace memory sample #835

-32767

32767

--

F157

3443

Trace memory sample #836

-32767

32767

--

F157

3444

Trace memory sample #837

-32767

32767

--

F157

3445

Trace memory sample #838

-32767

32767

--

F157

3446

Trace memory sample #839

-32767

32767

--

F157

3447

Trace memory sample #840

-32767

32767

--

F157

3448

Trace memory sample #841

-32767

32767

--

F157

3449

Trace memory sample #842

-32767

32767

--

F157

344A

Trace memory sample #843

-32767

32767

--

F157

344B

Trace memory sample #844

-32767

32767

--

F157

344C

Trace memory sample #845

-32767

32767

--

F157

344D

Trace memory sample #846

-32767

32767

--

F157

344E

Trace memory sample #847

-32767

32767

--

F157

344F

Trace memory sample #848

-32767

32767

--

F157

3450

Trace memory sample #849

-32767

32767

--

F157

3451

Trace memory sample #850

-32767

32767

--

F157

3452

Trace memory sample #851

-32767

32767

--

F157

3453

Trace memory sample #852

-32767

32767

--

F157

3454

Trace memory sample #853

-32767

32767

--

F157

3455

Trace memory sample #854

-32767

32767

--

F157

3456

Trace memory sample #855

-32767

32767

--

F157

3457

Trace memory sample #856

-32767

32767

--

F157

3458

Trace memory sample #857

-32767

32767

--

F157

3459

Trace memory sample #858

-32767

32767

--

F157

345A

Trace memory sample #859

-32767

32767

--

F157

345B

Trace memory sample #860

-32767

32767

--

F157

345C

Trace memory sample #861

-32767

32767

--

F157

345D

Trace memory sample #862

-32767

32767

--

F157

345E

Trace memory sample #863

-32767

32767

--

F157

345F

Trace memory sample #864

-32767

32767

--

F157

3460

Trace memory sample #865

-32767

32767

--

F157

3461

Trace memory sample #866

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 77 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3462

Trace memory sample #867

-32767

32767

--

F157

3463

Trace memory sample #868

-32767

32767

--

F157

3464

Trace memory sample #869

-32767

32767

--

F157

3465

Trace memory sample #870

-32767

32767

--

F157

3466

Trace memory sample #871

-32767

32767

--

F157

3467

Trace memory sample #872

-32767

32767

--

F157

3468

Trace memory sample #873

-32767

32767

--

F157

3469

Trace memory sample #874

-32767

32767

--

F157

346A

Trace memory sample #875

-32767

32767

--

F157

346B

Trace memory sample #876

-32767

32767

--

F157

346C

Trace memory sample #877

-32767

32767

--

F157

346D

Trace memory sample #878

-32767

32767

--

F157

346E

Trace memory sample #879

-32767

32767

--

F157

346F

Trace memory sample #880

-32767

32767

--

F157

3470

Trace memory sample #881

-32767

32767

--

F157

3471

Trace memory sample #882

-32767

32767

--

F157

3472

Trace memory sample #883

-32767

32767

--

F157

3473

Trace memory sample #884

-32767

32767

--

F157

3474

Trace memory sample #885

-32767

32767

--

F157

3475

Trace memory sample #886

-32767

32767

--

F157

3476

Trace memory sample #887

-32767

32767

--

F157

3477

Trace memory sample #888

-32767

32767

--

F157

3478

Trace memory sample #889

-32767

32767

--

F157

3479

Trace memory sample #890

-32767

32767

--

F157

347A

Trace memory sample #891

-32767

32767

--

F157

347B

Trace memory sample #892

-32767

32767

--

F157

347C

Trace memory sample #893

-32767

32767

--

F157

347D

Trace memory sample #894

-32767

32767

--

F157

347E

Trace memory sample #895

-32767

32767

--

F157

347F

Trace memory sample #896

-32767

32767

--

F157

3480

Trace memory sample #897

-32767

32767

--

F157

3481

Trace memory sample #898

-32767

32767

--

F157

3482

Trace memory sample #899

-32767

32767

--

F157

3483

Trace memory sample #900

-32767

32767

--

F157

3484

Trace memory sample #901

-32767

32767

--

F157

3485

Trace memory sample #902

-32767

32767

--

F157

3486

Trace memory sample #903

-32767

32767

--

F157

3487

Trace memory sample #904

-32767

32767

--

F157

3488

Trace memory sample #905

-32767

32767

--

F157

3489

Trace memory sample #906

-32767

32767

--

F157

348A

Trace memory sample #907

-32767

32767

--

F157

348B

Trace memory sample #908

-32767

32767

--

F157

348C

Trace memory sample #909

-32767

32767

--

F157

348D

Trace memory sample #910

-32767

32767

--

F157

348E

Trace memory sample #911

-32767

32767

--

F157

348F

Trace memory sample #912

-32767

32767

--

F157

3490

Trace memory sample #913

-32767

32767

--

F157

3491

Trace memory sample #914

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

95

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 78 of 91)


GROUP

96

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3492

Trace memory sample #915

-32767

32767

--

F157

3493

Trace memory sample #916

-32767

32767

--

F157

3494

Trace memory sample #917

-32767

32767

--

F157

3495

Trace memory sample #918

-32767

32767

--

F157

3496

Trace memory sample #919

-32767

32767

--

F157

3497

Trace memory sample #920

-32767

32767

--

F157

3498

Trace memory sample #921

-32767

32767

--

F157

3499

Trace memory sample #922

-32767

32767

--

F157

349A

Trace memory sample #923

-32767

32767

--

F157

349B

Trace memory sample #924

-32767

32767

--

F157

349C

Trace memory sample #925

-32767

32767

--

F157

349D

Trace memory sample #926

-32767

32767

--

F157

349E

Trace memory sample #927

-32767

32767

--

F157

349F

Trace memory sample #928

-32767

32767

--

F157

34A0

Trace memory sample #929

-32767

32767

--

F157

34A1

Trace memory sample #930

-32767

32767

--

F157

34A2

Trace memory sample #931

-32767

32767

--

F157

34A3

Trace memory sample #932

-32767

32767

--

F157

34A4

Trace memory sample #933

-32767

32767

--

F157

34A5

Trace memory sample #934

-32767

32767

--

F157

34A6

Trace memory sample #935

-32767

32767

--

F157

34A7

Trace memory sample #936

-32767

32767

--

F157

34A8

Trace memory sample #937

-32767

32767

--

F157

34A9

Trace memory sample #938

-32767

32767

--

F157

34AA

Trace memory sample #939

-32767

32767

--

F157

34AB

Trace memory sample #940

-32767

32767

--

F157

34AC

Trace memory sample #941

-32767

32767

--

F157

34AD

Trace memory sample #942

-32767

32767

--

F157

34AE

Trace memory sample #943

-32767

32767

--

F157

34AF

Trace memory sample #944

-32767

32767

--

F157

34B0

Trace memory sample #945

-32767

32767

--

F157

34B1

Trace memory sample #946

-32767

32767

--

F157

34B2

Trace memory sample #947

-32767

32767

--

F157

34B3

Trace memory sample #948

-32767

32767

--

F157

34B4

Trace memory sample #949

-32767

32767

--

F157

34B5

Trace memory sample #950

-32767

32767

--

F157

34B6

Trace memory sample #951

-32767

32767

--

F157

34B7

Trace memory sample #952

-32767

32767

--

F157

34B8

Trace memory sample #953

-32767

32767

--

F157

0
0

34B9

Trace memory sample #954

-32767

32767

--

F157

34BA

Trace memory sample #955

-32767

32767

--

F157

34BB

Trace memory sample #956

-32767

32767

--

F157

34BC

Trace memory sample #957

-32767

32767

--

F157

34BD

Trace memory sample #958

-32767

32767

--

F157

34BE

Trace memory sample #959

-32767

32767

--

F157

34BF

Trace memory sample #960

-32767

32767

--

F157

34C0

Trace memory sample #961

-32767

32767

--

F157

34C1

Trace memory sample #962

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 79 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

34C2

Trace memory sample #963

-32767

32767

--

F157

34C3

Trace memory sample #964

-32767

32767

--

F157

34C4

Trace memory sample #965

-32767

32767

--

F157

34C5

Trace memory sample #966

-32767

32767

--

F157

34C6

Trace memory sample #967

-32767

32767

--

F157

34C7

Trace memory sample #968

-32767

32767

--

F157

34C8

Trace memory sample #969

-32767

32767

--

F157

34C9

Trace memory sample #970

-32767

32767

--

F157

34CA

Trace memory sample #971

-32767

32767

--

F157

34CB

Trace memory sample #972

-32767

32767

--

F157

34CC

Trace memory sample #973

-32767

32767

--

F157

34CD

Trace memory sample #974

-32767

32767

--

F157

34CE

Trace memory sample #975

-32767

32767

--

F157

34CF

Trace memory sample #976

-32767

32767

--

F157

34D0

Trace memory sample #977

-32767

32767

--

F157

34D1

Trace memory sample #978

-32767

32767

--

F157

34D2

Trace memory sample #979

-32767

32767

--

F157

34D3

Trace memory sample #980

-32767

32767

--

F157

34D4

Trace memory sample #981

-32767

32767

--

F157

34D5

Trace memory sample #982

-32767

32767

--

F157

34D6

Trace memory sample #983

-32767

32767

--

F157

34D7

Trace memory sample #984

-32767

32767

--

F157

34D8

Trace memory sample #985

-32767

32767

--

F157

34D9

Trace memory sample #986

-32767

32767

--

F157

34DA

Trace memory sample #987

-32767

32767

--

F157

34DB

Trace memory sample #988

-32767

32767

--

F157

34DC

Trace memory sample #989

-32767

32767

--

F157

34DD

Trace memory sample #990

-32767

32767

--

F157

34DE

Trace memory sample #991

-32767

32767

--

F157

34DF

Trace memory sample #992

-32767

32767

--

F157

34E0

Trace memory sample #993

-32767

32767

--

F157

34E1

Trace memory sample #994

-32767

32767

--

F157

34E2

Trace memory sample #995

-32767

32767

--

F157

34E3

Trace memory sample #996

-32767

32767

--

F157

34E4

Trace memory sample #997

-32767

32767

--

F157

34E5

Trace memory sample #998

-32767

32767

--

F157

34E6

Trace memory sample #999

-32767

32767

--

F157

34E7

Trace memory sample #1000

-32767

32767

--

F157

34E8

Trace memory sample #1001

-32767

32767

--

F157

34E9

Trace memory sample #1002

-32767

32767

--

F157

34EA

Trace memory sample #1003

-32767

32767

--

F157

34EB

Trace memory sample #1004

-32767

32767

--

F157

34EC

Trace memory sample #1005

-32767

32767

--

F157

34ED

Trace memory sample #1006

-32767

32767

--

F157

34EE

Trace memory sample #1007

-32767

32767

--

F157

34EF

Trace memory sample #1008

-32767

32767

--

F157

34F0

Trace memory sample #1009

-32767

32767

--

F157

34F1

Trace memory sample #1010

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

97

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 80 of 91)


GROUP

98

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

34F2

Trace memory sample #1011

-32767

32767

--

F157

34F3

Trace memory sample #1012

-32767

32767

--

F157

34F4

Trace memory sample #1013

-32767

32767

--

F157

34F5

Trace memory sample #1014

-32767

32767

--

F157

34F6

Trace memory sample #1015

-32767

32767

--

F157

34F7

Trace memory sample #1016

-32767

32767

--

F157

34F8

Trace memory sample #1017

-32767

32767

--

F157

34F9

Trace memory sample #1018

-32767

32767

--

F157

34FA

Trace memory sample #1019

-32767

32767

--

F157

34FB

Trace memory sample #1020

-32767

32767

--

F157

34FC

Trace memory sample #1021

-32767

32767

--

F157

34FD

Trace memory sample #1022

-32767

32767

--

F157

34FE

Trace memory sample #1023

-32767

32767

--

F157

34FF

Trace memory sample #1024

-32767

32767

--

F157

3500

Trace memory sample #1025

-32767

32767

--

F157

3501

Trace memory sample #1026

-32767

32767

--

F157

3502

Trace memory sample #1027

-32767

32767

--

F157

3503

Trace memory sample #1028

-32767

32767

--

F157

3504

Trace memory sample #1029

-32767

32767

--

F157

3505

Trace memory sample #1030

-32767

32767

--

F157

3506

Trace memory sample #1031

-32767

32767

--

F157

3507

Trace memory sample #1032

-32767

32767

--

F157

3508

Trace memory sample #1033

-32767

32767

--

F157

3509

Trace memory sample #1034

-32767

32767

--

F157

350A

Trace memory sample #1035

-32767

32767

--

F157

350B

Trace memory sample #1036

-32767

32767

--

F157

350C

Trace memory sample #1037

-32767

32767

--

F157

350D

Trace memory sample #1038

-32767

32767

--

F157

350E

Trace memory sample #1039

-32767

32767

--

F157

350F

Trace memory sample #1040

-32767

32767

--

F157

3510

Trace memory sample #1041

-32767

32767

--

F157

3511

Trace memory sample #1042

-32767

32767

--

F157

3512

Trace memory sample #1043

-32767

32767

--

F157

3513

Trace memory sample #1044

-32767

32767

--

F157

3514

Trace memory sample #1045

-32767

32767

--

F157

3515

Trace memory sample #1046

-32767

32767

--

F157

3516

Trace memory sample #1047

-32767

32767

--

F157

3517

Trace memory sample #1048

-32767

32767

--

F157

3518

Trace memory sample #1049

-32767

32767

--

F157

3519

Trace memory sample #1050

-32767

32767

--

F157

351A

Trace memory sample #1051

-32767

32767

--

F157

351B

Trace memory sample #1052

-32767

32767

--

F157

351C

Trace memory sample #1053

-32767

32767

--

F157

351D

Trace memory sample #1054

-32767

32767

--

F157

351E

Trace memory sample #1055

-32767

32767

--

F157

351F

Trace memory sample #1056

-32767

32767

--

F157

3520

Trace memory sample #1057

-32767

32767

--

F157

3521

Trace memory sample #1058

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 81 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3522

Trace memory sample #1059

-32767

32767

--

F157

3523

Trace memory sample #1060

-32767

32767

--

F157

3524

Trace memory sample #1061

-32767

32767

--

F157

3525

Trace memory sample #1062

-32767

32767

--

F157

3526

Trace memory sample #1063

-32767

32767

--

F157

3527

Trace memory sample #1064

-32767

32767

--

F157

3528

Trace memory sample #1065

-32767

32767

--

F157

3529

Trace memory sample #1066

-32767

32767

--

F157

352A

Trace memory sample #1067

-32767

32767

--

F157

352B

Trace memory sample #1068

-32767

32767

--

F157

352C

Trace memory sample #1069

-32767

32767

--

F157

352D

Trace memory sample #1070

-32767

32767

--

F157

352E

Trace memory sample #1071

-32767

32767

--

F157

352F

Trace memory sample #1072

-32767

32767

--

F157

3530

Trace memory sample #1073

-32767

32767

--

F157

3531

Trace memory sample #1074

-32767

32767

--

F157

3532

Trace memory sample #1075

-32767

32767

--

F157

3533

Trace memory sample #1076

-32767

32767

--

F157

3534

Trace memory sample #1077

-32767

32767

--

F157

3535

Trace memory sample #1078

-32767

32767

--

F157

3536

Trace memory sample #1079

-32767

32767

--

F157

3537

Trace memory sample #1080

-32767

32767

--

F157

3538

Trace memory sample #1081

-32767

32767

--

F157

3539

Trace memory sample #1082

-32767

32767

--

F157

353A

Trace memory sample #1083

-32767

32767

--

F157

353B

Trace memory sample #1084

-32767

32767

--

F157

353C

Trace memory sample #1085

-32767

32767

--

F157

353D

Trace memory sample #1086

-32767

32767

--

F157

353E

Trace memory sample #1087

-32767

32767

--

F157

353F

Trace memory sample #1088

-32767

32767

--

F157

3540

Trace memory sample #1089

-32767

32767

--

F157

3541

Trace memory sample #1090

-32767

32767

--

F157

3542

Trace memory sample #1091

-32767

32767

--

F157

3543

Trace memory sample #1092

-32767

32767

--

F157

3544

Trace memory sample #1093

-32767

32767

--

F157

3545

Trace memory sample #1094

-32767

32767

--

F157

3546

Trace memory sample #1095

-32767

32767

--

F157

3547

Trace memory sample #1096

-32767

32767

--

F157

3548

Trace memory sample #1097

-32767

32767

--

F157

3549

Trace memory sample #1098

-32767

32767

--

F157

354A

Trace memory sample #1099

-32767

32767

--

F157

354B

Trace memory sample #1100

-32767

32767

--

F157

354C

Trace memory sample #1101

-32767

32767

--

F157

354D

Trace memory sample #1102

-32767

32767

--

F157

354E

Trace memory sample #1103

-32767

32767

--

F157

354F

Trace memory sample #1104

-32767

32767

--

F157

3550

Trace memory sample #1105

-32767

32767

--

F157

3551

Trace memory sample #1106

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

99

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 82 of 91)


GROUP

100

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3552

Trace memory sample #1107

-32767

32767

--

F157

3553

Trace memory sample #1108

-32767

32767

--

F157

3554

Trace memory sample #1109

-32767

32767

--

F157

3555

Trace memory sample #1110

-32767

32767

--

F157

3556

Trace memory sample #1111

-32767

32767

--

F157

3557

Trace memory sample #1112

-32767

32767

--

F157

3558

Trace memory sample #1113

-32767

32767

--

F157

3559

Trace memory sample #1114

-32767

32767

--

F157

355A

Trace memory sample #1115

-32767

32767

--

F157

355B

Trace memory sample #1116

-32767

32767

--

F157

355C

Trace memory sample #1117

-32767

32767

--

F157

355D

Trace memory sample #1118

-32767

32767

--

F157

355E

Trace memory sample #1119

-32767

32767

--

F157

355F

Trace memory sample #1120

-32767

32767

--

F157

3560

Trace memory sample #1121

-32767

32767

--

F157

3561

Trace memory sample #1122

-32767

32767

--

F157

3562

Trace memory sample #1123

-32767

32767

--

F157

3563

Trace memory sample #1124

-32767

32767

--

F157

3564

Trace memory sample #1125

-32767

32767

--

F157

3565

Trace memory sample #1126

-32767

32767

--

F157

3566

Trace memory sample #1127

-32767

32767

--

F157

3567

Trace memory sample #1128

-32767

32767

--

F157

3568

Trace memory sample #1129

-32767

32767

--

F157

3569

Trace memory sample #1130

-32767

32767

--

F157

356A

Trace memory sample #1131

-32767

32767

--

F157

356B

Trace memory sample #1132

-32767

32767

--

F157

356C

Trace memory sample #1133

-32767

32767

--

F157

356D

Trace memory sample #1134

-32767

32767

--

F157

356E

Trace memory sample #1135

-32767

32767

--

F157

356F

Trace memory sample #1136

-32767

32767

--

F157

3570

Trace memory sample #1137

-32767

32767

--

F157

3571

Trace memory sample #1138

-32767

32767

--

F157

3572

Trace memory sample #1139

-32767

32767

--

F157

3573

Trace memory sample #1140

-32767

32767

--

F157

3574

Trace memory sample #1141

-32767

32767

--

F157

3575

Trace memory sample #1142

-32767

32767

--

F157

3576

Trace memory sample #1143

-32767

32767

--

F157

3577

Trace memory sample #1144

-32767

32767

--

F157

3578

Trace memory sample #1145

-32767

32767

--

F157

3579

Trace memory sample #1146

-32767

32767

--

F157

357A

Trace memory sample #1147

-32767

32767

--

F157

357B

Trace memory sample #1148

-32767

32767

--

F157

357C

Trace memory sample #1149

-32767

32767

--

F157

357D

Trace memory sample #1150

-32767

32767

--

F157

357E

Trace memory sample #1151

-32767

32767

--

F157

357F

Trace memory sample #1152

-32767

32767

--

F157

3580

Trace memory sample #1153

-32767

32767

--

F157

3581

Trace memory sample #1154

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 83 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3582

Trace memory sample #1155

-32767

32767

--

F157

3583

Trace memory sample #1156

-32767

32767

--

F157

3584

Trace memory sample #1157

-32767

32767

--

F157

3585

Trace memory sample #1158

-32767

32767

--

F157

3586

Trace memory sample #1159

-32767

32767

--

F157

3587

Trace memory sample #1160

-32767

32767

--

F157

3588

Trace memory sample #1161

-32767

32767

--

F157

3589

Trace memory sample #1162

-32767

32767

--

F157

358A

Trace memory sample #1163

-32767

32767

--

F157

358B

Trace memory sample #1164

-32767

32767

--

F157

358C

Trace memory sample #1165

-32767

32767

--

F157

358D

Trace memory sample #1166

-32767

32767

--

F157

358E

Trace memory sample #1167

-32767

32767

--

F157

358F

Trace memory sample #1168

-32767

32767

--

F157

3590

Trace memory sample #1169

-32767

32767

--

F157

3591

Trace memory sample #1170

-32767

32767

--

F157

3592

Trace memory sample #1171

-32767

32767

--

F157

3593

Trace memory sample #1172

-32767

32767

--

F157

3594

Trace memory sample #1173

-32767

32767

--

F157

3595

Trace memory sample #1174

-32767

32767

--

F157

3596

Trace memory sample #1175

-32767

32767

--

F157

3597

Trace memory sample #1176

-32767

32767

--

F157

3598

Trace memory sample #1177

-32767

32767

--

F157

3599

Trace memory sample #1178

-32767

32767

--

F157

359A

Trace memory sample #1179

-32767

32767

--

F157

359B

Trace memory sample #1180

-32767

32767

--

F157

359C

Trace memory sample #1181

-32767

32767

--

F157

359D

Trace memory sample #1182

-32767

32767

--

F157

359E

Trace memory sample #1183

-32767

32767

--

F157

359F

Trace memory sample #1184

-32767

32767

--

F157

35A0

Trace memory sample #1185

-32767

32767

--

F157

35A1

Trace memory sample #1186

-32767

32767

--

F157

35A2

Trace memory sample #1187

-32767

32767

--

F157

35A3

Trace memory sample #1188

-32767

32767

--

F157

35A4

Trace memory sample #1189

-32767

32767

--

F157

35A5

Trace memory sample #1190

-32767

32767

--

F157

35A6

Trace memory sample #1191

-32767

32767

--

F157

35A7

Trace memory sample #1192

-32767

32767

--

F157

35A8

Trace memory sample #1193

-32767

32767

--

F157

35A9

Trace memory sample #1194

-32767

32767

--

F157

35AA

Trace memory sample #1195

-32767

32767

--

F157

35AB

Trace memory sample #1196

-32767

32767

--

F157

35AC

Trace memory sample #1197

-32767

32767

--

F157

35AD

Trace memory sample #1198

-32767

32767

--

F157

35AE

Trace memory sample #1199

-32767

32767

--

F157

35AF

Trace memory sample #1200

-32767

32767

--

F157

35B0

Trace memory sample #1201

-32767

32767

--

F157

35B1

Trace memory sample #1202

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

101

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 84 of 91)


GROUP

102

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

35B2

Trace memory sample #1203

-32767

32767

--

F157

35B3

Trace memory sample #1204

-32767

32767

--

F157

35B4

Trace memory sample #1205

-32767

32767

--

F157

35B5

Trace memory sample #1206

-32767

32767

--

F157

35B6

Trace memory sample #1207

-32767

32767

--

F157

35B7

Trace memory sample #1208

-32767

32767

--

F157

35B8

Trace memory sample #1209

-32767

32767

--

F157

35B9

Trace memory sample #1210

-32767

32767

--

F157

35BA

Trace memory sample #1211

-32767

32767

--

F157

35BB

Trace memory sample #1212

-32767

32767

--

F157

35BC

Trace memory sample #1213

-32767

32767

--

F157

35BD

Trace memory sample #1214

-32767

32767

--

F157

35BE

Trace memory sample #1215

-32767

32767

--

F157

35BF

Trace memory sample #1216

-32767

32767

--

F157

35C0

Trace memory sample #1217

-32767

32767

--

F157

35C1

Trace memory sample #1218

-32767

32767

--

F157

35C2

Trace memory sample #1219

-32767

32767

--

F157

35C3

Trace memory sample #1220

-32767

32767

--

F157

35C4

Trace memory sample #1221

-32767

32767

--

F157

35C5

Trace memory sample #1222

-32767

32767

--

F157

35C6

Trace memory sample #1223

-32767

32767

--

F157

35C7

Trace memory sample #1224

-32767

32767

--

F157

35C8

Trace memory sample #1225

-32767

32767

--

F157

35C9

Trace memory sample #1226

-32767

32767

--

F157

35CA

Trace memory sample #1227

-32767

32767

--

F157

35CB

Trace memory sample #1228

-32767

32767

--

F157

35CC

Trace memory sample #1229

-32767

32767

--

F157

35CD

Trace memory sample #1230

-32767

32767

--

F157

35CE

Trace memory sample #1231

-32767

32767

--

F157

35CF

Trace memory sample #1232

-32767

32767

--

F157

35D0

Trace memory sample #1233

-32767

32767

--

F157

35D1

Trace memory sample #1234

-32767

32767

--

F157

35D2

Trace memory sample #1235

-32767

32767

--

F157

35D3

Trace memory sample #1236

-32767

32767

--

F157

35D4

Trace memory sample #1237

-32767

32767

--

F157

35D5

Trace memory sample #1238

-32767

32767

--

F157

35D6

Trace memory sample #1239

-32767

32767

--

F157

35D7

Trace memory sample #1240

-32767

32767

--

F157

35D8

Trace memory sample #1241

-32767

32767

--

F157

35D9

Trace memory sample #1242

-32767

32767

--

F157

35DA

Trace memory sample #1243

-32767

32767

--

F157

35DB

Trace memory sample #1244

-32767

32767

--

F157

35DC

Trace memory sample #1245

-32767

32767

--

F157

35DD

Trace memory sample #1246

-32767

32767

--

F157

35DE

Trace memory sample #1247

-32767

32767

--

F157

35DF

Trace memory sample #1248

-32767

32767

--

F157

35E0

Trace memory sample #1249

-32767

32767

--

F157

35E1

Trace memory sample #1250

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 85 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

35E2

Trace memory sample #1251

-32767

32767

--

F157

35E3

Trace memory sample #1252

-32767

32767

--

F157

35E4

Trace memory sample #1253

-32767

32767

--

F157

35E5

Trace memory sample #1254

-32767

32767

--

F157

35E6

Trace memory sample #1255

-32767

32767

--

F157

35E7

Trace memory sample #1256

-32767

32767

--

F157

35E8

Trace memory sample #1257

-32767

32767

--

F157

35E9

Trace memory sample #1258

-32767

32767

--

F157

35EA

Trace memory sample #1259

-32767

32767

--

F157

35EB

Trace memory sample #1260

-32767

32767

--

F157

35EC

Trace memory sample #1261

-32767

32767

--

F157

35ED

Trace memory sample #1262

-32767

32767

--

F157

35EE

Trace memory sample #1263

-32767

32767

--

F157

35EF

Trace memory sample #1264

-32767

32767

--

F157

35F0

Trace memory sample #1265

-32767

32767

--

F157

35F1

Trace memory sample #1266

-32767

32767

--

F157

35F2

Trace memory sample #1267

-32767

32767

--

F157

35F3

Trace memory sample #1268

-32767

32767

--

F157

35F4

Trace memory sample #1269

-32767

32767

--

F157

35F5

Trace memory sample #1270

-32767

32767

--

F157

35F6

Trace memory sample #1271

-32767

32767

--

F157

35F7

Trace memory sample #1272

-32767

32767

--

F157

35F8

Trace memory sample #1273

-32767

32767

--

F157

35F9

Trace memory sample #1274

-32767

32767

--

F157

35FA

Trace memory sample #1275

-32767

32767

--

F157

35FB

Trace memory sample #1276

-32767

32767

--

F157

35FC

Trace memory sample #1277

-32767

32767

--

F157

35FD

Trace memory sample #1278

-32767

32767

--

F157

35FE

Trace memory sample #1279

-32767

32767

--

F157

35FF

Trace memory sample #1280

-32767

32767

--

F157

3600

Trace memory sample #1281

-32767

32767

--

F157

3601

Trace memory sample #1282

-32767

32767

--

F157

3602

Trace memory sample #1283

-32767

32767

--

F157

3603

Trace memory sample #1284

-32767

32767

--

F157

3604

Trace memory sample #1285

-32767

32767

--

F157

3605

Trace memory sample #1286

-32767

32767

--

F157

3606

Trace memory sample #1287

-32767

32767

--

F157

3607

Trace memory sample #1288

-32767

32767

--

F157

3608

Trace memory sample #1289

-32767

32767

--

F157

3609

Trace memory sample #1290

-32767

32767

--

F157

360A

Trace memory sample #1291

-32767

32767

--

F157

360B

Trace memory sample #1292

-32767

32767

--

F157

360C

Trace memory sample #1293

-32767

32767

--

F157

360D

Trace memory sample #1294

-32767

32767

--

F157

360E

Trace memory sample #1295

-32767

32767

--

F157

360F

Trace memory sample #1296

-32767

32767

--

F157

3610

Trace memory sample #1297

-32767

32767

--

F157

3611

Trace memory sample #1298

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

103

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 86 of 91)


GROUP

104

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3612

Trace memory sample #1299

-32767

32767

--

F157

3613

Trace memory sample #1300

-32767

32767

--

F157

3614

Trace memory sample #1301

-32767

32767

--

F157

3615

Trace memory sample #1302

-32767

32767

--

F157

3616

Trace memory sample #1303

-32767

32767

--

F157

3617

Trace memory sample #1304

-32767

32767

--

F157

3618

Trace memory sample #1305

-32767

32767

--

F157

3619

Trace memory sample #1306

-32767

32767

--

F157

361A

Trace memory sample #1307

-32767

32767

--

F157

361B

Trace memory sample #1308

-32767

32767

--

F157

361C

Trace memory sample #1309

-32767

32767

--

F157

361D

Trace memory sample #1310

-32767

32767

--

F157

361E

Trace memory sample #1311

-32767

32767

--

F157

361F

Trace memory sample #1312

-32767

32767

--

F157

3620

Trace memory sample #1313

-32767

32767

--

F157

3621

Trace memory sample #1314

-32767

32767

--

F157

3622

Trace memory sample #1315

-32767

32767

--

F157

3623

Trace memory sample #1316

-32767

32767

--

F157

3624

Trace memory sample #1317

-32767

32767

--

F157

3625

Trace memory sample #1318

-32767

32767

--

F157

3626

Trace memory sample #1319

-32767

32767

--

F157

3627

Trace memory sample #1320

-32767

32767

--

F157

3628

Trace memory sample #1321

-32767

32767

--

F157

3629

Trace memory sample #1322

-32767

32767

--

F157

362A

Trace memory sample #1323

-32767

32767

--

F157

362B

Trace memory sample #1324

-32767

32767

--

F157

362C

Trace memory sample #1325

-32767

32767

--

F157

362D

Trace memory sample #1326

-32767

32767

--

F157

362E

Trace memory sample #1327

-32767

32767

--

F157

362F

Trace memory sample #1328

-32767

32767

--

F157

3630

Trace memory sample #1329

-32767

32767

--

F157

3631

Trace memory sample #1330

-32767

32767

--

F157

3632

Trace memory sample #1331

-32767

32767

--

F157

3633

Trace memory sample #1332

-32767

32767

--

F157

3634

Trace memory sample #1333

-32767

32767

--

F157

3635

Trace memory sample #1334

-32767

32767

--

F157

3636

Trace memory sample #1335

-32767

32767

--

F157

3637

Trace memory sample #1336

-32767

32767

--

F157

3638

Trace memory sample #1337

-32767

32767

--

F157

3639

Trace memory sample #1338

-32767

32767

--

F157

363A

Trace memory sample #1339

-32767

32767

--

F157

363B

Trace memory sample #1340

-32767

32767

--

F157

363C

Trace memory sample #1341

-32767

32767

--

F157

363D

Trace memory sample #1342

-32767

32767

--

F157

363E

Trace memory sample #1343

-32767

32767

--

F157

363F

Trace memory sample #1344

-32767

32767

--

F157

3640

Trace memory sample #1345

-32767

32767

--

F157

3641

Trace memory sample #1346

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 87 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3642

Trace memory sample #1347

-32767

32767

--

F157

3643

Trace memory sample #1348

-32767

32767

--

F157

3644

Trace memory sample #1349

-32767

32767

--

F157

3645

Trace memory sample #1350

-32767

32767

--

F157

3646

Trace memory sample #1351

-32767

32767

--

F157

3647

Trace memory sample #1352

-32767

32767

--

F157

3648

Trace memory sample #1353

-32767

32767

--

F157

3649

Trace memory sample #1354

-32767

32767

--

F157

364A

Trace memory sample #1355

-32767

32767

--

F157

364B

Trace memory sample #1356

-32767

32767

--

F157

364C

Trace memory sample #1357

-32767

32767

--

F157

364D

Trace memory sample #1358

-32767

32767

--

F157

364E

Trace memory sample #1359

-32767

32767

--

F157

364F

Trace memory sample #1360

-32767

32767

--

F157

3650

Trace memory sample #1361

-32767

32767

--

F157

3651

Trace memory sample #1362

-32767

32767

--

F157

3652

Trace memory sample #1363

-32767

32767

--

F157

3653

Trace memory sample #1364

-32767

32767

--

F157

3654

Trace memory sample #1365

-32767

32767

--

F157

3655

Trace memory sample #1366

-32767

32767

--

F157

3656

Trace memory sample #1367

-32767

32767

--

F157

3657

Trace memory sample #1368

-32767

32767

--

F157

3658

Trace memory sample #1369

-32767

32767

--

F157

3659

Trace memory sample #1370

-32767

32767

--

F157

365A

Trace memory sample #1371

-32767

32767

--

F157

365B

Trace memory sample #1372

-32767

32767

--

F157

365C

Trace memory sample #1373

-32767

32767

--

F157

365D

Trace memory sample #1374

-32767

32767

--

F157

365E

Trace memory sample #1375

-32767

32767

--

F157

365F

Trace memory sample #1376

-32767

32767

--

F157

3660

Trace memory sample #1377

-32767

32767

--

F157

3661

Trace memory sample #1378

-32767

32767

--

F157

3662

Trace memory sample #1379

-32767

32767

--

F157

3663

Trace memory sample #1380

-32767

32767

--

F157

3664

Trace memory sample #1381

-32767

32767

--

F157

3665

Trace memory sample #1382

-32767

32767

--

F157

3666

Trace memory sample #1383

-32767

32767

--

F157

3667

Trace memory sample #1384

-32767

32767

--

F157

3668

Trace memory sample #1385

-32767

32767

--

F157

3669

Trace memory sample #1386

-32767

32767

--

F157

366A

Trace memory sample #1387

-32767

32767

--

F157

366B

Trace memory sample #1388

-32767

32767

--

F157

366C

Trace memory sample #1389

-32767

32767

--

F157

366D

Trace memory sample #1390

-32767

32767

--

F157

366E

Trace memory sample #1391

-32767

32767

--

F157

366F

Trace memory sample #1392

-32767

32767

--

F157

3670

Trace memory sample #1393

-32767

32767

--

F157

3671

Trace memory sample #1394

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

105

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 88 of 91)


GROUP

106

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

3672

Trace memory sample #1395

-32767

32767

--

F157

3673

Trace memory sample #1396

-32767

32767

--

F157

3674

Trace memory sample #1397

-32767

32767

--

F157

3675

Trace memory sample #1398

-32767

32767

--

F157

3676

Trace memory sample #1399

-32767

32767

--

F157

3677

Trace memory sample #1400

-32767

32767

--

F157

3678

Trace memory sample #1401

-32767

32767

--

F157

3679

Trace memory sample #1402

-32767

32767

--

F157

367A

Trace memory sample #1403

-32767

32767

--

F157

367B

Trace memory sample #1404

-32767

32767

--

F157

367C

Trace memory sample #1405

-32767

32767

--

F157

367D

Trace memory sample #1406

-32767

32767

--

F157

367E

Trace memory sample #1407

-32767

32767

--

F157

367F

Trace memory sample #1408

-32767

32767

--

F157

3680

Trace memory sample #1409

-32767

32767

--

F157

3681

Trace memory sample #1410

-32767

32767

--

F157

3682

Trace memory sample #1411

-32767

32767

--

F157

3683

Trace memory sample #1412

-32767

32767

--

F157

3684

Trace memory sample #1413

-32767

32767

--

F157

3685

Trace memory sample #1414

-32767

32767

--

F157

3686

Trace memory sample #1415

-32767

32767

--

F157

3687

Trace memory sample #1416

-32767

32767

--

F157

3688

Trace memory sample #1417

-32767

32767

--

F157

3689

Trace memory sample #1418

-32767

32767

--

F157

368A

Trace memory sample #1419

-32767

32767

--

F157

368B

Trace memory sample #1420

-32767

32767

--

F157

368C

Trace memory sample #1421

-32767

32767

--

F157

368D

Trace memory sample #1422

-32767

32767

--

F157

368E

Trace memory sample #1423

-32767

32767

--

F157

368F

Trace memory sample #1424

-32767

32767

--

F157

3690

Trace memory sample #1425

-32767

32767

--

F157

3691

Trace memory sample #1426

-32767

32767

--

F157

3692

Trace memory sample #1427

-32767

32767

--

F157

3693

Trace memory sample #1428

-32767

32767

--

F157

3694

Trace memory sample #1429

-32767

32767

--

F157

3695

Trace memory sample #1430

-32767

32767

--

F157

3696

Trace memory sample #1431

-32767

32767

--

F157

3697

Trace memory sample #1432

-32767

32767

--

F157

3698

Trace memory sample #1433

-32767

32767

--

F157

3699

Trace memory sample #1434

-32767

32767

--

F157

369A

Trace memory sample #1435

-32767

32767

--

F157

369B

Trace memory sample #1436

-32767

32767

--

F157

369C

Trace memory sample #1437

-32767

32767

--

F157

369D

Trace memory sample #1438

-32767

32767

--

F157

369E

Trace memory sample #1439

-32767

32767

--

F157

369F

Trace memory sample #1440

-32767

32767

--

F157

36A0

Trace memory sample #1441

-32767

32767

--

F157

36A1

Trace memory sample #1442

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 89 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

36A2

Trace memory sample #1443

-32767

32767

--

F157

36A3

Trace memory sample #1444

-32767

32767

--

F157

36A4

Trace memory sample #1445

-32767

32767

--

F157

36A5

Trace memory sample #1446

-32767

32767

--

F157

36A6

Trace memory sample #1447

-32767

32767

--

F157

36A7

Trace memory sample #1448

-32767

32767

--

F157

36A8

Trace memory sample #1449

-32767

32767

--

F157

36A9

Trace memory sample #1450

-32767

32767

--

F157

36AA

Trace memory sample #1451

-32767

32767

--

F157

36AB

Trace memory sample #1452

-32767

32767

--

F157

36AC

Trace memory sample #1453

-32767

32767

--

F157

36AD

Trace memory sample #1454

-32767

32767

--

F157

36AE

Trace memory sample #1455

-32767

32767

--

F157

36AF

Trace memory sample #1456

-32767

32767

--

F157

36B0

Trace memory sample #1457

-32767

32767

--

F157

36B1

Trace memory sample #1458

-32767

32767

--

F157

36B2

Trace memory sample #1459

-32767

32767

--

F157

36B3

Trace memory sample #1460

-32767

32767

--

F157

36B4

Trace memory sample #1461

-32767

32767

--

F157

36B5

Trace memory sample #1462

-32767

32767

--

F157

36B6

Trace memory sample #1463

-32767

32767

--

F157

36B7

Trace memory sample #1464

-32767

32767

--

F157

36B8

Trace memory sample #1465

-32767

32767

--

F157

36B9

Trace memory sample #1466

-32767

32767

--

F157

36BA

Trace memory sample #1467

-32767

32767

--

F157

36BB

Trace memory sample #1468

-32767

32767

--

F157

36BC

Trace memory sample #1469

-32767

32767

--

F157

36BD

Trace memory sample #1470

-32767

32767

--

F157

36BE

Trace memory sample #1471

-32767

32767

--

F157

36BF

Trace memory sample #1472

-32767

32767

--

F157

36C0

Trace memory sample #1473

-32767

32767

--

F157

36C1

Trace memory sample #1474

-32767

32767

--

F157

36C2

Trace memory sample #1475

-32767

32767

--

F157

36C3

Trace memory sample #1476

-32767

32767

--

F157

36C4

Trace memory sample #1477

-32767

32767

--

F157

36C5

Trace memory sample #1478

-32767

32767

--

F157

36C6

Trace memory sample #1479

-32767

32767

--

F157

36C7

Trace memory sample #1480

-32767

32767

--

F157

36C8

Trace memory sample #1481

-32767

32767

--

F157

36C9

Trace memory sample #1482

-32767

32767

--

F157

36CA

Trace memory sample #1483

-32767

32767

--

F157

36CB

Trace memory sample #1484

-32767

32767

--

F157

36CC

Trace memory sample #1485

-32767

32767

--

F157

36CD

Trace memory sample #1486

-32767

32767

--

F157

36CE

Trace memory sample #1487

-32767

32767

--

F157

36CF

Trace memory sample #1488

-32767

32767

--

F157

36D0

Trace memory sample #1489

-32767

32767

--

F157

36D1

Trace memory sample #1490

-32767

32767

--

F157

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

107

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 90 of 91)


GROUP

108

ADDR
(HEX)

DESCRIPTION

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

36D2

Trace memory sample #1491

-32767

32767

--

F157

36D3

Trace memory sample #1492

-32767

32767

--

F157

36D4

Trace memory sample #1493

-32767

32767

--

F157

36D5

Trace memory sample #1494

-32767

32767

--

F157

36D6

Trace memory sample #1495

-32767

32767

--

F157

36D7

Trace memory sample #1496

-32767

32767

--

F157

36D8

Trace memory sample #1497

-32767

32767

--

F157

36D9

Trace memory sample #1498

-32767

32767

--

F157

36DA

Trace memory sample #1499

-32767

32767

--

F157

36DB

Trace memory sample #1500

-32767

32767

--

F157

36DC

Trace memory sample #1501

-32767

32767

--

F157

36DD

Trace memory sample #1502

-32767

32767

--

F157

36DE

Trace memory sample #1503

-32767

32767

--

F157

36DF

Trace memory sample #1504

-32767

32767

--

F157

36E0

Trace memory sample #1505

-32767

32767

--

F157

36E1

Trace memory sample #1506

-32767

32767

--

F157

36E2

Trace memory sample #1507

-32767

32767

--

F157

36E3

Trace memory sample #1508

-32767

32767

--

F157

36E4

Trace memory sample #1509

-32767

32767

--

F157

36E5

Trace memory sample #1510

-32767

32767

--

F157

36E6

Trace memory sample #1511

-32767

32767

--

F157

36E7

Trace memory sample #1512

-32767

32767

--

F157

36E8

Trace memory sample #1513

-32767

32767

--

F157

36E9

Trace memory sample #1514

-32767

32767

--

F157

36EA

Trace memory sample #1515

-32767

32767

--

F157

36EB

Trace memory sample #1516

-32767

32767

--

F157

36EC

Trace memory sample #1517

-32767

32767

--

F157

36ED

Trace memory sample #1518

-32767

32767

--

F157

36EE

Trace memory sample #1519

-32767

32767

--

F157

36EF

Trace memory sample #1520

-32767

32767

--

F157

36F0

Trace memory sample #1521

-32767

32767

--

F157

36F1

Trace memory sample #1522

-32767

32767

--

F157

36F2

Trace memory sample #1523

-32767

32767

--

F157

36F3

Trace memory sample #1524

-32767

32767

--

F157

36F4

Trace memory sample #1525

-32767

32767

--

F157

36F5

Trace memory sample #1526

-32767

32767

--

F157

36F6

Trace memory sample #1527

-32767

32767

--

F157

36F7

Trace memory sample #1528

-32767

32767

--

F157

36F8

Trace memory sample #1529

-32767

32767

--

F157

36F9

Trace memory sample #1530

-32767

32767

--

F157

36FA

Trace memory sample #1531

-32767

32767

--

F157

36FB

Trace memory sample #1532

-32767

32767

--

F157

36FC

Trace memory sample #1533

-32767

32767

--

F157

36FD

Trace memory sample #1534

-32767

32767

--

F157

36FE

Trace memory sample #1535

-32767

32767

--

F157

36FF

Trace memory sample #1536

-32767

32767

--

F157

3700

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 7: 469 MEMORY MAP (Sheet 91 of 91)


GROUP

ADDR
(HEX)

DESCRIPTION

...

...

3FFF

Reserved

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

MIN.

MAX.

STEP
VALUE

UNITS

FORMAT
DEFAULT
CODE

109

COMMUNICATIONS GUIDE

Format Codes
The data formats used in the Modbus memory map are shown below.
Table 8: Data Formats (Sheet 1 of 15)
CODE
F1
F2

TYPE
16 bits

DEFINITION
UNSIGNED VALUE

Example: 1234 stored as 1234


16 bits

UNSIGNED VALUE,
1 DECIMAL PLACE

Example: 123.4 stored as 1234


F3

16 bits

UNSIGNED VALUE,
2 DECIMAL PLACES

Example: 12.34 stored as 1234


F4
F5

16 bits

2s COMPLEMENT SIGNED VALUE

Example: 1234 stored as 1234 (i.e. 64302)


16 bits

2s COMPLEMENT SIGNED VALUE


1 DECIMAL PLACES

Example: -123.4 stored as -1234 (i.e. 64302)


F6

16 bits

2s COMPLEMENT SIGNED VALUE


2 DECIMAL PLACES

Example: 12.34 stored as 1234 (i.e. 64302)


F7

16 bits

2s COMPLEMENT SIGNED VALUE


3 DECIMAL PLACES

Example: 1.234 stored as 1234 (i.e. 64302)


F8

16 bits

2s COMPLEMENT SIGNED VALUE


4 DECIMAL PLACES

Example: -0.1234 stored as -1234 (i.e. 64302)


32 bits
F9

UNSIGNED LONG VALUE

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: 123456 stored as 123456


(i.e. 1st word: 0001 hex, 2nd word: E240 hex)
32 bits
F10

UNSIGNED LONG VALUE, 1 DECIMAL


PLACE

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: 12345.6 stored as 123456


(i.e. 1st word: 0001 hex, 2nd word: E240 hex)
32 bits
F11

UNSIGNED LONG VALUE, 2 DECIMAL


PLACES

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: 1234.56 stored as 123456


(i.e. 1st word: 0001 hex, 2nd word: E240 hex)
32 bits
F12

2s COMPLEMENT SIGNED LONG


VALUE

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: -123456 stored as -123456


(i.e. 1st word: FFFE hex, 2nd word: 1DC0 hex)
32 bits
F13

2s COMPLEMENT SIGNED LONG


VALUE, 1 DECIMAL PLACE

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: -12345.6 stored as -123456


(i.e. 1st word: FFFE hex, 2nd word: 1DC0 hex)

110

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 2 of 15)


CODE

F14

TYPE

DEFINITION

32 bits

2s COMPLEMENT SIGNED LONG


VALUE, 2 DECIMAL PLACES

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: -1234.56 stored as -123456


(i.e. 1st word: FFFE hex, 2nd word: 1DC0 hex)

F15

F16

16 bits

HARDWARE REVISION

0000 0000
0000 0001

1=A

0000 0000
0000 0010

2=B

...

...

0000 0000
0001 1010

26 = Z

16 bits

SOFTWARE REVISION

1111 1111
xxxx xxxx

Major Revision Number


0 to 9 in steps of 1

xxxx xxxx
1111 1111

Minor Revision Number (two BCD


digits)
00 to 99 in steps of 1

Example: Revision 2.30 stored as 0230 hex

F17

32 bits

UNSIGNED LONG VALUE, 3 DECIMAL


PLACES

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Example: 123.456 stored as 123456


(i.e. 1st word: 0001 hex, 2nd word: E240 hex)

F18

32 bits

DATE (MM/DD/YYYY)

1st byte

Month (1 to 12)

2nd byte

Day (1 to 31)

3rd & 4th byte Year (1995 to 2094)


Example: Feb. 20, 1995 stored as 34867142 (i.e. 1st
word: 0214, 2nd word 07C6)

F19

32 bits

TIME (HH:MM:SS:hh)

1st byte

Hours (0 to 23)

2nd byte

Minutes (0 to 59)

3rd byte

Seconds (0 to 59)

4th byte

Hundredths of seconds (0 to 99)

Example: 2:05pm stored as 235208704 (i.e. 1st word:


0E05, 2nd word 0000)

F20

32 bits

2s COMPLEMENT SIGNED LONG


VALUE

1st 16 bits

High Order Word of Long Value

2nd 16 bits

Low Order Word of Long Value

Note: -1 means Never


16 bits
F21

2s COMPLEMENT SIGNED VALUE


2 DECIMAL PLACES (Power Factor)

<0

Leading Power Factor - Negative

>0

Lagging Power Factor - Positive

Example: Power Factor of 0.87 lag is used as 87 (i.e.


0057)

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

111

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 3 of 15)


CODE

F22

TYPE

DEFINITION

16 bits

TWO 8-BIT CHARACTERS


PACKED INTO 16-BIT UNSIGNED

MSB

First Character

LSB

Second Character

Example: String AB stored as 4142 hex.


32 bits

TIME FORMAT FOR BROADCAST

1st byte

Hours (0 to 23)

nd byte

2
F24

Minutes (0 to 59)

Milliseconds (0 to 59999)
3rd & 4th bytes Note: Clock resolution limited to 0.01
sec
Example: 1:15:48:572 stored as 17808828 (i.e., 1st word
010F, 2nd word BDBC)

F25

16 bits

UNSIGNED VALUE, 4 DECIMAL


PLACES

Example: 0.1234 stored as 1234


F26

16 bits

UNSIGNED VALUE, 3 DECIMAL


PLACES

Example: 1.234 stored as 1234


F100

F101

F102

F103

F104

F105

112

Unsigned
16 bit integer

TEMPERATURE DISPLAY UNITS

Celsius

Fahrenheit

Unsigned
16 bit integer

RS 485 BAUD RATE

300 baud

1200 baud

2400 baud

4800 baud

9600 baud

19200 baud

Unsigned
16 bit integer

RS 485 PARITY

None

Odd

Even

Unsigned
16 bit integer

OFF / ON or NO/YES SELECTION

Off / No

On / Yes

Unsigned
16 bit integer

GROUND CT TYPE

None

1 A Secondary

5 A Secondary

50/0.025 CT

Unsigned
16 bit integer

DIFFERENTIAL CT TYPE

None

1 A Secondary

5 A Secondary

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 4 of 15)


CODE

TYPE
Unsigned
16 bit integer

F106

F107

F108

F109

F110

F110
ctd.t

F111

F112

DEFINITION
VOLTAGE TRANSFORMER
CONNECTION TYPE

None

Open Delta

Wye

Unsigned
16 bit integer

NOMINAL FREQUENCY

60 Hz

50 Hz

Variable

Unsigned
16 bit integer

REDUCED VOLTAGE STARTING


TRANSITION ON

Current Only

Current or Timer

Current and Timer

Unsigned
16 bit integer

STARTER STATUS SWITCH

Starter Aux a

Starter Aux b

Unsigned
16 bit integer

ASSIGNABLE INPUT FUNCTION

Off

Remote Alarm

Remote Trip

Speed Switch Trip

Load Shed Trip

Pressure Sw. Alarm

Pressure Switch Trip

Vibration Sw. Alarm

Vibration Sw. Trip

Digital Counter

10

Tachometer

11

General Sw. A

12

General Sw. B

13

General Sw. C

14

General Sw. D

15

Capture Trace

16

Simulate Pre-Fault

17

Simulate Fault

18

Simulate Pre-Fault...Fault

Unsigned
16 bit integer

TRIP RELAYS

Trip

Trip & Aux2

Trip & Aux2 & Aux3

Trip & Aux3

Unsigned
16 bit integer

NOT DEFINED

0
1

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

113

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 5 of 15)


CODE

F113

F114

F115

F116

F117

F118

F118
ctd.

F119

F120

114

TYPE

DEFINITION

Unsigned
16 bit integer

ALARM RELAYS

Alarm

Alarm & Aux2

Alarm & Aux2 & Aux3

Alarm & Aux3

Aux2

Aux2 & Aux3

Aux3

None

Unsigned
16 bit integer

COUNTER TYPE

Increment

Decrement

Unsigned
16 bit integer

ALARM / TRIP TYPE SELECTION

Off

Latched

Unlatched

Unsigned
16 bit integer

SWITCH TYPE

Normally Open

Normally Closed

Unsigned
16 bit integer

RESET MODE

All Resets

Remote Reset Only

Keypad Reset Only

Unsigned
16 bit integer

TRIP RELAYS

Trip

Trip & Aux2

Trip & Aux2 & Aux3

Trip & Aux3

Aux2

Aux2 & Aux3

Aux3

Unsigned
16 bit integer

BACKUP RELAYS

Aux2

Aux2 & Aux3

Aux3

Unsigned
16 bit integer

RTD TYPE

100 Ohm Platinum

120 Ohm Nickel

100 Ohm Nickel

10 Ohm Copper

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 6 of 15)


CODE

TYPE
Unsigned
16 bit integer

F121

F122

F123

F124

F125

F126

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

DEFINITION
RTD APPLICATION

None

Stator

Bearing

Ambient

Other

Unsigned
16 bit integer

RTD VOTING SELECTION

RTD #1

RTD #2

RTD #3

RTD #4

RTD #5

RTD #6

RTD #7

RTD #8

RTD #9

10

RTD #10

11

RTD #11

12

RTD #12

Unsigned
16 bit integer

ALARM STATUS

Off

Not Active

Timing Out

Active

Latched

Unsigned
16 bit integer

PHASE ROTATION AT MOTOR


TERMINALS

ABC

ACB

Unsigned
16 bit integer

STARTER TYPE

Breaker

Contactor

Unsigned
16 bit

DISABLED / ENABLED SELECTION

Disabled

Enabled

115

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 7 of 15)


CODE

F127

116

TYPE

DEFINITION

Unsigned
16 bit integer

ANALOG OUTPUT PARAMETER


SELECTION

None

Phase A Current

Phase B Current

Phase C Current

Average Phase Current

AB Line Voltage

BC Line Voltage

CA Line Voltage

Average Line Voltage

Phase AN Voltage

10

Phase BN Voltage

11

Phase CN Voltage

12

Average Phase Voltage

13

Hottest Stator RTD

14

Hottest Bearing RTD

15

Ambient RTD

16

RTD #1

17

RTD #2

18

RTD #3

19

RTD #4

20

RTD #5

21

RTD #6

22

RTD #7

23

RTD #8

24

RTD #9

25

RTD #10

26

RTD #11

27

RTD #12

28

Power Factor

29

Reactive Power

30

Real Power (kW)

31

Apparent Power

32

Thermal Capacity Used

33

Relay Lockout Time

34

Current Demand

35

kvar Demand

36

kW Demand

37

kVA Demand

38

Motor Load

39

Analog Input 1

40

Analog Input 2

41

Analog Input 3

42

Analog Input 4

43

Tachometer

44

MWhrs

45

Analog In Diff 1-2

46

Analog In Diff 3-4

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 8 of 15)


CODE

TYPE
Unsigned
16 bit int.

F128

F129

F130

F131

F132

F133

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

DEFINITION
PROTECTION CURVE STYLE
SELECTION

Standard

Custom

Voltage Dependent

Unsigned
16 bit integer

ANALOG INPUT SELECTION

Disabled

4-20 mA

0-20 mA

0-1 mA

Unsigned
16 bit integer

PICKUP TYPE

Over

Under

Unsigned
16 bit integer

INPUT SWITCH STATUS

Open

Shorted

Unsigned
16 bit integer

TRIP COIL SUPERVISION STATUS

No Coil

Coil

Unsigned
16 bit integer

MOTOR STATUS

Stopped

Starting

Running

Overloaded

Tripped

117

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 9 of 15)


CODE

F134

118

TYPE

DEFINITION

Unsigned
16 bit integer

CAUSE OF EVENT /
CAUSE OF LAST TRIP (UP TO 49)

No Event/Trip To Date

Incomplete Seq Trip

Remote Trip

Speed Switch Trip

Load Shed Trip

Pressure Sw. Trip

Vibration Sw. Trip

Tachometer Trip

General Sw. A Trip

General Sw. B Trip

10

General Sw. C Trip

11

General Sw. D Trip

12

Overload Trip

13

Short Circuit Trip

14

Short Circuit Backup

15

Mechanical Jam Trip

16

Undercurrent Trip

17

Current U/B Trip

18

Ground Fault Trip

19

Ground Fault Backup

20

Differential Trip

21

Acceleration Trip

22

RTD 1 Trip

23

RTD 2 Trip

24

RTD 3 Trip

25

RTD 4 Trip

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 10 of 15)


CODE

F134
ctd.

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

TYPE

DEFINITION

26

RTD 5 Trip

27

RTD 6 Trip

28

RTD 7 Trip

29

RTD 8 Trip

30

RTD 9 Trip

31

RTD 10 Trip

32

RTD 11 Trip

33

RTD 12 Trip

34

Undervoltage Trip

35

Overvoltage Trip

36

Phase Reversal Trip

37

Volt. Frequency Trip

38

Power Factor Trip

39

Reactive Power Trip

40

Underpower Trip

41

Analog I/P 1 Trip

42

Analog I/P 2 Trip

43

Analog I/P 3 Trip

44

Analog I/P 4 Trip

45

Single Phasing Trip

46

Reverse Power Trip

47

Field Circuit Open Trip (Valid only for


Mod 001)

48

Analog Diff 1-2 Trip

49

Analog Diff 3-4 Trip

50

----

51

Remote Alarm

52

Pressure Sw. Alarm

53

Vibration Sw. Alarm

54

Counter Alarm

55

Tachometer Alarm

56

General Sw. A Alarm

57

General Sw. B Alarm

58

General Sw. C Alarm

59

General Sw. D Alarm

60

Thermal Model Alarm

61

Overload Alarm

62

Undercurrent Alarm

63

Current U/B Alarm

64

Ground Fault Alarm

65

RTD 1 Alarm

66

RTD 2 Alarm

67

RTD 3 Alarm

68

RTD 4 Alarm

69

RTD 5 Alarm

70

RTD 6 Alarm

71

RTD 7 Alarm

72

RTD 8 Alarm

73

RTD 9 Alarm

74

RTD 10 Alarm

75

RTD 11 Alarm
119

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 11 of 15)


CODE

TYPE

DEFINITION

79

Undervoltage Alarm

80

Overvoltage Alarm

81

Volt. Frequency Alarm

82

Power Factor Alarm

83

Reactive Power Alarm

84

Underpower Alarm

85

Trip Counter Alarm

86

Starter Failed Alarm

87

Current Demand Alarm

88

kW Demand Alarm

89

kvar Demand Alarm

90

kVA Demand Alarm

91

F134
ctd.

92

Analog I/P 1 Alarm

93

Analog I/P 2 Alarm

94

Analog I/P 3 Alarm

95

Analog I/P 4 Alarm

96

Reverse Power Alarm

97

Incomplete Seq Alarm


(Valid only for Mod 001)

98

Analog Diff 1-2 Alarm

99

Analog Diff 3-4 Alarm

100

Self-test Warning 9

101

Service Alarm

102

Control Power Lost

103

Cont. Power Applied

104

Emergency Rst. Close

105

Emergency Rst. Open

106

Start While Blocked

107

Relay Not Inserted

108

Trip Coil Super.

109

Breaker Failure

110

Welded Contactor

111

Simulation Started

112

Simulation Stopped

120

118

Digital Trace Trigger

119

Serial Trace Trigger

120

RTD 1 High Alarm

121

RTD 2 High Alarm

122

RTD 3 High Alarm

123

RTD 4 High Alarm

124

RTD 5 High Alarm

125

RTD 6 High Alarm

126

RTD 7 High Alarm

127

RTD 8 High Alarm

128

RTD 9 High Alarm

129

RTD 10 High Alarm

130

RTD 11 High Alarm

131

RTD 12 High Alarm

132

Overtorque Alarm
469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 12 of 15)


CODE

TYPE
136

F134
ctd.

F135

137

5 BLOCK Relay Forced

138

Force 1 TRIP Disabled

139

Force 2 AUX Disabled

140

Force 3 AUX Disabled

141

Force 4 ALARM Disabled

142

Force 5 BLOCK Disabled

143

Motor Started

Unsigned
16 bit integer

MOTOR SPEED

Low Speed (Speed 1)

High Speed (Speed 2)

Unsigned
16 bit integer

ORDER CODE

Bit 0

0 = P5 (5A phase CT),


1 = P1 (1A phase CT)

Bit 1

0 = HI (High Voltage Power Supply),


1 = LO (Low Voltage Power Supply)

Bit 2

0 = A20 (4-20 mA Analog Outputs), 1 =


A1 (0-1 mA Analog Outputs)

Unsigned
16 bit integer

CONTROL RELAYS FOR REDUCED


VOLTAGE STARTING

Auxiliary 2

Auxiliary 2 & Auxiliary 3

Auxiliary 3

Unsigned
16 bit integer

SIMULATION MODE

Off

F136

F137

F138

F139

F140

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

DEFINITION
4 ALARM Relay Forced

Simulate Pre-Fault

Simulate Fault

Pre-Fault to Fault

Unsigned
16 bit integer

FORCE OPERATION OF RELAYS

Disabled

1 TRIP

2 AUXILIARY

3 AUXILIARY

4 ALARM

5 BLOCK START

6 SERVICE

All Relays

No Relays

Unsigned
16 bit integer

GENERAL STATUS

bit 0

Relay in Service

bit 1

Active Trip Condition

bit 2

Active Alarm Condition

bit 3

Reserved

bit 4

Reserved

bit 5

Reserved

bit 6

Reserved

bit 7

Reserved

121

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 13 of 15)


CODE

F140
ctd.

F141

F142

F143

F144

F145

F146

F147

F148

122

TYPE

DEFINITION

bit 8

Motor Stopped

bit 9

Motor Starting

bit 10

Motor Running

bit 11

Overload Pickup

bit 12

Unbalance Pickup

bit 13

Ground Pickup

bit 14

Hot RTD

bit 15

Loss of Load

Unsigned
16 bit integer

OUTPUT RELAY STATUS

bit 0

1 TRIP

bit 1

2 AUXILIARY

bit 2

3 AUXILIARY

bit 3

4 ALARM

bit 4

5 BLOCK START

bit 5

6 SERVICE

bit 6 to 15

Not Used

Unsigned
16 bit integer

TRIP COIL SUPERVISION SELECTION

Disabled

S2 Closed

S2 Open/Closed

Unsigned
16 bit integer

SINGLE VT SELECTION

Off

AN (Wye), AB (Delta)

BN (Wye), BC (Delta)

CN (Wye), N/A (Delta)

Unsigned
16 bit integer

PULSED OUTPUT RELAY SELECTION

Off

2 AUXILIARY

3 AUXILIARY

4 ALARM

Unsigned
16 bit integer

ANALOG IN DIFFERENTIAL
COMPARISON

% Difference

Absolute Difference

Unsigned
16 bit integer

ANALOG IN DIFFERENTIAL LOGIC

1>2 (or 3>4)

2>1 (or 4>3)

1<>2 (or 3<>4)

Unsigned
16 bit integer

ANALOG IN DIFFERENTIAL ACTIVE


WHEN

Always

1f

Start/Run

Unsigned
16 bit integer

TORQUE DISPLAY UNITS

Newton-meter

Foot-pound

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 14 of 15)


CODE
F149

F150

F151

F152

F153

F154

F155

F156

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

TYPE
Unsigned
16 bit integer

DEFINITION
UNDERVOLTAGE TRIP MODE

1-Phase

3-Phase

Unsigned
32 bit integer

IP ADDRESS

IP address, subnet mask or default gateway. Each byte


in this register represents one octet of an IP address.
For example: 0x015EDA1F represents address
1.94.218.31
Unsigned
16 bit integer

DEVICENET CONNECTION STATUS

Nonexistent

Configuring

--

Established

Time Out

Deferred Date

Unsigned
16 bit integer

ETHERNET STATUS

BIT 0

Diagnostic

BIT 1

Connection Status

BIT 2

Not Used

BIT 3

Ethernet Link Status

Unsigned
16 bit integer

DEVICENET PORT STATUS

Not Powered

Port Operational

Internal Configuration Error - Data


Size Larger Than Confirmed

Unrecoverable Fault

Minor Fault

Unsigned
16 bit integer

DEVICENET LINK STATUS

Not Online, Not Powered

Online, Connected

--

Online, Not Connected

Critical Link Failure

Connection Timeout

Unsigned
16 bit integer

ACTIVE ALARM

1xxx xxxx
xxxx xxxx

Active Alarm

x111 1111
1111 1111

Alarm Count

Unsigned
16 bit integer

DEVICENET BAUD RATE

125 kbps

250 kbps

500 kbps

123

COMMUNICATIONS GUIDE

Table 8: Data Formats (Sheet 15 of 15)


CODE

TYPE
Signed
16 bit integer

DEFINITION
TRACE MEMORY SAMPLE

For trace memory channels 0 to 9:


2s complement signed value.
For trace memory channel 10 (Output relays status):
bitmask as shown below
F157

124

Bit 0

1 Trip (0 is Off, 1 is On)

Bit 1

2 Auxiliary (0 is Off, 1 is On)

Bit 2

3 Auxiliary (0 is Off, 1 is On)

Bit 3

4 Alarm Relay (0 is Off, 1 is On)

Bit 4

5 Block Start (0 is Off, 1 is On)

Bit 5

6 Service (0 is On, 1 is Off)

Bits 6 to 15

Not Used

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

DeviceNet Protocol
Overview
The device profile is an extension of the Generic Device Profile (0x00). It is a group 2 only
server. The MAC ID and baud rate are programmable through relay front panel or the
EnerVista 469 Setup software. The polling function produces 10 bytes of data (described in
assembly object Class 04h, Instance 64h, Attribute 03h). The COS\CYC operation produces
4 bytes of data as per Class 04h,Instance 66h, Attribute 03h.
The following master/slave connection objects are supported by the 469 DeviceNet
implementation:

Explicit Messaging Connection

Poll I/O Connection

Change of State or Cyclic I/O Connection

The following objects have been implemented:


Object

Class

DeviceNet objects
Identity object

01h

Message Router object

02h

DeviceNet object

03h

Assembly object

04h

Connection object

05h

Acknowledge Handler object

2Bh

469 specific objects


I/O Data Input Mapping object

A0h

Parameter Data Input Mapping object

B0h

Poll Data
The polling data function produces 10 bytes of data as described under Class 04h,
Instance 64h, Attribute 03h.

Table 9: Poll Data


Byte

Name/Description

Units

Default, Min, Max

Format
Code

1, 2 (low, high)

Relay status

---

0, 0, FFFF

F162

3, 4 (low, high)

Input switches and output relay status

---

0, 0, FFFF

F163

5, 6 (low, high)

Motor thermal capacity used

0, 0, 100

F1

7 to 10 (low, high)

Time to trip

seconds

-1, -1, 99999

F20

Change of State (COS)


The COS data is described under Class 4, Instance 66h, Attribute 03h. The following data is
provided

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

125

COMMUNICATIONS GUIDE

Table 10: COS Data


Byte

Name/Description

Units

Format
Code

Default, Min, Max

1, 2 (low, high)

Change of state data: relay status

---

0, 0, FFFF

F162

3, 4 (low, high)

Input switches and output relay status

---

0, 0, FFFF

F163

DeviceNet Objects
Identity Object (class code 01h)
The class and instance attributes for the identity object (class 01h) are as follows:

Table 11: Identity object, Class code 01h, Attributes:


Attribute
01h

Name/Description
Revision of the identity object

Services
Get_Attribute_Single

Default, Min, Max

Data type

1, 1, 1

UINT

Table 12: Identity object, Class code 01h, Instance 01h, Attributes:
Attribute

Name/Description

Services

Default, Min, Max

Data type

01h

Vendor ID: 928

Get_Attribute_Single

928, 928, 928

UINT

02h

Device type: generic (0x00)

Get_Attribute_Single

0, 0, 0

UINT

03h

Product code: 30

Get_Attribute_Single

30, 30, 30

UINT

04h

Revision: 1.1

Get_Attribute_Single

{1,1}, {1,1}, {1,1}

Array of USINT,
USINT

05h

Status: AnyBus device status


(bitmap, see below)

Get_Attribute_Single

0, 0, 255

WORD

06h

Anybus serial number

Get_Attribute_Single

N/A, N/A, N/A

UDINT

07h

Product name: GE 469

Get_Attribute_Single

469 Motor
Management Relay, N/
A, N/A

SHORT STRING

STATUS OF ANYBUS DEVICE (Class code 01h, Instance 01h, Attribute 05h)
BIT ON (=1)

126

DESCRIPTION

BIT 0

Pre-defined master/slave connection set has been allocated to a master. A master


owns the device

BIT 2

DeviceNet has been configured

BIT 8

Minor recoverable fault

BIT 9

Minor unrecoverable fault

BIT 10

Major recoverable fault

BIT 11

Major unrecoverable fault

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Message Router Object (class code 02h)


The class attributes for the message router object (class 02h) are as follows:

Table 13: Message router object, Class code 02h, Attributes:


Attribute

Name/Description
Revision of the message router
object

01h

Services
Get_Attribute_Single

Default, Min, Max

Data type

1, 1, 1

UINT

DeviceNet Object (class code 03h)


The class and instance attributes for the DeviceNet object (class 03h) are as follows:

Table 14: DeviceNet object, Class code 03h, Attributes:


Attribute
01h

Name/Description
Revision of the DeviceNet
object

Services
Get_Attribute_Single

Default, Min, Max

Data type

2, 2, 2

UINT

Table 15: DeviceNet object, Class code 03h, Instance 01h, Attributes:
Attribute

Name/Description

Services

Default, Min, Max

Data type

01h

MAC ID: node address

Get_Attribute_Single

63, 0, 63

USINT

02h

Baud rate of the device

Get_Attribute_Single

0, 0, 2

USINT

05h

Allocation information: consists


of allocation choice (8-bit
bitmask, see below) and
masters MAC ID (16 bits, 0 to
63 or 255=no master)

Get_Attribute_Single

N/A, N/A, N/A

Struct of USINT
UINT

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

127

COMMUNICATIONS GUIDE

ALLOCATION INFORMATION - ALLOCATION CHOICE (Object 03h, Instance 01h, Atttibute 05h)
BIT ON (=1)

DESCRIPTION

BIT 0

Explicit message connection

BIT 1

Polled I/O connection

BIT 2

Bit strobed connection

BIT 3

Multicast polling connection

BIT 4

Change of state connection

BIT 5

Cyclic connection

BIT 6

Acknowledge suppression

BIT 7

Reserved

Assembly Object (class code 04h)


The class and instance attributes for the assembly object (class 04h) are as follows:

Table 16: Assembly object, Class code 04h, Attributes:


Attribute

Name/Description

Services

Default, Min, Max

Data type

01h

Revision of the assembly


object

Get_Attribute_All

2, 2, 2

UINT

02h

Maximum instance created


by this object

Get_Attribute_Single

N/A, N/A, 96

UINT

Table 17: Assembly object, Class code 04h, Instance 64h, Attributes:
Attribute

03h

Byte

Name/Description

Services

Default, Min, Max

Format
Code

1, 2 (low,
high)

IO polled data: relay


status

Get_Attribute_Single

0, 0, FFFF

F162

3, 4 (low,
high)

Input switches and


output relay status

Get_Attribute_Single

0, 0, FFFF

F163

5, 6 (low,
high)

Motor thermal
capacity used

Get_Attribute_Single

0, 0, 100

F1

7 to 10 (low,
high)

Time to trip

Get_Attribute_Single

1, 1, 99999

F20

The attributes in this class can be accessed using Poll I/O Connection or Explicit
Messages Connection. This data could be polled from Class A0h, I/O Data Input
Mapping Object, instance 1, attribute 1 as well.

Table 18: Assembly object, Class code 04h, Instance 66h, Attributes:
Attribute

03h

128

Byte

Name/Description

Services

Default, Min, Max

Format
Code

1, 2 (low,
high)

IO polled data: relay status

Get_Attribute_Single

0, 0, FFFF

F162

3, 4 (low,
high)

Input switches and output


relay status

Get_Attribute_Single

0, 0, FFFF

F163

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

The attributes in this class can be accessed using Change-Of-State Connection or


Explicit Messages Connection. This data could be polled from Class A0h, I/O Data
Input Mapping Object instance 1, attribute 3 as well.
The Modbus memory map should be consulted for more details on the output messages.

Connection Object (class code 05h)


The class and instance attributes for the connection object (class 05h) are as follows:

Table 19: Connection object, Class code 05h, Attributes:


Attribute
01h

Name/Description
Revision of the DeviceNet object

Services
Get_Attribute_All

Default, Min, Max


2, 2, 2

Data type
UINT

Table 20: Connection object, Class code 05h, Instance 01h (explicit message connection), Attributes:
Attribute

Name/Description

Services

Default, Min, Max

Data type

01h

State of the object.


0 = Nonexistent; 1 = Configuring; 3 =
Established; 4=Timed Out;
5 = Deferred delete

Get_Attribute_Single

1, 0, 5

USINT

02h

Instance type. Indicates either IO or


messaging connection.

Get_Attribute_Single

0, 0, 0

USINT

03h

Transport class trigger. Defines


behavior of the connection.

Get_Attribute_Single

83h, 83h, 83h

USINT

04h

Produced Cxnx ID. Placed in CAN


identifier field when the connection
transmits.

Get_Attribute_Single

N/A, N/A, N/A

UINT

05h

Consumed Cxnx ID. CAN identifier field


value that denotes message to be
received.

Get_Attribute_Single

N/A, N/A, N/A

UINT

06h

Initial comm characteristics. Defines


the message group(s) across which
productions and consumptions
associated with this object occur.

Get_Attribute_Single

N/A, N/A, N/A

USINT

07h

Produced connection size. Maximum


number of bytes transmitted across
this connection.

Get_Attribute_Single

512, 512, 512

UINT

08h

Consumed connection size. Maximum


number of bytes received across this
connection

Get_Attribute_Single

512, 512, 512

UINT

09h

Expected packet rate. Defines timing


associated with this connection.
Resolution is 10 ms.

Get_Attribute_Single

N/A, N/A, N/A

UINT

0Ch

Watchdog timeout action. Defines how


to handle inactivity/watchdog timeouts.
0 = Transition to time out
1 = Auto delete; 2 = Auto reset
3 = Deferred delete

Get_Attribute_Single

N/A, N/A, N/A

USINT

0Dh

Produced connection path length:


Number of bytes in the produced
connection_path_length attribute

Get_Attribute_Single

0, 0, 0

UINT

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

129

COMMUNICATIONS GUIDE

Table 20: Connection object, Class code 05h, Instance 01h (explicit message connection), Attributes:
Attribute

Name/Description

Services

Default, Min, Max

Data type

0Eh

Produced connection path: Application


object producing data on the
connection.

Get_Attribute_Single

0, 0, 0

Array of
USINT

0Fh

Consumed connection path length.


Number of bytes in the
consumed_connection_path length
attribute

Get_Attribute_Single

0, 0, 0

UINT

10h

Consumed connection path. Specifies


the application object(s) to receive the
data consumed by this connection
object.

Get_Attribute_Single

N/A, N/A, N/A

Array of
UINT

11h

Production inhibit time. Defines the


minimum time between new data
production.

Get_Attribute_Single

0, 0, 0

UINT

Table 21: Connection Object, Class code 05h, Instance 02h (Polled I/O connection), Attributes:
Attribute

130

Name/Description

Services

Default, Min, Max

Data type

01h

State of the object.


0 = Nonexistent; 1 = Configuring; 3 =
Established; 4=Timed Out;
5 = Deferred delete

Get_Attribute_Single

1, 0, 5

USINT

02h

Instance type. Indicates either IO or


messaging connection.

Get_Attribute_Single

0, 0, 1

USINT

03h

Transport class trigger. Defines


behavior of the connection.

Get_Attribute_Single

N/A, N/A, N/A

USINT

04h

Produced Cxnx ID. Placed in CAN


identifier field when the connection
transmits.

Get_Attribute_Single

N/A, N/A, N/A

UINT

05h

Consumed Cxnx ID. CAN identifier field


value that denotes message to be
received.

Get_Attribute_Single

N/A, N/A, N/A

UINT

06h

Initial comm characteristics. Defines


the message group(s) across which
productions and consumptions
associated with this object occur.

Get_Attribute_Single

N/A, N/A, N/A

USINT

07h

Produced connection size. Maximum


number of bytes transmitted across
this connection.

Get_Attribute_Single

I/O in length, 0,
I/O in length

UINT

08h

Consumed connection size. Maximum


number of bytes received across this
connection

Get_Attribute_Single

I/O out length, 0,


I/O out length

UINT

09h

Expected packet rate. Defines timing


associated with this connection.

Get_Attribute_Single

N/A, N/A, N/A

UINT

0Ch

Watchdog timeout action. Defines how


to handle inactivity/watchdog timeouts.
0 = Transition to time out
1 = Auto delete; 2 = Auto reset
3 = Deferred delete

Get_Attribute_Single

N/A, N/A, N/A

USINT

0Dh

Produced connection path length:


Number of bytes in the produced
connection_path_length attribute

Get_Attribute_Single

6, 6, 6

UINT

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 21: Connection Object, Class code 05h, Instance 02h (Polled I/O connection), Attributes:
Attribute

Name/Description

Services

Default, Min, Max

Data type

0Eh

Produced connection path: Application


object producing data on the
connection.

Get_Attribute_Single

20 04 24 64 30 03,
N/A, N/A

Array of
USINT

0Fh

Consumed connection path length.


Number of bytes in the
consumed_connection_path length
attribute

Get_Attribute_Single

6, 6, 6

UINT

10h

Consumed connection path. Specifies


the application object(s) to receive the
data consumed by this connection
object.

Get_Attribute_Single

20 04 24 64 30 03,
N/A, N/A

Array of
UINT

11h

Production inhibit time. Defines the


minimum time between new data
production.

Get_Attribute_Single

0, 0, 0

UINT

Acknowledge Handler Object (class code 2Bh)


The class and instance attributes for the acknowledge handler object (class 2Bh) are as
follows:

Table 22: Acknowledge handler object, Class code 2Bh, Attributes:


Attibute

Name/Description

Services

01h

Revision of the acknowledge


handler object.

Get_Attribute_All

02h

Maximum instance created by


this object

Get_Attribute_Single

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

Default, Min, Max


1, 1, 1

Data type
UINT
UINT

131

COMMUNICATIONS GUIDE

Table 23: Acknowledge handler object, Class code 2Bh, Instance 01h, Attributes:
Attribute

Name/Description

Services

Default, Min, Max

Data type

01h

Acknowledge timer. The time


to wait for an acknowledge
before re-sending.

Get_Attribute_Single

16, 1, 65535

UINT

02h

Retry limit. This is the number


of acknowledge time-outs to
wait before informing the
application of a
retry_limit_reached event

Get_Attribute_Single

1, 0, 255

USINT

03h

COS producing connection


instance. This is the
connection instance which
contains the oath of the
producing I/O application
object which will be notified
of acknowledge handle
events.

Get_Attribute_Single

N/A

UINT

04h

ACK list size. This is the


maximum number of
members in the acknowledge
list.
0 = dynamic.

Get_Attribute_Single

05h

ACK list. List of active


connection instances which
are receiving acknowledges.

Get_Attribute_Single

N/A

Byte array of
USINT

06h

Data with ACK path list size.


Maximum number of
members in data with
acknowledge path list.
0 = dynamic.

Get_Attribute_Single

07h

Data with ACK path list. List of


connection instance /
consuming application object
pairs. This attribute is used to
forward data received with
acknowledgement.

Get_Attribute_Single

N/A

Byte array of
UINT, USINT;
Array of USINT

469 Specific Objects


I/O Data Input Mapping Object (class code A0h)
The class and instance attributes for the I/O data input mapping object (class code A0h)
are as follows:

Table 24: I/O data input mapping object, Class code A0h, Attributes:
Attribute
1

132

Name/Description
Revision of the I/O data input
mapping handler object.

Services
Get_Attribute_All

Default, Min, Max


1, 1, 1

Data type
UINT

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 25: I/O data input mapping object, Class code A0h, Instance 01h, Attributes:
Attribute

Name/Description

Services

Format
Code

Default, Min, Max

1, 2 (low, high)

Relay status

Get_Attribute_Single

0, 0, FFFF

F162

3, 4 (low, high)

Input switches and


output relay status

Get_Attribute_Single

0, 0, FFFF

F163

5, 6 (low, high)

Motor thermal
capacity used

Get_Attribute_Single

0, 0, 100

F1

7 to 10 (low, high)

Time to trip

Get_Attribute_Single

1, 1, 99999

F20

1, 2 (low, high)

Change of state
data: Relay status

Get_Attribute_Single

0, 0, FFFF

F162

3, 4 (low, high)

Input switches and


output relay status

Get_Attribute_Single

0, 0, FFFFF

F163

01h

03h

Attributes #1 and 3 in this class can be accessed using polled connection or explicit
messages connection. This data could be polled from Class 04h, Assembly Object,
Instance 64h, Attribute #1 as well.
Consult the Modbus memory map for additional details on the output messages.

Parameter Data Input Mapping Object (class code B0h)


The class and instance attributes for the parameter data input mapping object (class B0h)
are as follows:

Table 26: Parameter data input mapping object, Class B0h, Attributes:
Attribute

Name/Description

Services

Revision of the parameter data input


mapping object.

01h

Get_Attribute_All

Default, Min, Max


1, 1, 1

Data type
UINT

Table 27: Parameter data input mapping object, Class B0h, Instance 01h, Attributes:
Attribute

Access

Name/Description

Data Length

Value

01h

Get

Phase & ground currents

bytes (20)

Refer Table 22

02h

Get

Current angles

bytes (6)

Refer Table 22

03h

Get

Differential currents

bytes (6)

Refer Table 22

04h

Get

Motor load

bytes (6)

Refer Table 22

05h

Get

Line voltages

bytes (8)

Refer Table 22

06h

Get

Voltage angles

bytes (6)

Refer Table 22

07h

Get

Power

bytes (14)

Refer Table 22

08h

Get

Energy

bytes (12)

Refer Table 22

09h

Get

Demand

bytes (14)

Refer Table 22

0Ah

Get

Peak demand

bytes (14)

Refer Table 22

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

133

COMMUNICATIONS GUIDE

Table 27: Parameter data input mapping object, Class B0h, Instance 01h, Attributes:
0Bh

Get

Speed & Torque

bytes (8)

Refer Table 22

0Ch

Get

Analog inputs

bytes (24)

Refer Table 22

0Dh

Get

Motor statistics

bytes (16)

Refer Table 22

0Eh

Get

Temperatures

bytes (24)

Refer Table 22

0Fh

Get

Last trip date & time

bytes (8)

Refer Table 22

10h

Get

Alarm data

bytes (62)

Refer Table 22

11h

Get

Frequency

bytes (2)

Refer Table 22

12h

Get

Phase voltages

bytes (8)

Refer Table 22

13h

Get

Motor starting data

bytes (16)

Refer Table 22

14h

Get

Start blocks

bytes (10)

Refer Table 22

15h

Get

Cause of last trip

bytes (2)

Refer Table 22

16h

Get

Pre-trip currents

bytes (22)

Refer Table 22

17h

Get

Pre-trip phase voltages

bytes (12)

Refer Table 22

18h

Get

Pre-trip line voltages

bytes (12)

Refer Table 22

19h

Get

Pre-trip system frequency

bytes (2)

Refer Table 22

1Ah

Get

Pre-trip motor load unbalance

bytes (4)

Refer Table 22

1Bh

Get

Pre-trip power & power factor

bytes (12)

Refer Table 22

1Ch

Get

Pre-trip analog input data

bytes (16)

Refer Table 22

1Dh

Get

Pre-trip hottest RTD & temperature

bytes (16)

Refer Table 22

1Eh

Get

Pre-trip motor speed

bytes (4)

Refer Table 22

1Fh

Get

RTD maximums

bytes (24)

Refer Table 22

20h

Get

Analog input maximums & minimums

bytes (32)

Refer Table 22

21h

Get

Motor thermal capacity used

bytes (2)

Refer Table 22

22h

Get

Time to trip

bytes (4)

Refer Table 22

23h

Get

Contain attributes 01h to 10h together

bytes (248)

Refer Table 22

Table 28: Data formats for class B0h, Instance 01h:


Attribute

01h PHASE &


GROUND
CURRENTS

134

Bytes

Description

Length

Default, Min, Max

Value/Unit

Format
Code

1 to 4 (low,high)

Phase A current

32 bits

0, 0, 100000

F9

5 to 8 (low,high)

Phase B current

32 bits

0, 0, 100000

F9

9 to 12 (low,high)

Phase C current

32 bits

0, 0, 100000

F9

13 to 16 (low,high)

Average phase current

32 bits

0, 0, 100000

F9

17 to 20 (low,high)

Ground current

32 bits

0, 0, 500000

F11

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute

02h CURRENT
ANGLES

03h DIFF
CURRENTS

Bytes

06h VOLTAGE
ANGLES

07h POWER

08h ENERGY

09h DEMAND

0Ah PEAK
DEMAND

Length

Default, Min, Max

Value/Unit Format
Code

1,2 (low,high)

Ia angle

16 bits

N/A, 0, 359

degrees

F1

3,4 (low,high)

Ib angle

16 bits

N/A, 0, 359

degrees

F1

5,6 (low,high)

Ic angle

16 bits

N/A, 0, 359

degrees

F1

1,2 (low,high)

Phase A differential current

16 bits

0, 0, 5000

F1

3,4 (low,high)

Phase B differential current

16 bits

0, 0, 5000

F1

5,6 (low,high)

Phase C differential current

16 bits

0, 0, 5000

F1

1,2 (low,high)

Motor load

16 bits

0, 0, 2000

FLA

F3

Current unbalance

16 bits

0, 0, 100

F1

5,6 (low,high)

Equivalent motor load

16 bits

0, 0, 2000

FLA

F3

1,2 (low,high)

Vab

16 bits

0, 0, 20000

F1

3,4 (low,high)

Vbc

16 bits

0, 0, 20000

F1

5,6 (low,high)

Vca

16 bits

0, 0, 20000

F1

7,8 (low,high)

Average line voltage

16 bits

0, 0, 20000

F1

1,2 (low,high)

Va angle

16 bits

0, 0, 20000

degrees

F1

3,4 (low,high)

Vb angle

16 bits

0, 0, 20000

degrees

F1

5,6 (low,high)

Vc angle

16 bits

0, 0, 20000

degrees

F1

1,2 (low,high)

Power factor

16 bits

0, -99, 100

PF

F21

3 to 6 (low,high)

Real power

32 bits

0, -99999, 99999

kW

F12

7,8 (low,high)

Real power (HP)

16 bits

0, 0, 65535

hp

F1

9 to 12 (low,high)

Reactive power

32 bits

0, -99999, 99999

kvar

F12

13,14 (low,high)

Apparent power

16 bits

0, 0, 65535

kVA

F1

1 to 4 (low,high)

MWh consumption

32 bits

0, 0, 999999999

MWh

F17

5 to 8 (low,high)

Mvarh consumption

32 bits

0, 0, 999999999

Mvar

F17

9 to 12 (low,high)

Mvarh generation

32 bits

0, 0, 999999999

Mvar

F17

1 to 4 (low,high)

Current demand

32 bits

0, 0, 100000

F9

5 to 8 (low,high)

Real power demand

32 bits

0, -50000, 50000

kW

F12

9 to 12 (low,high)

Reactive power demand

32 bits

0, -50000, 50000

kvar

F12

13,14 (low,high)

Apparent power demand

16 bits

0, 0, 50000

kVA

F1

1 to 4 (low,high)

Peak current demand

32 bits

0, 0, 100000

F9

5 to 8 (low,high)

Peak real power demand

32 bits

0, -50000, 50000

kW

F12

9 to 12 (low,high)

Peak reactive power demand

32 bits

0, -50000, 50000

kvar

F12

13,14 (low,high)

Peak apparent power demand

16 bits

0, 0, 50000

kVA

F1

04h MOTOR LOAD 3,4 (low,high)

05h LINE
VOLTAGES

Description

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

135

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute

0Bh SPEED &


TORQUE

0Ch ANALOG
INPUTS

0Dh MOTOR
STATISTICS

0Eh
TEMPERATURES

0Fh LAST TRIP


DATE & TIME

136

Bytes

Description

Length

Default, Min, Max

Value/Unit Format
Code

1 to 4 (low,high)

Torque

32 bits

0, 0, 9999999

N.m/ ft.lb

F10

5,6 (low,high)

Tachometer RPM

16 bits

0, 0, 7200

RPM

F1

7,8 (low,high)

Motor speed

16 bits

0, 0, 1

--

F135

1 to 4 (low,high)

Analog input 1

32 bits

0, -50000, 50000

--

F12

5 to 8 (low,high)

Analog input 2

32 bits

0, -50000, 50000

--

F12

9 to 12 (low,high)

Analog input 3

32 bits

0, -50000, 50000

--

F12

13 to 16 (low,high)

Analog input 4

32 bits

0, -50000, 50000

--

F12

17 to 20 (low,high)

Analog difference 1-2

32 bits

0, -100000, 100000

--

F12

21 to 24 (low,high)

Analog difference 3-4

32 bits

0, -100000, 100000

--

F12

1,2 (low,high)

Number of motor starts

16 bits

0, 0, 50000

--

F1

3,4 (low,high)

Number of emergency restarts

16 bits

0, 0, 50000

--

F1

5,6 (low,high)

Number of starter operations

16 bits

0, 0, 50000

--

F1

7 to 10 (low,high)

Digital counter

32 bits

0, 0, 1000000000

--

F9

11 to 14 (low,high)

Motor running hours

32 bits

0, 0, 500

hours

F9

15,16 (low,high)

Time between starts

16 bits

10, 0, 500

minutes

F1

1,2 (low,high)

RTD #1 temperature

16 bits

0, -50, 250

0C

F4

3,4 (low,high)

RTD #2 temperature

16 bits

0, -50, 250

0C

F4

5,6 (low,high)

RTD #3 temperature

16 bits

0, -50, 250

0C

F4

7,8 (low,high)

RTD #4 temperature

16 bits

0, -50, 250

0C

F4

9,10 (low,high)

RTD #5 temperature

16 bits

0, -50, 250

0C

F4

11,12 (low,high)

RTD #6 temperature

16 bits

0, -50, 250

0C

F4

13,14 (low,high)

RTD #7 temperature

16 bits

0, -50, 250

F4

15,16 (low,high)

RTD #8 temperature

16 bits

0, -50, 250

F4

17,18 (low,high)

RTD #9 temperature

16 bits

0, -50, 250

F4

19,20 (low,high)

RTD #10 temperature

16 bits

0, -50, 250

0C

F4

21,22 (low,high)

RTD #11 temperature

16 bits

0, -50, 250

0C

F4

23,24 (low,high)

RTD #12 temperature

16 bits

0, -50, 250

0C

F4

1 to 4 (low,high)

Time of Last Trip

32 bits

N/A, N/A, N/A

--

F19

5 to 8 (low,high)

Date of Last Trip

32 bits

N/A, N/A, N/A

--

F18

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute

10h ALARM DATA

Bytes

Description

Length

Default, Min, Max

Value/Unit Format
Code

Pressure switch

8bits

0, 0, 4

--

F160

Vibration switch

8bits

0, 0, 4

--

F160

Digital counter

8bits

0, 0, 4

--

F160

Tachometer

8bits

0, 0, 4

--

F160

General switch A

8bits

0, 0, 4

--

F160

General switch B

8bits

0, 0, 4

--

F160

General switch C

8bits

0, 0, 4

--

F160

General switch D

8bits

0, 0, 4

--

F160

Thermal capacity

8bits

0, 0, 4

--

F160

10

Overload

8bits

0, 0, 4

--

F160

11

Undercurrent

8bits

0, 0, 4

--

F160

12

Current unbalance

8bits

0, 0, 4

--

F160

13

Ground fault

8bits

0, 0, 4

--

F160

14

RTD 1

8bits

0, 0, 4

--

F160

15

RTD 2

8bits

0, 0, 4

--

F160

16

RTD 3

8bits

0, 0, 4

--

F160

17

RTD 4

8bits

0, 0, 4

--

F160

18

RTD 5

8bits

0, 0, 4

--

F160

19

RTD 6

8bits

0, 0, 4

--

F160

20

RTD 7

8bits

0, 0, 4

--

F160

21

RTD 8

8bits

0, 0, 4

--

F160

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

137

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute

10h ALARM DATA


ctd.

138

Bytes

Description

Length

Default, Min, Max

Value/Unit Format
Code

22

RTD 9

8bits

0, 0, 4

--

F160

23

RTD 10

8bits

0, 0, 4

--

F160

24

RTD 11

8bits

0, 0, 4

--

F160

25

RTD 12

8bits

0, 0, 4

--

F160

26

Open RTD sensor

8bits

0, 0, 4

--

F160

27

Short sensor / low temperature

8bits

0, 0, 4

--

F160

28

Undervoltage

8bits

0, 0, 4

--

F160

29

Overvoltage

8bits

0, 0, 4

--

F160

30

System frequency

8bits

0, 0, 4

--

F160

31

Power factor

8bits

0, 0, 4

--

F160

32

Reactive power

8bits

0, 0, 4

--

F160

33

Underpower

8bits

0, 0, 4

--

F160

34

Trip counter

8bits

0, 0, 4

--

F160

35

Starter failure

8bits

0, 0, 4

--

F160

36

Current demand

8bits

0, 0, 4

--

F160

37

kW demand

8bits

0, 0, 4

--

F160

38

kvar demand

8bits

0, 0, 4

--

F160

39

kVA demand

8bits

0, 0, 4

--

F160

40

Analog input 1

8bits

0, 0, 4

--

F160

41

Analog input 2

8bits

0, 0, 4

--

F160

42

Analog input 3

8bits

0, 0, 4

--

F160

43

Analog input 4

8bits

0, 0, 4

--

F160

44

Reverse power

8bits

0, 0, 4

--

F160

45

RTD 1 High

8bits

0, 0, 4

--

F160

46

RTD 2 high

8bits

0, 0, 4

--

F160

47

RTD 3 High

8bits

0, 0, 4

--

F160

48

RTD 4 high

8bits

0, 0, 4

--

F160

49

RTD 5 High

8bits

0, 0, 4

--

F160

50

RTD 6 high

8bits

0, 0, 4

--

F160

51

RTD 7 high

8bits

0, 0, 4

--

F160

52

RTD 8 high

8bits

0, 0, 4

--

F160

53

RTD 9 high

8bits

0, 0, 4

--

F160

54

RTD 10 high

8bits

0, 0, 4

--

F160

55

RTD 11 high

8bits

0, 0, 4

--

F160

56

RTD 12 high

8bits

0, 0, 4

--

F160

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute
11h FREQUENCY

Bytes

Description

Length

Default, Min, Max

Value/Unit Format
Code

1,2 (low,high)

System frequency

16bits

0, 0, 12000

Hz

F3

1,2 (low,high)

Van

16bits

0, 0, 20000

F1

3,4 (low,high)

Vbn

16bits

0, 0, 20000

F1

5,6 (low,high)

Vcn

16bits

0, 0, 20000

F1

7,8 (low,high)

Average phase voltage

16bits

0, 0, 20000

F1

1,2 (low,high)

Learned acceleration time

16bits

0, 0, 2000

F2

3 to 6 (low,high)

Learned starting current

32bits

0, 0, 50000

F9

7,8 (low,high)

Learned starting capacity

16bits

0, 0, 100

F1

9,10 (low,high)

Last acceleration time

16bits

0, 0, 2000

F2

11 to 14 (low,high)

Last starting current

32bits

0, 0, 50000

F9

15,16 (low,high)

Last starting capacity

16bits

0, 0, 100

F1

1,2 (low,high)

Overload lockout block

16bits

0, 0, 500

minutes

F1

3,4 (low,high)

Start inhibit block lockout time

16bits

0, 0, 500

minutes

F1

14h START BLOCKS 5,6 (low,high)

Starts/hour block lockout time

16bits

0, 0, 60

minutes

F1

7,8 (low,high)

Time between starts lockout time

16bits

0, 0, 500

minutes

F1

9,10 (low,high)

Restart block lockout

16bits

0, 0, 50000

F1

1,2 (low,high)

Cause of Last Trip

16bits

0, 0, 49

--

F134

1 to 4 (low,high)

Phase A pre-trip current

32bits

0, 0, 100000

F9

5 to 8 (low,high)

Phase B pre-trip current

32bits

0, 0, 100000

F9

9 to 12 (low,high)

Phase C pre-trip current

32bits

0, 0, 100000

F9

13 to 16 (low,high)

Pre-Trip ground current

32bits

0, 0, 500000

F11

17,18 (low,high)

Phase A pre-trip differential current 16bits

0, 0, 5000

F1

19,20 (low,high)

Phase B pre-trip differential current 16bits

0, 0, 5000

F1

21,22 (low,high)

Phase C pre-trip differential current 16bits

0, 0, 5000

F1

1 to 4 (low,high)

Pre-trip voltage Van

32bits

0, 0, 20000

F9

17h PRE TRIP


5 to 8 (low,high)
PHASE VOLTAGES

Pre-trip voltage Vbn

32bits

0, 0, 20000

F9

9 to 12 (low,high)

Pre-trip voltage Vcn

32bits

0, 0, 20000

F9

1 to 4 (low,high)

Pre-trip voltage Vab

32bits

0, 0, 20000

F9

18h PRE TRIP LINE 5 to 8 (low,high)


VOLTAGES

Pre-trip voltage Vbc

32bits

0, 0, 20000

F9

9 to 12 (low,high)

Pre-trip voltage Vca

32bits

0, 0, 20000

F9

1,2 (low,high)

Pre-trip system frequency

16bits

0, 0, 12000

Hz

F3

1,2 (low,high)

Pre-trip motor load

16bits

0, 0, 2000

FLA

F3

3,4 (low,high)

Pre-trip current unbalance

16bits

0, 0, 100

F1

12h PHASE
VOLTAGES

13h MOTOR
STARTING DATA

15h CAUSE OF
LAST TRIP

16h PRE TRIP


CURRENTS

19h PRE TRIP


SYSTEM
FREQUENCY
1Ah PRE TRIP
MOTOR LOAD &
UNBALANCE

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

139

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute

Bytes
1 to 4 (low,high)

1Dh PRI TRIP


HOTTEST RTD &
TEMPERATURE

1Eh PRE TRIP


MOTOR SPEED

1Fh RTD
MAXIMUMS

140

Length

Default, Min, Max

Value/Unit Format
Code

Pre-trip real power

32bits

0, -50000, 50000

kW

F12

Pre-trip reactive power

32bits

0, -50000, 50000

kvar

F12

Pre-trip apparent power

16bits

0, 0, 50000

kVA

F1

11,12 (low,high)

Pre-trip power factor

16bits

0, -99, 100

--

F21

1 to 4 (low,high)

Analog input #1 pre-trip

32bits

0, -50000, 50000

--

F12

5 to 8 (low,high)

Analog input #2 pre-trip

32bits

0, -50000, 50000

--

F12

9 to 12 (low,high)

Analog input #3 pre-trip

32bits

0, -50000, 50000

--

F12

13 to 16 (low,high)

Analog input #4 pre-trip

32bits

0, -50000, 50000

--

F12

1,2 (low,high)

Hottest stator RTD during trip

16bits

0, 0, 12

--

F1

3,4 (low,high)

Pre-trip temperature of hottest


stator RTD

16bits

0, -50, 250

F4

5,6 (low,high)

Hottest bearing RTD during trip

16bits

0, 0, 12

--

F1

7,8 (low,high)

Pre-trip temperature of hottest


bearing RTD

16bits

0, -50, 250

0C

F4

9,10 (low,high)

Hottest other RTD during trip

16bits

0, 0, 12

--

F1

11,12 (low,high)

Pre-trip temperature of hottest


other RTD

16bits

0, -50, 250

0C

F4

13,14 (low,high)

Hottest ambient RTD during trip

16bits

0, 0, 12

--

F1

15,16 (low,high)

Pre-trip ambient RTD temperature 16bits

0, -50, 250

0C

F4

1,2 (low,high)

Pre-trip tachometer RPM

16bits

0, 0, 3600

RPM

F1

Motor speed during trip

8bits

0, 0, 1

--

F161

Reserved

8bits

N/A

--

N/A

1,2 (low,high)

RTD #1 maximum temperature

16bits

0, -50, 250

0C

F4

3,4 (low,high)

RTD #2 maximum temperature

16bits

0, -50, 250

0C

F4

5,6 (low,high)

RTD #3 maximum temperature

16bits

0, -50, 250

F4

7,8 (low,high)

RTD #4 maximum temperature

16bits

0, -50, 250

F4

9,10 (low,high)

RTD #5 maximum temperature

16bits

0, -50, 250

F4

11,12 (low,high)

RTD #6 maximum temperature

16bits

0, -50, 250

0C

F4

13,14 (low,high)

RTD #7 maximum temperature

16bits

0, -50, 250

0C

F4

15,16 (low,high)

RTD #8 maximum temperature

16bits

0, -50, 250

0C

F4

17,18 (low,high)

RTD #9 maximum temperature

16bits

0, -50, 250

0C

F4

19,20 (low,high)

RTD #10 maximum temperature

16bits

0, -50, 250

0C

F4

21,22 (low,high)

RTD #11 maximum temperature

16bits

0, -50, 250

0C

F4

23,24 (low,high)

RTD #12 maximum temperature

16bits

0, -50, 250

F4

5 to 8 (low,high)
1Bh PRE TRIP
POWER & POWER
FACTOR
9,10 (low,high)

1Ch PRE TRIP


ANALOG INPUT
DATA

Description

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Table 28: Data formats for class B0h, Instance 01h:


Attribute

Description

1 to 4 (low,high)

Analog input 1 minimum

32bits

0, -50000, 50000

--

F12

5 to 8 (low,high)

Analog input 1 maximum

32bits

0, -50000, 50000

--

F12

9 to 12 (low,high)

Analog input 2 minimum

32bits

0, -50000, 50000

--

F12

13 to 16 (low,high)
20h ANALOG
INPUT MAXIMUMS
& MINIMUMS
17 to 20 (low,high)

Analog input 2 maximum

32bits

0, -50000, 50000

--

F12

Analog input 3 minimum

32bits

0, -50000, 50000

--

F12

21 to 24 (low,high)

Analog input 3 maximum

32bits

0, -50000, 50000

--

F12

25 to 28 (low,high)

Analog input 4 minimum

32bits

0, -50000, 50000

--

F12

29 to 32 (low,high)

Analog input 4 maximum

32bits

0, -50000, 50000

--

F12

1,2 (low,high)

Motor thermal capacity used

16bits

0, 0, 100

F1

22h TIME TO TRIP 1 to 4 (low,high)

Time to trip

32bits

1, 1, 99999

F20

23h CONTAIN
ATTRIBUTES 01h to 248bytes
10h

All attributes 01h to 10h together

248bytes

N/A

N/A

N/A

21h MOTOR
THERMAL
CAPACITY USED

Length

Default, Min, Max

Value/Unit Format
Code

Bytes

DeviceNet Data Formats


DeviceNet also uses the same format codes specified in Modbus Memory Map. Consult the
Modbus memory map for additional details on the output messages.
The DeviceNet specific Format codes are as follows:
F160

F161

Unsigned 8 bit integer

ALARM STATUS

0
1
2
3
4

Off
Not Active
Timing Out
Active
Latched

Unsigned 8 bit integer

MOTOR SPEED

Low Speed (Speed 1)

High Speed (Speed 2)

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

141

COMMUNICATIONS GUIDE

F162

F163

Unsigned 16 bit integer

RELAY STATUS

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

Reserved
Reserved
Relay in service
Active trip condition
Active alarm condition
In simulation mode
Motor overloaded
Motor tripped
Motor stopped
Motor starting
Motor running
Overload pickup
Unbalance pickup
Ground pickup
Hot RTD
Loss of load

Unsigned 16 bit integer

INPUT SWITCHES AND OUTPUT RELAY


STATUS

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

Trip
Auxiliary 2
Auxiliary 3
Alarm
Block start
Service
Access switch
Test switch
Starter switch
Emergency restart switch
Remote reset switch
Assignable switch 1
Assignable switch 2
Assignable switch 3
Assignable switch 4
Trip coil

The data type definitions are as follows:

Data type

Description

Range

SSINT

signed short integer 8bit (2s compliment)

128 to 127

USINT

unsigned short integer 8bit

0 to 255

SINT

signed integer 16bit (2s compliment)

32768 to 32767

UINT

unsigned integer 16bit

0 to 65535

SDINT

signed double integer 32bit (2s compliment)

2147483648 to 2147483647

UDINT

unsigned double integer 32bit

0 to 4294967295

The figure below illustrates the bit placement rules associated with the Compact Encoding
of a FixedLengthBitString used in DeviceNet data.

142

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

COMMUNICATIONS GUIDE

Actual representation in device


memory
Byte 1
BYTE

WORD

7------0
LO

Byte 2

Byte 1

Byte 1

15--------------0
HI
Byte 4

DWORD

Byte 1

7------0
HI

Byte 2

7------0

15------8

LO
Byte 1

31------------------------------0
HI

Encoding in DeviceNet

Byte 1

7------0

Byte 2

Byte 3

15------8

Byte 4

23------16

31------24

LO

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

143

COMMUNICATIONS GUIDE

144

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

Index
A
ACCELERATION TIMER ......................................................51
ACTUAL VALUES, READING ................................................ 7
ANALOG INPUT 1 ...............................................................67
ANALOG INPUT 1-2 DIFFERENCE ......................................74
ANALOG INPUT 2 ...............................................................68
ANALOG INPUT 3 ...............................................................69
ANALOG INPUT 3-4 DIFFERENCE ......................................74
ANALOG INPUT 4 ...............................................................69
ANALOG INPUTS .......................................................... 31, 33
ANALOG OUTPUTS .............................................................64
ASSIGNABLE INPUTS .........................................................41
AVERAGE MOTOR LOAD ....................................................32

C
CLEAR DATA ......................................................................40
COMMANDS .......................................................................19
COMMUNICATIONS ............................................................35
CRC-16 .............................................................................2, 3
CURRENT DEMAND ............................................................63
CURRENT METERING .........................................................29
CURRENT SENSING ...........................................................40
CURRENT UNBALANCE ......................................................50
CYCLIC REDUNDANCY CHECK ........................................... 2

D
DATA FORMATS, MEMORY MAP ...................................... 110
DATA FRAME FORMAT ........................................................ 2
DATA PACKET FORMAT ...................................................... 2
DATA RATE ......................................................................... 2
DEFAULT MESSAGES ........................................................37
DEMAND .............................................................................63
DEMAND METERING ..........................................................31
DEVICENET
469 specific objects ......................................................... 132
acknowledge handler object ............................................. 131
assembly object .............................................................. 128
connection object ............................................................ 129
description ...................................................................... 125
DeviceNet object ............................................................. 127
identity object ................................................................. 126
message router object ..................................................... 127
Modbus registers ...............................................................36
DIGITAL COUNTERS ...........................................................44
DIGITAL INPUTS .................................................................29

E
ELECTRICAL INTERFACE .................................................... 1
ERROR CHECKING .............................................................. 2
ERROR RESPONSES ..........................................................12
ETHERNET .........................................................................36
EVENT RECORD

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

memory map locations ...................................................... 15


EVENT RECORDER
memory map locations ...................................................... 15
Modbus registers .............................................................. 75

F
FAULT VALUES .................................................................. 71
FORCE OUTPUT RELAYS .................................................. 47
FORMAT CODES .............................................................. 110

G
GENERAL COUNTERS ....................................................... 34
GENERAL SWITCH A ......................................................... 45
GENERAL SWITCH B ......................................................... 45
GENERAL SWITCH C ......................................................... 46
GENERAL SWITCH D ......................................................... 46
GROUND FAULT ................................................................ 50

I
INSTALLATION ................................................................... 40

J
JOGGING BLOCK ............................................................... 51

L
LAST TRIP DATA ................................................................ 26
LOAD SHED TRIP ............................................................... 42
LOOPBACK TEST ............................................................... 10

M
MECHANICAL JAM ............................................................. 49
MEMORY MAP
description ....................................................................... 13
format codes .................................................................. 110
table ................................................................................ 19
user-definable area........................................................... 13
MEMORY MAP FORMAT CODES ...................................... 110
MEMORY MAP INFORMATION ........................................... 13
MESSAGE SCRATCHPAD .................................................. 37
MODBUS
description ......................................................................... 1
digital input status .............................................................. 5
execute operation ............................................................... 8
function code 01 ................................................................. 5
function code 02 ............................................................. 5, 6
function code 03 ................................................................. 7
function code 04 ................................................................. 7
function code 05 ................................................................. 8
function code 06 ................................................................. 8
function code 07 ................................................................. 9
function code 08 ............................................................... 10
function code 16 ..........................................................10, 11
functions ............................................................................ 5

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

loopback test ....................................................................10


performing commands .......................................................11
read actual values .............................................................. 7
read device status .............................................................. 9
read relay coil .................................................................... 5
read setpoints .................................................................... 7
store multiple setpoints ......................................................10
store single setpoint ........................................................... 8
supported functions ............................................................ 5
MODBUS FORMAT CODES ............................................... 110
MOTOR STARTING .............................................................32
MOTOR STATUS .................................................................25

O
OPEN RTD SENSOR ...........................................................57
OVERLOAD ALARM ............................................................49
OVERLOAD CURVE SETUP ................................................48
OVERTORQUE SETUP ........................................................62
OVERVOLTAGE ..................................................................59

P
PHASE DIFFERENTIAL .......................................................51
PHASE REVERSAL .............................................................60
PHASORS ...........................................................................35
POWER DEMAND ...............................................................63
POWER FACTOR ................................................................60
POWER METERING ............................................................31
POWER SYSTEM ................................................................41
PREFAULT VALUES ............................................................70
PRESSURE SWITCH ALARM ...............................................44
PRESSURE SWITCH TRIP ..................................................44
PULSE OUTPUT ..................................................................63

R
REACTIVE POWER .............................................................61
REAL TIME CLOCK ....................................................... 29, 37
REDUCED VOLTAGE ..........................................................41
RELAY RESET MODE .........................................................47
REMOTE ALARM .................................................................42
REMOTE TRIP ....................................................................42
RESTART BLOCK ...............................................................52
REVERSE POWER ..............................................................61
REVISION ...........................................................................19
RS232 .................................................................................. 1
RS485 .................................................................................. 1
RTD #1 ...............................................................................52
RTD #10 ..............................................................................56
RTD #11 ..............................................................................56
RTD #12 ..............................................................................57
RTD #2 ...............................................................................52
RTD #3 ...............................................................................53
RTD #4 ...............................................................................53
RTD #5 ...............................................................................54
RTD #6 ...............................................................................54
RTD #7 ...............................................................................55
RTD #8 ...............................................................................55
RTD #9 ...............................................................................56
RTD HIGH ALARMS ............................................................58
RTD MAXIMUMS .................................................................32
RTD SHORT/LOW TEMPERATURE ......................................58
RTD TYPES ........................................................................52

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

S
SERIAL COMMUNICATIONS CONTROL .............................. 41
SERIAL PORTS .................................................................. 36
SHORT CIRCUIT TRIP ........................................................ 49
SIMULATION MODE ........................................................... 70
SPEED ............................................................................... 31
SPEED 2 ACCELERATION .................................................. 73
SPEED 2 OVERLOAD SETUP ............................................. 72
SPEED 2 UNDERCURRENT ................................................ 73
SPEED SWITCH TRIP ......................................................... 42
START BLOCKS ................................................................. 28
START INHIBIT .................................................................. 51
STARTER FAILURE ............................................................ 62
STARTER STATUS ............................................................. 41
STATUS SETPOINTS .......................................................... 27
SUPPORTED MODBUS FUNCTIONS .................................... 5
SYSTEM STATUS ............................................................... 26

T
TACHOMETER ................................................................... 45
TEMPERATURE ................................................................. 29
TEST ANALOG OUTPUTS .................................................. 72
TEST OUTPUT RELAYS ..................................................... 72
THERMAL MODEL .............................................................. 47
TIMERS .............................................................................. 34
TIMING ................................................................................. 4
TORQUE SETUP ................................................................ 62
TRACE MEMORY ............................................................... 76
TRIP COUNTER ................................................................. 62
TRIP COUNTERS ............................................................... 33

U
UNDERCURRENT ............................................................... 50
UNDERPOWER .................................................................. 61
UNDERVOLTAGE ............................................................... 59
USER DEFINABLE MEMORY MAP ...................................... 13
USER MAP ......................................................................... 19

V
VIBRATION SWITCH ALARM .............................................. 44
VIBRATION SWITCH TRIP .................................................. 44
VOLTAGE FREQUENCY ..................................................... 60
VOLTAGE SENSING ........................................................... 40

W
WAVEFORM CAPTURE ...................................................... 15

469 MOTOR MANAGEMENT RELAY COMMUNICATIONS GUIDE

Anda mungkin juga menyukai