Sei sulla pagina 1di 224

GE

Digital Energy

C90Plus
Automation Logic Controller
Communications Guide

Product version: 1.9x


GE publication code: 1601-9040-F3 (GEK-113467C)

S T ER
GI
ED
RE

ISO 9001
G

E
IN

M U LT I L

1601-9040-F3
Copyright © 2015 GE Multilin Inc. All rights reserved.
C90Plus Controller Communications Guide for version 1.9x.
C90Plus, EnerVista, EnerVista Launchpad, EnerVista URPlus Setup, FlexLogic, FlexMatrix,
FlexAnalog, Digital Energy, Multilin, and GE Multilin are trademarks or registered
trademarks of GE Multilin Inc.
The contents of this manual are the property of GE Multilin Inc. This documentation is
furnished on license and may not be reproduced in whole or in part without the permission
of GE Multilin. The content of this manual is for informational use only and is subject to
change without notice.
Part number: 1601-9040-F3 (July 2015)
C90Plus Controller

Table of contents

1 INTRODUCTION Safety symbols and definitions.................................................................................... 1


For further assistance ...................................................................................................1

2 MODBUS Modbus protocol overview ...........................................................................................3


COMMUNICATION Physical layer....................................................................................................................................................3
Data link layer ..................................................................................................................................................4
CRC-16 algorithm ...........................................................................................................................................4
Modbus function codes .................................................................................................5
Read actual values ........................................................................................................................................5
Execute command.........................................................................................................................................6
Exception responses.....................................................................................................................................7
Modbus settings .............................................................................................................8
Modbus protocol.............................................................................................................................................8
Modbus user map ..........................................................................................................................................8
Modbus memory map....................................................................................................9

3 DNP DNP device profile ..................................................................................................... 199


COMMUNICATION DNP v3.00 device profile document ................................................................................................ 199
DNP v3.00 implementation document........................................................................................... 201
DNP protocol settings............................................................................................................................. 210
DNP points .................................................................................................................. 214
Binary input points................................................................................................................................... 214
Binary and control relay output points .......................................................................................... 214
Binary and frozen counter points ..................................................................................................... 215
Analog input points ................................................................................................................................. 216
DNP user point list settings.................................................................................................................. 216

INDEX

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE iii


TABLE OF CONTENTS

iv C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


C90Plus Controller

Chapter 1: Introduction

Introduction

This document outlines the communications protocols for the C90Plus Controller. It is
intended for customers who need detailed knowledge of the C90Plus implementation of the
communications protocols, for example to design a client or to troubleshoot an
interoperability issue. Use this guide with the Instruction Manual for the product.
This chapter outlines safety and technical support information.

Safety symbols and definitions


Before attempting to install or use the device, review all safety indicators in this document
to help prevent injury, equipment damage, or downtime.
The following safety and equipment symbols are used in this document.
Indicates a hazardous situation which, if not avoided, will result in death or serious
DANGER injury.

Indicates a hazardous situation which, if not avoided, could result in death or serious
WARNING injury.

Indicates a hazardous situation which, if not avoided, could result in minor or


CAUTION moderate injury.

Indicates practices not related to personal injury.


NOTICE

For further assistance


For product support, contact the information and call center as follows:
GE Digital Energy
650 Markland Street
Markham, Ontario
Canada L6C 0M1
Worldwide telephone: +1 905 927 7070

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 1


FOR FURTHER ASSISTANCE CHAPTER 1: INTRODUCTION

Europe/Middle East/Africa telephone: +34 94 485 88 54


North America toll-free: 1 800 547 8629
Fax: +1 905 927 5098
Worldwide e-mail: multilin.tech@ge.com
Europe e-mail: multilin.tech.euro@ge.com
Website: http://www.gedigitalenergy.com/multilin

2 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


C90Plus Controller

Chapter 2: Modbus communication

Modbus communication

This chapter outlines the Modbus protocol. Use the memory map at the end of the chapter
when designing a client to access the C90Plus device using Modbus.

Modbus protocol overview


Modbus is a standard protocol for communication among devices. Modbus is available via
serial links (Modbus remote terminal unit, or RTU) or Ethernet (Modbus/TCP). The C90Plus
supports Modbus RTU.
The C90Plus acts as a slave device. It listens and responds to requests issued by a master
computer. It never initiates communications.
The following description is intended for users who want to develop their own
communication drivers and applies to the serial Modbus RTU protocol.

Physical layer
The Modbus RTU protocol is hardware-independent, allowing the physical layer to be any
standard hardware configuration. The C90Plus includes a front USB port and rear
communications ports that can be configured as RS485, 10/100Base-T, or 100Base-F.
Data flow is auto-negotiated to half-duplex or full-duplex in all configurations.
Each data byte is transmitted in an asynchronous format consisting of one start bit, eight
data bits, one stop bit, and possibly one parity bit. This produces a 10 or 11-bit data frame.
This can be important for transmission through modems at high bit rates (11 bit data
frames are not supported by many modems at baud rates greater than 300).
The baud rate and parity are programmable independently for each communications port.
Baud rates of 300, 1200, 2400, 4800, 9600, 14400, 19200, 28800, 33600, 38400, 57600, or
115200 bps are available. Even, odd, and no parity are available.
The master device in any system must know the address of the slave device for
communication. The relay does not act on a request from a master if the address in the
request does not match the relay slave address, unless the address is the broadcast
address.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 3


MODBUS PROTOCOL OVERVIEW CHAPTER 2: MODBUS COMMUNICATION

Data link layer


Communication takes place in packets that are groups of asynchronously framed byte
data. The master transmits a packet to the slave and the slave responds with a packet. The
end of a packet is marked by dead-time on the communications line. The table shows the
general format for both transmit and receive packets.
Table 1: Modbus packet format
Description Size
Slave address 1 byte
Function code 1 byte
Data 1 or more bytes
CRC 2 bytes
Dead time 3.5 bytes transmission time

The slave address indicates the address of the slave device intended to receive the packet
sent by the master and to perform the required action. Each slave device on a
communications bus must have a unique address to prevent bus contention. The C90Plus
slave address is programmable from 1 to 254. Only the slave addressed responds to a
packet that starts with its address. Note that the faceplate USB port is an exception to this
rule; it acts on a message containing any slave address.
A master transmit packet with slave address 0 indicates a broadcast command. All slaves
on the communication link take action based on the packet, but none respond to the
master. Broadcast mode is only recognized when associated with function code 05h. For
any other function code, a packet with broadcast mode slave address 0 is ignored.
The function code tells the slave which action to perform. An exception response from the
slave is indicated by setting the high order bit of the function code in the response packet.
The data format is a variable number of bytes depending on the function code. This can
include actual values or addresses sent by the master to the slave or by the slave to the
master.
The CRC is a two-byte error checking code. Modbus RTU includes a 16-bit cyclic
redundancy check (CRC-16) with every packet. This is an industry standard method used
for error detection. If a Modbus slave device receives a packet in which an error is
indicated by the CRC, the slave device does not act upon or respond to the packet. This
prevents erroneous operations.
A packet is terminated when no data is received for a period of 3.5 byte transmission times
(about 15 ms at 2400 bps, 2 ms at 19200 bps, and 300 µs at 115200 bps). Consequently,
the transmitting device must not allow gaps between bytes longer than this interval. Once
the dead time has expired without a new byte transmission, all slaves start listening for a
new packet from the master except for the addressed slave.

CRC-16 algorithm
The 16-bit cyclic redundancy check (CRC-16) algorithm treats the entire data stream (data
bits only; start, stop, and parity ignored) as one continuous binary number. This number is
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 packet, MSByte first. The
resulting packet including CRC, when divided by the same polynomial at the receiver, gives
a zero remainder if no transmission errors have occurred. This algorithm requires the
characteristic polynomial to be reverse-bit ordered. The most significant bit of the
characteristic polynomial is dropped, since it does not affect the value of the remainder.
A C programming language implementation of the CRC algorithm is provided upon
request. The algorithm is as follows:

4 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS FUNCTION CODES

1. FFFF (hex) --> A


2. 0 --> i
3. 0 --> j
4. Di (+) Alow --> Alow
5. j + 1 --> j
6. shr (A)
7. Is there a carry?
If No: go to 8;
If Yes: G (+) A --> A and continue
8. Is j = 8?
If No: go to 5;
If Yes: continue
9. i + 1 --> i
10.Is i = N?
If No: go to 3;
If Yes: continue
11. A --> CRC
where
--> is data transfer
A is 16-bit working register
Alow is low order byte of A
Ahigh is high order byte of A
CRC is 16-bit CRC-16 result
i, j are loop counters
(+) is logical exclusive-OR operator
N is total number of data bytes
Di is the i-th data byte (i = 0 to N – 1)
G is 16-bit characteristic polynomial = 1010000000000001 (binary) with MSbit dropped and
bit order reversed
shr (x) is 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)

Modbus function codes


While the Modbus protocol defines function codes from 1 to 127, only a small subset
generally is needed. The table outlines the functions supported by the C90Plus.
Table 2: Modbus function codes supported
Function code Modbus definition GE Digital Energy definition
Hex Decimal
03 3 Read holding registers Read actual values
04 4 Read input registers Read actual values
05 5 Force single coil Execute command

Read actual values


The read actual values function codes (04h) allow the master to read one or more
consecutive data registers (actual values) from a C90Plus device. Data registers are always
16-bit (two-byte) values transmitted with the high-order byte first. The maximum number
of registers that can be read in a single packet is 125. See the Modbus Memory Map table
for details on the data registers.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 5


MODBUS FUNCTION CODES CHAPTER 2: MODBUS COMMUNICATION

The following tables show the format of the master and slave packets. The example shows
a master device requesting three register values starting at address 4050h from slave
device 11h (17 decimal); the slave device responds with the values 40, 300, and 0 from
registers 4050h, 4051h, and 4052h, respectively.
Table 3: Master transmission packet example, function code 04h
Packet format Example (hex)
Slave address 11
Function code 04
Data starting address - high order byte 40
Data starting address - low order byte 50
Number of registers - high order byte 00
Number of registers - low order byte 03
CRC - low order byte A7
CRC - high order byte 4A

Table 4: Slave response packet example, function code 04h


Packet format Example (hex)
Slave address 11
Function code 04
Byte count 06
Data byte 1 - high order byte 00
Data byte 1 - low order byte 28
Data byte 2 - high order byte 01
Data byte 2 - low order byte 2C
Data byte 3 - high order byte 00
Data byte 3 - low order byte 00
CRC - low order byte 0D
CRC - high order byte 60

Execute command
The execute command function allows the master to perform operations in the relay. The
following table outlines the operations available.
Table 5: Summary of operation codes for function 05h
Operation code Definition Description
0000h NO OPERATION Does not do anything
0001h RESET Performs the same function as the Reset command
0005h CLEAR EVENT RECORDS Performs the same function as the Clear Event
Records command
0006h CLEAR OSCILLOGRAPHY Clears all oscillography records
1000h to 103Fh VIRTUAL IN 1 to 64 ON/OFF Sets the states of virtual inputs 1 to 64 either “ON”
or “OFF”

The following tables illustrate the format of the master and slave packets for function code
05h. The example shows a master device requesting the slave device 11h (17 decimal) to
perform a reset. The high and low code value bytes always have the values “FF” and “00”
respectively and are a remnant of the original Modbus definition of this function code.

6 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS FUNCTION CODES

Table 6: Master transmission packet example, function code 05h


Packet format Example (hex)
Slave address 11
Function code 05
Operation code - high order byte 00
Operation code - low order byte 01
Code value - high order byte FF
Code value - low order byte 00
CRC - low order byte DF
CRC - high order byte 6A

Table 7: Slave response packet example, function code 05h


Packet format Example (hex)
Slave address 11
Function code 05
Operation code - high order byte 00
Operation code - low order byte 01
Code value - high order byte FF
Code value - low order byte 00
CRC - low order byte DF
CRC - high order byte 6A

Exception responses
Operation errors usually occur because of illegal data in a packet. These errors result in an
exception response from the slave. The slave detecting one of these errors sends a
response packet to the master with the high order bit of the function code set to 1.
The following tables illustrate the format of the master and slave packets for an exception
response. The example shows a master device sending the unsupported function code
39h to slave device 11.
Table 8: Exception response packet example, transmission
Packet format Example (hex)
Slave address 11
Function code 39
CRC - low order byte CD
CRC - high order byte F2

Table 9: Exception response packet example, reception


Packet format Example (hex)
Slave address 11
Function code B9
Error code 01
CRC - low order byte 93
CRC - high order byte 95

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 7


MODBUS SETTINGS CHAPTER 2: MODBUS COMMUNICATION

Modbus settings
This section outlines configuration settings from the instruction manual.

Modbus protocol
The Modbus server can simultaneously support one client over serial RS485 and four
clients over Ethernet. The server is capable of reporting any indication or measurement
and operating any output present in the device. A user-configurable input and output map
also is implemented.
The C90Plus operates as a Modbus slave device only.
In the EnerVista software, select the Settings > Communications > Modbus > Protocol
menu to open the Modbus protocol configuration window.
Figure 1: Modbus protocol configuration settings

The following settings are available.


Modbus Slave Address
Range: 1 to 254 in steps of 1
Default: 254
This setting specifies the Modbus slave address for the C90Plus. Each device must have a
unique address from 1 to 254. Address 0 and addresses from 248 and up are reserved by
the Modbus protocol specification, and so their use here is not recommended. Address 0
is the broadcast address to which all Modbus slave devices listen. Addresses do not have
to be sequential, but no two devices can have the same address or conflicts resulting in
errors occur. Generally, starting at 1, set each device added to the link to the next higher
address.
Modbus TCP Port Number
Range: 1 to 65535 in steps of 1
Default: 502
Modbus over TCP/IP can also be used on any of the Ethernet ports. This setting specifies
the Modbus TCP port number for Ethernet communications. Power to the C90Plus must
be cycled for changes to this setting to take effect.
Do not set more than one protocol to the same TCP/UDP port number, as this results in
unreliable operation of those protocols.
NOTE

Modbus user map


The Modbus user map provides read-only access for up to 256 registers. To obtain a
memory map value, enter the address in the Parameter field (this value must be converted
from hexadecimal to decimal format). The corresponding value (if programmed) displays in
the Value field. A value of “0” in subsequent register Address lines automatically returns

8 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

values for the previous Address lines incremented by 1. An address value of “0” in the initial
register means "none" and values of “0” displays for all registers. Different address values
can be entered as required in any of the register positions.
Select the Settings > Communications > Modbus > User Map menu to open the Modbus
user map configuration window.
Figure 2: Modbus user map configuration settings

The following settings are available for each of the 256 registers.
Modbus Type
Range: None, Settings, Actuals
Default: None
This setting indicates if the Modbus user map address represents a setting or an actual
value.
Parameter
Range: Modbus memory map address in decimal representation
Default: 0
This setting represents the value of the programmed Modbus memory map address.

Modbus memory map


The table outlines the user-accessible features of the C90Plus Modbus memory map. Those
present depend on order code.
The memory map is also viewable in a web browser. In the browser, enter the IP address of
the C90Plus.
The memory map is also provided as a .ini file. See the SYS_ModbusMemoryMap.ini file
provided on the CD.
See the Modbus data formats section that follows for details on the Format codes for each
register, for example F001.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 9


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Table 10: Modbus memory mapModbus data formats


Address Description Range Units Step Format Default
Product Information (Read Only)
0000 UR Product Type 0 to 65535 --- 1 F001 0
0002 Product Version 0 to 655.35 --- 0.01 F001 110
Product Information (Read Only - Written by Factory)
0010 Serial Number --- --- --- F203 “0”
0020 Manufacturing Date 0 to 4294967295 --- 1 F050 0
0022 Modification Number 0 to 65535 --- 1 F001 0
Product Information (Read Only Non-Volatile)
0023 Operating Time 0 to 4294967295 --- 1 F050 0
Product Information (Read Only - Written by Factory)
0040 Order Code --- --- --- F204 “Order Code
x”
0090 Ethernet MAC Address --- --- --- F072 0
0093 Reserved (13 items) --- --- --- F001 0
Communications Actual Values (Read Only)
0128 Modbus Available TCP/IP Connections 0 to 65535 --- --- F001 0
0129 MMS Available TCP/IP Connections 0 to 65535 --- --- F001 0
012A PMU Available TCP/IP Connections 0 to 65535 --- --- F001 0
012B IEC Available TCP/IP Connections 0 to 65535 --- --- F001 0
012C DNP Available TCP/IP Connections 0 to 65535 --- --- F001 0
0130 Port 1 Ethernet Actual Mode 0 to 2 --- 1 F192 0 (10/100
BASE-TX)
0131 Port 1 Ethernet Duplex 0 to 1 --- 1 F171 0 (Half
Duplex)
0132 Port 1 Ethernet Speed 0 to 1 --- 1 F170 0 (10 Mps)
0133 Port 1 Ethernet Link Status 0 to 1 --- 1 F155 0 (Offline)
0134 Port 2 Ethernet Actual Mode 0 to 2 --- 1 F192 0 (10/100
BASE-TX)
0135 Port 2 Ethernet Duplex 0 to 1 --- 1 F171 0 (Half
Duplex)
0136 Port 2 Ethernet Speed 0 to 1 --- 1 F170 0 (10 Mps)
0137 Port 2 Ethernet Link Status 0 to 1 --- 1 F155 0 (Offline)
0138 Port 3 Ethernet Actual Mode 0 to 2 --- 1 F192 0 (10/100
BASE-TX)
0139 Port 3 Ethernet Duplex 0 to 1 --- 1 F171 0 (Half
Duplex)
013A Port 3 Ethernet Speed 0 to 1 --- 1 F170 0 (10 Mps)
013B Port 3 Ethernet Link Status 0 to 1 --- 1 F155 0 (Offline)
013C Configure IP Network Status 0 to 19 --- 1 F173 0 (OK)
013D Active Port 1 IP Address 0 to 4294967295 --- 1 F003 0
013F Active Port 1 IP Subnet Mask 0 to 4294967295 --- 1 F003 0
0141 Active Port 1 Gateway IP Address 0 to 4294967295 --- 1 F003 0
0143 Active Port 2 IP Address 0 to 4294967295 --- 1 F003 0
0145 Active Port 2 IP Subnet Mask 0 to 4294967295 --- 1 F003 0
0147 Active Port 2 Gateway IP Address 0 to 4294967295 --- 1 F003 0
0149 Active Port 3 IP Address 0 to 4294967295 --- 1 F003 0
014B Active Port 3 IP Subnet Mask 0 to 4294967295 --- 1 F003 0
014D Active Port 3 Gateway IP Address 0 to 4294967295 --- 1 F003 0

10 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


014F IEC Protocol Function 0 to 1 --- 1 F126 0 (No)
0150 IEC 61850 Available 0 to 1 --- 1 F126 0 (No)
Settings Notification (Read/Write)
0150 Settings Notification Function 0 to 3 --- 1 F010 3 (N_IDLE)
Settings Notification Actual Values (Read Only)
0151 Settings Notification in Progress 0 to 3 --- 1 F010 0 (N_Clear)
0152 Settings Notification Status 0 to 2 --- 1 F134 0 (N/A)
0153 Settings Notification Load Diagram 0 to 1 --- 1 F102 0 (Disabled)
Settings Notification Commands (Read/Write Command)
0154 Settings Notification Diagram Acknowledge 0 to 2 1 F134 0 (N/A)
Virtual Input Commands (Read/Write Commands) (64 Modules)
0400 Virtual Input 1 Command 0 to 1 --- 1 F108 0 (Off)
0401 Virtual Input 2 Command 0 to 1 --- 1 F108 0 (Off)
0402 Virtual Input 3 Commands 0 to 1 --- 1 F108 0 (Off)
0403 Virtual Input 4 Commands 0 to 1 --- 1 F108 0 (Off)
0404 Virtual Input 5 Commands 0 to 1 --- 1 F108 0 (Off)
0405 Virtual Input 6 Commands 0 to 1 --- 1 F108 0 (Off)
0406 Virtual Input 7 Commands 0 to 1 --- 1 F108 0 (Off)
0407 Virtual Input 8 Commands 0 to 1 --- 1 F108 0 (Off)
0408 Virtual Input 9 Commands 0 to 1 --- 1 F108 0 (Off)
0409 Virtual Input 10 Commands 0 to 1 --- 1 F108 0 (Off)
040A Virtual Input 11 Commands 0 to 1 --- 1 F108 0 (Off)
040B Virtual Input 12 Commands 0 to 1 --- 1 F108 0 (Off)
040C Virtual Input 13 Commands 0 to 1 --- 1 F108 0 (Off)
040D Virtual Input 14 Commands 0 to 1 --- 1 F108 0 (Off)
040E Virtual Input 15 Commands 0 to 1 --- 1 F108 0 (Off)
040F Virtual Input 16 Commands 0 to 1 --- 1 F108 0 (Off)
0410 Virtual Input 17 Commands 0 to 1 --- 1 F108 0 (Off)
0411 Virtual Input 18 Commands 0 to 1 --- 1 F108 0 (Off)
0412 Virtual Input 19 Commands 0 to 1 --- 1 F108 0 (Off)
0413 Virtual Input 20 Commands 0 to 1 --- 1 F108 0 (Off)
0414 Virtual Input 21 Commands 0 to 1 --- 1 F108 0 (Off)
0415 Virtual Input 22 Commands 0 to 1 --- 1 F108 0 (Off)
0416 Virtual Input 23 Commands 0 to 1 --- 1 F108 0 (Off)
0417 Virtual Input 24 Commands 0 to 1 --- 1 F108 0 (Off)
0418 Virtual Input 25 Commands 0 to 1 --- 1 F108 0 (Off)
0419 Virtual Input 26 Commands 0 to 1 --- 1 F108 0 (Off)
041A Virtual Input 27 Commands 0 to 1 --- 1 F108 0 (Off)
041B Virtual Input 28 Commands 0 to 1 --- 1 F108 0 (Off)
041C Virtual Input 29 Commands 0 to 1 --- 1 F108 0 (Off)
041D Virtual Input 30 Commands 0 to 1 --- 1 F108 0 (Off)
041E Virtual Input 31 Commands 0 to 1 --- 1 F108 0 (Off)
041F Virtual Input 32 Commands 0 to 1 --- 1 F108 0 (Off)
0420 Virtual Input 33 Commands 0 to 1 --- 1 F108 0 (Off)
0421 Virtual Input 34 Commands 0 to 1 --- 1 F108 0 (Off)
0422 Virtual Input 35 Commands 0 to 1 --- 1 F108 0 (Off)
0423 Virtual Input 36 Commands 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 11


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


0424 Virtual Input 37 Commands 0 to 1 --- 1 F108 0 (Off)
0425 Virtual Input 38 Commands 0 to 1 --- 1 F108 0 (Off)
0426 Virtual Input 39 Commands 0 to 1 --- 1 F108 0 (Off)
0427 Virtual Input 40 Commands 0 to 1 --- 1 F108 0 (Off)
0428 Virtual Input 41 Commands 0 to 1 --- 1 F108 0 (Off)
0429 Virtual Input 42 Commands 0 to 1 --- 1 F108 0 (Off)
042A Virtual Input 43 Commands 0 to 1 --- 1 F108 0 (Off)
042B Virtual Input 44 Commands 0 to 1 --- 1 F108 0 (Off)
042C Virtual Input 45 Commands 0 to 1 --- 1 F108 0 (Off)
042D Virtual Input 46 Commands 0 to 1 --- 1 F108 0 (Off)
042E Virtual Input 47 Commands 0 to 1 --- 1 F108 0 (Off)
042F Virtual Input 48 Commands 0 to 1 --- 1 F108 0 (Off)
0430 Virtual Input 49 Commands 0 to 1 --- 1 F108 0 (Off)
0431 Virtual Input 50 Commands 0 to 1 --- 1 F108 0 (Off)
0432 Virtual Input 51 Commands 0 to 1 --- 1 F108 0 (Off)
0433 Virtual Input 52 Commands 0 to 1 --- 1 F108 0 (Off)
0434 Virtual Input 53 Commands 0 to 1 --- 1 F108 0 (Off)
0435 Virtual Input 54 Commands 0 to 1 --- 1 F108 0 (Off)
0436 Virtual Input 55 Commands 0 to 1 --- 1 F108 0 (Off)
0437 Virtual Input 56 Commands 0 to 1 --- 1 F108 0 (Off)
0438 Virtual Input 57 Commands 0 to 1 --- 1 F108 0 (Off)
0439 Virtual Input 58 Commands 0 to 1 --- 1 F108 0 (Off)
043A Virtual Input 59 Commands 0 to 1 --- 1 F108 0 (Off)
043B Virtual Input 60 Commands 0 to 1 --- 1 F108 0 (Off)
043C Virtual Input 61 Commands 0 to 1 --- 1 F108 0 (Off)
043D Virtual Input 62 Commands 0 to 1 --- 1 F108 0 (Off)
043E Virtual Input 63 Commands 0 to 1 --- 1 F108 0 (Off)
043F Virtual Input 64 Commands 0 to 1 --- 1 F108 0 (Off)
Breaker Actual Values (Read Only) (6 Modules)
06B0 Breaker 1 SCADA AddCause 0 to 65535 --- 1 F500 0
06B1 Breaker 1 HMI AddCause 0 to 65535 --- 1 F500 0
06B8 ...Repeated for Breaker 2
06C0 ...Repeated for Breaker 3
06C8 ...Repeated for Breaker 4
06D0 ...Repeated for Breaker 5
06D8 ...Repeated for Breaker 6
Breaker Actual Values (Read Only Non-Volatile States) (6 Modules)
06B2 Breaker 1 Operations A 0 to 4294967295 --- 1 F003 0
06B4 Breaker 1 Operations B 0 to 4294967295 --- 1 F003 0
06B6 Breaker 1 Operations C 0 to 4294967295 --- 1 F003 0
06BA Breaker 2 Operations A 0 to 4294967295 --- 1 F003 0
06BC Breaker 2 Operations B 0 to 4294967295 --- 1 F003 0
06BE Breaker 2 Operations C 0 to 4294967295 --- 1 F003 0
06C2 Breaker 3 Operations A 0 to 4294967295 --- 1 F003 0
06C4 Breaker 3 Operations B 0 to 4294967295 --- 1 F003 0
06C6 Breaker 3 Operations C 0 to 4294967295 --- 1 F003 0
06CA Breaker 4 Operations A 0 to 4294967295 --- 1 F003 0

12 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


06CC Breaker 4 Operations B 0 to 4294967295 --- 1 F003 0
06CE Breaker 4 Operations C 0 to 4294967295 --- 1 F003 0
06D2 Breaker 5 Operations A 0 to 4294967295 --- 1 F003 0
06D4 Breaker 5 Operations B 0 to 4294967295 --- 1 F003 0
06D6 Breaker 5 Operations C 0 to 4294967295 --- 1 F003 0
06DA Breaker 6 Operations A 0 to 4294967295 --- 1 F003 0
06DC Breaker 6 Operations B 0 to 4294967295 --- 1 F003 0
06DE Breaker 6 Operations C 0 to 4294967295 --- 1 F003 0
Breaker Commands (Read/Write Command) (6 Modules)
06E0 Breaker 1 SCADA Command 0 to 15 --- 1 F107 0 (None)
06E1 Breaker 1 HMI Command 0 to 15 --- 1 F107 0 (None)
06E2 ...Repeated for Breaker 2
06E4 ...Repeated for Breaker 3
06E6 ...Repeated for Breaker 4
06E8 ...Repeated for Breaker 5
06EA ...Repeated for Breaker 6
Disconnect Actual Values (Read Only) (30 Modules)
06F0 Disconnect 1 SCADA AddCause 0 to 65535 --- 1 F500 0
06F1 Disconnect 1 HMI AddCause 0 to 65535 --- 1 F500 0
06F4 ...Repeated for Disconnect 2
06F8 ...Repeated for Disconnect 3
06FC ...Repeated for Disconnect 4
0700 ...Repeated for Disconnect 5
0704 ...Repeated for Disconnect 6
0708 ...Repeated for Disconnect 7
070C ...Repeated for Disconnect 8
0710 ...Repeated for Disconnect 9
0714 ...Repeated for Disconnect 10
0718 ...Repeated for Disconnect 11
071C ...Repeated for Disconnect 12
0720 ...Repeated for Disconnect 13
0724 ...Repeated for Disconnect 14
0728 ...Repeated for Disconnect 15
072C ...Repeated for Disconnect 16
0730 ...Repeated for Disconnect 17
0734 ...Repeated for Disconnect 18
0738 ...Repeated for Disconnect 19
073C ...Repeated for Disconnect 20
0740 ...Repeated for Disconnect 21
0744 ...Repeated for Disconnect 22
0748 ...Repeated for Disconnect 23
074C ...Repeated for Disconnect 24
0750 ...Repeated for Disconnect 25
0754 ...Repeated for Disconnect 26
0758 ...Repeated for Disconnect 27
075C ...Repeated for Disconnect 28
0760 ...Repeated for Disconnect 29

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 13


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


0764 ...Repeated for Disconnect 30
Disconnect Operations Actual Values (Read Only Non-Volatile States) (30 Modules)
06F2 Disconnect 1 Operations 0 to 4294967295 --- 1 F003 0
06F6 Disconnect 2 Operations 0 to 4294967295 --- 1 F003 0
06FA Disconnect 3 Operations 0 to 4294967295 --- 1 F003 0
06FE Disconnect 4 Operations 0 to 4294967295 --- 1 F003 0
0702 Disconnect 5 Operations 0 to 4294967295 --- 1 F003 0
0706 Disconnect 6 Operations 0 to 4294967295 --- 1 F003 0
070A Disconnect 7 Operations 0 to 4294967295 --- 1 F003 0
070E Disconnect 8 Operations 0 to 4294967295 --- 1 F003 0
0712 Disconnect 9 Operations 0 to 4294967295 --- 1 F003 0
0716 Disconnect 10 Operations 0 to 4294967295 --- 1 F003 0
071A Disconnect 11 Operations 0 to 4294967295 --- 1 F003 0
071E Disconnect 12 Operations 0 to 4294967295 --- 1 F003 0
0722 Disconnect 13 Operations 0 to 4294967295 --- 1 F003 0
0726 Disconnect 14 Operations 0 to 4294967295 --- 1 F003 0
072A Disconnect 15 Operations 0 to 4294967295 --- 1 F003 0
072E Disconnect 16 Operations 0 to 4294967295 --- 1 F003 0
0732 Disconnect 17 Operations 0 to 4294967295 --- 1 F003 0
0736 Disconnect 18 Operations 0 to 4294967295 --- 1 F003 0
073A Disconnect 19 Operations 0 to 4294967295 --- 1 F003 0
073E Disconnect 20 Operations 0 to 4294967295 --- 1 F003 0
0742 Disconnect 21 Operations 0 to 4294967295 --- 1 F003 0
0746 Disconnect 22 Operations 0 to 4294967295 --- 1 F003 0
074A Disconnect 23 Operations 0 to 4294967295 --- 1 F003 0
074E Disconnect 24 Operations 0 to 4294967295 --- 1 F003 0
0752 Disconnect 25 Operations 0 to 4294967295 --- 1 F003 0
0756 Disconnect 26 Operations 0 to 4294967295 --- 1 F003 0
075A Disconnect 27 Operations 0 to 4294967295 --- 1 F003 0
075E Disconnect 28 Operations 0 to 4294967295 --- 1 F003 0
0762 Disconnect 29 Operations 0 to 4294967295 --- 1 F003 0
0766 Disconnect 30 Operations 0 to 4294967295 --- 1 F003 0
Disconnect SCADA Commands (Read/Write Commands) (30 Modules)
0770 Disconnect 1 SCADA Command 0 to 15 --- 1 F107 0 (None)
0771 Disconnect 1 HMI Command 0 to 15 --- 1 F107 0 (None)
0772 ...Repeated for Disconnect 2
0774 ...Repeated for Disconnect 3
0776 ...Repeated for Disconnect 4
0778 ...Repeated for Disconnect 5
077A ...Repeated for Disconnect 6
077C ...Repeated for Disconnect 7
077E ...Repeated for Disconnect 8
0780 ...Repeated for Disconnect 9
0782 ...Repeated for Disconnect 10
0784 ...Repeated for Disconnect 11
0786 ...Repeated for Disconnect 12
0788 ...Repeated for Disconnect 13

14 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


078A ...Repeated for Disconnect 14 0 to 15 --- 1 F107 0 (None)
078C ...Repeated for Disconnect 15 0 to 15 --- 1 F107 0 (None)
078E ...Repeated for Disconnect 16 0 to 15 --- 1 F107 0 (None)
0790 ...Repeated for Disconnect 17 0 to 15 --- 1 F107 0 (None)
0792 ...Repeated for Disconnect 18 0 to 15 --- 1 F107 0 (None)
0794 ...Repeated for Disconnect 19 0 to 15 --- 1 F107 0 (None)
0796 ...Repeated for Disconnect 20 0 to 15 --- 1 F107 0 (None)
0798 ...Repeated for Disconnect 21 0 to 15 --- 1 F107 0 (None)
079A ...Repeated for Disconnect 22 0 to 15 --- 1 F107 0 (None)
079C ...Repeated for Disconnect 23 0 to 15 --- 1 F107 0 (None)
079E ...Repeated for Disconnect 24 0 to 15 --- 1 F107 0 (None)
07A0 ...Repeated for Disconnect 25 0 to 15 --- 1 F107 0 (None)
07A2 ...Repeated for Disconnect 26 0 to 15 --- 1 F107 0 (None)
07A4 ...Repeated for Disconnect 27 0 to 15 --- 1 F107 0 (None)
07A6 ...Repeated for Disconnect 28 0 to 15 --- 1 F107 0 (None)
07A8 ...Repeated for Disconnect 29 0 to 15 --- 1 F107 0 (None)
07AA ...Repeated for Disconnect 30 0 to 15 --- 1 F107 0 (None)
Inter Relay Transceiver Actual Values (Read Only) (4 Modules)
07B0 Channel 1 Transmit Bias Current 0 to 65535 µA 1 F001 0
07B1 Channel 1 Transmit Power Level -3276.8 to 3276.7 Dbm 0.1 F002 0
07B2 Channel 1 Receive Power Level -3276.8 to 3276.7 Dbm 0.1 F002 0
07B3 Channel 1 Transceiver Voltage 0 to 6.5535 V 0.0001 F001 0
07B4 Channel 1 Transceiver Temperature -99.99 to 300 °C 0.01 F002 0
07B5 Channel 1 Transceiver Diagnostic Trouble 0 to 1 --- 1 F108 0 (Off)
07B6 Channel 1 Receive Power Trouble 0 to 1 --- 1 F108 0 (Off)
07B7 Channel 1 Transmit Power Trouble 0 to 1 --- 1 F108 0 (Off)
07B8 Channel 1 Transceiver Temperature Trouble 0 to 1 --- 1 F108 0 (Off)
07B9 Channel 1 Transmit Bias Current Trouble 0 to 1 --- 1 F108 0 (Off)
07BA Channel 1 Voltage Trouble 0 to 1 --- 1 F108 0 (Off)
07BB Channel 1 Transmitter Tx Fault 0 to 1 --- 1 F108 0 (Off)
07BC Channel 1 Soft Tx Disable Status 0 to 1 --- 1 F108 0 (Off)
07BD Channel 1 Yellow Bit Alarm 0 to 1 --- 1 F108 0 (Off)
07BE Channel 1 Loss of Signal 0 to 1 --- 1 F108 0 (Off)
07BF ...Repeated for Channel 2
07C1 ...Repeated for Channel 2
07C9 ...Repeated for Channel 2
07CA ...Repeated for Channel 2
07CC ...Repeated for Channel 2
07CD ...Repeated for Channel 2
07CE ...Repeated for Channel 3
07D0 ...Repeated for Channel 3
07D2 ...Repeated for Channel 3
07D4 ...Repeated for Channel 3
07D6 ...Repeated for Channel 3
07D7 ...Repeated for Channel 3
07D8 ...Repeated for Channel 3
07DA ...Repeated for Channel 3

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 15


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


07DC ...Repeated for Channel 3
07DD ...Repeated for Channel 4
07DF ...Repeated for Channel 4
07E1 ...Repeated for Channel 4
07E3 ...Repeated for Channel 4
07E4 ...Repeated for Channel 4
07E6 ...Repeated for Channel 4
07E7 ...Repeated for Channel 4
07E9 ...Repeated for Channel 4
07EB ...Repeated for Channel 4
Inter Relay Settings (Read/Write Setting) (4 Modules)
07B0 Channel 1 Inter Relay Application 0 to 5 --- 1 F088 0 (NONE)
07B1 Channel 1 Inter Relay Baud Rate 64 to 128 --- 64 F001 64
07B2 Channel 1 Protocol Encoding 0 to 7 --- 1 F150 0 (Default)
07B3 ...Repeated for Channel 2
07B5 ...Repeated for Channel 2
07B6 ...Repeated for Channel 3
07B7 ...Repeated for Channel 3
07B9 ...Repeated for Channel 4
07BB ...Repeated for Channel 4
Direct I/O (Read/Write Setting)
07C0 Direct Device ID 1 to 16 --- 1 F001 1
Direct I/O (Read/Write Command)
07C1 Direct IO Clear Counters Command 0 to 1 --- 1 F126 0 (No)
Channel Direct I/O Settings (Read/Write Setting) (4 Modules)
07C8 Channel 1 Direct IO Ring Configuration 0 to 1 --- 1 F102 0 (Disabled)
07C9 Channel 1 Direct IO CRC Alarm Function 0 to 1 --- 1 F102 0 (Disabled)
07CA Channel 1 Direct IO CRC Alarm Count 100 to 10000 --- 1 F001 600
07CB Channel 1 Direct IO CRC Alarm Threshold 1 to 1000 --- 1 F001 10
07CC Channel 1 Direct IO CRC Alarm Events 0 to 1 --- 1 F102 0 (Disabled)
07CD Channel 1 Direct IO CRC Alarm Reserved 0 to 65535 --- --- F001 0
07CE Channel 1 Direct IO Msg Alarm Function 0 to 1 --- 1 F102 0 (Disabled)
07CF Channel 1 Direct IO Msg Alarm Count 100 to 10000 --- 1 F001 600
07D0 Channel 1 Direct IO Msg Alarm Threshold 1 to 1000 --- 1 F001 10
07D1 Channel 1 Direct IO Msg Alarm Events 0 to 1 --- 1 F102 0 (Disabled)
07D2 Channel 1 Direct IO Msg Alarm Reserved 0 to 65535 --- 1 F001 0
07D3 Channel 1 Direct Ring Break Function 0 to 1 --- 1 F102 1 (Enabled)
07D4 Channel 1 Direct Device Off Function 0 to 1 --- 1 F102 1 (Enabled)
07D5 ...Repeated for Channel 2
07D6 ...Repeated for Channel 2
07D8 ...Repeated for Channel 2
07D9 ...Repeated for Channel 2
07DB ...Repeated for Channel 2
07DD ...Repeated for Channel 2
07DE ...Repeated for Channel 2
07E0 ...Repeated for Channel 2
07E2 ...Repeated for Channel 3

16 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


07E3 ...Repeated for Channel 3
07E5 ...Repeated for Channel 3
07E7 ...Repeated for Channel 3
07E8 ...Repeated for Channel 3
07EA ...Repeated for Channel 3
07EC ...Repeated for Channel 3
07EF ...Repeated for Channel 4

Digital Counter States (Read Only Non-Volatile States) (8 Modules)


0800 Digital Counter 1 Value -2147483647 to --- 1 F004 0
2147483647
0802 Digital Counter 1 Frozen -2147483647 to --- 1 F004 0
2147483647
0804 Digital Counter 1 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
0806 Digital Counter 1 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
0808 Digital Counter 2 Value -2147483647 to --- 1 F004 0
2147483647
080A Digital Counter 2 Frozen -2147483647 to --- 1 F004 0
2147483647
080C Digital Counter 2 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
080E Digital Counter 2 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
0810 Digital Counter 3 Value -2147483647 to --- 1 F004 0
2147483647
0812 Digital Counter 3 Frozen -2147483647 to --- 1 F004 0
2147483647
0814 Digital Counter 3 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
0816 Digital Counter 3 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
0818 Digital Counter 4 Value -2147483647 to --- 1 F004 0
2147483647
081A Digital Counter 4 Frozen -2147483647 to --- 1 F004 0
2147483647
081C Digital Counter 4 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
081E Digital Counter 4 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
0820 Digital Counter 5 Value -2147483647 to --- 1 F004 0
2147483647
0822 Digital Counter 5 Frozen -2147483647 to --- 1 F004 0
2147483647
0824 Digital Counter 5 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
0826 Digital Counter 5 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
0828 Digital Counter 6 Value -2147483647 to --- 1 F004 0
2147483647
082A Digital Counter 6 Frozen -2147483647 to --- 1 F004 0
2147483647
082C Digital Counter 6 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
082E Digital Counter 6 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
0830 Digital Counter 7 Value -2147483647 to --- 1 F004 0
2147483647
0832 Digital Counter 7 Frozen -2147483647 to --- 1 F004 0
2147483647
0834 Digital Counter 7 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
0836 Digital Counter 7 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 17


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


0838 Digital Counter 8 Value -2147483647 to --- 1 F004 0
2147483647
083A Digital Counter 8 Frozen -2147483647 to --- 1 F004 0
2147483647
083C Digital Counter 8 Frozen Time Stamp 0 to 4294967295 --- 1 F050 0
083E Digital Counter 8 Frozen Time Stamp (US) 0 to 4294967295 --- 1 F003 0
FlexState Actual Values (Read Only)
0900 FlexState bits 1 through 16 0 to 65535 --- 1 F001 0
0901 FlexState bits 17 through 32 0 to 65535 --- 1 F001 0
0902 FlexState bits 33 through 48 0 to 65535 --- 1 F001 0
0903 FlexState bits 49 through 64 0 to 65535 --- 1 F001 0
0904 FlexState bits 65 through 80 0 to 65535 --- 1 F001 0
0905 FlexState bits 81 through 96 0 to 65535 --- 1 F001 0
0906 FlexState bits 97 through 112 0 to 65535 --- 1 F001 0
0907 FlexState bits 113 through 128 0 to 65535 --- 1 F001 0
0908 FlexState bits 129 through 144 0 to 65535 --- 1 F001 0
0909 FlexState bits 144 through 160 0 to 65535 --- 1 F001 0
090A FlexState bits 161 through 176 0 to 65535 --- 1 F001 0
090B FlexState bits 177 through 192 0 to 65535 --- 1 F001 0
090C FlexState bits 193 through 208 0 to 65535 --- 1 F001 0
090D FlexState bits 209 through 224 0 to 65535 --- 1 F001 0
090E FlexState bits 225 through 240 0 to 65535 --- 1 F001 0
090F FlexState bits 241 through 256 0 to 65535 --- 1 F001 0
Channel Direct I/O Packed States (Read Only) (4 Modules)
0920 Channel 1 Direct Device Packed States 0 to 65535 --- 1 F500 0
0921 Channel 1 Direct Input Packed States (6 items) 0 to 65535 --- 1 F500 0
0927 ...Repeated for Channel 2
092E ...Repeated for Channel 3
0935 ...Repeated for Channel 4
Channel Direct I/O Statistics (Read Only) (4 Modules)
0940 Channel 1 Direct IO Msg Return Time 0 to 65535 ms 1 F001 0
0941 Channel 1 Direct IO CRC Fail Count 0 to 65535 --- 1 F001 0
0942 Channel 1 Direct IO Unreturned Msg Count 0 to 65535 --- 1 F001 0
0943 ...Repeated for Channel 2
0946 ...Repeated for Channel 3
0949 ...Repeated for Channel 4
Channel Direct Inputs (Read/Write Setting) (4 Modules)
0988 Channel 1 Direct Input Device ID (96 items) 0 to 16 --- 1 F001 0
09E8; Channel 1 Direct Input Bit Number (96 items) 0 to 96 --- 1 F001 0
0A48 Channel 1 Direct Input Default State (96 items) 0 to 3 --- 1 F086 0 (Off)
0AA8 Channel 1 Direct Input Events (96 items) 0 to 1 --- 1 F102 0 (Disabled)
0B08 ...Repeated for Channel 2
0C88 ...Repeated for Channel 3
0E08 ...Repeated for Channel 4
Channel Teleprotection Actual Values (Read Only) (4 Modules)
0A80 Channel 1 Teleprot Status 0 to 2 --- 1 F134 1 (OK)
0A81 Channel 1 Teleprot Number of Lost Packets 0 to 65535 --- 1 F001 0

18 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


0A82 Channel 1 Teleprot Input Packed States 0 to 1 --- 1 F500 0
0A83 ...Repeated for Channel 2
0A86 ...Repeated for Channel 3
0A89 ...Repeated for Channel 4
Teleprotection I/O Commands (Read/Write Command)
0FA0 Teleprot Clear Lost Packets 0 to 1 --- 1 F126 0 (No)
Teleprotection I/O Local ID (Read/Write Setting)
0FA1 Teleprot Local Relay ID 0 to 255 --- 1 F001 0
Channel Teleprotection I/O Settings (Read/Write Setting) (4 Modules)
0FB0 Channel 1 Teleprot Input Default States (16 items) 0 to 3 --- 1 F086 0 (Off)
0FC0 Channel 1 Teleprot Output Operands (16 items) 0 to 65535 --- 1 F300 0
0FD0 Channel 1 Teleprot Terminal ID 0 to 255 --- 1 F001 0
0FD1 ...Repeated for Channel 2
0FF2 ...Repeated for Channel 3
1002 ...Repeated for Channel 3
1013 ...Repeated for Channel 4
Element State Actual Values (Read Only) (64 Modules); see format code F124 for element enumeration
1000 Operate states for elements 0 to 15 0 to 65535 --- 1 F502 0
1001 Operate states for elements 16 to 32 0 to 65535 --- 1 F502 0
1002 Operate states for elements 32 to 49 0 to 65535 --- 1 F502 0
1003 Operate states for elements 48 to 66 0 to 65535 --- 1 F502 0
1004 Operate states for elements 64 to 83 0 to 65535 --- 1 F502 0
1005 Operate states for elements 80 to 100 0 to 65535 --- 1 F502 0
1006 Operate states for elements 96 to 117 0 to 65535 --- 1 F502 0
1007 Operate states for elements 112 to 134 0 to 65535 --- 1 F502 0
1008 Operate states for elements 128 to 151 0 to 65535 --- 1 F502 0
1009 Operate states for elements 144 to 168 0 to 65535 --- 1 F502 0
100A Operate states for elements 160 to 185 0 to 65535 --- 1 F502 0
100B Operate states for elements 176 to 202 0 to 65535 --- 1 F502 0
100C Operate states for elements 192 to 219 0 to 65535 --- 1 F502 0
100D Operate states for elements 208 to 236 0 to 65535 --- 1 F502 0
100E Operate states for elements 224 to 253 0 to 65535 --- 1 F502 0
100F Operate states for elements 240 to 270 0 to 65535 --- 1 F502 0
1010 Operate states for elements 256 to 287 0 to 65535 --- 1 F502 0
1011 Operate states for elements 272 to 304 0 to 65535 --- 1 F502 0
1012 Operate states for elements 288 to 321 0 to 65535 --- 1 F502 0
1013 Operate states for elements 304 to 338 0 to 65535 --- 1 F502 0
1014 Operate states for elements 320 to 355 0 to 65535 --- 1 F502 0
1015 Operate states for elements 336 to 372 0 to 65535 --- 1 F502 0
1016 Operate states for elements 352 to 389 0 to 65535 --- 1 F502 0
1017 Operate states for elements 368 to 406 0 to 65535 --- 1 F502 0
1018 Operate states for elements 384 to 423 0 to 65535 --- 1 F502 0
1019 Operate states for elements 400 to 440 0 to 65535 --- 1 F502 0
101A Operate states for elements 416 to 457 0 to 65535 --- 1 F502 0
101B Operate states for elements 432 to 474 0 to 65535 --- 1 F502 0
101C Operate states for elements 448 to 491 0 to 65535 --- 1 F502 0
101D Operate states for elements 464 to 508 0 to 65535 --- 1 F502 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 19


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


101E Operate states for elements 480 to 525 0 to 65535 --- 1 F502 0
101F Operate states for elements 496 to 542 0 to 65535 --- 1 F502 0
1020 Operate states for elements 512 to 559 0 to 65535 --- 1 F502 0
1021 Operate states for elements 528 to 576 0 to 65535 --- 1 F502 0
1022 Operate states for elements 544 to 593 0 to 65535 --- 1 F502 0
1023 Operate states for elements 560 to 610 0 to 65535 --- 1 F502 0
1024 Operate states for elements 576 to 627 0 to 65535 --- 1 F502 0
1025 Operate states for elements 592 to 644 0 to 65535 --- 1 F502 0
1026 Operate states for elements 608 to 661 0 to 65535 --- 1 F502 0
1027 Operate states for elements 624 to 678 0 to 65535 --- 1 F502 0
1028 Operate states for elements 640 to 695 0 to 65535 --- 1 F502 0
1029 Operate states for elements 656 to 712 0 to 65535 --- 1 F502 0
102A Operate states for elements 672 to 729 0 to 65535 --- 1 F502 0
102B Operate states for elements 688 to 746 0 to 65535 --- 1 F502 0
102C Operate states for elements 704 to 763 0 to 65535 --- 1 F502 0
102D Operate states for elements 720 to 780 0 to 65535 --- 1 F502 0
102E Operate states for elements 736 to 797 0 to 65535 --- 1 F502 0
102F Operate states for elements 752 to 814 0 to 65535 --- 1 F502 0
1030 Operate states for elements 768 to 831 0 to 65535 --- 1 F502 0
1031 Operate states for elements 784 to 848 0 to 65535 --- 1 F502 0
1032 Operate states for elements 800 to 865 0 to 65535 --- 1 F502 0
1033 Operate states for elements 816 to 882 0 to 65535 --- 1 F502 0
1034 Operate states for elements 832 to 899 0 to 65535 --- 1 F502 0
1035 Operate states for elements 848 to 916 0 to 65535 --- 1 F502 0
1036 Operate states for elements 864 to 933 0 to 65535 --- 1 F502 0
1037 Operate states for elements 880 to 950 0 to 65535 --- 1 F502 0
1038 Operate states for elements 896 to 967 0 to 65535 --- 1 F502 0
1039 Operate states for elements 912 to 984 0 to 65535 --- 1 F502 0
103A Operate states for elements 928 to 1001 0 to 65535 --- 1 F502 0
103B Operate states for elements 944 to 1018 0 to 65535 --- 1 F502 0
103C Operate states for elements 960 to 1035 0 to 65535 --- 1 F502 0
103D Operate states for elements 976 to 1052 0 to 65535 --- 1 F502 0
103E Operate states for elements 992 to 1069 0 to 65535 --- 1 F502 0
103F Operate states for elements 1008 to 1023 0 to 65535 --- 1 F502 0
Automation Virtual Analog Actual Values (Read Only) (128 Modules)
1040 Automation Virtual Analog 1 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1042 Automation Virtual Analog 2 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1044 Automation Virtual Analog 3 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1046 Automation Virtual Analog 4 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1048 Automation Virtual Analog 5 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
104A Automation Virtual Analog 6 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
104C Automation Virtual Analog 7 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1

20 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


104E Automation Virtual Analog 8 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1050 Automation Virtual Analog 9 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1052 Automation Virtual Analog 10 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1054 Automation Virtual Analog 11 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1056 Automation Virtual Analog 12 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1058 Automation Virtual Analog 13 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
105A Automation Virtual Analog 14 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
105C Automation Virtual Analog 15 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
105E Automation Virtual Analog 16 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1060 Automation Virtual Analog 17 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1062 Automation Virtual Analog 18 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1064 Automation Virtual Analog 19 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1066 Automation Virtual Analog 20 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1068 Automation Virtual Analog 21 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
106A Automation Virtual Analog 22 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
106C Automation Virtual Analog 23 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
106E Automation Virtual Analog 24 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1070 Automation Virtual Analog 25 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1072 Automation Virtual Analog 26 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1074 Automation Virtual Analog 27 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1076 Automation Virtual Analog 28 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1078 Automation Virtual Analog 29 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
107A Automation Virtual Analog 30 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
107C Automation Virtual Analog 31 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
107E Automation Virtual Analog 32 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1080 Automation Virtual Analog 33 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1082 Automation Virtual Analog 34 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1084 Automation Virtual Analog 35 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 21


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1086 Automation Virtual Analog 36 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1088 Automation Virtual Analog 37 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
108A Automation Virtual Analog 38 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
108C Automation Virtual Analog 39 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
108E Automation Virtual Analog 40 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1090 Automation Virtual Analog 41 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1092 Automation Virtual Analog 42 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1094 Automation Virtual Analog 43 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1096 Automation Virtual Analog 44 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1098 Automation Virtual Analog 45 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
109A Automation Virtual Analog 46 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
109C Automation Virtual Analog 47 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
109E Automation Virtual Analog 48 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10A0 Automation Virtual Analog 49 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10A2 Automation Virtual Analog 50 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10A4 Automation Virtual Analog 51 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10A6 Automation Virtual Analog 52 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10A8 Automation Virtual Analog 53 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10AA Automation Virtual Analog 54 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10AC Automation Virtual Analog 55 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10AE Automation Virtual Analog 56 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10B0 Automation Virtual Analog 57 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10B2 Automation Virtual Analog 58 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10B4 Automation Virtual Analog 59 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10B6 Automation Virtual Analog 60 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10B8 Automation Virtual Analog 61 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10BA Automation Virtual Analog 62 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10BC Automation Virtual Analog 63 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1

22 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


10BE Automation Virtual Analog 64 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10C0 Automation Virtual Analog 65 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10C2 Automation Virtual Analog 66 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10C4 Automation Virtual Analog 67 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10C6 Automation Virtual Analog 68 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10C8 Automation Virtual Analog 69 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10CA Automation Virtual Analog 70 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10CC Automation Virtual Analog 71 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10CE Automation Virtual Analog 72 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10D0 Automation Virtual Analog 73 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10D2 Automation Virtual Analog 74 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10D4 Automation Virtual Analog 75 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10D6 Automation Virtual Analog 76 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10D8 Automation Virtual Analog 77 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10DA Automation Virtual Analog 78 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10DC Automation Virtual Analog 79 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10DE Automation Virtual Analog 80 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10E0 Automation Virtual Analog 81 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10E2 Automation Virtual Analog 82 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10E4 Automation Virtual Analog 83 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10E6 Automation Virtual Analog 84 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10E8 Automation Virtual Analog 85 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10EA Automation Virtual Analog 86 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10EC Automation Virtual Analog 87 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10EE Automation Virtual Analog 88 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10F0 Automation Virtual Analog 89 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10F2 Automation Virtual Analog 90 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10F4 Automation Virtual Analog 91 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 23


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


10F6 Automation Virtual Analog 92 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10F8 Automation Virtual Analog 93 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10FA Automation Virtual Analog 94 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10FC Automation Virtual Analog 95 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
10FE Automation Virtual Analog 96 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1100 Automation Virtual Analog 97 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1102 Automation Virtual Analog 98 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1104 Automation Virtual Analog 99 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1106 Automation Virtual Analog 100 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1108 Automation Virtual Analog 101 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
110A Automation Virtual Analog 102 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
110C Automation Virtual Analog 103 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
110E Automation Virtual Analog 104 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1110 Automation Virtual Analog 105 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1112 Automation Virtual Analog 106 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1114 Automation Virtual Analog 107 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1116 Automation Virtual Analog 108 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1118 Automation Virtual Analog 109 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
111A Automation Virtual Analog 110 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
111C Automation Virtual Analog 111 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
111E Automation Virtual Analog 112 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1120 Automation Virtual Analog 113 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1122 Automation Virtual Analog 114 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1124 Automation Virtual Analog 115 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1126 Automation Virtual Analog 116 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1128 Automation Virtual Analog 117 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
112A Automation Virtual Analog 118 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
112C Automation Virtual Analog 119 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1

24 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


112E Automation Virtual Analog 120 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1130 Automation Virtual Analog 121 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1132 Automation Virtual Analog 122 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1134 Automation Virtual Analog 123 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1136 Automation Virtual Analog 124 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
1138 Automation Virtual Analog 125 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
113A Automation Virtual Analog 126 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
113C Automation Virtual Analog 127 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
113E Automation Virtual Analog 128 Actual Value –9999999999 to --- 0.00000 F060 0
9999999999 1
Automation Virtual Input State Actual Values (Read Only Non-Volatile)
1140 States for Virtual Inputs 0 to 15 0 to 65535 --- 1 F500 0
1141 States for Virtual Inputs 16 to 32 0 to 65535 --- 1 F500 0
1142 States for Virtual Inputs 32 to 49 0 to 65535 --- 1 F500 0
1143 States for Virtual Inputs 48 to 66 0 to 65535 --- 1 F500 0
1144 States for Virtual Inputs 64 to 83 0 to 65535 --- 1 F500 0
1145 States for Virtual Inputs 80 to 100 0 to 65535 --- 1 F500 0
1146 States for Virtual Inputs 96 to 117 0 to 65535 --- 1 F500 0
1147 States for Virtual Inputs 112 to 128 0 to 65535 --- 1 F500 0
Automation Virtual Output State Actual Values (Read Only Non-Volatile)
1148 States for Automation Virtual Outputs 0 to 15 0 to 65535 --- 1 F500 0
1149 States for Automation Virtual Outputs 16 to 32 0 to 65535 --- 1 F500 0
114A States for Automation Virtual Outputs 32 to 49 0 to 65535 --- 1 F500 0
114B States for Automation Virtual Outputs 48 to 66 0 to 65535 --- 1 F500 0
114C States for Automation Virtual Outputs 64 to 83 0 to 65535 --- 1 F500 0
114D States for Automation Virtual Outputs 80 to 100 0 to 65535 --- 1 F500 0
114E States for Automation Virtual Outputs 96 to 117 0 to 65535 --- 1 F500 0
114F States for Automation Virtual Outputs 112 to 128 0 to 65535 --- 1 F500 0
1150 States for Automation Virtual Outputs 128 to 151 0 to 65535 --- 1 F500 0
1151 States for Automation Virtual Outputs 144 to 168 0 to 65535 --- 1 F500 0
1152 States for Automation Virtual Outputs 160 to 185 0 to 65535 --- 1 F500 0
1153 States for Automation Virtual Outputs 176 to 202 0 to 65535 --- 1 F500 0
1154 States for Automation Virtual Outputs 192 to 219 0 to 65535 --- 1 F500 0
1155 States for Automation Virtual Outputs 208 to 236 0 to 65535 --- 1 F500 0
1156 States for Automation Virtual Outputs 224 to 253 0 to 65535 --- 1 F500 0
1157 States for Automation Virtual Outputs 240 to 256 0 to 65535 --- 1 F500 0
Automation Virtual Input Commands (Read/Write Commands) (128 Modules)
1160 Automation Virtual Input 1 Command 0 to 1 --- 1 F108 0 (Off)
1161 Automation Virtual Input 2 Command 0 to 1 --- 1 F108 0 (Off)
1162 Automation Virtual Input 3 Command 0 to 1 --- 1 F108 0 (Off)
1163 Automation Virtual Input 4 Command 0 to 1 --- 1 F108 0 (Off)
1164 Automation Virtual Input 5 Command 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 25


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1165 Automation Virtual Input 6 Command 0 to 1 --- 1 F108 0 (Off)
1166 Automation Virtual Input 7 Command 0 to 1 --- 1 F108 0 (Off)
1167 Automation Virtual Input 8 Command 0 to 1 --- 1 F108 0 (Off)
1168 Automation Virtual Input 9 Command 0 to 1 --- 1 F108 0 (Off)
1169 Automation Virtual Input 10 Command 0 to 1 --- 1 F108 0 (Off)
116A Automation Virtual Input 11 Command 0 to 1 --- 1 F108 0 (Off)
116B Automation Virtual Input 12 Command 0 to 1 --- 1 F108 0 (Off)
116C Automation Virtual Input 13 Command 0 to 1 --- 1 F108 0 (Off)
116D Automation Virtual Input 14 Command 0 to 1 --- 1 F108 0 (Off)
116E Automation Virtual Input 15 Command 0 to 1 --- 1 F108 0 (Off)
116F Automation Virtual Input 16 Command 0 to 1 --- 1 F108 0 (Off)
1170 Automation Virtual Input 17 Command 0 to 1 --- 1 F108 0 (Off)
1171 Automation Virtual Input 18 Command 0 to 1 --- 1 F108 0 (Off)
1172 Automation Virtual Input 19 Command 0 to 1 --- 1 F108 0 (Off)
1173 Automation Virtual Input 20 Command 0 to 1 --- 1 F108 0 (Off)
1174 Automation Virtual Input 21 Command 0 to 1 --- 1 F108 0 (Off)
1175 Automation Virtual Input 22 Command 0 to 1 --- 1 F108 0 (Off)
1176 Automation Virtual Input 23 Command 0 to 1 --- 1 F108 0 (Off)
1177 Automation Virtual Input 24 Command 0 to 1 --- 1 F108 0 (Off)
1178 Automation Virtual Input 25 Command 0 to 1 --- 1 F108 0 (Off)
1179 Automation Virtual Input 26 Command 0 to 1 --- 1 F108 0 (Off)
117A Automation Virtual Input 27 Command 0 to 1 --- 1 F108 0 (Off)
117B Automation Virtual Input 28 Command 0 to 1 --- 1 F108 0 (Off)
117C Automation Virtual Input 29 Command 0 to 1 --- 1 F108 0 (Off)
117D Automation Virtual Input 30 Command 0 to 1 --- 1 F108 0 (Off)
117E Automation Virtual Input 31 Command 0 to 1 --- 1 F108 0 (Off)
117F Automation Virtual Input 32 Command 0 to 1 --- 1 F108 0 (Off)
1180 Automation Virtual Input 33 Command 0 to 1 --- 1 F108 0 (Off)
1181 Automation Virtual Input 34 Command 0 to 1 --- 1 F108 0 (Off)
1182 Automation Virtual Input 35 Command 0 to 1 --- 1 F108 0 (Off)
1183 Automation Virtual Input 36 Command 0 to 1 --- 1 F108 0 (Off)
1184 Automation Virtual Input 37 Command 0 to 1 --- 1 F108 0 (Off)
1185 Automation Virtual Input 38 Command 0 to 1 --- 1 F108 0 (Off)
1186 Automation Virtual Input 39 Command 0 to 1 --- 1 F108 0 (Off)
1187 Automation Virtual Input 40 Command 0 to 1 --- 1 F108 0 (Off)
1188 Automation Virtual Input 41 Command 0 to 1 --- 1 F108 0 (Off)
1189 Automation Virtual Input 42 Command 0 to 1 --- 1 F108 0 (Off)
118A Automation Virtual Input 43 Command 0 to 1 --- 1 F108 0 (Off)
118B Automation Virtual Input 44 Command 0 to 1 --- 1 F108 0 (Off)
118C Automation Virtual Input 45 Command 0 to 1 --- 1 F108 0 (Off)
118D Automation Virtual Input 46 Command 0 to 1 --- 1 F108 0 (Off)
118E Automation Virtual Input 47 Command 0 to 1 --- 1 F108 0 (Off)
118F Automation Virtual Input 48 Command 0 to 1 --- 1 F108 0 (Off)
1190 Automation Virtual Input 49 Command 0 to 1 --- 1 F108 0 (Off)
1191 Automation Virtual Input 50 Command 0 to 1 --- 1 F108 0 (Off)
1192 Automation Virtual Input 51 Command 0 to 1 --- 1 F108 0 (Off)
1193 Automation Virtual Input 52 Command 0 to 1 --- 1 F108 0 (Off)

26 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1194 Automation Virtual Input 53 Command 0 to 1 --- 1 F108 0 (Off)
1195 Automation Virtual Input 54 Command 0 to 1 --- 1 F108 0 (Off)
1196 Automation Virtual Input 55 Command 0 to 1 --- 1 F108 0 (Off)
1197 Automation Virtual Input 56 Command 0 to 1 --- 1 F108 0 (Off)
1198 Automation Virtual Input 57 Command 0 to 1 --- 1 F108 0 (Off)
1199 Automation Virtual Input 58 Command 0 to 1 --- 1 F108 0 (Off)
119A Automation Virtual Input 59 Command 0 to 1 --- 1 F108 0 (Off)
119B Automation Virtual Input 60 Command 0 to 1 --- 1 F108 0 (Off)
119C Automation Virtual Input 61 Command 0 to 1 --- 1 F108 0 (Off)
119D Automation Virtual Input 62 Command 0 to 1 --- 1 F108 0 (Off)
119E Automation Virtual Input 63 Command 0 to 1 --- 1 F108 0 (Off)
119F Automation Virtual Input 64 Command 0 to 1 --- 1 F108 0 (Off)
11A0 Automation Virtual Input 65 Command 0 to 1 --- 1 F108 0 (Off)
11A1 Automation Virtual Input 66 Command 0 to 1 --- 1 F108 0 (Off)
11A2 Automation Virtual Input 67 Command 0 to 1 --- 1 F108 0 (Off)
11A3 Automation Virtual Input 68 Command 0 to 1 --- 1 F108 0 (Off)
11A4 Automation Virtual Input 69 Command 0 to 1 --- 1 F108 0 (Off)
11A5 Automation Virtual Input 70 Command 0 to 1 --- 1 F108 0 (Off)
11A6 Automation Virtual Input 71 Command 0 to 1 --- 1 F108 0 (Off)
11A7 Automation Virtual Input 72 Command 0 to 1 --- 1 F108 0 (Off)
11A8 Automation Virtual Input 73 Command 0 to 1 --- 1 F108 0 (Off)
11A9 Automation Virtual Input 74 Command 0 to 1 --- 1 F108 0 (Off)
11AA Automation Virtual Input 75 Command 0 to 1 --- 1 F108 0 (Off)
11AB Automation Virtual Input 76 Command 0 to 1 --- 1 F108 0 (Off)
11AC Automation Virtual Input 77 Command 0 to 1 --- 1 F108 0 (Off)
11AD Automation Virtual Input 78 Command 0 to 1 --- 1 F108 0 (Off)
11AE Automation Virtual Input 79 Command 0 to 1 --- 1 F108 0 (Off)
11AF Automation Virtual Input 80 Command 0 to 1 --- 1 F108 0 (Off)
11B0 Automation Virtual Input 81 Command 0 to 1 --- 1 F108 0 (Off)
11B1 Automation Virtual Input 82 Command 0 to 1 --- 1 F108 0 (Off)
11B2 Automation Virtual Input 83 Command 0 to 1 --- 1 F108 0 (Off)
11B3 Automation Virtual Input 84 Command 0 to 1 --- 1 F108 0 (Off)
11B4 Automation Virtual Input 85 Command 0 to 1 --- 1 F108 0 (Off)
11B5 Automation Virtual Input 86 Command 0 to 1 --- 1 F108 0 (Off)
11B6 Automation Virtual Input 87 Command 0 to 1 --- 1 F108 0 (Off)
11B7 Automation Virtual Input 88 Command 0 to 1 --- 1 F108 0 (Off)
11B8 Automation Virtual Input 89 Command 0 to 1 --- 1 F108 0 (Off)
11B9 Automation Virtual Input 90 Command 0 to 1 --- 1 F108 0 (Off)
11BA Automation Virtual Input 91 Command 0 to 1 --- 1 F108 0 (Off)
11BB Automation Virtual Input 92 Command 0 to 1 --- 1 F108 0 (Off)
11BC Automation Virtual Input 93 Command 0 to 1 --- 1 F108 0 (Off)
11BD Automation Virtual Input 94 Command 0 to 1 --- 1 F108 0 (Off)
11BE Automation Virtual Input 95 Command 0 to 1 --- 1 F108 0 (Off)
11BF Automation Virtual Input 96 Command 0 to 1 --- 1 F108 0 (Off)
11C0 Automation Virtual Input 97 Command 0 to 1 --- 1 F108 0 (Off)
11C1 Automation Virtual Input 98 Command 0 to 1 --- 1 F108 0 (Off)
11C2 Automation Virtual Input 99 Command 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 27


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


11C3 Automation Virtual Input 100 Command 0 to 1 --- 1 F108 0 (Off)
11C4 Automation Virtual Input 101 Command 0 to 1 --- 1 F108 0 (Off)
11C5 Automation Virtual Input 102 Command 0 to 1 --- 1 F108 0 (Off)
11C6 Automation Virtual Input 103 Command 0 to 1 --- 1 F108 0 (Off)
11C7 Automation Virtual Input 104 Command 0 to 1 --- 1 F108 0 (Off)
11C8 Automation Virtual Input 105 Command 0 to 1 --- 1 F108 0 (Off)
11C9 Automation Virtual Input 106 Command 0 to 1 --- 1 F108 0 (Off)
11CA Automation Virtual Input 107 Command 0 to 1 --- 1 F108 0 (Off)
11CB Automation Virtual Input 108 Command 0 to 1 --- 1 F108 0 (Off)
11CC Automation Virtual Input 109 Command 0 to 1 --- 1 F108 0 (Off)
11CD Automation Virtual Input 110 Command 0 to 1 --- 1 F108 0 (Off)
11CE Automation Virtual Input 111 Command 0 to 1 --- 1 F108 0 (Off)
11CF Automation Virtual Input 112 Command 0 to 1 --- 1 F108 0 (Off)
11D0 Automation Virtual Input 113 Command 0 to 1 --- 1 F108 0 (Off)
11D1 Automation Virtual Input 114 Command 0 to 1 --- 1 F108 0 (Off)
11D2 Automation Virtual Input 115 Command 0 to 1 --- 1 F108 0 (Off)
11D3 Automation Virtual Input 116 Command 0 to 1 --- 1 F108 0 (Off)
11D4 Automation Virtual Input 117 Command 0 to 1 --- 1 F108 0 (Off)
11D5 Automation Virtual Input 118 Command 0 to 1 --- 1 F108 0 (Off)
11D6 Automation Virtual Input 119 Command 0 to 1 --- 1 F108 0 (Off)
11D7 Automation Virtual Input 120 Command 0 to 1 --- 1 F108 0 (Off)
11D8 Automation Virtual Input 121 Command 0 to 1 --- 1 F108 0 (Off)
11D9 Automation Virtual Input 122 Command 0 to 1 --- 1 F108 0 (Off)
11DA Automation Virtual Input 123 Command 0 to 1 --- 1 F108 0 (Off)
11DB Automation Virtual Input 124 Command 0 to 1 --- 1 F108 0 (Off)
11DC Automation Virtual Input 125 Command 0 to 1 --- 1 F108 0 (Off)
11DD Automation Virtual Input 126 Command 0 to 1 --- 1 F108 0 (Off)
11DE Automation Virtual Input 127 Command 0 to 1 --- 1 F108 0 (Off)
11DF Automation Virtual Input 128 Command 0 to 1 --- 1 F108 0 (Off)
Channel Direct Outputs (Read/Write Setting) (4 Modules)
1200 Channel 1 Direct Output Operand (96 items) 0 to 65535 --- 1 F300 0
1260 Channel 1 Direct Output Event (96 items) 0 to 1 --- 1 F102 0 (Disabled)
12C0 ...Repeated for Channel 2

1380 ...Repeated for Channel 3


13E0 ...Repeated for Channel 3
1440 ...Repeated for Channel 4
14A0 ...Repeated for Channel 4
Modbus User Map Actual Values (Read Only)
1200 Modbus User Map 1 Value 0 to 65535 --- 1 F001 0
1201 Modbus User Map 2 Value 0 to 65535 --- 1 F001 0
1202 Modbus User Map 3 Value 0 to 65535 --- 1 F001 0
1203 Modbus User Map 4 Value 0 to 65535 --- 1 F001 0
1204 Modbus User Map 5 Value 0 to 65535 --- 1 F001 0
1205 Modbus User Map 6 Value 0 to 65535 --- 1 F001 0
1206 Modbus User Map 7 Value 0 to 65535 --- 1 F001 0
1207 Modbus User Map 8 Value 0 to 65535 --- 1 F001 0

28 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1208 Modbus User Map 9 Value 0 to 65535 --- 1 F001 0
1209 Modbus User Map 10 Value 0 to 65535 --- 1 F001 0
120A Modbus User Map 11 Value 0 to 65535 --- 1 F001 0
120B Modbus User Map 12 Value 0 to 65535 --- 1 F001 0
120C Modbus User Map 13 Value 0 to 65535 --- 1 F001 0
120D Modbus User Map 14 Value 0 to 65535 --- 1 F001 0
120E Modbus User Map 15 Value 0 to 65535 --- 1 F001 0
120F Modbus User Map 16 Value 0 to 65535 --- 1 F001 0
1210 Modbus User Map 17 Value 0 to 65535 --- 1 F001 0
1211 Modbus User Map 18 Value 0 to 65535 --- 1 F001 0
1212 Modbus User Map 19 Value 0 to 65535 --- 1 F001 0
1213 Modbus User Map 20 Value 0 to 65535 --- 1 F001 0
1214 Modbus User Map 21 Value 0 to 65535 --- 1 F001 0
1215 Modbus User Map 22 Value 0 to 65535 --- 1 F001 0
1216 Modbus User Map 23 Value 0 to 65535 --- 1 F001 0
1217 Modbus User Map 24 Value 0 to 65535 --- 1 F001 0
1218 Modbus User Map 25 Value 0 to 65535 --- 1 F001 0
1219 Modbus User Map 26 Value 0 to 65535 --- 1 F001 0
121A Modbus User Map 27 Value 0 to 65535 --- 1 F001 0
121B Modbus User Map 28 Value 0 to 65535 --- 1 F001 0
121C Modbus User Map 29 Value 0 to 65535 --- 1 F001 0
121D Modbus User Map 30 Value 0 to 65535 --- 1 F001 0
121E Modbus User Map 31 Value 0 to 65535 --- 1 F001 0
121F Modbus User Map 32 Value 0 to 65535 --- 1 F001 0
1220 Modbus User Map 33 Value 0 to 65535 --- 1 F001 0
1221 Modbus User Map 34 Value 0 to 65535 --- 1 F001 0
1222 Modbus User Map 35 Value 0 to 65535 --- 1 F001 0
1223 Modbus User Map 36 Value 0 to 65535 --- 1 F001 0
1224 Modbus User Map 37 Value 0 to 65535 --- 1 F001 0
1225 Modbus User Map 38 Value 0 to 65535 --- 1 F001 0
1226 Modbus User Map 39 Value 0 to 65535 --- 1 F001 0
1227 Modbus User Map 40 Value 0 to 65535 --- 1 F001 0
1228 Modbus User Map 41 Value 0 to 65535 --- 1 F001 0
1229 Modbus User Map 42 Value 0 to 65535 --- 1 F001 0
122A Modbus User Map 43 Value 0 to 65535 --- 1 F001 0
122B Modbus User Map 44 Value 0 to 65535 --- 1 F001 0
122C Modbus User Map 45 Value 0 to 65535 --- 1 F001 0
122D Modbus User Map 46 Value 0 to 65535 --- 1 F001 0
122E Modbus User Map 47 Value 0 to 65535 --- 1 F001 0
122F Modbus User Map 48 Value 0 to 65535 --- 1 F001 0
1230 Modbus User Map 49 Value 0 to 65535 --- 1 F001 0
1231 Modbus User Map 50 Value 0 to 65535 --- 1 F001 0
1232 Modbus User Map 51 Value 0 to 65535 --- 1 F001 0
1233 Modbus User Map 52 Value 0 to 65535 --- 1 F001 0
1234 Modbus User Map 53 Value 0 to 65535 --- 1 F001 0
1235 Modbus User Map 54 Value 0 to 65535 --- 1 F001 0
1236 Modbus User Map 55 Value 0 to 65535 --- 1 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 29


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1237 Modbus User Map 56 Value 0 to 65535 --- 1 F001 0
1238 Modbus User Map 57 Value 0 to 65535 --- 1 F001 0
1239 Modbus User Map 58 Value 0 to 65535 --- 1 F001 0
123A Modbus User Map 59 Value 0 to 65535 --- 1 F001 0
123B Modbus User Map 60 Value 0 to 65535 --- 1 F001 0
123C Modbus User Map 61 Value 0 to 65535 --- 1 F001 0
123D Modbus User Map 62 Value 0 to 65535 --- 1 F001 0
123E Modbus User Map 63 Value 0 to 65535 --- 1 F001 0
123F Modbus User Map 64 Value 0 to 65535 --- 1 F001 0
1240 Modbus User Map 65 Value 0 to 65535 --- 1 F001 0
1241 Modbus User Map 66 Value 0 to 65535 --- 1 F001 0
1242 Modbus User Map 67 Value 0 to 65535 --- 1 F001 0
1243 Modbus User Map 68 Value 0 to 65535 --- 1 F001 0
1244 Modbus User Map 69 Value 0 to 65535 --- 1 F001 0
1245 Modbus User Map 70 Value 0 to 65535 --- 1 F001 0
1246 Modbus User Map 71 Value 0 to 65535 --- 1 F001 0
1247 Modbus User Map 72 Value 0 to 65535 --- 1 F001 0
1248 Modbus User Map 73 Value 0 to 65535 --- 1 F001 0
1249 Modbus User Map 74 Value 0 to 65535 --- 1 F001 0
124A Modbus User Map 75 Value 0 to 65535 --- 1 F001 0
124B Modbus User Map 76 Value 0 to 65535 --- 1 F001 0
124C Modbus User Map 77 Value 0 to 65535 --- 1 F001 0
124D Modbus User Map 78 Value 0 to 65535 --- 1 F001 0
124E Modbus User Map 79 Value 0 to 65535 --- 1 F001 0
124F Modbus User Map 80 Value 0 to 65535 --- 1 F001 0
1250 Modbus User Map 81 Value 0 to 65535 --- 1 F001 0
1251 Modbus User Map 82 Value 0 to 65535 --- 1 F001 0
1252 Modbus User Map 83 Value 0 to 65535 --- 1 F001 0
1253 Modbus User Map 84 Value 0 to 65535 --- 1 F001 0
1254 Modbus User Map 85 Value 0 to 65535 --- 1 F001 0
1255 Modbus User Map 86 Value 0 to 65535 --- 1 F001 0
1256 Modbus User Map 87 Value 0 to 65535 --- 1 F001 0
1257 Modbus User Map 88 Value 0 to 65535 --- 1 F001 0
1258 Modbus User Map 89 Value 0 to 65535 --- 1 F001 0
1259 Modbus User Map 90 Value 0 to 65535 --- 1 F001 0
125A Modbus User Map 91 Value 0 to 65535 --- 1 F001 0
125B Modbus User Map 92 Value 0 to 65535 --- 1 F001 0
125C Modbus User Map 93 Value 0 to 65535 --- 1 F001 0
125D Modbus User Map 94 Value 0 to 65535 --- 1 F001 0
125E Modbus User Map 95 Value 0 to 65535 --- 1 F001 0
125F Modbus User Map 96 Value 0 to 65535 --- 1 F001 0
1260 Modbus User Map 97 Value 0 to 65535 --- 1 F001 0
1261 Modbus User Map 98 Value 0 to 65535 --- 1 F001 0
1262 Modbus User Map 99 Value 0 to 65535 --- 1 F001 0
1263 Modbus User Map 100 Value 0 to 65535 --- 1 F001 0
1264 Modbus User Map 101 Value 0 to 65535 --- 1 F001 0
1265 Modbus User Map 102 Value 0 to 65535 --- 1 F001 0

30 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1266 Modbus User Map 103 Value 0 to 65535 --- 1 F001 0
1267 Modbus User Map 104 Value 0 to 65535 --- 1 F001 0
1268 Modbus User Map 105 Value 0 to 65535 --- 1 F001 0
1269 Modbus User Map 106 Value 0 to 65535 --- 1 F001 0
126A Modbus User Map 107 Value 0 to 65535 --- 1 F001 0
126B Modbus User Map 108 Value 0 to 65535 --- 1 F001 0
126C Modbus User Map 109 Value 0 to 65535 --- 1 F001 0
126D Modbus User Map 110 Value 0 to 65535 --- 1 F001 0
126E Modbus User Map 111 Value 0 to 65535 --- 1 F001 0
126F Modbus User Map 112 Value 0 to 65535 --- 1 F001 0
1270 Modbus User Map 113 Value 0 to 65535 --- 1 F001 0
1271 Modbus User Map 114 Value 0 to 65535 --- 1 F001 0
1272 Modbus User Map 115 Value 0 to 65535 --- 1 F001 0
1273 Modbus User Map 116 Value 0 to 65535 --- 1 F001 0
1274 Modbus User Map 117 Value 0 to 65535 --- 1 F001 0
1275 Modbus User Map 118 Value 0 to 65535 --- 1 F001 0
1276 Modbus User Map 119 Value 0 to 65535 --- 1 F001 0
1277 Modbus User Map 120 Value 0 to 65535 --- 1 F001 0
1278 Modbus User Map 121 Value 0 to 65535 --- 1 F001 0
1279 Modbus User Map 122 Value 0 to 65535 --- 1 F001 0
127A Modbus User Map 123 Value 0 to 65535 --- 1 F001 0
127B Modbus User Map 124 Value 0 to 65535 --- 1 F001 0
127C Modbus User Map 125 Value 0 to 65535 --- 1 F001 0
127D Modbus User Map 126 Value 0 to 65535 --- 1 F001 0
127E Modbus User Map 127 Value 0 to 65535 --- 1 F001 0
127F Modbus User Map 128 Value 0 to 65535 --- 1 F001 0
1280 Modbus User Map 129 Value 0 to 65535 --- 1 F001 0
1281 Modbus User Map 130 Value 0 to 65535 --- 1 F001 0
1282 Modbus User Map 131 Value 0 to 65535 --- 1 F001 0
1283 Modbus User Map 132 Value 0 to 65535 --- 1 F001 0
1284 Modbus User Map 133 Value 0 to 65535 --- 1 F001 0
1285 Modbus User Map 134 Value 0 to 65535 --- 1 F001 0
1286 Modbus User Map 135 Value 0 to 65535 --- 1 F001 0
1287 Modbus User Map 136 Value 0 to 65535 --- 1 F001 0
1288 Modbus User Map 137 Value 0 to 65535 --- 1 F001 0
1289 Modbus User Map 138 Value 0 to 65535 --- 1 F001 0
128A Modbus User Map 139 Value 0 to 65535 --- 1 F001 0
128B Modbus User Map 140 Value 0 to 65535 --- 1 F001 0
128C Modbus User Map 141 Value 0 to 65535 --- 1 F001 0
128D Modbus User Map 142 Value 0 to 65535 --- 1 F001 0
128E Modbus User Map 143 Value 0 to 65535 --- 1 F001 0
128F Modbus User Map 144 Value 0 to 65535 --- 1 F001 0
1290 Modbus User Map 145 Value 0 to 65535 --- 1 F001 0
1291 Modbus User Map 146 Value 0 to 65535 --- 1 F001 0
1292 Modbus User Map 147 Value 0 to 65535 --- 1 F001 0
1293 Modbus User Map 148 Value 0 to 65535 --- 1 F001 0
1294 Modbus User Map 149 Value 0 to 65535 --- 1 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 31


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1295 Modbus User Map 150 Value 0 to 65535 --- 1 F001 0
1296 Modbus User Map 151 Value 0 to 65535 --- 1 F001 0
1297 Modbus User Map 152 Value 0 to 65535 --- 1 F001 0
1298 Modbus User Map 153 Value 0 to 65535 --- 1 F001 0
1299 Modbus User Map 154 Value 0 to 65535 --- 1 F001 0
129A Modbus User Map 155 Value 0 to 65535 --- 1 F001 0
129B Modbus User Map 156 Value 0 to 65535 --- 1 F001 0
129C Modbus User Map 157 Value 0 to 65535 --- 1 F001 0
129D Modbus User Map 158 Value 0 to 65535 --- 1 F001 0
129E Modbus User Map 159 Value 0 to 65535 --- 1 F001 0
129F Modbus User Map 160 Value 0 to 65535 --- 1 F001 0
12A0 Modbus User Map 161 Value 0 to 65535 --- 1 F001 0
12A1 Modbus User Map 162 Value 0 to 65535 --- 1 F001 0
12A2 Modbus User Map 163 Value 0 to 65535 --- 1 F001 0
12A3 Modbus User Map 164 Value 0 to 65535 --- 1 F001 0
12A4 Modbus User Map 165 Value 0 to 65535 --- 1 F001 0
12A5 Modbus User Map 166 Value 0 to 65535 --- 1 F001 0
12A6 Modbus User Map 167 Value 0 to 65535 --- 1 F001 0
12A7 Modbus User Map 168 Value 0 to 65535 --- 1 F001 0
12A8 Modbus User Map 169 Value 0 to 65535 --- 1 F001 0
12A9 Modbus User Map 170 Value 0 to 65535 --- 1 F001 0
12AA Modbus User Map 171 Value 0 to 65535 --- 1 F001 0
12AB Modbus User Map 172 Value 0 to 65535 --- 1 F001 0
12AC Modbus User Map 173 Value 0 to 65535 --- 1 F001 0
12AD Modbus User Map 174 Value 0 to 65535 --- 1 F001 0
12AE Modbus User Map 175 Value 0 to 65535 --- 1 F001 0
12AF Modbus User Map 176 Value 0 to 65535 --- 1 F001 0
12B0 Modbus User Map 177 Value 0 to 65535 --- 1 F001 0
12B1 Modbus User Map 178 Value 0 to 65535 --- 1 F001 0
12B2 Modbus User Map 179 Value 0 to 65535 --- 1 F001 0
12B3 Modbus User Map 180 Value 0 to 65535 --- 1 F001 0
12B4 Modbus User Map 181 Value 0 to 65535 --- 1 F001 0
12B5 Modbus User Map 182 Value 0 to 65535 --- 1 F001 0
12B6 Modbus User Map 183 Value 0 to 65535 --- 1 F001 0
12B7 Modbus User Map 184 Value 0 to 65535 --- 1 F001 0
12B8 Modbus User Map 185 Value 0 to 65535 --- 1 F001 0
12B9 Modbus User Map 186 Value 0 to 65535 --- 1 F001 0
12BA Modbus User Map 187 Value 0 to 65535 --- 1 F001 0
12BB Modbus User Map 188 Value 0 to 65535 --- 1 F001 0
12BC Modbus User Map 189 Value 0 to 65535 --- 1 F001 0
12BD Modbus User Map 190 Value 0 to 65535 --- 1 F001 0
12BE Modbus User Map 191 Value 0 to 65535 --- 1 F001 0
12BF Modbus User Map 192 Value 0 to 65535 --- 1 F001 0
12C0 Modbus User Map 193 Value 0 to 65535 --- 1 F001 0
12C1 Modbus User Map 194 Value 0 to 65535 --- 1 F001 0
12C2 Modbus User Map 195 Value 0 to 65535 --- 1 F001 0
12C3 Modbus User Map 196 Value 0 to 65535 --- 1 F001 0

32 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


12C4 Modbus User Map 197 Value 0 to 65535 --- 1 F001 0
12C5 Modbus User Map 198 Value 0 to 65535 --- 1 F001 0
12C6 Modbus User Map 199 Value 0 to 65535 --- 1 F001 0
12C7 Modbus User Map 200 Value 0 to 65535 --- 1 F001 0
12C8 Modbus User Map 201 Value 0 to 65535 --- 1 F001 0
12C9 Modbus User Map 202 Value 0 to 65535 --- 1 F001 0
12CA Modbus User Map 203 Value 0 to 65535 --- 1 F001 0
12CB Modbus User Map 204 Value 0 to 65535 --- 1 F001 0
12CC Modbus User Map 205 Value 0 to 65535 --- 1 F001 0
12CD Modbus User Map 206 Value 0 to 65535 --- 1 F001 0
12CE Modbus User Map 207 Value 0 to 65535 --- 1 F001 0
12CF Modbus User Map 208 Value 0 to 65535 --- 1 F001 0
12D0 Modbus User Map 209 Value 0 to 65535 --- 1 F001 0
12D1 Modbus User Map 210 Value 0 to 65535 --- 1 F001 0
12D2 Modbus User Map 211 Value 0 to 65535 --- 1 F001 0
12D3 Modbus User Map 212 Value 0 to 65535 --- 1 F001 0
12D4 Modbus User Map 213 Value 0 to 65535 --- 1 F001 0
12D5 Modbus User Map 214 Value 0 to 65535 --- 1 F001 0
12D6 Modbus User Map 215 Value 0 to 65535 --- 1 F001 0
12D7 Modbus User Map 216 Value 0 to 65535 --- 1 F001 0
12D8 Modbus User Map 217 Value 0 to 65535 --- 1 F001 0
12D9 Modbus User Map 218 Value 0 to 65535 --- 1 F001 0
12DA Modbus User Map 219 Value 0 to 65535 --- 1 F001 0
12DB Modbus User Map 220 Value 0 to 65535 --- 1 F001 0
12DC Modbus User Map 221 Value 0 to 65535 --- 1 F001 0
12DD Modbus User Map 222 Value 0 to 65535 --- 1 F001 0
12DE Modbus User Map 223 Value 0 to 65535 --- 1 F001 0
12DF Modbus User Map 224 Value 0 to 65535 --- 1 F001 0
12E0 Modbus User Map 225 Value 0 to 65535 --- 1 F001 0
12E1 Modbus User Map 226 Value 0 to 65535 --- 1 F001 0
12E2 Modbus User Map 227 Value 0 to 65535 --- 1 F001 0
12E3 Modbus User Map 228 Value 0 to 65535 --- 1 F001 0
12E4 Modbus User Map 229 Value 0 to 65535 --- 1 F001 0
12E5 Modbus User Map 230 Value 0 to 65535 --- 1 F001 0
12E6 Modbus User Map 231 Value 0 to 65535 --- 1 F001 0
12E7 Modbus User Map 232 Value 0 to 65535 --- 1 F001 0
12E8 Modbus User Map 233 Value 0 to 65535 --- 1 F001 0
12E9 Modbus User Map 234 Value 0 to 65535 --- 1 F001 0
12EA Modbus User Map 235 Value 0 to 65535 --- 1 F001 0
12EB Modbus User Map 236 Value 0 to 65535 --- 1 F001 0
12EC Modbus User Map 237 Value 0 to 65535 --- 1 F001 0
12ED Modbus User Map 238 Value 0 to 65535 --- 1 F001 0
12EE Modbus User Map 239 Value 0 to 65535 --- 1 F001 0
12EF Modbus User Map 240 Value 0 to 65535 --- 1 F001 0
12F0 Modbus User Map 241 Value 0 to 65535 --- 1 F001 0
12F1 Modbus User Map 242 Value 0 to 65535 --- 1 F001 0
12F2 Modbus User Map 243 Value 0 to 65535 --- 1 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 33


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


12F3 Modbus User Map 244 Value 0 to 65535 --- 1 F001 0
12F4 Modbus User Map 245 Value 0 to 65535 --- 1 F001 0
12F5 Modbus User Map 246 Value 0 to 65535 --- 1 F001 0
12F6 Modbus User Map 247 Value 0 to 65535 --- 1 F001 0
12F7 Modbus User Map 248 Value 0 to 65535 --- 1 F001 0
12F8 Modbus User Map 249 Value 0 to 65535 --- 1 F001 0
12F9 Modbus User Map 250 Value 0 to 65535 --- 1 F001 0
12FA Modbus User Map 251 Value 0 to 65535 --- 1 F001 0
12FB Modbus User Map 252 Value 0 to 65535 --- 1 F001 0
12FC Modbus User Map 253 Value 0 to 65535 --- 1 F001 0
12FD Modbus User Map 254 Value 0 to 65535 --- 1 F001 0
12FE Modbus User Map 255 Value 0 to 65535 --- 1 F001 0
12FF Modbus User Map 256 Value 0 to 65535 --- 1 F001 0
Data Logger Channel Statistics Actual Values (Read Only) (16 Modules)
1300 Data Logger Channel 1 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1302 Data Logger Channel 1 Maximum Date 0 to 4294967295 --- 1 F050 0
1304 Data Logger Channel 1 Maximum Time 0 to 4294967295 --- 1 F050 0
1306 Data Logger Channel 1 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1308 Data Logger Channel 1 Minimum Date 0 to 4294967295 --- 1 F050 0
130A Data Logger Channel 1 Minimum Time 0 to 4294967295 --- 1 F050 0
130C Data Logger Channel 1 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
130E Data Logger Channel 1 Unit --- --- --- F215 (None)
1312 Data Logger Channel 2 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1314 Data Logger Channel 2 Maximum Date 0 to 4294967295 --- 1 F050 0
1316 Data Logger Channel 2 Maximum Time 0 to 4294967295 --- 1 F050 0
1318 Data Logger Channel 2 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
131A Data Logger Channel 2 Minimum Date 0 to 4294967295 --- 1 F050 0
131B Data Logger Channel 2 Minimum Time 0 to 4294967295 --- 1 F050 0
131C Data Logger Channel 2 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
131E Data Logger Channel 2 Unit --- --- --- F215 (None)
1324 Data Logger Channel 3 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1326 Data Logger Channel 3 Maximum Date 0 to 4294967295 --- 1 F050 0
1328 Data Logger Channel 3 Maximum Time 0 to 4294967295 --- 1 F050 0
132A Data Logger Channel 3 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
132C Data Logger Channel 3 Minimum Date 0 to 4294967295 --- 1 F050 0
132E Data Logger Channel 3 Minimum Time 0 to 4294967295 --- 1 F050 0
1330 Data Logger Channel 3 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
1332 Data Logger Channel 3 Unit --- --- --- F215 (None)
1336 Data Logger Channel 4 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1338 Data Logger Channel 4 Maximum Date 0 to 4294967295 --- 1 F050 0

34 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


133A Data Logger Channel 4 Maximum Time 0 to 4294967295 --- 1 F050 0
133C Data Logger Channel 4 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
133E Data Logger Channel 4 Minimum Date 0 to 4294967295 --- 1 F050 0
1340 Data Logger Channel 4 Minimum Time 0 to 4294967295 --- 1 F050 0
1342 Data Logger Channel 4 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
1344 Data Logger Channel 4 Unit --- --- --- F215 (None)
1348 Data Logger Channel 5 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
134A Data Logger Channel 5 Maximum Date 0 to 4294967295 --- 1 F050 0
134C Data Logger Channel 5 Maximum Time 0 to 4294967295 --- 1 F050 0
134E Data Logger Channel 5 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1350 Data Logger Channel 5 Minimum Date 0 to 4294967295 --- 1 F050 0
1352 Data Logger Channel 5 Minimum Time 0 to 4294967295 --- 1 F050 0
1354 Data Logger Channel 5 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
1356 Data Logger Channel 5 Unit --- --- --- F215 (None)
135A Data Logger Channel 6 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
135C Data Logger Channel 6 Maximum Date 0 to 4294967295 --- 1 F050 0
135E Data Logger Channel 6 Maximum Time 0 to 4294967295 --- 1 F050 0
1360 Data Logger Channel 6 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1362 Data Logger Channel 6 Minimum Date 0 to 4294967295 --- 1 F050 0
1364 Data Logger Channel 6 Minimum Time 0 to 4294967295 --- 1 F050 0
1366 Data Logger Channel 6 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
1368 Data Logger Channel 6 Unit --- --- --- F215 (None)
136C Data Logger Channel 7 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
136E Data Logger Channel 7 Maximum Date 0 to 4294967295 --- 1 F050 0
1370 Data Logger Channel 7 Maximum Time 0 to 4294967295 --- 1 F050 0
1372 Data Logger Channel 7 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1374 Data Logger Channel 7 Minimum Date 0 to 4294967295 --- 1 F050 0
1376 Data Logger Channel 7 Minimum Time 0 to 4294967295 --- 1 F050 0
1378 Data Logger Channel 7 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
137A Data Logger Channel 7 Unit --- --- --- F215 (None)
137E Data Logger Channel 8 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1380 Data Logger Channel 8 Maximum Date 0 to 4294967295 --- 1 F050 0
1382 Data Logger Channel 8 Maximum Time 0 to 4294967295 --- 1 F050 0
1384 Data Logger Channel 8 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1386 Data Logger Channel 8 Minimum Date 0 to 4294967295 --- 1 F050 0
1388 Data Logger Channel 8 Minimum Time 0 to 4294967295 --- 1 F050 0
138A Data Logger Channel 8 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 35


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


138C Data Logger Channel 8 Unit --- --- --- F215 (None)
1390 Data Logger Channel 9 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1392 Data Logger Channel 9 Maximum Date 0 to 4294967295 --- 1 F050 0
1394 Data Logger Channel 9 Maximum Time 0 to 4294967295 --- 1 F050 0
1396 Data Logger Channel 9 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1398 Data Logger Channel 9 Minimum Date 0 to 4294967295 --- 1 F050 0
139A Data Logger Channel 9 Minimum Time 0 to 4294967295 --- 1 F050 0
139C Data Logger Channel 9 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
139E Data Logger Channel 9 Unit --- --- --- F215 (None)
13A2 Data Logger Channel 10 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13A4 Data Logger Channel 10 Maximum Date 0 to 4294967295 --- 1 F050 0
13A6 Data Logger Channel 10 Maximum Time 0 to 4294967295 --- 1 F050 0
13A8 Data Logger Channel 10 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13AA Data Logger Channel 10 Minimum Date 0 to 4294967295 --- 1 F050 0
13AC Data Logger Channel 10 Minimum Time 0 to 4294967295 --- 1 F050 0
13AE Data Logger Channel 10 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
13B0 Data Logger Channel 10 Unit --- --- --- F215 (None)
13B4 Data Logger Channel 11 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13B6 Data Logger Channel 11 Maximum Date 0 to 4294967295 --- 1 F050 0
13B8 Data Logger Channel 11 Maximum Time 0 to 4294967295 --- 1 F050 0
13BA Data Logger Channel 11 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13BC Data Logger Channel 11 Minimum Date 0 to 4294967295 --- 1 F050 0
13BE Data Logger Channel 11 Minimum Time 0 to 4294967295 --- 1 F050 0
13C0 Data Logger Channel 11 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
13C2 Data Logger Channel 11 Unit --- --- --- F215 (None)
13C6 Data Logger Channel 12 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13C8 Data Logger Channel 12 Maximum Date 0 to 4294967295 --- 1 F050 0
13CA Data Logger Channel 12 Maximum Time 0 to 4294967295 --- 1 F050 0
13CC Data Logger Channel 12 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13CE Data Logger Channel 12 Minimum Date 0 to 4294967295 --- 1 F050 0
13D0 Data Logger Channel 12 Minimum Time 0 to 4294967295 --- 1 F050 0
13D2 Data Logger Channel 12 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
13D4 Data Logger Channel 12 Unit --- --- --- F215 (None)
13D8 Data Logger Channel 13 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13DA Data Logger Channel 13 Maximum Date 0 to 4294967295 --- 1 F050 0
13DC Data Logger Channel 13 Maximum Time 0 to 4294967295 --- 1 F050 0
13DE Data Logger Channel 13 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999

36 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


13E0 Data Logger Channel 13 Minimum Date 0 to 4294967295 --- 1 F050 0
13E2 Data Logger Channel 13 Minimum Time 0 to 4294967295 --- 1 F050 0
13E4 Data Logger Channel 13 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
13E6 Data Logger Channel 13 Unit --- --- --- F215 (None)
13EA Data Logger Channel 14 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13EC Data Logger Channel 14 Maximum Date 0 to 4294967295 --- 1 F050 0
13EE Data Logger Channel 14 Maximum Time 0 to 4294967295 --- 1 F050 0
13F0 Data Logger Channel 14 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13F2 Data Logger Channel 14 Minimum Date 0 to 4294967295 --- 1 F050 0
13F4 Data Logger Channel 14 Minimum Time 0 to 4294967295 --- 1 F050 0
13F6 Data Logger Channel 14 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
13F8 Data Logger Channel 14 Unit --- --- --- F215 (None)
13FC Data Logger Channel 15 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
13FE Data Logger Channel 15 Maximum Date 0 to 4294967295 --- 1 F050 0
1400 Data Logger Channel 15 Maximum Time 0 to 4294967295 --- 1 F050 0
1402 Data Logger Channel 15 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1404 Data Logger Channel 15 Minimum Date 0 to 4294967295 --- 1 F050 0
1406 Data Logger Channel 15 Minimum Time 0 to 4294967295 --- 1 F050 0
1408 Data Logger Channel 15 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
140A Data Logger Channel 15 Unit --- --- --- F215 (None)
140E Data Logger Channel 16 Maximum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1410 Data Logger Channel 16 Maximum Date 0 to 4294967295 --- 1 F050 0
1412 Data Logger Channel 16 Maximum Time 0 to 4294967295 --- 1 F050 0
1414 Data Logger Channel 16 Minimum -9999999999.999 to --- 0.001 F060 0
9999999999.999
1416 Data Logger Channel 16 Minimum Date 0 to 4294967295 --- 1 F050 0
1418 Data Logger Channel 16 Minimum Time 0 to 4294967295 --- 1 F050 0
141A Data Logger Channel 16 Average -9999999999.999 to --- 0.001 F060 0
9999999999.999
141C Data Logger Channel 16 Unit --- --- --- F215 (None)
Contact Inputs and Outputs (Read Only States)
1420 Contact Inputs 1 to 16 States 0 to 65535 --- 1 F500 0
1421 Contact Inputs 17 to 32 States 0 to 65535 --- 1 F500 0
1422 Contact Inputs 33 through 48 States 0 to 65535 --- 1 F500 0
1423 Contact Inputs 49 through 64 States 0 to 65535 --- 1 F500 0
1424 Contact Inputs 65 through 80 States 0 to 65535 --- 1 F500 0
1425 Contact Inputs 81 through 96 States 0 to 65535 --- 1 F500 0
1426 Contact Inputs 97 through 112 States 0 to 65535 --- 1 F500 0
1427 Contact Inputs 113 through 115 States 0 to 65535 --- 1 F500 0
1430 Contact Outputs 1 to 16 States 0 to 65535 --- 1 F500 0
1431 Contact Outputs 17 to 32 States 0 to 65535 --- 1 F500 0
1432 Contact Outputs 33 to 48 States 0 to 65535 --- 1 F500 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 37


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1433 Contact Outputs 49 through 64 States 0 to 65535 --- 1 F500 0
1434 Contact Outputs 65 through 80 States 0 to 65535 --- 1 F500 0
1435 Contact Outputs 81 through 96 States 0 to 65535 --- 1 F500 0
1436 Contact Outputs 97 through 112 States 0 to 65535 --- 1 F500 0
1437 Contact Outputs 113 through 115 States 0 to 65535 --- 1 F500 0
1438 Contact Outputs 1 to 16 Current States 0 to 65535 --- 1 F500 0
1439 Contact Outputs 17 to 32 Current States 0 to 65535 --- 1 F500 0
143A Contact Outputs 33 to 48 Current States 0 to 65535 --- 1 F500 0
143B Contact Outputs 49 through 64 Current States 0 to 65535 --- 1 F500 0
143C Contact Outputs 65 through 80 Current States 0 to 65535 --- 1 F500 0
143D Contact Outputs 81 through 96 Current States 0 to 65535 --- 1 F500 0
143E Contact Outputs 97 through 112 Current States 0 to 65535 --- 1 F500 0
143F Contact Outputs 113 through 115 Current States 0 to 65535 --- 1 F500 0
1440 Contact Outputs 1 to 16 Voltage States 0 to 65535 --- 1 F500 0
1441 Contact Outputs 17 to 32 Voltage States 0 to 65535 --- 1 F500 0
1442 Contact Outputs 33 to 48 Voltage States 0 to 65535 --- 1 F500 0
1443 Contact Outputs 49 through 64 Voltage States 0 to 65535 --- 1 F500 0
1444 Contact Outputs 65 through 80 Voltage States 0 to 65535 --- 1 F500 0
1445 Contact Outputs 81 through 96 Voltage States 0 to 65535 --- 1 F500 0
1446 Contact Outputs 97 through 112 Voltage States 0 to 65535 --- 1 F500 0
1447 Contact Outputs 113 through 115 Voltage States 0 to 65535 --- 1 F500 0
1448 Contact Outputs 1 to 16 Detectors 0 to 65535 --- 1 F500 0
1449 Contact Outputs 17 to 32 Detectors 0 to 65535 --- 1 F500 0
144A Contact Outputs 33 to 48 Detectors 0 to 65535 --- 1 F500 0
144B Contact Outputs 49 through 64 Detectors 0 to 65535 --- 1 F500 0
144C Contact Outputs 65 through 80 Detectors 0 to 65535 --- 1 F500 0
144D Contact Outputs 81 through 96 Detectors 0 to 65535 --- 1 F500 0
144E Contact Outputs 97 through 112 Detectors 0 to 65535 --- 1 F500 0
144F Contact Outputs 113 through 115 Detectors 0 to 65535 --- 1 F500 0
Protection Virtual Inputs and Outputs (Read Only Non-Volatile States)
14E0 Protection Virtual Inputs 1 to 16 States 0 to 65535 --- 1 F500 0
14E1 Protection Virtual Inputs 17 to 32 States 0 to 65535 --- 1 F500 0
14E2 Protection Virtual Inputs 33 to 48 States 0 to 65535 --- 1 F500 0
14E3 Protection Virtual Inputs 49 to 64 States 0 to 65535 --- 1 F500 0
14E4 Protection Virtual Outputs 1 to 16 States 0 to 65535 --- 1 F500 0
14E5 Protection Virtual Outputs 17 to 32 States 0 to 65535 --- 1 F500 0
14E6 Protection Virtual Outputs 33 to 48 States 0 to 65535 --- 1 F500 0
14E7 Protection Virtual Outputs 49 to 64 States 0 to 65535 --- 1 F500 0
14E8 Protection Virtual Outputs 65 to 80 States 0 to 65535 --- 1 F500 0
14E9 Protection Virtual Outputs 81 to 96 States 0 to 65535 --- 1 F500 0
Remote Inputs and Outputs (Read Only States)
1540 Remote Device 1 to 16 States 0 to 65535 --- 1 F500 0
1541 Remote Device 17 to 32 states 0 to 65535 --- 1 F500 0
1542 Remote Inputs 1 to 16 States 0 to 65535 --- 1 F500 0
1543 Remote Inputs 17 to 32 States 0 to 65535 --- 1 F500 0
1544 Remote Inputs 33 to 48 States 0 to 65535 --- 1 F500 0
1545 Remote Inputs 49 to 64 States 0 to 65535 --- 1 F500 0

38 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1546 Remote Double-Point Status Inputs 1 to 16 States 0 to 4 --- 1 F087 3 (Bad)
1547 Remote Double-Point Status Inputs 17 to 32 States 0 to 4 --- 1 F087 3 (Bad)
1548 Remote Double-Point Status Inputs 33 to 48 States 0 to 4 --- 1 F087 3 (Bad)
1549 Remote Double-Point Status Inputs 49 to 64 States 0 to 4 --- 1 F087 3 (Bad)
154A Remote Double-Point Status Inputs 65 to 80 States 0 to 4 --- 1 F087 3 (Bad)
154B Remote Double-Point Status Inputs 81 to 96 States 0 to 4 --- 1 F087 3 (Bad)
154C Remote Double-Point Status Inputs 97 to 112 States 0 to 4 --- 1 F087 3 (Bad)
154D Remote Double-Point Status Inputs 113 to 128 States 0 to 4 --- 1 F087 3 (Bad)
154E Remote Double-Point Status Inputs 129 to 144 States 0 to 4 --- 1 F087 3 (Bad)
154F Remote Double-Point Status Inputs 144 to 160 States 0 to 4 --- 1 F087 3 (Bad)
1550 Remote Double-Point Status Inputs 161 to 176 States 0 to 4 --- 1 F087 3 (Bad)
1551 Remote Double-Point Status Inputs 177 to 192 States 0 to 4 --- 1 F087 3 (Bad)
1552 Remote Double-Point Status Inputs 193 to 208 States 0 to 4 --- 1 F087 3 (Bad)
1553 Remote Double-Point Status Inputs 209 to 224 States 0 to 4 --- 1 F087 3 (Bad)
1554 Remote Double-Point Status Inputs 225 to 240 States 0 to 4 --- 1 F087 3 (Bad)
1555 Remote Double-Point Status Inputs 241 to 256 States 0 to 4 --- 1 F087 3 (Bad)
1556 Remote Devices Online 0 to 1 --- 1 F126 0 (No)
Remote Device Status (Read Only) (32 Modules)
1557 Remote Device 1 StNum 0 to 4294967295 --- 1 F003 0
1559 Remote Device 1 SqNum 0 to 4294967295 --- 1 F003 0
155B ...Repeated for Remote Device 2
155F ...Repeated for Remote Device 3
1563 ...Repeated for Remote Device 4
1567 ...Repeated for Remote Device 5
156B ...Repeated for Remote Device 6
156F ...Repeated for Remote Device 7
1573 ...Repeated for Remote Device 8
1577 ...Repeated for Remote Device 9
157B ...Repeated for Remote Device 10
157F ...Repeated for Remote Device 11
1583 ...Repeated for Remote Device 12
1587 ...Repeated for Remote Device 13
158B ...Repeated for Remote Device 14
158F ...Repeated for Remote Device 15
1593 ...Repeated for Remote Device 16
1597 ...Repeated for Remote Device 17
159B ...Repeated for Remote Device 18
159F ...Repeated for Remote Device 19
15A3 ...Repeated for Remote Device 20
15A7 ...Repeated for Remote Device 21
15AB ...Repeated for Remote Device 22
15AF ...Repeated for Remote Device 23
15B3 ...Repeated for Remote Device 24
15B7 ...Repeated for Remote Device 25
15BB ...Repeated for Remote Device 26
15BF ...Repeated for Remote Device 27
15C3 ...Repeated for Remote Device 28

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 39


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


15C7 ...Repeated for Remote Device 29
15CB ...Repeated for Remote Device 30
15CF ...Repeated for Remote Device 31
15D3 ...Repeated for Remote Device 32
Data Logger Actual Values (Read Only)
1618 Data Logger Channel Count 0 to 16 CHNL 1 F001 0
1619 Data Logger Oldest Time 0 to 4294967295 seconds 1 F050 0
161B Data Logger Newest Time 0 to 4294967295 seconds 1 F050 0
161D Data Logger Duration 0 to 999.9 DAYS 0.1 F001 0
161E Data Logger Total Logs 0 to 4294967295 --- 1 F003 0
Sensitive Directional Power Actual Values (Read Only) (2 Modules)
1680 Sensitive Directional Power 1 Actual -2147483647 to W 1 F060 0
2147483647
1682 Sensitive Directional Power 2 Actual -2147483647 to W 1 F060 0
2147483647
Autoreclose 1P 3P Actual Values (Read Only)
1730 Autoreclose SCADA AddCause 0 to 65535 --- 1 F500 0
1731 Autoreclose HMI AddCause 0 to 65535 --- 1 F500 0
Autoreclose 1P 3P Commands (Read/Write Command)
1740 Autoreclose SCADA Command 0 to 15 --- 1 F107 0 (None)
1741 Autoreclose HMI Command 0 to 15 --- 1 F107 0 (None)
Battery Monitor Actual Value (Read Only
17F0 Battery Voltage 0 to 65535 V 1 F001 0
Current Metering Actual Values (Read Only) (6 Modules)
1800 Source 1 Phase A Current RMS 0 to 999999.999 A 0.001 F060 0
1802 Source 1 Phase B Current RMS 0 to 999999.999 A 0.001 F060 0
1804 Source 1 Phase C Current RMS 0 to 999999.999 A 0.001 F060 0
1806 Source 1 Neutral Current RMS 0 to 999999.999 A 0.001 F060 0
1808 Source 1 Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
180A Source 1 Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
180B Source 1 Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
180D Source 1 Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
180E Source 1 Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
1810 Source 1 Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
1811 Source 1 Neutral Current Magnitude 0 to 999999.999 A 0.001 F060 0
1813 Source 1 Neutral Current Angle -359.9 to 0 ° 0.1 F002 0
1814 Source 1 Ground Current RMS 0 to 999999.999 A 0.001 F060 0
1816 Source 1 Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1818 Source 1 Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1819 Source 1 Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
181B Source 1 Zero-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
181C Source 1 Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
181E Source 1 Positive-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
181F Source 1 Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
1821 Source 1 Negative-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
1822 Source 1 Differential Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1824 Source 1 Differential Ground Current Angle -359.9 to 0 ° 0.1 F002 0

40 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1825 Source 1 Current Reserved (27 items) --- --- --- F001 0
1840 Source 2 Phase A Current RMS 0 to 999999.999 A 0.001 F060 0
1842 Source 2 Phase B Current RMS 0 to 999999.999 A 0.001 F060 0
1844 Source 2 Phase C Current RMS 0 to 999999.999 A 0.001 F060 0
1846 Source 2 Neutral Current RMS 0 to 999999.999 A 0.001 F060 0
1848 Source 2 Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
184A Source 2 Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
184B Source 2 Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
184D Source 2 Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
184E Source 2 Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
1850 Source 2 Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
1851 Source 2 Neutral Current Magnitude 0 to 999999.999 A 0.001 F060 0
1853 Source 2 Neutral Current Angle -359.9 to 0 ° 0.1 F002 0
1854 Source 2 Ground Current RMS 0 to 999999.999 A 0.001 F060 0
1856 Source 2 Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1858 Source 2 Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1859 Source 2 Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
185B Source 2 Zero-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
185C Source 2 Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
185E Source 2 Positive-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
185F Source 2 Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
1861 Source 2 Negative-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
1862 Source 2 Differential Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1864 Source 2 Differential Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1865 Source 2 Current Reserved (27 items) --- --- --- F001 0
1880 Source 3 Phase A Current RMS 0 to 999999.999 A 0.001 F060 0
1882 Source 3 Phase B Current RMS 0 to 999999.999 A 0.001 F060 0
1884 Source 3 Phase C Current RMS 0 to 999999.999 A 0.001 F060 0
1886 Source 3 Neutral Current RMS 0 to 999999.999 A 0.001 F060 0
1888 Source 3 Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
188A Source 3 Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
188B Source 3 Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
188D Source 3 Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
188E Source 3 Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
1890 Source 3 Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
1891 Source 3 Neutral Current Magnitude 0 to 999999.999 A 0.001 F060 0
1893 Source 3 Neutral Current Angle -359.9 to 0 ° 0.1 F002 0
1894 Source 3 Ground Current RMS 0 to 999999.999 A 0.001 F060 0
1896 Source 3 Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1898 Source 3 Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1899 Source 3 Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
189B Source 3 Zero-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
189C Source 3 Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
189E Source 3 Positive-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
189F Source 3 Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
18A1 Source 3 Negative-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
18A2 Source 3 Differential Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 41


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


18A4 Source 3 Differential Ground Current Angle -359.9 to 0 ° 0.1 F002 0
18A5 Source 3 Current Reserved (27 items) --- --- --- F001 0
18C0 Source 4 Phase A Current RMS 0 to 999999.999 A 0.001 F060 0
18C2 Source 4 Phase B Current RMS 0 to 999999.999 A 0.001 F060 0
18C4 Source 4 Phase C Current RMS 0 to 999999.999 A 0.001 F060 0
18C6 Source 4 Neutral Current RMS 0 to 999999.999 A 0.001 F060 0
18C8 Source 4 Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
18CA Source 4 Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
18CB Source 4 Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
18CD Source 4 Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
18CE Source 4 Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
18D0 Source 4 Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
18D1 Source 4 Neutral Current Magnitude 0 to 999999.999 A 0.001 F060 0
18D3 Source 4 Neutral Current Angle -359.9 to 0 ° 0.1 F002 0
18D4 Source 4 Ground Current RMS 0 to 999999.999 A 0.001 F060 0
18D6 Source 4 Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
18D8 Source 4 Ground Current Angle -359.9 to 0 ° 0.1 F002 0
18D9 Source 4 Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
18DB Source 4 Zero-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
18DC Source 4 Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
18DE Source 4 Positive-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
18DF Source 4 Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
18E1 Source 4 Negative-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
18E2 Source 4 Differential Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
18E4 Source 4 Differential Ground Current Angle -359.9 to 0 ° 0.1 F002 0
18E5 Source 4 Current Reserved (27 items) --- --- --- F001 0
1900 Source 5 Phase A Current RMS 0 to 999999.999 A 0.001 F060 0
1902 Source 5 Phase B Current RMS 0 to 999999.999 A 0.001 F060 0
1904 Source 5 Phase C Current RMS 0 to 999999.999 A 0.001 F060 0
1906 Source 5 Neutral Current RMS 0 to 999999.999 A 0.001 F060 0
1908 Source 5 Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
190A Source 5 Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
190B Source 5 Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
190D Source 5 Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
190E Source 5 Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
1910 Source 5 Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
1911 Source 5 Neutral Current Magnitude 0 to 999999.999 A 0.001 F060 0
1913 Source 5 Neutral Current Angle -359.9 to 0 ° 0.1 F002 0
1914 Source 5 Ground Current RMS 0 to 999999.999 A 0.001 F060 0
1916 Source 5 Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1918 Source 5 Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1919 Source 5 Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
191B Source 5 Zero-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
191C Source 5 Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
191E Source 5 Positive-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
191F Source 5 Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
1921 Source 5 Negative-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0

42 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1922 Source 5 Differential Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1924 Source 5 Differential Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1925 Source 5 Current Reserved (27 items) --- --- --- F001 0
1940 Source 6 Phase A Current RMS 0 to 999999.999 A 0.001 F060 0
1942 Source 6 Phase B Current RMS 0 to 999999.999 A 0.001 F060 0
1944 Source 6 Phase C Current RMS 0 to 999999.999 A 0.001 F060 0
1946 Source 6 Neutral Current RMS 0 to 999999.999 A 0.001 F060 0
1948 Source 6 Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
194A Source 6 Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
194B Source 6 Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
194D Source 6 Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
194E Source 6 Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
1950 Source 6 Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
1951 Source 6 Neutral Current Magnitude 0 to 999999.999 A 0.001 F060 0
1953 Source 6 Neutral Current Angle -359.9 to 0 ° 0.1 F002 0
1954 Source 6 Ground Current RMS 0 to 999999.999 A 0.001 F060 0
1956 Source 6 Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1958 Source 6 Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1959 Source 6 Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
195B Source 6 Zero-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
195C Source 6 Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
195E Source 6 Positive-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
195F Source 6 Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
1961 Source 6 Negative-Sequence Current Angle -359.9 to 0 ° 0.1 F002 0
1962 Source 6 Differential Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
1964 Source 6 Differential Ground Current Angle -359.9 to 0 ° 0.1 F002 0
1965 Source 6 Current Reserved (27 items) --- --- --- F001 0
Voltage Metering Actual Values (Read Only) (6 Modules)
1A00 Source 1 Phase AG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A02 Source 1 Phase BG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A04 Source 1 Phase CG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A06 Source 1 Phase AG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A08 Source 1 Phase AG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A09 Source 1 Phase BG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A0B Source 1 Phase BG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A0C Source 1 Phase CG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A0E Source 1 Phase CG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A0F Source 1 Phase AB or AC Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A11 Source 1 Phase BC or BA Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A13 Source 1 Phase CA or CB Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A15 Source 1 Phase AB or AC Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A17 Source 1 Phase AB or AC Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A18 Source 1 Phase BC or BA Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A1A Source 1 Phase BC or BA Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A1B Source 1 Phase CA or CB Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A1D Source 1 Phase CA or CB Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A1E Source 1 Auxiliary Voltage RMS 0 to 999999.999 V 0.001 F060 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 43


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1A20 Source 1 Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A22 Source 1 Auxiliary Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A23 Source 1 Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A25 Source 1 Zero-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A26 Source 1 Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A28 Source 1 Positive-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A29 Source 1 Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A2B Source 1 Negative-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A40 Source 2 Phase AG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A42 Source 2 Phase BG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A44 Source 2 Phase CG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A46 Source 2 Phase AG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A48 Source 2 Phase AG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A49 Source 2 Phase BG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A4B Source 2 Phase BG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A4C Source 2 Phase CG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A4E Source 2 Phase CG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A4F Source 2 Phase AB or AC Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A51 Source 2 Phase BC or BA Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A53 Source 2 Phase CA or CB Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A55 Source 2 Phase AB or AC Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A57 Source 2 Phase AB or AC Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A58 Source 2 Phase BC or BA Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A5A Source 2 Phase BC or BA Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A5B Source 2 Phase CA or CB Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A5D Source 2 Phase CA or CB Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A5E Source 2 Auxiliary Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A60 Source 2 Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A62 Source 2 Auxiliary Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A63 Source 2 Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A65 Source 2 Zero-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A66 Source 2 Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A68 Source 2 Positive-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A69 Source 2 Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A6B Source 2 Negative-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A80 Source 3 Phase AG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A82 Source 3 Phase BG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A84 Source 3 Phase CG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A86 Source 3 Phase AG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A88 Source 3 Phase AG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A89 Source 3 Phase BG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A8B Source 3 Phase BG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A8C Source 3 Phase CG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A8E Source 3 Phase CG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A8F Source 3 Phase AB or AC Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A91 Source 3 Phase BC or BA Voltage RMS 0 to 999999.999 V 0.001 F060 0
1A93 Source 3 Phase CA or CB Voltage RMS 0 to 999999.999 V 0.001 F060 0

44 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1A95 Source 3 Phase AB or AC Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A97 Source 3 Phase AB or AC Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A98 Source 3 Phase BC or BA Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A9A Source 3 Phase BC or BA Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A9B Source 3 Phase CA or CB Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1A9D Source 3 Phase CA or CB Voltage Angle -359.9 to 0 ° 0.1 F002 0
1A9E Source 3 Auxiliary Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AA0 Source 3 Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AA2 Source 3 Auxiliary Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AA3 Source 3 Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AA5 Source 3 Zero-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AA6 Source 3 Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AA8 Source 3 Positive-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AA9 Source 3 Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AAB Source 3 Negative-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AC0 Source 4 Phase AG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AC2 Source 4 Phase BG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AC4 Source 4 Phase CG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AC6 Source 4 Phase AG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AC8 Source 4 Phase AG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AC9 Source 4 Phase BG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1ACB Source 4 Phase BG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1ACC Source 4 Phase CG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1ACE Source 4 Phase CG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1ACF Source 4 Phase AB or AC Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AD1 Source 4 Phase BC or BA Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AD3 Source 4 Phase CA or CB Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AD5 Source 4 Phase AB or AC Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AD7 Source 4 Phase AB or AC Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AD8 Source 4 Phase BC or BA Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1ADA Source 4 Phase BC or BA Voltage Angle -359.9 to 0 ° 0.1 F002 0
1ADB Source 4 Phase CA or CB Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1ADD Source 4 Phase CA or CB Voltage Angle -359.9 to 0 ° 0.1 F002 0
1ADE Source 4 Auxiliary Voltage RMS 0 to 999999.999 V 0.001 F060 0
1AE0 Source 4 Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AE2 Source 4 Auxiliary Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AE3 Source 4 Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AE5 Source 4 Zero-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AE6 Source 4 Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1AE8 Source 4 Positive-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1AE9 Source 4 Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1BEB Source 4 Negative-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B00 Source 5 Phase AG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B02 Source 5 Phase BG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B04 Source 5 Phase CG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B06 Source 5 Phase AG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B08 Source 5 Phase AG Voltage Angle -359.9 to 0 ° 0.1 F002 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 45


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1B09 Source 5 Phase BG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B0B Source 5 Phase BG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B0C Source 5 Phase CG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B0E Source 5 Phase CG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B0F Source 5 Phase AB or AC Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B11 Source 5 Phase BC or BA Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B13 Source 5 Phase CA or CB Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B15 Source 5 Phase AB or AC Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B17 Source 5 Phase AB or AC Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B18 Source 5 Phase BC or BA Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B1A Source 5 Phase BC or BA Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B1B Source 5 Phase CA or CB Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B1D Source 5 Phase CA or CB Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B1E Source 5 Auxiliary Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B20 Source 5 Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B22 Source 5 Auxiliary Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B23 Source 5 Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B25 Source 5 Zero-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B26 Source 5 Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B28 Source 5 Positive-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B29 Source 5 Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B2B Source 5 Negative-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B40 Source 6 Phase AG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B42 Source 6 Phase BG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B44 Source 6 Phase CG Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B46 Source 6 Phase AG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B48 Source 6 Phase AG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B49 Source 6 Phase BG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B4B Source 6 Phase BG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B4C Source 6 Phase CG Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B4E Source 6 Phase CG Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B4F Source 6 Phase AB or AC Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B51 Source 6 Phase BC or BA Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B53 Source 6 Phase CA or CB Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B55 Source 6 Phase AB or AC Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B57 Source 6 Phase AB or AC Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B58 Source 6 Phase BC or BA Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B5A Source 6 Phase BC or BA Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B5B Source 6 Phase CA or CB Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B5D Source 6 Phase CA or CB Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B5E Source 6 Auxiliary Voltage RMS 0 to 999999.999 V 0.001 F060 0
1B60 Source 6 Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B62 Source 6 Auxiliary Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B63 Source 6 Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B65 Source 6 Zero-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
1B66 Source 6 Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B68 Source 6 Positive-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0

46 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1B69 Source 6 Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
1B6B Source 6 Negative-Sequence Voltage Angle -359.9 to 0 ° 0.1 F002 0
Power Metering Actual Values (Read Only) (6 Modules)
1C00 Source 1 Three-Phase Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C02 Source 1 Phase A Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C04 Source 1 Phase B Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C06 Source 1 Phase C Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C08 Source 1 Three-Phase Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C0A Source 1 Phase A Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C0C Source 1 Phase B Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C0E Source 1 Phase C Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C10 Source 1 Three-Phase Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C12 Source 1 Phase A Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C14 Source 1 Phase B Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C16 Source 1 Phase C Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C18 Source 1 Three-Phase Power Factor -0.999 to 1 --- 0.001 F013 0
1C19 Source 1 Phase A Power Factor -0.999 to 1 --- 0.001 F013 0
1C1A Source 1 Phase B Power Factor -0.999 to 1 --- 0.001 F013 0
1C1B Source 1 Phase C Power Factor -0.999 to 1 --- 0.001 F013 0
1C20 Source 2 Three-Phase Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C22 Source 2 Phase A Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C24 Source 2 Phase B Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C26 Source 2 Phase C Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C28 Source 2 Three-Phase Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C2A Source 2 Phase A Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C2C Source 2 Phase B Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C2E Source 2 Phase C Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C30 Source 2 Three-Phase Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C32 Source 2 Phase A Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C34 Source 2 Phase B Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C36 Source 2 Phase C Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 47


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1C38 Source 2 Three-Phase Power Factor -0.999 to 1 --- 0.001 F013 0
1C39 Source 2 Phase A Power Factor -0.999 to 1 --- 0.001 F013 0
1C3A Source 2 Phase B Power Factor -0.999 to 1 --- 0.001 F013 0
1C3B Source 2 Phase C Power Factor -0.999 to 1 --- 0.001 F013 0
1C40 Source 3 Three-Phase Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C42 Source 3 Phase A Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C44 Source 3 Phase B Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C46 Source 3 Phase C Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C48 Source 3 Three-Phase Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C4A Source 3 Phase A Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C4C Source 3 Phase B Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C4E Source 3 Phase C Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C50 Source 3 Three-Phase Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C52 Source 3 Phase A Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C54 Source 3 Phase B Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C56 Source 3 Phase C Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C58 Source 3 Three-Phase Power Factor -0.999 to 1 --- 0.001 F013 0
1C59 Source 3 Phase A Power Factor -0.999 to 1 --- 0.001 F013 0
1C5A Source 3 Phase B Power Factor -0.999 to 1 --- 0.001 F013 0
1C5B Source 3 Phase C Power Factor -0.999 to 1 --- 0.001 F013 0
1C60 Source 4 Three-Phase Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C62 Source 4 Phase A Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C64 Source 4 Phase B Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C66 Source 4 Phase C Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C68 Source 4 Three-Phase Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C6A Source 4 Phase A Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C6C Source 4 Phase B Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C6E Source 4 Phase C Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C70 Source 4 Three-Phase Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C72 Source 4 Phase A Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C74 Source 4 Phase B Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000

48 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


1C76 Source 4 Phase C Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C78 Source 4 Three-Phase Power Factor -0.999 to 1 --- 0.001 F013 0
1C79 Source 4 Phase A Power Factor -0.999 to 1 --- 0.001 F013 0
1C7A Source 4 Phase B Power Factor -0.999 to 1 --- 0.001 F013 0
1C7B Source 4 Phase C Power Factor -0.999 to 1 --- 0.001 F013 0
1C80 Source 5 Three-Phase Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C82 Source 5 Phase A Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C84 Source 5 Phase B Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C86 Source 5 Phase C Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1C88 Source 5 Three-Phase Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C8A Source 5 Phase A Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C8C Source 5 Phase B Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C8E Source 5 Phase C Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1C90 Source 5 Three-Phase Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C92 Source 5 Phase A Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C94 Source 5 Phase B Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C96 Source 5 Phase C Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1C98 Source 5 Three-Phase Power Factor -0.999 to 1 --- 0.001 F013 0
1C99 Source 5 Phase A Power Factor -0.999 to 1 --- 0.001 F013 0
1C9A Source 5 Phase B Power Factor -0.999 to 1 --- 0.001 F013 0
1C9B Source 5 Phase C Power Factor -0.999 to 1 --- 0.001 F013 0
1CA0 Source 6 Three-Phase Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1CA2 Source 6 Phase A Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1CA4 Source 6 Phase B Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1CA6 Source 6 Phase C Real Power -1000000000000 to W 0.001 F060 0
1000000000000
1CA8 Source 6 Three-Phase Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1CAA Source 6 Phase A Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1CAC Source 6 Phase B Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1CAE Source 6 Phase C Reactive Power -1000000000000 to var 0.001 F060 0
1000000000000
1CB0 Source 6 Three-Phase Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1CB2 Source 6 Phase A Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 49


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


1CB4 Source 6 Phase B Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1CB6 Source 6 Phase C Apparent Power -1000000000000 to VA 0.001 F060 0
1000000000000
1CB8 Source 6 Three-Phase Power Factor -0.999 to 1 --- 0.001 F013 0
1CB9 Source 6 Phase A Power Factor -0.999 to 1 --- 0.001 F013 0
1CBA Source 6 Phase B Power Factor -0.999 to 1 --- 0.001 F013 0
1CBB Source 6 Phase C Power Factor -0.999 to 1 --- 0.001 F013 0
Energy Metering Actual Values (Read Only Non-Volatile) (6 Modules)
1D00 Source 1 Positive Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D02 Source 1 Negative Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D04 Source 1 Positive Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D06 Source 1 Negative Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D08 Source 1 Energy Reserved (8 items) --- --- --- F001 0
1D10 Source 2 Positive Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D12 Source 2 Negative Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D14 Source 2 Positive Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D16 Source 2 Negative Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D18 Source 2 Energy Reserved (8 items) --- --- --- F001 0
1D20 Source 3 Positive Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D22 Source 3 Negative Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D24 Source 3 Positive Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D26 Source 3 Negative Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D28 Source 3 Energy Reserved (8 items) --- --- --- F001 0
1D30 Source 4 Positive Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D32 Source 4 Negative Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D34 Source 4 Positive Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D36 Source 4 Negative Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D38 Source 4 Energy Reserved (8 items) --- --- --- F001 0
1D40 Source 5 Positive Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D42 Source 5 Negative Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D44 Source 5 Positive Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D46 Source 5 Negative Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D48 Source 5 Energy Reserved (8 items) --- --- --- F001 0
1D50 Source 6 Positive Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D52 Source 6 Negative Watt-hour 0 to 1000000000000 Wh 0.001 F060 0
1D54 Source 6 Positive Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D56 Source 6 Negative Var-hour 0 to 1000000000000 varh 0.001 F060 0
1D58 Source 6 Energy Reserved (8 items) --- --- --- F001 0
Frequency Metering Actual Values (Read Only) (6 Modules)
1D80 Source 1 Frequency 2 to 90 Hz 0.001 F003 0
1D82 Source 2 Frequency 2 to 90 Hz 0.001 F003 0
1D84 Source 3 Frequency 2 to 90 Hz 0.001 F003 0
1D86 Source 4 Frequency 2 to 90 Hz 0.001 F003 0
1D88 Source 5 Frequency 2 to 90 Hz 0.001 F003 0
1D8A Source 6 Frequency 2 to 90 Hz 0.001 F003 0

50 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


Energy Metering CommandS (Read/Write Command)
21A0 Energy Clear Command 0 to 1 --- 1 F126 0 (No)
Breaker Flashover (Read/Write Setting) (2 Modules)
21A6 Breaker 1 Flashover Function 0 to 1 --- 1 F102 0 (Disabled)
21A7 Breaker 1 Flashover Side 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
21A8 Breaker 1 Flashover Side 2 Source 0 to 6 --- 1 F211 0 (None)
21A9 Breaker 1 Flashover Status Closed A 0 to 65535 --- 1 F300 0
21AA Breaker 1 Flashover Status Closed B 0 to 65535 --- 1 F300 0
21AB Breaker 1 Flashover Status Closed C 0 to 65535 --- 1 F300 0
21AC Breaker 1 Flashover Voltage Pickup Level 0 to 1.5 pu 0.001 F001 850
21AD Breaker 1 Flashover Voltage Difference Pickup Level 0 to 100000 V 1 F060 1000
21AF Breaker 1 Flashover Current Pickup Level 0 to 1.5 pu 0.001 F001 600
21B0 Breaker 1 Flashover Pickup Delay 0 to 65.535 s 0.001 F001 100
21B1 Breaker 1 Flashover Supervision Phase A 0 to 0 to 65535 --- 1 F300 0
21B2 Breaker 1 Flashover Supervision Phase B 0 to 0 to 65535 --- 1 F300 0
21B3 Breaker 1 Flashover Supervision Phase C 0 to 0 to 65535 --- 1 F300 0
21B4 Breaker 1 Flashover Block 0 to 0 to 65535 --- 1 F300 0
21B5 Breaker 1 Flashover Events 0 to 1 --- 1 F102 0 (Disabled)
21B6 Reserved (5 items) --- --- --- F001 0
21BB ...Repeated for Breaker 2 Flashover
Breaker Arcing Current Actual Values (Read Only) (3 Modules)
21E0 Breaker 1 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
A
21E2 Breaker 1 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
B
21E4 Breaker 1 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
C
21E6 Breaker 1 Arcing Clearing Time Phase A 0 to 65535 ms 1 F001 0
21E7 Breaker 1 Arcing Clearing Time Phase B 0 to 65535 ms 1 F001 0
21E8 Breaker 1 Arcing Clearing Time Phase C 0 to 65535 ms 1 F001 0
21E9 Breaker 1 Arcing Clearing Time 0 to 65535 ms 1 F001 0
21EA Breaker 1 Arcing Current Phase A 0 to 99999999 kA 1 F060 0
21EC Breaker 1 Arcing Current Phase B 0 to 99999999 kA 1 F060 0
21EE Breaker 1 Arcing Current Phase C 0 to 99999999 kA 1 F060 0
21F0 Breaker 1 Arcing Maximum Arcing Current Phase A 0 to 99999999 kA 1 F060 0
21F2 Breaker 1 Arcing Maximum Arcing Current Phase B 0 to 99999999 kA 1 F060 0
21F4 Breaker 1 Arcing Maximum Arcing Current Phase C 0 to 99999999 kA 1 F060 0
21F6 Breaker 2 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
A
21F8 Breaker 2 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
B
21FA Breaker 2 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
C
21FC Breaker 2 Arcing Clearing Time Phase A 0 to 65535 ms 1 F001 0
21FD Breaker 2 Arcing Clearing Time Phase B 0 to 65535 ms 1 F001 0
21FE Breaker 2 Arcing Clearing Time Phase C 0 to 65535 ms 1 F001 0
21FF Breaker 2 Arcing Clearing Time 0 to 65535 ms 1 F001 0
2200 Breaker 2 Arcing Current Phase A 0 to 99999999 kA 1 F060 0
2202 Breaker 2 Arcing Current Phase B 0 to 99999999 kA 1 F060 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 51


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2204 Breaker 2 Arcing Current Phase C 0 to 99999999 kA 1 F060 0
2206 Breaker 2 Arcing Maximum Arcing Current Phase A 0 to 99999999 kA 1 F060 0
2208 Breaker 2 Arcing Maximum Arcing Current Phase B 0 to 99999999 kA 1 F060 0
220A Breaker 2 Arcing Maximum Arcing Current Phase C 0 to 99999999 kA 1 F060 0
220C Breaker 3 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
A
220E Breaker 3 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
B
2210 Breaker 3 Arcing Accumulated Arcing Current Phase 0 to 99999999 kA2-cyc 1 F060 0
C
2212 Breaker 3 Arcing Clearing Time Phase A 0 to 65535 ms 1 F001 0
2213 Breaker 3 Arcing Clearing Time Phase B 0 to 65535 ms 1 F001 0
2214 Breaker 3 Arcing Clearing Time Phase C 0 to 65535 ms 1 F001 0
2215 Breaker 3 Arcing Clearing Time 0 to 65535 ms 1 F001 0
2216 Breaker 3 Arcing Current Phase A 0 to 99999999 kA 1 F060 0
2218 Breaker 3 Arcing Current Phase B 0 to 99999999 kA 1 F060 0
221A Breaker 3 Arcing Current Phase C 0 to 99999999 kA 1 F060 0
221C Breaker 3 Arcing Maximum Arcing Current Phase A 0 to 99999999 kA 1 F060 0
221E Breaker 3 Arcing Maximum Arcing Current Phase B 0 to 99999999 kA 1 F060 0
2220 Breaker 3 Arcing Maximum Arcing Current Phase C 0 to 99999999 kA 1 F060 0
Breaker Arcing Current Commands (Read/Write Command) (6 Modules)
2224 Breaker 1 Arcing Amp Clear Command 0 to 1 --- 1 F126 0 (No)
2225 Breaker 2 Arcing Amp Clear Command 0 to 1 --- 1 F126 0 (No)
2226 Breaker 3 Arcing Amp Clear Command 0 to 1 --- 1 F126 0 (No)
2227 Breaker 4 Arcing Amp Clear Command 0 to 1 --- 1 F126 0 (No)
2228 Breaker 5 Arcing Amp Clear Command 0 to 1 --- 1 F126 0 (No)
2229 Breaker 6 Arcing Amp Clear Command 0 to 1 --- 1 F126 0 (No)
Passwords Unauthorized Access (Read/Write Command)
2230 Reset Unauthorized Access 0 to 1 --- 1 F126 0 (No)
Fault Location Actual Values (Read Only) (5 Modules)
2340 Fault 1 Prefault Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
2342 Fault 1 Prefault Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
2343 Fault 1 Prefault Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
2345 Fault 1 Prefault Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
2346 Fault 1 Prefault Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
2348 Fault 1 Prefault Phase C Current Angle -359.9 to 0 ° 0.1 F002 0
2349 Fault 1 Prefault Phase A Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
234B Fault 1 Prefault Phase A Voltage Angle -359.9 to 0 ° 0.1 F002 0
234C Fault 1 Prefault Phase B Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
234E Fault 1 Prefault Phase B Voltage Angle -359.9 to 0 ° 0.1 F002 0
234F Fault 1 Prefault Phase C Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
2351 Fault 1 Prefault Phase C Voltage Angle -359.9 to 0 ° 0.1 F002 0
2352 Fault 1 Fault Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0
2354 Fault 1 Fault Phase A Current Angle -359.9 to 0 ° 0.1 F002 0
2355 Fault 1 Fault Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
2357 Fault 1 Fault Phase B Current Angle -359.9 to 0 ° 0.1 F002 0
2358 Fault 1 Fault Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
235A Fault 1 Fault Phase C Current Angle -359.9 to 0 ° 0.1 F002 0

52 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


235B Fault 1 Fault Phase A Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
235D Fault 1 Fault Phase A Voltage Angle -359.9 to 0 ° 0.1 F002 0
235E Fault 1 Fault Phase B Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
2360 Fault 1 Fault Phase B Voltage Angle -359.9 to 0 ° 0.1 F002 0
2361 Fault 1 Fault Phase C Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
2363 Fault 1 Fault Phase C Voltage Angle -359.9 to 0 ° 0.1 F002 0
2364 Fault 1 Fault Type 0 to 11 --- 1 F148 0 (N/A)
2365 Fault 1 Fault Location –3276.7 to 3276.7 --- 0.1 F002 0
2366 ...Repeated for Fault 2
238C ...Repeated for Fault 3
23B2 ...Repeated for Fault 4
23D8 ...Repeated for Fault 5
Synchrocheck Actual Values (Read Only) (2 Modules)
2400 Synchrocheck 1 Delta Voltage -1000000000000 to V 1 F060 0
1000000000000
2402 Synchrocheck 1 Delta Frequency 0 to 655.35 Hz 0.01 F001 0
2403 Synchrocheck 1 Delta Phase 0 to 359.9 ° 0.1 F001 0
2404 Synchrocheck 2 Delta Voltage -1000000000000 to V 1 F060 0
1000000000000
2406 Synchrocheck 2 Delta Frequency 0 to 655.35 Hz 0.01 F001 0
2407 Synchrocheck 2 Delta Phase 0 to 359.9 ° 0.1 F001 0
Autoreclose Status Actual Values (Read Only) (6 Modules)
2410 Autoreclose Count 0 to 65535 --- 1 F001 0
2411 Autoreclose Count 0 to 65535 --- 1 F001 0
2412 Autoreclose Count 0 to 65535 --- 1 F001 0
2413 Autoreclose Count 0 to 65535 --- 1 F001 0
2414 Autoreclose Count 0 to 65535 --- 1 F001 0
2415 Autoreclose Count 0 to 65535 --- 1 F001 0
Breaker (Read/Write Setting) (6 Modules)
2530 Breaker 1 Function 0 to 1 --- 1 F102 0 (Disabled)
2531 Breaker 1 Long Name --- --- --- F202 "Breaker 1"
253B Breaker 1 Short Name --- --- --- F206 "Bkr 1"
253E Breaker 1 Substitution 0 to 1 --- 1 F102 0 (Disabled)
253F Breaker 1 Combined P&C 0 to 1 --- 1 F102 0 (Disabled)
2540 Breaker 1 Ext Trip A 0 to 65535 --- 1 F300 0
2541 Breaker 1 Ext Trip B 0 to 65535 --- 1 F300 0
2542 Breaker 1 Ext Trip C 0 to 65535 --- 1 F300 0
2543 Breaker 1 Ext Trip 0 to 65535 --- 1 F300 0
2544 Breaker 1 Ext Open Cmd 0 to 65535 --- 1 F300 0
2545 Breaker 1 Block Open Cmd 0 to 65535 --- 1 F300 0
2546 Breaker 1 Ext Close Cmd 0 to 65535 --- 1 F300 0
2547 Breaker 1 AR Close Supv 0 to 65535 --- 1 F300 0
2548 Breaker 1 Block Close Cmd 0 to 65535 --- 1 F300 0
2549 Breaker 1 BKR in Local 0 to 65535 --- 1 F300 0
254A Breaker 1 Indication Mode 0 to 1 --- 1 F157 0 (3-Pole)
254B Breaker 1 A/3P Closed Status 0 to 65535 --- 1 F300 0
254C Breaker 1 A/3P Opened Status 0 to 65535 --- 1 F300 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 53


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


254D Breaker 1 B Closed Status 0 to 65535 --- 1 F300 0
254E Breaker 1 B Opened Status 0 to 65535 --- 1 F300 0
254F Breaker 1 C Closed Status 0 to 65535 --- 1 F300 0
2550 Breaker 1 C Opened Status 0 to 65535 --- 1 F300 0
2551 Breaker 1 Toperate 0 to 2 s 0.001 F001 70
2552 Breaker 1 Tdiscrep 0 to 2 s 0.001 F001 70
2553 Breaker 1 Reset Counter 0 to 65535 --- 1 F300 0
2554 Breaker 1 Events 0 to 1 --- 1 F102 1 (Enabled)
2555 ...Repeated for Breaker 2
257A ...Repeated for Breaker 3
259F ...Repeated for Breaker 4
25C4 ...Repeated for Breaker 5
25E9 ...Repeated for Breaker 6
Breaker Control (Read/Write Setting) (6 Modules)
2610 Breaker 1 Cntrl Function 0 to 1 --- 1 F102 0 (Disabled)
2611 Breaker 1 Cntrl PB Control 0 to 1 --- 1 F102 1 (Enabled)
2612 Breaker 1 Cntrl Local Control 0 to 65535 --- 1 F300 0
2613 Breaker 1 Cntrl Remote Control 0 to 65535 --- 1 F300 0
2614 Breaker 1 Cntrl Tselect 0 to 30 s 0.1 F001 100
2615 Breaker 1 Cntrl Auto Close 0 to 65535 --- 1 F300 0
2616 Breaker 1 Cntrl Auto Open 0 to 65535 --- 1 F300 0
2617 Breaker 1 Cntrl Texec 0 to 10 s 0.1 F001 100
2618 Breaker 1 Cntrl Control Bypass 0 to 1 --- 1 F102 0 (Disabled)
2619 Breaker 1 Cntrl Auto Bypass 0 to 65535 --- 1 F300 0
261A Breaker 1 Cntrl Tbypass 0 to 30 s 0.1 F001 100
261B Breaker 1 Cntrl Events 0 to 1 --- 1 F102 1 (Enabled)
261C ...Repeated for Breaker 2
2628 ...Repeated for Breaker 3
2634 ...Repeated for Breaker 4
2640 ...Repeated for Breaker 5
264C ...Repeated for Breaker 6
Breaker Interlock (Read/Write Setting) (6 Modules)
2660 Breaker 1 Interlock Function 0 to 1 --- 1 F102 0 (Disabled)
2661 Breaker 1 Interlock Tagging 0 to 1 --- 1 F102 0 (Disabled)
2662 Breaker 1 Status Supv 0 to 1 --- 1 F102 0 (Disabled)
2663 Breaker 1 Interlock Close Interlock 1 0 to 65535 --- 1 F300 0
2664 Breaker 1 Interlock Close Interlock 2 0 to 65535 --- 1 F300 0
2665 Breaker 1 Interlock Close Interlock 3 0 to 65535 --- 1 F300 0
2666 Breaker 1 Interlock Sync Permissive 0 to 65535 --- 1 F300 0
2667 Breaker 1 Interlock Open Interlock 1 0 to 65535 --- 1 F300 0
2668 Breaker 1 Interlock Open Interlock 2 0 to 65535 --- 1 F300 0
2669 Breaker 1 Interlock Open Interlock 3 0 to 65535 --- 1 F300 0
266A Breaker 1 Interlock Events 0 to 1 --- 1 F102 1 (Enabled)
266B ...Repeated for Breaker 2
2676 ...Repeated for Breaker 3
2681 ...Repeated for Breaker 4
268C ...Repeated for Breaker 5

54 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


2697 ...Repeated for Breaker 6
Expanded FlexState Actual Values (Read Only)
2B00 FlexState 1 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B01 FlexState 2 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B02 FlexState 3 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B03 FlexState 4 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B04 FlexState 5 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B05 FlexState 6 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B06 FlexState 7 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B07 FlexState 8 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B08 FlexState 9 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B09 FlexState 10 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B0A FlexState 11 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B0B FlexState 12 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B0C FlexState 13 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B0D FlexState 14 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B0E FlexState 15 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B0F FlexState 16 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B10 FlexState 17 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B11 FlexState 18 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B12 FlexState 19 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B13 FlexState 20 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B14 FlexState 21 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B15 FlexState 22 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B16 FlexState 23 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B17 FlexState 24 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B18 FlexState 25 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B19 FlexState 26 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B1A FlexState 27 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B1B FlexState 28 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B1C FlexState 29 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B1D FlexState 30 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B1E FlexState 31 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B1F FlexState 32 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B20 FlexState 33 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B21 FlexState 34 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B22 FlexState 35 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B23 FlexState 36 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B24 FlexState 37 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B25 FlexState 38 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B26 FlexState 39 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B27 FlexState 40 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B28 FlexState 41 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B29 FlexState 42 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B2A FlexState 43 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B2B FlexState 44 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B2C FlexState 45 Actual Value 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 55


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2B2D FlexState 46 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B2E FlexState 47 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B2F FlexState 48 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B30 FlexState 49 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B31 FlexState 50 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B32 FlexState 51 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B33 FlexState 52 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B34 FlexState 53 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B35 FlexState 54 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B36 FlexState 55 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B37 FlexState 56 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B38 FlexState 57 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B39 FlexState 58 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B3A FlexState 59 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B3B FlexState 60 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B3C FlexState 61 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B3D FlexState 62 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B3E FlexState 63 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B3F FlexState 64 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B40 FlexState 65 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B41 FlexState 66 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B42 FlexState 67 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B43 FlexState 68 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B44 FlexState 69 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B45 FlexState 70 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B46 FlexState 71 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B47 FlexState 72 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B48 FlexState 73 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B49 FlexState 74 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B4A FlexState 75 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B4B FlexState 76 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B4C FlexState 77 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B4D FlexState 78 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B4E FlexState 79 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B4F FlexState 80 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B50 FlexState 81 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B51 FlexState 82 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B52 FlexState 83 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B53 FlexState 84 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B54 FlexState 85 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B55 FlexState 86 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B56 FlexState 87 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B57 FlexState 88 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B58 FlexState 89 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B59 FlexState 90 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B5A FlexState 91 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B5B FlexState 92 Actual Value 0 to 1 --- 1 F108 0 (Off)

56 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


2B5C FlexState 93 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B5D FlexState 94 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B5E FlexState 95 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B5F FlexState 96 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B60 FlexState 97 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B61 FlexState 98 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B62 FlexState 99 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B63 FlexState 100 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B64 FlexState 101 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B65 FlexState 102 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B66 FlexState 103 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B67 FlexState 104 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B68 FlexState 105 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B69 FlexState 106 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B6A FlexState 107 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B6B FlexState 108 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B6C FlexState 109 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B6D FlexState 110 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B6E FlexState 111 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B6F FlexState 112 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B70 FlexState 113 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B71 FlexState 114 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B72 FlexState 115 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B73 FlexState 116 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B74 FlexState 117 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B75 FlexState 118 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B76 FlexState 119 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B77 FlexState 120 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B78 FlexState 121 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B79 FlexState 122 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B7A FlexState 123 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B7B FlexState 124 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B7C FlexState 125 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B7D FlexState 126 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B7E FlexState 127 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B7F FlexState 128 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B80 FlexState 129 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B81 FlexState 130 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B82 FlexState 131 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B83 FlexState 132 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B84 FlexState 133 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B85 FlexState 134 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B86 FlexState 135 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B87 FlexState 136 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B88 FlexState 137 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B89 FlexState 138 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B8A FlexState 139 Actual Value 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 57


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2B8B FlexState 140 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B8C FlexState 141 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B8D FlexState 142 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B8E FlexState 143 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B8F FlexState 144 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B90 FlexState 145 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B91 FlexState 146 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B92 FlexState 147 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B93 FlexState 148 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B94 FlexState 149 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B95 FlexState 150 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B96 FlexState 151 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B97 FlexState 152 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B98 FlexState 153 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B99 FlexState 154 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B9A FlexState 155 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B9B FlexState 156 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B9C FlexState 157 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B9D FlexState 158 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B9E FlexState 159 Actual Value 0 to 1 --- 1 F108 0 (Off)
2B9F FlexState 160 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA0 FlexState 161 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA1 FlexState 162 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA2 FlexState 163 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA3 FlexState 164 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA4 FlexState 165 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA5 FlexState 166 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA6 FlexState 167 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA7 FlexState 168 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA8 FlexState 169 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BA9 FlexState 170 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BAA FlexState 171 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BAB FlexState 172 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BAC FlexState 173 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BAD FlexState 174 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BAE FlexState 175 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BAF FlexState 176 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB0 FlexState 177 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB1 FlexState 178 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB2 FlexState 179 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB3 FlexState 180 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB4 FlexState 181 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB5 FlexState 182 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB6 FlexState 183 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB7 FlexState 184 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB8 FlexState 185 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BB9 FlexState 186 Actual Value 0 to 1 --- 1 F108 0 (Off)

58 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


2BBA FlexState 187 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BBB FlexState 188 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BBC FlexState 189 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BBD FlexState 190 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BBE FlexState 191 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BBF FlexState 192 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC0 FlexState 193 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC1 FlexState 194 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC2 FlexState 195 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC3 FlexState 196 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC4 FlexState 197 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC5 FlexState 198 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC6 FlexState 199 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC7 FlexState 200 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC8 FlexState 201 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BC9 FlexState 202 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BCA FlexState 203 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BCB FlexState 204 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BCC FlexState 205 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BCD FlexState 206 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BCE FlexState 207 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BCF FlexState 208 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD0 FlexState 209 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD1 FlexState 210 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD2 FlexState 211 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD3 FlexState 212 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD4 FlexState 213 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD5 FlexState 214 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD6 FlexState 215 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD7 FlexState 216 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD8 FlexState 217 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BD9 FlexState 218 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BDA FlexState 219 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BDB FlexState 220 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BDC FlexState 221 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BDD FlexState 222 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BDE FlexState 223 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BDF FlexState 224 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE0 FlexState 225 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE1 FlexState 226 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE2 FlexState 227 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE3 FlexState 228 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE4 FlexState 229 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE5 FlexState 230 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE6 FlexState 231 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE7 FlexState 232 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BE8 FlexState 233 Actual Value 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 59


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2BE9 FlexState 234 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BEA FlexState 235 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BEB FlexState 236 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BEC FlexState 237 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BED FlexState 238 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BEE FlexState 239 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BEF FlexState 240 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF0 FlexState 241 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF1 FlexState 242 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF2 FlexState 243 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF3 FlexState 244 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF4 FlexState 245 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF5 FlexState 246 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF6 FlexState 247 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF7 FlexState 248 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF8 FlexState 249 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BF9 FlexState 250 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BFA FlexState 251 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BFB FlexState 252 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BFC FlexState 253 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BFD FlexState 254 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BFE FlexState 255 Actual Value 0 to 1 --- 1 F108 0 (Off)
2BFF FlexState 256 Actual Value 0 to 1 --- 1 F108 0 (Off)
Contact Input State Actual Values (Read Only)
2C00 Contact Input 1 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C01 Contact Input 2 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C02 Contact Input 3 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C03 Contact Input 4 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C04 Contact Input 5 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C05 Contact Input 6 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C06 Contact Input 7 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C07 Contact Input 8 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C08 Contact Input 9 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C09 Contact Input 10 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C0A Contact Input 11 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C0B Contact Input 12 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C0C Contact Input 13 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C0D Contact Input 14 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C0E Contact Input 15 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C0F Contact Input 16 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C10 Contact Input 17 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C11 Contact Input 18 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C12 Contact Input 19 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C13 Contact Input 20 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C14 Contact Input 21 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C15 Contact Input 22 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C16 Contact Input 23 Actual Value 0 to 1 --- 1 F108 0 (Off)

60 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


2C17 Contact Input 24 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C18 Contact Input 25 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C19 Contact Input 26 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C1A Contact Input 27 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C1B Contact Input 28 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C1C Contact Input 29 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C1D Contact Input 30 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C1E Contact Input 31 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C1F Contact Input 32 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C20 Contact Input 33 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C21 Contact Input 34 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C22 Contact Input 35 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C23 Contact Input 36 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C24 Contact Input 37 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C25 Contact Input 38 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C26 Contact Input 39 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C27 Contact Input 40 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C28 Contact Input 41 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C29 Contact Input 42 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C2A Contact Input 43 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C2B Contact Input 44 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C2C Contact Input 45 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C2D Contact Input 46 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C2E Contact Input 47 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C2F Contact Input 48 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C30 Contact Input 49 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C31 Contact Input 50 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C32 Contact Input 51 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C33 Contact Input 52 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C34 Contact Input 53 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C35 Contact Input 54 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C36 Contact Input 55 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C37 Contact Input 56 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C38 Contact Input 57 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C39 Contact Input 58 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C3A Contact Input 59 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C3B Contact Input 60 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C3C Contact Input 61 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C3D Contact Input 62 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C3E Contact Input 63 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C3F Contact Input 64 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C40 Contact Input 65 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C41 Contact Input 66 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C42 Contact Input 67 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C43 Contact Input 68 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C44 Contact Input 69 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C45 Contact Input 70 Actual Value 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 61


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2C46 Contact Input 71 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C47 Contact Input 72 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C48 Contact Input 73 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C49 Contact Input 74 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C4A Contact Input 75 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C4B Contact Input 76 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C4C Contact Input 77 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C4D Contact Input 78 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C4E Contact Input 79 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C4F Contact Input 80 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C50 Contact Input 81 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C51 Contact Input 82 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C52 Contact Input 83 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C53 Contact Input 84 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C54 Contact Input 85 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C55 Contact Input 86 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C56 Contact Input 87 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C57 Contact Input 88 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C58 Contact Input 89 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C59 Contact Input 90 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C5A Contact Input 91 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C5B Contact Input 92 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C5C Contact Input 93 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C5D Contact Input 94 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C5E Contact Input 95 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C5F Contact Input 96 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C60 Contact Input 97 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C61 Contact Input 98 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C62 Contact Input 99 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C63 Contact Input 100 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C64 Contact Input 101 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C65 Contact Input 102 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C66 Contact Input 103 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C67 Contact Input 104 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C68 Contact Input 105 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C69 Contact Input 106 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C6A Contact Input 107 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C6B Contact Input 108 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C6C Contact Input 109 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C6D Contact Input 110 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C6E Contact Input 111 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C6F Contact Input 112 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C70 Contact Input 113 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C71 Contact Input 114 Actual Value 0 to 1 --- 1 F108 0 (Off)
2C72 Contact Input 115 Actual Value 0 to 1 --- 1 F108 0 (Off)
Contact Output State Actual Values (Read Only)
2D00 Contact Output 1 Actual Value 0 to 1 --- 1 F108 0 (Off)

62 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


2D01 Contact Output 2 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D02 Contact Output 3 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D03 Contact Output 4 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D04 Contact Output 5 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D05 Contact Output 6 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D06 Contact Output 7 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D07 Contact Output 8 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D08 Contact Output 9 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D09 Contact Output 10 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0A Contact Output 11 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0B Contact Output 12 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0C Contact Output 13 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0D Contact Output 14 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0E Contact Output 15 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0F Contact Output 16 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D10 Contact Output 17 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D11 Contact Output 18 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D12 Contact Output 19 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D13 Contact Output 20 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D14 Contact Output 21 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D15 Contact Output 22 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D16 Contact Output 23 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D17 Contact Output 24 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D18 Contact Output 25 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D19 Contact Output 26 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1A Contact Output 27 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1B Contact Output 28 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1C Contact Output 29 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1D Contact Output 30 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1E Contact Output 31 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1F Contact Output 32 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D20 Contact Output 33 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D21 Contact Output 34 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D22 Contact Output 35 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D23 Contact Output 36 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D24 Contact Output 37 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D25 Contact Output 38 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D26 Contact Output 39 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D27 Contact Output 40 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D28 Contact Output 41 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D29 Contact Output 42 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2A Contact Output 43 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2B Contact Output 44 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2C Contact Output 45 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2D Contact Output 46 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2E Contact Output 47 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2F Contact Output 48 Actual Value 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 63


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2D30 Contact Output 49 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D31 Contact Output 50 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D32 Contact Output 51 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D33 Contact Output 52 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D34 Contact Output 53 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D35 Contact Output 54 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D36 Contact Output 55 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D37 Contact Output 56 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D38 Contact Output 57 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D39 Contact Output 58 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3A Contact Output 59 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3B Contact Output 60 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3C Contact Output 61 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3D Contact Output 62 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3E Contact Output 63 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3F Contact Output 64 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D40 Contact Output 65 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D41 Contact Output 66 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D42 Contact Output 67 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D43 Contact Output 68 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D44 Contact Output 69 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D45 Contact Output 70 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D46 Contact Output 71 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D47 Contact Output 72 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D48 Contact Output 73 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D49 Contact Output 74 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D4A Contact Output 75 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D4B Contact Output 76 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D4C Contact Output 77 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D4D Contact Output 78 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D4E Contact Output 79 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D4F Contact Output 80 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D50 Contact Output 81 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D51 Contact Output 82 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D52 Contact Output 83 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D53 Contact Output 84 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D54 Contact Output 85 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D55 Contact Output 86 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D56 Contact Output 87 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D57 Contact Output 88 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D58 Contact Output 89 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D59 Contact Output 90 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D5A Contact Output 91 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D5B Contact Output 92 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D5C Contact Output 93 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D5D Contact Output 94 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D5E Contact Output 95 Actual Value 0 to 1 --- 1 F108 0 (Off)

64 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


2D5F Contact Output 96 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D60 Contact Output 97 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D61 Contact Output 98 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D62 Contact Output 99 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D63 Contact Output 100 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D64 Contact Output 101 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D65 Contact Output 102 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D66 Contact Output 103 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D67 Contact Output 104 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D68 Contact Output 105 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D69 Contact Output 106 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D6A Contact Output 107 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D6B Contact Output 108 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D6C Contact Output 109 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D6D Contact Output 110 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D6E Contact Output 111 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D6F Contact Output 112 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D70 Contact Output 113 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D71 Contact Output 114 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D72 Contact Output 115 Actual Value 0 to 1 --- 1 F108 0 (Off)
Protection Virtual Output State Actual Values (Read Only)
2D80 Virtual Output 1 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D81 Virtual Output 2 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D02 Virtual Output 3 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D03 Virtual Output 4 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D04 Virtual Output 5 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D05 Virtual Output 6 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D06 Virtual Output 7 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D07 Virtual Output 8 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D08 Virtual Output 9 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D09 Virtual Output 10 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0A Virtual Output 11 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0B Virtual Output 12 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0C Virtual Output 13 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0D Virtual Output 14 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0E Virtual Output 15 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D0F Virtual Output 16 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D10 Virtual Output 17 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D11 Virtual Output 18 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D12 Virtual Output 19 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D13 Virtual Output 20 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D14 Virtual Output 21 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D15 Virtual Output 22 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D16 Virtual Output 23 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D17 Virtual Output 24 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D18 Virtual Output 25 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D19 Virtual Output 26 Actual Value 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 65


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


2D1A Virtual Output 27 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1B Virtual Output 28 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1C Virtual Output 29 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1D Virtual Output 30 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1E Virtual Output 31 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D1F Virtual Output 32 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D20 Virtual Output 33 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D21 Virtual Output 34 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D22 Virtual Output 35 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D23 Virtual Output 36 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D24 Virtual Output 37 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D25 Virtual Output 38 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D26 Virtual Output 39 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D27 Virtual Output 40 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D28 Virtual Output 41 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D29 Virtual Output 42 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2A Virtual Output 43 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2B Virtual Output 44 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2C Virtual Output 45 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2D Virtual Output 46 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2E Virtual Output 47 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D2F Virtual Output 48 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D30 Virtual Output 49 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D31 Virtual Output 50 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D32 Virtual Output 51 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D33 Virtual Output 52 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D34 Virtual Output 53 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D35 Virtual Output 54 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D36 Virtual Output 55 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D37 Virtual Output 56 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D38 Virtual Output 57 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D39 Virtual Output 58 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3A Virtual Output 59 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3B Virtual Output 60 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3C Virtual Output 61 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3D Virtual Output 62 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3E Virtual Output 63 Actual Value 0 to 1 --- 1 F108 0 (Off)
2D3F Virtual Output 64 Actual Value 0 to 1 --- 1 F108 0 (Off)
Remote Input/Output State Actual Values (Read Only)
2F00 Remote Device State (32 items) 0 to 1 --- 1 F155 0 (Offline)
2F80 Remote Input State (64 items) 0 to 1 --- 1 F108 0 (Off)
Transient Recorder Commands (Read/Write Command)
3005 Transient Record Force Trigger 0 to 1 --- 1 F126 0 (No)
3011 Transient Record Clear Data 0 to 1 --- 1 F126 0 (No)
Fault Report Indexing (Read Only)
3020 Number of Fault Reports 0 to 65535 --- 1 F001 0
Fault Report Actual Values (Read Only) (15 Modules)

66 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


3030 Fault Time 0 to 4294967295 --- 1 F050 0
3032 ...Repeated for module number 2
3034 ...Repeated for module number 3
3036 ...Repeated for module number 4
3038 ...Repeated for module number 5
303A ...Repeated for module number 6
303C ...Repeated for module number 7
303E ...Repeated for module number 8
3040 ...Repeated for module number 9
3042 ...Repeated for module number 10
3044 ...Repeated for module number 11
3046 ...Repeated for module number 12
3048 ...Repeated for module number 13
304A ...Repeated for module number 14
304C ...Repeated for module number 15
Fault Report Actual Values (Read Only) (5 Modules)
3050 Fault Report Last Time Stamp 0 to 4294967295 --- 1 F003 0
3052 Fault Report Memory Available 0 to 2 --- 1 F075 0 (GREEN)
3053 Fault Report Ready to Capture 0 to 1 --- 1 F108 0 (Off)
3054 ...Repeated for module number 2
3058 ...Repeated for module number 3
305C ...Repeated for module number 4
3060 ...Repeated for module number 5
Modbus File Transfer (Read/Write)
3120 Modbus File Transfer Filename --- --- --- F204 (none)
3148 Modbus File Transfer State 0 to 7 --- 1 F095 0 (IDLE)
3149 Modbus File Transfer Position 0 to 4294967295 --- 1 F003 0
314B Modbus File Transfer Block Size 0 to 65535 --- 1 F001 0
314C Modbus File Transfer Data (122 items) 0 to 65535 --- 1 F001 0
Transient Recorder Actual Values (Read Only)
31D0 Transient Record Trigger Secs (64 items) 0 to 4294967295 --- 1 F003 0
3250 Transient Record Newest File Number 0 to 65535 --- 1 F001 0
3251 Transient Record Available Files 0 to 65535 --- 1 F001 0
3252 Transient Record Last Cleared Date 0 to 400000000 --- 1 F050 0
3254 Transient Record Number of Cycles per Record 0 to 65535 --- 1 F001 0
3255 Transient Record Memory Available 0 to 2 --- 1 F075 0 (GREEN)
3256 Transient Record Channel Active 0 to 1 --- 1 F108 0 (Off)
3257 Transient Record Ready to Capture 0 to 1 --- 1 F108 0 (Off)
Modbus File Transfer 2 (Read/Write)
3350 Modbus File Transfer Filename 2 --- --- --- F204 (none)
3378 Modbus File Transfer State 2 0 to 7 --- 1 F095 0 (IDLE)
3379 Modbus File Transfer Position 2 0 to 4294967295 --- 1 F003 0
337B Modbus File Transfer Block Size 2 0 to 65535 --- 1 F001 0
337C Modbus File Transfer Data 2 (122 items) 0 to 65535 --- 1 F001 0
Event Recorder Actual Values (Read Only)
3400 Events Since Last Clear 0 to 4294967295 --- 1 F003 0
3402 Number of Available Events 0 to 4294967295 --- 1 F003 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 67


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


3404 Event Recorder Last Cleared Date 0 to 4294967295 --- 1 F050 0
Event Recorder (Read/Write Command)
3406 Event Recorder Clear Command 0 to 1 --- 1 F126 0 (No)
Event Recorder Actual Values (Read Only)
3408 Event Recorder Last Time Stamp 0 to 4294967295 --- 1 F003 0
Miscellaneous Actual Values (Read Only)
3410 Settings File Last Change Date 0 to 4294967295 --- 1 F050 0
3412 CPU Status 0 to 2 --- 1 F097 0 (Out of
Service)
Miscellaneous (Read/Write)
3413 Front Panel Status 0 to 65535 --- 1 F001 0
Miscellaneous (Read/Write Setting)
3414 Web Server Function 0 to 1 --- 1 F102 0 (Disabled)
3415 HTTP IP Port Number 1 to 65535 --- 1 F001 80
Disturbance Recorder (Read/Write Setting)
3420 Disturbance Record Function 0 to 1 --- 1 F102 1 (Enabled)
3421 Disturbance Record Number of Records 1 to 64 --- 1 F001 48
3422 Disturbance Record Trigger Mode 0 to 1 --- 1 F118 0 (Automatic
Overwrite)
3423 Disturbance Record Trigger Position 1 to 100 % 1 F001 50
3424 Disturbance Record Analog Channel (64 items) 0 to 4294967295 --- 1 F600 0
34A4 Disturbance Record Digital Channel (32 items) 0 to 65535 --- 1 F300 0
34C4 Disturbance Record Analog Channel High Trigger (64 0 to 3 --- 1 F094 0 (OFF)
items)
3504 Disturbance Record Analog Channel Low Trigger (64 0 to 3 --- 1 F094 0 (OFF)
items)
3544 Disturbance Record Digital Channel Trigger (32 items) 0 to 3 --- 1 F094 0 (OFF)
3564 Disturbance Record Analog Channel High Pickup (64 0 to 1000000 --- 0.1 F003 10000
items)
35E4 Disturbance Record Analog Channel Low Pickup (64 0 to 1000000 --- 0.1 F003 10000
items)
3664 Disturbance Record Block Trigger 0 to 65535 --- 1 F300 0
3665 Disturbance Record Analog Channel Block Trigger (64 0 to 65535 --- 1 F300 0
items)
36A5 Disturbance Record Maximum Retriggers 1 to 4 --- 1 F001 2
Disturbance Recorder Commands (Read/Write Command)
36B0 Disturbance Record Force Trigger 0 to 1 --- 1 F126 0 (No)
36B1 Disturbance Record Clear Data 0 to 1 --- 1 F126 0 (No)
Disturbance Recorder Actual Values (Read Only)
36C0 Disturbance Record Trigger Secs (64 items) 0 to 4294967295 --- 0.1 F003 0
3740 Disturbance Record Newest File Number 0 to 65535 --- 1 F001 0
3741 Disturbance Record Available Files 0 to 65535 --- 1 F001 0
3742 Disturbance Record Last Cleared Date 0 to 400000000 --- 1 F050 0
3744 Disturbance Record Number of Cycles per Record 0 to 65535 --- 1 F001 0
3745 Disturbance Record Memory Available 0 to 2 --- 1 F075 0 (GREEN)
3746 Disturbance Record Channel Active 0 to 1 --- 1 F108 0 (Off)
3747 Disturbance Record Ready to Capture 0 to 1 --- 1 F108 0 (Off)
User-Programmable Pushbuttons Common (Read/Write Command)
3918 User Pushbutton Input State 0 to 4294967295 --- 0.1 F003 0 (Disabled)

68 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


User-Programmable Pushbuttons (Read/Write Setting) (30 Modules)
3920 User Pushbutton 1 Function 0 to 2 --- 1 F109 0 (Disabled)
3921 User Pushbutton 1 Set 0 to 65535 --- 1 F300 0
3922 User Pushbutton 1 Reset 0 to 65535 --- 1 F300 0
3923 User Pushbutton 1 Autoreset 0 to 1 --- 1 F102 0 (Disabled)
3924 User Pushbutton 1 Autoreset Delay 0.2 to 600 s 0.1 F001 10
3925 User Pushbutton 1 Local Lock 0 to 65535 --- 1 F300 0
3926 User Pushbutton 1 Remote Lock 0 to 65535 --- 1 F300 0
3927 User Pushbutton 1 Dropout Time 0 to 60 s 0.1 F001 0
3928 User Pushbutton 1 Events 0 to 1 --- 1 F102 1 (Enabled)
3929 User Pushbutton 1 Reserved (3 items) 0 to 65535 --- 1 F001 0
392C ...Repeated for User Pushbutton 2
3938 ...Repeated for User Pushbutton 3
3944 ...Repeated for User Pushbutton 4
3950 ...Repeated for User Pushbutton 5
395C ...Repeated for User Pushbutton 6
3968 ...Repeated for User Pushbutton 7
3974 ...Repeated for User Pushbutton 8
3980 ...Repeated for User Pushbutton 9
398C ...Repeated for User Pushbutton 10
3998 ...Repeated for User Pushbutton 11
39A4 ...Repeated for User Pushbutton 12
39B0 ...Repeated for User Pushbutton 13
39BC ...Repeated for User Pushbutton 14
39C8 ...Repeated for User Pushbutton 15
39D4 ...Repeated for User Pushbutton 16
39E0 ...Repeated for User Pushbutton 17
39EC ...Repeated for User Pushbutton 18
39F8 ...Repeated for User Pushbutton 19
3A04 ...Repeated for User Pushbutton 20
3A10 ...Repeated for User Pushbutton 21
3A1C ...Repeated for User Pushbutton 22
3A28 ...Repeated for User Pushbutton 23
3A34 ...Repeated for User Pushbutton 24
3A40 ...Repeated for User Pushbutton 25
3A4C ...Repeated for User Pushbutton 26
3A58 ...Repeated for User Pushbutton 27
3A64 ...Repeated for User Pushbutton 28
3A70 ...Repeated for User Pushbutton 29
3A7C ...Repeated for User Pushbutton 30
Disconnect (Read/Write Setting) (30 Modules)
3AA0 Disconnect 1 Function 0 to 1 --- 1 F102 0 (Disabled)
3AA1 Disconnect 1 Long Name --- --- --- F202 "Disconnect
1"
3AAB Disconnect 1 Short Name --- --- --- F206 "Dsc 1"
3AAE Disconnect 1 Substitution 0 to 1 --- 1 F102 0 (Disabled)
3AAF Disconnect 1 Block Open Cmd 0 to 65535 --- 1 F300 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 69


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


3AB0 Disconnect 1 Block Close Cmd 0 to 65535 --- 1 F300 0
3AB1 Disconnect 1 Disc in Local 0 to 65535 --- 1 F300 0
3AB2 Disconnect 1 Indication Mode 0 to 1 --- 1 F157 0 (3-Pole)
3AB3 Disconnect 1 A/3P Closed Status 0 to 65535 --- 1 F300 0
3AB4 Disconnect 1 A/3P Opened Status 0 to 65535 --- 1 F300 0
3AB5 Disconnect 1 B Closed Status 0 to 65535 --- 1 F300 0
3AB6 Disconnect 1 B Opened Status 0 to 65535 --- 1 F300 0
3AB7 Disconnect 1 C Closed Status 0 to 65535 --- 1 F300 0
3AB8 Disconnect 1 C Opened Status 0 to 65535 --- 1 F300 0
3AB9 Disconnect 1 Toperate 0 to 60 s 0.001 F001 70
3ABA Disconnect 1 Tdiscrep 0 to 60 s 0.001 F001 70
3ABB Disconnect 1 Reset Counter 0 to 65535 --- 1 F300 0
3ABC Disconnect 1 Events 0 to 1 --- 1 F102 1 (Enabled)
3ABD ...Repeated for Disconnect 2
3ADA ...Repeated for Disconnect 3
3AF7 ...Repeated for Disconnect 4
3B14 ...Repeated for Disconnect 5
3B31 ...Repeated for Disconnect 6
3B4E ...Repeated for Disconnect 7
3B6B ...Repeated for Disconnect 8
3B88 ...Repeated for Disconnect 9
3BA5 ...Repeated for Disconnect 10
3BC2 ...Repeated for Disconnect 11
3BDF ...Repeated for Disconnect 12
3BFC ...Repeated for Disconnect 13
3C19 ...Repeated for Disconnect 14
3C36 ...Repeated for Disconnect 15
3C53 ...Repeated for Disconnect 16
3C70 ...Repeated for Disconnect 17
3C8D ...Repeated for Disconnect 18
3CAA ...Repeated for Disconnect 19
3CC7 ...Repeated for Disconnect 20
3CE4 ...Repeated for Disconnect 21
3D01 ...Repeated for Disconnect 22
3D1E ...Repeated for Disconnect 23
3D3B ...Repeated for Disconnect 24
3D58 ...Repeated for Disconnect 25
3D75 ...Repeated for Disconnect 26
3D92 ...Repeated for Disconnect 27
3DAF ...Repeated for Disconnect 28
3DCC ...Repeated for Disconnect 29
3DE9 ...Repeated for Disconnect 30
Disconnect Control (Read/Write Setting) (30 Modules)
3E10 Disconnect 1 Control Function 0 to 1 --- 1 F102 0 (Disabled)
3E11 Disconnect 1 Control Pushbutton Control 0 to 1 --- 1 F102 1 (Enabled)
3E12 Disconnect 1 Control Local Control 0 to 65535 --- 1 F300 0
3E13 Disconnect 1 Control Remote Control 0 to 65535 --- 1 F300 0

70 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


3E14 Disconnect 1 Control Time Select 0 to 30 s 0.1 F001 100
3E15 Disconnect 1 Control Auto Close 0 to 65535 --- 1 F300 0
3E16 Disconnect 1 Control Auto Open 0 to 65535 --- 1 F300 0
3E17 Disconnect 1 Control Time Execute 0 to 10 s 0.1 F001 100
3E18 Disconnect 1 Control Control Bypass 0 to 1 --- 1 F102 0 (Disabled)
3E19 Disconnect 1 Control Auto Bypass 0 to 65535 --- 1 F300 0
3E1A Disconnect 1 Control Time Bypass 0 to 30 s 0.1 F001 100
3E1B Disconnect 1 Control Events 0 to 1 --- 1 F102 1 (Enabled)
3E1C ...Repeated for Disconnect 2
3E28 ...Repeated for Disconnect 3
3E34 ...Repeated for Disconnect 4
3E40 ...Repeated for Disconnect 5
3E4C ...Repeated for Disconnect 6
3E58 ...Repeated for Disconnect 7
3E64 ...Repeated for Disconnect 8
3E70 ...Repeated for Disconnect 9
3E7C ...Repeated for Disconnect 10
3E88 ...Repeated for Disconnect 11
3E94 ...Repeated for Disconnect 12
3EA0 ...Repeated for Disconnect 13
3EAC ...Repeated for Disconnect 14
3EB8 ...Repeated for Disconnect 15
3EC4 ...Repeated for Disconnect 16
3ED0 ...Repeated for Disconnect 17
3EDC ...Repeated for Disconnect 18
3EE8 ...Repeated for Disconnect 19
3EF4 ...Repeated for Disconnect 20
3F00 ...Repeated for Disconnect 21
3F0C ...Repeated for Disconnect 22
3F18 ...Repeated for Disconnect 23
3F24 ...Repeated for Disconnect 24
3F30 ...Repeated for Disconnect 25
3F3C ...Repeated for Disconnect 26
3F48 ...Repeated for Disconnect 27
3F54 ...Repeated for Disconnect 28
3F60 ...Repeated for Disconnect 29
3F6C ...Repeated for Disconnect 30
Passwords (Read/Write Command)
4000 Modbus Local Command Password Setting (4 items) 0 to 4294967295 --- 1 F003 0
Passwords (Read/Write Setting)
4008 Modbus Local Setting Password Setting (4 items) 0 to 4294967295 --- 1 F003 0
Passwords (Read/Write Command)
4010 Modbus Remote Command Password Setting (4 0 to 4294967295 --- 1 F003 0
items)
Passwords (Read/Write Setting)
4018 Modbus Remote Setting Password Setting (4 items) 0 to 4294967295 --- 1 F003 0
Passwords (Read/Write)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 71


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


4020 Modbus Command Password Entry (4 items) 0 to 4294967295 --- 1 F003 0
4028 Modbus Setting Password Entry (4 items) 0 to 4294967295 --- 1 F003 0
Passwords Actual Values (Read Only)
4030 Modbus Command Password Status 0 to 1 --- 1 F102 0 (Disabled)
4031 Modbus Setting Password Status 0 to 1 --- 1 F102 0 (Disabled)
Passwords (Read/Write Setting)
4032 Command Password Access Timeout 5 to 480 min 1 F001 5
4033 Setting Password Access Timeout 5 to 480 min 1 F001 30
4034 Invalid Password Attempts 2 to 5 --- 1 F001 3
4035 Password Lockout Duration 5 to 60 min 1 F001 5
4036 Password Access Events 0 to 1 --- 1 F102 1 (Enabled)
4037 Local Setting Auth 0 to 65535 --- 1 F300 1
4038 Remote Setting Auth 0 to 65535 --- 1 F300 1
4039 Access Auth Timeout 5 to 480 min 1 F001 30
Preferences (Read/Write Setting)
4050 Language 0 to 3 --- 1 F531 0 (English)
4051 Default Front Panel Timeout 0 to 1440 min 1 F001 60
4052 Current Cutoff Level 0.002 to 0.02 pu 0.001 F001 20
4053 Voltage Cutoff Level 0.1 to 1 V 0.1 F001 10
Communications (Read/Write Setting)
4070 Port 1 IP Address 0 to 4294967295 --- 1 F003 0
4072 Port 1 IP Subnet Mask 0 to 4294967295 --- 1 F003 0
4074 Port 1 Gateway IP Address 0 to 4294967295 --- 1 F003 0
4076 PRT1 Ethernet Operation Mode 0 to 2 --- 1 F192 2 (Auto)
4077 Port 2 IP Address 0 to 4294967295 --- 1 F003 0
4079 Port 2 IP Subnet Mask 0 to 4294967295 --- 1 F003 0
407B Port 2 Gateway IP Address 0 to 4294967295 --- 1 F003 0
407D PRT2 Ethernet Operation Mode 0 to 2 --- 1 F192 2 (Auto)
407E PRT2 Redundancy 0 to 2 --- 1 F172 1 (Dual IP)
407F Port 3 IP Address 0 to 4294967295 --- 1 F003 0
4081 Port 3 IP Subnet Mask 0 to 4294967295 --- 1 F003 0
4083 Port 3 Gateway IP Address 0 to 4294967295 --- 1 F003 0
4085 Port 3 Ethernet Operation Mode 0 to 2 --- 1 F192 2 (Auto)
4086 COM1 Minimum Response Time 0 to 1000 ms 10 F001 0
4087 RS485 Com1 Baud Rate 0 to 9 --- 1 F112 6 (19200)
4088 RS485 Com1 Parity 0 to 2 --- 1 F113 0 (None)
4089 RS485 Com1 Connection 0 to 1 --- 1 F223 0 (Local)
408A Modbus Slave Address 1 to 254 --- 1 F001 254
408B Modbus IP Port Number 1 to 65535 --- 1 F001 502
408C Network Address NSAP --- --- --- F074 0
4096 Configure IP Network 0 to 1 --- 1 F126 0 (No)
4097 TFTP Main IP Port Number 1 to 65535 --- 1 F001 69
4098 TFTP Data IP Port Number (4 items) 0 to 65535 --- 1 F001 0
409C DNP Channel 1 Port 0 to 3 --- 1 F177 0 (None)
409D DNP Channel 2 Port 0 to 2 --- 1 F174 0 (None)
409E DNP Channel 1 Address 0 to 65519 --- 1 F001 1
409F DNP Client Address (5 items) 0 to 4294967295 --- 1 F003 0

72 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


40A9 DNP IP Port Number 1 to 65535 --- 1 F001 20000
40AA DNS Unsol Function 0 to 1 --- 1 F102 0 (Disabled)
40AB DNP Unsol Timeout 0 to 60 s 1 F001 5
40AC DNP Unsol Max Retries 1 to 255 --- 1 F001 10
40AD DNP Unsol Dest Address 0 to 65519 --- 1 F001 1
40AE DNP Current Scale Factor 0 to 8 --- 1 F194 2 (1)
40AF DNP Voltage Scale Factor 0 to 8 --- 1 F194 2 (1)
40B0 DNP Power Scale Factor 0 to 8 --- 1 F194 2 (1)
40B2 DNP Power Factor Scale Factor 0 to 8 --- 1 F194 2 (1)
40B3 DNP Other Scale Factor 0 to 8 --- 1 F194 2 (1)
40B4 DNP Current Default Deadband 0 to 100000000 --- 1 F003 30000
40B6 DNP Voltage Default Deadband 0 to 100000000 --- 1 F003 30000
40B8 DNP Power Default Deadband 0 to 100000000 --- 1 F003 30000
40BC DNP Power Factor Default Deadband 0 to 100000000 --- 1 F003 30000
40BC DNP Power Factor Default Deadband 0 to 100000000 --- 1 F003 30000
40BE DNP Other Default Deadband 0 to 100000000 --- 1 F003 30000
40C0 DNP Time Sync Period 1 to 10080 min 1 F001 1440
40C1 DNP Fragment Size 30 to 2048 --- 1 F001 240
40C2 DNP Number of Paired Controls 0 to 32 --- 1 F001 0
40C3 DNP Binary Data Block (58 items) 0 to 56 --- 1 F197 0 (Not Used)
40FD DNP Object 1 Default Variation 1 to 2 --- 1 F001 2
40FE DNP Object 2 Default Variation 1 to 3 --- 1 F001 2
40FF DNP Object 20 Default Variation 0 to 3 --- 1 F523 0 (1)
4100 DNP Object 21 Default Variation 0 to 3 --- 1 F524 0 (1)
4101 DNP Object 22 Default Variation 0 to 3 --- 1 F523 0 (1)
4102 DNP Object 23 Default Variation 0 to 3 --- 1 F523 0 (1)
4103 DNP Object 30 Default Variation 1 to 5 --- 1 F001 1
4104 DNP Object 32 Default Variation 0 to 5 --- 1 F525 0 (1)
4105 DNP TCP Connection Timeout 10 to 300 --- 1 F001 120
4106 DNP Communications Reserved (9 items) 0 to 1 --- 1 F001 0
Absolute Timer (Read Only)
4100 Second of Minute 0 to 60 --- 1 F001 0
4101 Minute of Hour 0 to 59 --- 1 F001 0
4102 Hour of Day 0 to 23 --- 1 F001 0
4103 Day of Week 0 to 6 --- 1 F001 0
4104 Day of Month 1 to 31 --- 1 F001 1
4105 Day of Year 1 to 366 --- 1 F001 1
4106 Month of Year 1 to 12 --- 1 F001 1
4107 Year 1970 to 2168 --- 1 F001 1970
Communications (Read/Write Setting)
410F IEC IP Port Number 1 to 65535 --- 1 F001 2404
4110 IEC Sector Address 0 to 65535 -- 1 F001 0
4111 IEC Cyclic Data Transmission Period 1 to 65535 s 1 F001 60
4112 IEC Current Default Threshold 0 to 100000000 --- 1 F003 30000
4114 IEC Voltage Default Threshold 0 to 100000000 --- 1 F003 30000
4116 IEC Power Default Threshold 0 to 100000000 --- 1 F003 30000
411A IEC Power Factor Default Threshold 0 to 100000000 --- 1 F003 30000

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 73


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


411C IEC Other Default Threshold 0 to 100000000 --- 1 F003 30000
411E IEC Client Address (5 items) 0 to 4294967295 --- 1 F003 0
4128 IEC Communications Reserved (10 items) 0 to 1 --- 1 F001 0
4132 ESH Configuration Timer 0 to 32765 s 5 F001 120
4133 Port 1 Bandwidth Limitation 0 to 1 --- 1 F102 0 (Disabled)
4134 Ports 2 and 3 Bandwidth Limitation 0 to 1 --- 1 F102 0 (Disabled)
4135 Port 2 PRP Multicast Address --- --- --- F072 0
Simple Network Time Protocol (Read/Write Setting)
4168 SNTP Function 0 to 1 --- 1 F102 0 (Disabled)
4169 SNTP Server IP Address 0 to 4294967295 --- 1 F003 0
416B SNTP IP Port Number 1 to 65535 --- 1 F001 123
416C SNTP Ethernet Interface 1 to 3 --- 1 F001 1
Data Logger Commands (Read/Write Command)
4170 Data Logger Clear 0 to 1 --- 1 F126 0 (No)
Clock (Read/Write Command)
41A0 Real Time Clock Set Time 0 to 235959 --- 1 F050 0
Clock (Read/Write Setting)
41A2 SR Date Format 0 to 4294967295 --- 1 F051 0
41A4 SR Time Format 0 to 4294967295 --- 1 F052 0
41A6 IRIG-B Signal Type 0 to 2 --- 1 F114 0 (None)
41A7 Clock Events Enable / Disable 0 to 1 --- 1 F102 0 (Disabled)
41A8 Time Zone Offset from UTC –24 to 24 hours 0.5 F002 0
41A9 Daylight Savings Time (DST) Function 0 to 1 --- 1 F102 0 (Disabled)
41AA Daylight Savings Time (DST) Start Month 0 to 11 --- 1 F237 3 (April)
41AB Daylight Savings Time (DST) Start Day 0 to 6 --- 1 F238 0 (Sunday)
41AC Daylight Savings Time (DST) Start Day Instance 0 to 4 --- 1 F239 0 (First)
41AD Daylight Savings Time (DST) Start Hour 0 to 23 --- 1 F001 2
41AE Daylight Savings Time (DST) Stop Month 0 to 11 --- 1 F237 10
(November)
41AF Daylight Savings Time (DST) Stop Day 0 to 6 --- 1 F238 0 (Sunday)
41B0 Daylight Savings Time (DST) Stop Day Instance 0 to 4 --- 1 F239 0 (First)
41B1 Daylight Savings Time (DST) Stop Hour 0 to 23 --- 1 F001 2
Fault Report Commands (Read/Write Command)
41B2 Fault Reports Clear Data Command 0 to 1 --- 1 F126 0 (No)
Transient Recorder (Read/Write Setting)
41C0 Transient Record Function 0 to 1 --- 1 F102 1 (Enabled)
41C1 Transient Record Number of Records 1 to 64 --- 1 F001 48
41C2 Transient Record Trigger Mode 0 to 1 --- 1 F118 0 (Automatic
Overwrite)
41C3 Transient Record Trigger Position 1 to 100 % 1 F001 50
41C4 Transient Record Sample Rate 0 to 5 --- 1 F183 2 (32
samples/
cycle)
41C5 Transient Record Analog Channel (16 items) 0 to 4294967295 --- 1 F600 0
41E5 Transient Record Digital Channel (128 items) 0 to 65535 --- 1 F300 0
4265 Transient Record Analog Channel High Trigger (16 0 to 3 --- 1 F094 0 (OFF)
items)
4275 Transient Record Analog Channel Low Trigger (16 0 to 3 --- 1 F094 0 (OFF)
items)

74 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


4285 Transient Record Digital Channel Trigger (128 items) 0 to 3 --- 1 F094 0 (OFF)
4305 Transient Record Analog Channel High Pickup (16 0 to 1000000 --- 0.1 F003 10000
items)
4325 Transient Record Analog Channel Low Pickup (16 0 to 1000000 --- 0.1 F003 10000
items)
4345 Transient Record Block Trigger 0 to 65535 --- 1 F300 0
4346 Transient Record Analog Channel Block Trigger (16 0 to 65535 --- 1 F300 0
items)
4356 Transient Record Maximum Retriggers 1 to 4 --- 1 F001 2
Installation (Read/Write Setting)
43E0 Relay Programmed State 0 to 1 --- 1 F133 0 (Not
Programmed)
43E1 Relay Name --- --- --- F202 “0”
43EB User Configuration Name --- --- --- F202 "Initial"
43F5 User Configuration Date 0 to 4294967295 --- 1 F050 0
Local/Remote (Read/Write Setting)
4438 Local Remote Function 0 to 1 --- 1 F102 0 (Disabled)
4439 Local Remote PB Control 0 to 1 --- 1 F102 1 (Enabled)
443A Local Remote in Local 0 to 65535 --- 1 F300 0
443B Local Remote in Remote 0 to 65535 --- 1 F300 0
443C Local Remote Events 0 to 1 --- 1 F102 1 (Enabled)
Local/Remote (Read/Write Command)
443D Local Remote HMI Command 0 to 15 --- 1 F107 0 (NONE)
User-Programmable Self Tests (Read/Write Setting)
4443 Remote Device Off Function 0 to 1 --- 1 F102 1 (Enabled)
4444 Ethernet Port 1 Fail Function 0 to 1 --- 1 F102 0 (Disabled)
4445 Ethernet Port 2 Fail Function 0 to 1 --- 1 F102 0 (Disabled)
4446 Ethernet Port 3 Fail Function 0 to 1 --- 1 F102 0 (Disabled)
4447 SNTP Fail Function 0 to 1 --- 1 F102 1 (Enabled)
4448 IRIG-B Fail Function 0 to 1 --- 1 F102 1 (Enabled)
CT Settings (Read/Write Setting) (8 Modules)
4480 Phase CT 1 Ratio 1 to 65000 --- 1 F001 1
4481 Phase CT 1 Secondary 0 to 1 --- 1 F123 0 (1 A)
4482 ...Repeated for CT Bank 2
4484 ...Repeated for CT Bank 3
4486 ...Repeated for CT Bank 4
4488 ...Repeated for CT Bank 5
448A ...Repeated for CT Bank 6
448C ...Repeated for CT Bank 7
448E ...Repeated for CT Bank 8
Aux CT Settings (Read/Write Setting) (6 Modules)
4490 Ground CT 1 Ratio 1 to 65000 --- 1 F001 1
4491 Ground CT 1 Secondary 0 to 1 --- 1 F123 0 (1 A)
4492 ...Repeated for CT Bank 2
4494 ...Repeated for CT Bank 3
4496 ...Repeated for CT Bank 4
4498 ...Repeated for CT Bank 5
449A ...Repeated for CT Bank 6

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 75


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


VT Settings (Read/Write Setting) (4 Modules)
4500 Phase VT 1 Connection 0 to 1 --- 1 F100 0 (Wye)
4501 Phase VT 1 Secondary 25 to 240 V 0.1 F001 664
4502 Phase VT 1 Ratio 1 to 24000 :1 1 F060 1
4504 ...Repeated for VT Bank 2
4508 ...Repeated for VT Bank 3
450C ...Repeated for VT Bank 4
Aux VT Settings (Read/Write Setting) (4 Modules)
4520 Auxiliary VT 1 Connection 0 to 6 --- 1 F166 1 (Vag)
4521 Auxiliary VT 1 Secondary 25 to 240 V 0.1 F001 664
4522 Auxiliary VT 1 Ratio 1 to 24000 :1 1 F060 1
4524 ...Repeated for VT Bank 2
4528 ...Repeated for VT Bank 3
452C ...Repeated for VT Bank 4
Metering Source (Read/Write Setting)
4530 Metering Source 0 to 3 --- 1 F076 0 (SRC 1)
Source Settings (Read/Write Setting) (6 Modules)
4580 Source 1 Name --- --- --- F206 “SRC 1"
4583 Source 1 Phase CT 0 to 63 --- 1 F400 0
4584 Source 1 Ground CT 0 to 63 --- 1 F400 0
4585 Source 1 Phase VT 0 to 63 --- 1 F400 0
4586 Source 1 Auxiliary VT 0 to 63 --- 1 F400 0
4587 ...Repeated for Source 2
458E ...Repeated for Source 3
4595 ...Repeated for Source 4
459C ...Repeated for Source 5
45A3 ...Repeated for Source 6
Power System (Read/Write Setting)
4600 Nominal Frequency 50 to 60 Hz 1 F001 60
4601 Phase Rotation 0 to 1 --- 1 F106 0 (ABC)
4602 Frequency and Phase Reference 0 to 5 --- 1 F167 0 (SRC 1)
4603 Frequency Tracking Function 0 to 1 --- 1 F102 1 (Enabled)
Synchrocheck (Read/Write Setting) (2 Modules)
4780 Synchrocheck 1 Function 0 to 1 --- 1 F102 0 (Disabled)
4781 Synchrocheck 1 V1 Source 0 to 5 --- 1 F167 0 (SRC 1)
4782 Synchrocheck 1 V2 Source 0 to 5 --- 1 F167 1 (SRC 2)
4783 Synchrocheck 1 Maximum Voltage Difference 0 to 400000 V 1 F060 10000
4785 Synchrocheck 1 Maximum Angle Difference 0 to 100 degrees 1 F001 30
4786 Synchrocheck 1 Maximum Frequency Difference 0 to 2 Hz 0.01 F001 1000
4787 Synchrocheck 1 Dead Source Select 0 to 5 --- 1 F176 1 (LV1 and
DV2)
4788 Synchrocheck 1 Dead V1 Maximum Voltage 0 to 1.25 pu 0.01 F001 30
4789 Synchrocheck 1 Dead V2 Maximum Voltage 0 to 1.25 pu 0.01 F001 30
478A Synchrocheck 1 Live V1 Minimum Voltage 0 to 1.25 pu 0.01 F001 70
478B Synchrocheck 1 Live V2 Minimum Voltage 0 to 1.25 pu 0.01 F001 70
478D Synchrocheck 1 Events 0 to 1 --- 1 F102 0 (Disabled)
478E Synchrocheck 1 Block 0 to 65535 --- 1 F300 0

76 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


478F Synchrocheck 1 Frequency Hysteresis 0 to 0.1 Hz 0.01 F001 60
4790 ...Repeated for Synchrocheck 2
FlexCurve A (Read/Write Setting)
4800 FlexCurve A (120 items) 0 to 655535 ms 1 F011 0
FlexCurve B (Read/Write Setting)
48F0 FlexCurve B (120 items) 0 to 655535 ms 1 F011 0
FlexMatrix Inputs (Read/Write Setting)
4970 FlexMatrix Input x (16 items) 0 to 65535 --- 1 F300 0
FlexMatrix (Read/Write Setting) (8 Modules)
4990 FlexMatrix 1 Function 0 to 1 --- 1 F102 0 (Disabled)
4991 FlexMatrix 1 Block 0 to 65535 --- 1 F300 0
4992 FlexMatrix 1 Events 0 to 1 --- 1 F102 1 (Enabled)
4993 FlexMatrix 1 Enable (16 items) 0 to 1 --- 1 F102 0 (Disabled)
49A3 FlexMatrix 1 Latching 0 to 1 --- 1 F102 0 (Disabled)
49A4 FlexMatrix 1 Reset 0 to 65535 --- 1 F300 0
49A5 FlexMatrix 1 Tpkp 0 to 60 --- 0.01 F001 0
49A6 FlexMatrix 1 Tdpo 0 to 60 --- 0.01 F001 0
49A7 FlexMatrix 1 Name --- --- --- F205 "Flexmat 1"
49AD FlexMatrix 1 Reserved (3 items) 0 to 6553.5 --- 0.1 F001 0
49B0 ...Repeated for FlexMatrix 2
49D0 ...Repeated for FlexMatrix 3
49F0 ...Repeated for FlexMatrix 4
4A10 ...Repeated for FlexMatrix 5
4A30 ...Repeated for FlexMatrix 6
4A50 ...Repeated for FlexMatrix 7
4A70 ...Repeated for FlexMatrix 8
Battery Monitor (Read/Write Setting)
4AF0 Battery Monitor Function 0 to 1 --- 1 F102 0 (Disabled)
4AF1 Battery Monitor Input 0 to 65535 --- 1 F300 0
4AF2 Battery Monitor Block 0 to 65535 --- 1 F300 0
4AF3 Battery Monitor High VDC 38 to 275 V 1 F001 143
4AF4 Battery Monitor Low VDC 38 to 275 V 1 F001 107
4AF5 Battery Monitor Supply Fail 0 to 65535 --- 1 F300 0
4AF6 Battery Monitor Charger Fail 0 to 65535 --- 1 F300 0
4AF7 Battery Monitor Bkr Trip 0 to 65535 --- 1 F300 0
4AF8 Battery Monitor DC Gnd Fault 0 to 65535 --- 1 F300 0
4AF9 Battery Monitor Alarm Delay 2 to 300 s 1 F001 60
4AFA Battery Monitor Events 0 to 1 --- 1 F102 1 (Enabled)
Data Logger (Read/Write Setting)
4B00 Data Logger Function 0 to 1 --- 1 F102 0 (Disabled)
4B01 Data Logger Block 0 to 65535 --- 1 F300 0
4B02 Data Logger Rate 1 to 3600 /hr 1 F001 60
4B03 Data Logger Avg Interval 1 to 86400 /Rate 1 F003 3600
Data Logger Channel Configuration (Read/Write Setting) (16 Modules)
4B10 Data Logger Channel 1 Signal 0 to 4294967295 --- 1 F600 0
4B12 Data Logger Channel 1 Name --- --- --- F205 "Channel 1"
4B18 Data Logger Channel 1 Mode 0 to 2 --- 1 F091 2 (Mean)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 77


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


4B19 Data Logger Channel 1 Alarming 0 to 2 --- 1 F109 0 (Disabled)
4B1A Data Logger Channel 1 Reset Alarms 0 to 65535 --- 1 F300 0
4B1B Data Logger Channel 1 Reset Statistics 0 to 65535 --- 1 F300 0
4B1C Data Logger Channel 1 Hi Alarm Pickup -90 to 90 pu 0.01 F002 100
4B1D Data Logger Channel 1 Hi Alarm Delay 1 to 300 s 0.1 F001 10
4B1E Data Logger Channel 1 Hi-Hi Alarm Pickup -90 to 90 pu 0.01 F002 100
4B1F Data Logger Channel 1 Hi-Hi Alarm Delay 1 to 300 s 0.1 F001 10
4B20 Data Logger Channel 1 Lo Alarm Pickup -90 to 90 pu 0.01 F002 100
4B21 Data Logger Channel 1 Lo Alarm Delay 1 to 300 s 0.1 F001 10
4B22 Data Logger Channel 1 Lo-Lo Alarm Pickup -90 to 90 pu 0.01 F002 100
4B23 Data Logger Channel 1 Lo-Lo Alarm Delay 1 to 300 s 0.1 F001 10
4B24 ...Repeated for Data Logger Channel 2
4B38 ...Repeated for Data Logger Channel 3
4B4C ...Repeated for Data Logger Channel 4
4B60 ...Repeated for Data Logger Channel 5
4B74 ...Repeated for Data Logger Channel 6
4B88 ...Repeated for Data Logger Channel 7
4B9C ...Repeated for Data Logger Channel 8
4BB0 ...Repeated for Data Logger Channel 9
4BC4 ...Repeated for Data Logger Channel 10
4BD8 ...Repeated for Data Logger Channel 11
4BEC ...Repeated for Data Logger Channel 12
4C00 ...Repeated for Data Logger Channel 13
4C14 ...Repeated for Data Logger Channel 14
4C28 ...Repeated for Data Logger Channel 15
4C3C ...Repeated for Data Logger Channel 16
Disconnect Interlock (Read/Write Setting) (30 Modules)
4C50 Disconnect 1 Interlock Function 0 to 1 --- 1 F102 0 (Disabled)
4C51 Disconnect 1 Interlock Tagging 0 to 1 --- 1 F102 0 (Disabled)
4C52 Disconnect 1 Interlock Status Supv 0 to 1 --- 1 F102 0 (Disabled)
4C53 Disconnect 1 Interlock Close Interlock 1 0 to 65535 --- 1 F300 0
4C54 Disconnect 1 Interlock Close Interlock 2 0 to 65535 --- 1 F300 0
4C55 Disconnect 1 Interlock Close Interlock 3 0 to 65535 --- 1 F300 0
4C56 Disconnect 1 Interlock Open Interlock 1 0 to 65535 --- 1 F300 0
4C57 Disconnect 1 Interlock Open Interlock 2 0 to 65535 --- 1 F300 0
4C58 Disconnect 1 Interlock Open Interlock 3 0 to 65535 --- 1 F300 0
4C59 Disconnect 1 Interlock Events 0 to 1 --- 1 F102 1 (Enabled)
4C5A ...Repeated for Disconnect 2
4C64 ...Repeated for Disconnect 3
4C6E ...Repeated for Disconnect 4
4C78 ...Repeated for Disconnect 5
4C82 ...Repeated for Disconnect 6
4C8C ...Repeated for Disconnect 7
4C96 ...Repeated for Disconnect 8
4CA0 ...Repeated for Disconnect 9
4CAA ...Repeated for Disconnect 10
4CB4 ...Repeated for Disconnect 11

78 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


4CBE ...Repeated for Disconnect 12
4CC8 ...Repeated for Disconnect 13
4CD2 ...Repeated for Disconnect 14
4CDC ...Repeated for Disconnect 15
4CE6 ...Repeated for Disconnect 16
4CF0 ...Repeated for Disconnect 17
4CFA ...Repeated for Disconnect 18
4D04 ...Repeated for Disconnect 19
4D0E ...Repeated for Disconnect 20
4D18 ...Repeated for Disconnect 21
4D22 ...Repeated for Disconnect 22
4D2C ...Repeated for Disconnect 23
4D36 ...Repeated for Disconnect 24
4D40 ...Repeated for Disconnect 25
4D4A ...Repeated for Disconnect 26
4D54 ...Repeated for Disconnect 27
4D5E ...Repeated for Disconnect 28
4D68 ...Repeated for Disconnect 29
4D72 ...Repeated for Disconnect 30
Modbus User Map (Read/Write Setting)
4E00 Modbus User Map Settings (256 items) 0 to 4294967295 --- 1 F003 0
IEC 61850 Unbuffered Report Settings (Read/Write Setting) (24 Modules)
5000 IEC 61850 Unbuffered Reports RptID --- --- --- F209 (none)
5021 IEC 61850 Unbuffered Reports OptFlds 0 to 65535 --- 1 F001 0
5022 IEC 61850 Unbuffered Reports BufTm 0 to 4294967295 --- 1 F003 0
5024 IEC 61850 Unbuffered Reports TrgOps 0 to 65535 --- 1 F001 0
5025 IEC 61850 Unbuffered Reports IntgPd 0 to 4294967295 --- 1 F003 0
5027 ...Repeated for module number 2
504E ...Repeated for module number 3
5075 ...Repeated for module number 4
509C ...Repeated for module number 5
50C3 ...Repeated for module number 6
50EA ...Repeated for module number 7
5111 ...Repeated for module number 8
5138 ...Repeated for module number 9
515F ...Repeated for module number 10
5186 ...Repeated for module number 11
51AD ...Repeated for module number 12
51D4 ...Repeated for module number 13
51FB ...Repeated for module number 14
5222 ...Repeated for module number 15
5249 ...Repeated for module number 16
5270 ...Repeated for module number 17
5297 ...Repeated for module number 18
52BE ...Repeated for module number 19
52E5 ...Repeated for module number 20
530C ...Repeated for module number 21

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 79


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


5333 ...Repeated for module number 22
535A ...Repeated for module number 23
5381 ...Repeated for module number 24
Protection Element States Actual Values (Read Only)
5400 Protection Element States (1024 items) 0 to 65535 --- 1 F001 0
FlexLogic Timers (Read/Write Setting) (32 Modules)
5800 FlexLogic Timer 1 Pickup Delay 0 to 3600000000 ms 1 F003 0
5802 FlexLogic Timer 1 Dropout Delay 0 to 3600000000 ms 1 F003 0
5804 ...Repeated for FlexLogic Timer 2
5808 ...Repeated for FlexLogic Timer 3
580C ...Repeated for FlexLogic Timer 4
5810 ...Repeated for FlexLogic Timer 5
5814 ...Repeated for FlexLogic Timer 6
5818 ...Repeated for FlexLogic Timer 7
581C ...Repeated for FlexLogic Timer 8
5820 ...Repeated for FlexLogic Timer 9
5824 ...Repeated for FlexLogic Timer 10
5828 ...Repeated for FlexLogic Timer 11
582C ...Repeated for FlexLogic Timer 12
5830 ...Repeated for FlexLogic Timer 13
5834 ...Repeated for FlexLogic Timer 14
5838 ...Repeated for FlexLogic Timer 15
583C ...Repeated for FlexLogic Timer 16
5840 ...Repeated for FlexLogic Timer 17
5844 ...Repeated for FlexLogic Timer 18
5848 ...Repeated for FlexLogic Timer 19
584C ...Repeated for FlexLogic Timer 20
5850 ...Repeated for FlexLogic Timer 21
5854 ...Repeated for FlexLogic Timer 22
5858 ...Repeated for FlexLogic Timer 23
585C ...Repeated for FlexLogic Timer 24
5860 ...Repeated for FlexLogic Timer 25
5864 ...Repeated for FlexLogic Timer 26
5868 ...Repeated for FlexLogic Timer 27
586C ...Repeated for FlexLogic Timer 28
5870 ...Repeated for FlexLogic Timer 29
5874 ...Repeated for FlexLogic Timer 30
5878 ...Repeated for FlexLogic Timer 31
587C ...Repeated for FlexLogic Timer 32
Phase Time Overcurrent (TOC) (Read/Write Grouped Setting) (6 Modules)
5900 Phase Time Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
5901 Phase Time Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
5902 Phase Time Overcurrent 1 Input 0 to 1 --- 1 F122 0 (Phasor)
5903 Phase Time Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
5904 Phase Time Overcurrent 1 Curve 0 to 16 --- 1 F103 0 (IEEE Mod
Inv)
5905 Phase Time Overcurrent 1 Multiplier 0 to 600 --- 0.01 F001 100

80 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


5906 Phase Time Overcurrent 1 Reset 0 to 1 --- 1 F104 0
(Instantaneou
s)
5907 Phase Time Overcurrent 1 Voltage Restraint 0 to 1 --- 1 F102 0 (Disabled)
5908 Phase TOC 1 Block For Each Phase (3 items) 0 to 65535 --- 1 F300 0
590C Phase Time Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
590D Reserved (3 items) 0 to 1 --- 1 F001 0
5910 ...Repeated for Phase Time Overcurrent 2
5920 ...Repeated for Phase Time Overcurrent 3
5930 ...Repeated for Phase Time Overcurrent 4
5940 ...Repeated for Phase Time Overcurrent 5
5950 ...Repeated for Phase Time Overcurrent 6
Phase Instantaneous Overcurrent (IOC) (Read/Write Grouped Setting) (6 Modules)
5A00 Phase Instantaneous Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
5A01 Phase Instantaneous Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
5A02 Phase Instantaneous Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
5A03 Phase Instantaneous Overcurrent 1 Delay 0 to 600 s 0.01 F001 0
5A04 Phase Instantaneous Overcurrent 1 Reset Delay 0 to 600 s 0.01 F001 0
5A05 Phase IOC1 Block For Each Phase (3 items) 0 to 65535 --- 1 F300 0
5A09 Phase Instantaneous Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
5A0A Phase Instantaneous Overcurrent 1 Reserved (6 0 to 1 --- 1 F001 0
items)
5A10 ...Repeated for Phase Instantaneous Overcurrent 2
5A20 ...Repeated for Phase Instantaneous Overcurrent 3
5A30 ...Repeated for Phase Instantaneous Overcurrent 4
5A40 ...Repeated for Phase Instantaneous Overcurrent 5
5A50 ...Repeated for Phase Instantaneous Overcurrent 6
5A60 ...Repeated for Phase Instantaneous Overcurrent 7
5A70 ...Repeated for Phase Instantaneous Overcurrent 8
5A80 ...Repeated for Phase Instantaneous Overcurrent 9
5A90 ...Repeated for Phase Instantaneous Overcurrent 10
5AA0 ...Repeated for Phase Instantaneous Overcurrent 11
5AB0 ...Repeated for Phase Instantaneous Overcurrent 12
Neutral Time Overcurrent (TOC) (Read/Write Grouped Setting) (6 Modules)
5B00 Neutral Time Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
5B01 Neutral Time Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
5B02 Neutral Time Overcurrent 1 Input 0 to 1 --- 1 F122 0 (Phasor)
5B03 Neutral Time Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
5B04 Neutral Time Overcurrent 1 Curve 0 to 16 --- 1 F103 0 (IEEE Mod
Inv)
5B05 Neutral Time Overcurrent 1 Multiplier 0 to 600 --- 0.01 F001 100
5B06 Neutral Time Overcurrent 1 Reset 0 to 1 --- 1 F104 0
(Instantaneou
s)
5B07 Neutral Time Overcurrent 1 Block 0 to 65535 --- 1 F300 0
5B09 Neutral Time Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
5B0A Neutral Time Overcurrent 1 Reserved (6 items) 0 to 1 --- 1 F001 0
5B10 ...Repeated for Neutral Time Overcurrent 2
5B20 ...Repeated for Neutral Time Overcurrent 3

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 81


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


5B30 ...Repeated for Neutral Time Overcurrent 4
5B40 ...Repeated for Neutral Time Overcurrent 5
5B50 ...Repeated for Neutral Time Overcurrent 6
Neutral Instantaneous Overcurrent (IOC) (Read/Write Grouped Setting) (12 Modules)
5C00 Neutral Instantaneous Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
5C01 Neutral Instantaneous Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
5C02 Neutral Instantaneous Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
5C03 Neutral Instantaneous Overcurrent 1 Delay 0 to 600 s 0.01 F001 0
5C04 Neutral Instantaneous Overcurrent 1 Reset Delay 0 to 600 s 0.01 F001 0
5C05 Neutral Instantaneous Overcurrent 1 Block 0 to 65535 --- 1 F300 0
5C07 Neutral Instantaneous Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
5C08 Neutral Instantaneous Overcurrent 1 Reserved (8 0 to 1 --- 1 F001 0
items)
5C10 ...Repeated for Neutral Instantaneous Overcurrent 2
5C20 ...Repeated for Neutral Instantaneous Overcurrent 3
5C30 ...Repeated for Neutral Instantaneous Overcurrent 4
5C40 ...Repeated for Neutral Instantaneous Overcurrent 5
5C50 ...Repeated for Neutral Instantaneous Overcurrent 6
5C60 ...Repeated for Neutral Instantaneous Overcurrent 7
5C70 ...Repeated for Neutral Instantaneous Overcurrent 8
5C80 ...Repeated for Neutral Instantaneous Overcurrent 9
5C90 ...Repeated for Neutral Instantaneous Overcurrent 10
5CA0 ...Repeated for Neutral Instantaneous Overcurrent 11
5CB0 ...Repeated for Neutral Instantaneous Overcurrent 12
Ground Time Overcurrent (TOC) (Read/Write Grouped Setting) (6 Modules)
5D00 Ground Time Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
5D01 Ground Time Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
5D02 Ground Time Overcurrent 1 Input 0 to 1 --- 1 F122 0 (Phasor)
5D03 Ground Time Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
5D04 Ground Time Overcurrent 1 Curve 0 to 16 --- 1 F103 0 (IEEE Mod
Inv)
5D05 Ground Time Overcurrent 1 Multiplier 0 to 600 --- 0.01 F001 100
5D06 Ground Time Overcurrent 1 Reset 0 to 1 --- 1 F104 0
(Instantaneou
s)
5D07 Ground Time Overcurrent 1 Block 0 to 65535 --- 1 F300 0
5D09 Ground Time Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
5D0A Ground Time Overcurrent 1 Reserved (6 items) 0 to 1 --- 1 F001 0
5D10 ...Repeated for Ground Time Overcurrent 2
5D20 ...Repeated for Ground Time Overcurrent 3
5D30 ...Repeated for Ground Time Overcurrent 4
5D40 ...Repeated for Ground Time Overcurrent 5
5D50 ...Repeated for Ground Time Overcurrent 6
Ground Instantaneous Overcurrent (IOC) (Read/Write Grouped Setting) (12 Modules)
5E00 Ground Instantaneous Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
5E01 Ground Instantaneous Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
5E02 Ground Instantaneous Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
5E03 Ground Instantaneous Overcurrent 1 Delay 0 to 600 s 0.01 F001 0

82 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


5E04 Ground Instantaneous Overcurrent 1 Reset Delay 0 to 600 s 0.01 F001 0
5E05 Ground Instantaneous Overcurrent 1 Block 0 to 65535 --- 1 F300 0
5E07 Ground Instantaneous Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
5E08 Ground Instantaneous Overcurrent 1 Reserved (8 0 to 1 --- 1 F001 0
items)
5E10 ...Repeated for Ground Instantaneous Overcurrent 2
5E20 ...Repeated for Ground Instantaneous Overcurrent 3
5E30 ...Repeated for Ground Instantaneous Overcurrent 4
5E40 ...Repeated for Ground Instantaneous Overcurrent 5
5E50 ...Repeated for Ground Instantaneous Overcurrent 6
5E60 ...Repeated for Ground Instantaneous Overcurrent 7
5E70 ...Repeated for Ground Instantaneous Overcurrent 8
5E80 ...Repeated for Ground Instantaneous Overcurrent 9
5E90 ...Repeated for Ground Instantaneous Overcurrent 10
5EA0 ...Repeated for Ground Instantaneous Overcurrent 11
5EB0 ...Repeated for Ground Instantaneous Overcurrent 12
Setting Groups (Read/Write Setting)
5F80 Communications Group 0 to 5 --- 1 F001 0
5F81 Setting Groups Block 0 to 65535 --- 1 F300 0
5F82 Groups Activate On (5 items) 0 to 65535 --- 1 F300 0
5F89 Setting Group Function 0 to 1 --- 1 F102 0 (Disabled)
5F8A Setting Group Events 0 to 1 --- 1 F102 0 (Disabled)
Setting Groups (Read Only Non-Volatile)
5F8B Current Setting Group 0 to 5 --- 1 F001 0
Negative Sequence Time Overcurrent (TOC) (Read/Write Grouped Setting) (2 Modules)
6300 Negative Sequence Time Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
6301 Negative Sequence Time Overcurrent 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
6302 Negative Sequence Time Overcurrent 1 Pickup 0 to 30 pu 0.001 F001 1000
6303 Negative Sequence Time Overcurrent 1 Curve 0 to 16 --- 1 F103 0 (IEEE Mod
Inv)
6304 Negative Sequence Time Overcurrent 1 Multiplier 0 to 600 --- 0.01 F001 100
6305 Negative Sequence Time Overcurrent 1 Reset 0 to 1 --- 1 F104 0
(Instantaneou
s)
6306 Negative Sequence Time Overcurrent 1 Block 0 to 65535 --- 1 F300 0
6308 Negative Sequence Time Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
6309 Negative Sequence Time Overcurrent 1 Reserved (7 0 to 1 --- 1 F001 0
items)
6310 ...Repeated for Negative Sequence Time Overcurrent
2
Negative Sequence Instantaneous Overcurrent (Read/Write Grouped Setting) (2 Modules)
6400 Negative Sequence Instantaneous OC 1 Function 0 to 1 --- 1 F102 0 (Disabled)
6401 Negative Sequence Instantaneous OC 1 Signal 0 to 5 --- 1 F167 0 (SRC 1)
Source
6402 Negative Sequence Instantaneous Overcurrent 1 0 to 30 pu 0.001 F001 1000
Pickup
6403 Negative Sequence Instantaneous Overcurrent 1 0 to 600 s 0.01 F001 0
Delay
6404 Negative Sequence Instantaneous OC 1 Reset Delay 0 to 600 s 0.01 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 83


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


6405 Negative Sequence Instantaneous Overcurrent 1 0 to 65535 --- 1 F300 0
Block
6407 Negative Sequence Instantaneous Overcurrent 1 0 to 1 --- 1 F102 0 (Disabled)
Events
6408 Negative Sequence Instantaneous Overcurrent 0 to 1 --- 1 F001 0
Reserved (8 items)
6410 ...Repeated for Negative Sequence Instantaneous OC
2
Negative Sequence Overvoltage (Read/Write Grouped Setting) (2 Modules)
64A0 Negative Sequence Overvoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
64A1 Negative Sequence Overvoltage 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
64A2 Negative Sequence Overvoltage 1 Pickup 0 to 1.25 pu 0.001 F001 300
64A3 Negative Sequence Overvoltage 1 Pickup Delay 0 to 600 s 0.01 F001 50
64A4 Negative Sequence Overvoltage 1 Reset Delay 0 to 600 s 0.01 F001 50
64A5 Negative Sequence Overvoltage 1 Block 0 to 65535 --- 1 F300 0
64A7 Negative Sequence Overvoltage 1 Events 0 to 1 --- 1 F102 0 (Disabled)
64A8 ...Repeated for Negative Sequence Overvoltage 2
Sensitive Directional Power (Read/Write Grouped Setting) (2 Modules)
66A0 Sensitive Directional Power 1 Function 0 to 1 --- 1 F102 0 (Disabled)
66A1 Sensitive Directional Power 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
66A2 Sensitive Directional Power 1 RCA 0 to 359 degrees 1 F001 0
66A3 Sensitive Directional Power 1 Calibration 0 to 0.95 degrees 0.05 F001 0
66A4 Sensitive Directional Power 1 STG1 SMIN -1.2 to 1.2 pu 0.001 F002 100
66A5 Sensitive Directional Power 1 STG1 Delay 0 to 600 s 0.01 F001 50
66A6 Sensitive Directional Power 1 STG2 SMIN -1.2 to 1.2 pu 0.001 F002 100
66A7 Sensitive Directional Power 1 STG2 Delay 0 to 600 s 0.01 F001 2000
66A8 Sensitive Directional Power 1 Block --- --- --- F001 0
66AA Sensitive Directional Power 1 Events 0 to 1 --- 1 F102 0 (Disabled)
66AB Reserved (5 items) 0 to 65535 --- 1 F001 0
66B0 ...Repeated for Sensitive Directional Power 2
Autoreclose 1P 3P (Read/Write Setting)
6890 Autoreclose Mode 0 to 3 --- 1 F080 3 (3 Pole-B)
6891 Autoreclose Maximum Number of Shots 1 to 4 --- 1 F001 2
6892 Autoreclose Block Breaker 1 0 to 65535 --- 1 F300 0
6893 Autoreclose Close Time Breaker 1 0 to 655.35 s 0.01 F001 10
6894 Autoreclose Breaker Manual Close 0 to 65535 --- 1 F300 0
6895 Autoreclose Function 0 to 1 --- 1 F102 0 (Disabled)
6896 Autoreclose Block Time Manual Close 0 to 655.35 s 0.01 F001 1000
6897 Autoreclose 1P Initiate 0 to 65535 --- 1 F300 0
6898 Autoreclose 3P Initiate 0 to 65535 --- 1 F300 0
6899 Autoreclose 3P TD Initiate 0 to 65535 --- 1 F300 0
689A Autoreclose Multi-Phase Fault 0 to 65535 --- 1 F300 0
689B Autoreclose Breaker 1 Pole Open 0 to 65535 --- 1 F300 0
689C Autoreclose Breaker 3 Pole Open 0 to 65535 --- 1 F300 0
689D Autoreclose 3-Pole Dead Time 1 0 to 655.35 s 0.01 F001 50
689E Autoreclose 3-Pole Dead Time 2 0 to 655.35 s 0.01 F001 120
689F Autoreclose Extend Dead T1 0 to 65535 --- 1 F300 0
68A0 Autoreclose Dead T1 Extension 0 to 655.35 s 0.01 F001 50

84 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


68A1 Autoreclose Reset 0 to 65535 --- 1 F300 0
68A2 Autoreclose Reset Time 0 to 655.35 s 0.01 F001 6000
68A3 Autoreclose Breaker Closed 0 to 65535 --- 1 F300 0
68A4 Autoreclose Block 0 to 65535 --- 1 F300 0
68A5 Autoreclose Pause 0 to 65535 --- 1 F300 0
68A6 Autoreclose Incomplete Sequence Time 0 to 655.35 s 0.01 F001 500
68A7 Autoreclose Block Breaker 2 0 to 65535 --- 1 F300 0
68A8 Autoreclose Close Time Breaker 2 0 to 655.35 s 0.01 F001 10
68A9 Autoreclose Transfer 1 to 2 0 to 1 --- 1 F126 0 (No)
68AA Autoreclose Transfer 2 to 1 0 to 1 --- 1 F126 0 (No)
68AB Autoreclose Breaker 1 Fail Option 0 to 1 --- 1 F081 0 (Continue)
68AC Autoreclose Breaker 2 Fail Option 0 to 1 --- 1 F081 0 (Continue)
68AD Autoreclose 1P Dead Time 0 to 655.35 s 0.01 F001 100
68AE Autoreclose Breaker Sequence 0 to 4 --- 1 F082 3 (1 - 2)
68AF Autoreclose Transfer Time 0 to 655.35 s 0.01 F001 400
68B0 Autoreclose Event 0 to 1 --- 1 F102 0 (Disabled)
68B1 Autoreclose 3P Dead Time 3 0 to 655.35 s 0.01 F001 200
68B2 Autoreclose 3P Dead Time 4 0 to 655.35 s 0.01 F001 400
68B3 Autoreclose HMI Control 0 to 1 --- 1 F102 1 (Enabled)
68B4 Autoreclose Tagging 0 to 1 --- 1 F102 0 (Disabled)
68B5 Autoreclose Local Control 0 to 65535 --- 1 F300 0
68B6 Autoreclose Remote Control 0 to 65535 --- 1 F300 0
68B7 Autoreclose Tselect 1 to 30 s 0.1 F001 50
68B8 Autoreclose Bus Fault Init 0 to 65535 --- 1 F300 0
Phase Undervoltage (Read/Write Grouped Setting) (2 Modules)
7000 Phase Undervoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7001 Phase Undervoltage 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
7002 Phase Undervoltage 1 Pickup 0 to 1.1 pu 0.001 F001 1000
7003 Phase Undervoltage 1 Curve 0 to 1 --- 1 F111 0 (Definite
Time)
7004 Phase Undervoltage 1 Delay 0 to 600 s 0.01 F001 100
7005 Phase Undervoltage 1 Minimum Voltage 0 to 3 pu 0.001 F001 100
7006 Phase Undervoltage 1 Block 0 to 65535 --- 1 F300 0
7008 Phase Undervoltage 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7009 Phase Undervoltage 1 Measurement Mode 0 to 1 --- 1 F186 0 (Phase to
Ground)
700A Phase Undervoltage 1 Reserved (6 items) 0 to 1 --- 1 F001 0
7010 ...Repeated for Phase Undervoltage 2
Phase Overvoltage (Read/Write Grouped Setting) (2 Modules)
7040 Phase Overvoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7041 Phase Overvoltage 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
7042 Phase Overvoltage 1 Pickup 0 to 3 pu 0.001 F001 1000
7043 Phase Overvoltage 1 Delay 0 to 600 s 0.01 F001 100
7044 Phase Overvoltage 1 Reset Delay 0 to 600 s 0.01 F001 100
7045 Phase Overvoltage 1 Block 0 to 65535 --- 1 F300 0
7047 Phase Overvoltage 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7048 Phase Overvoltage 1 Reserved (8 items) 0 to 1 --- 1 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 85


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


7050 ...Repeated for Phase Overvoltage 2
Breaker Failure (Read/Write Grouped Setting) (2 Modules)
7200 Breaker Failure 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7201 Breaker Failure 1 Mode 0 to 1 --- 1 F157 0 (3-Pole)
7208 Breaker Failure 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
7209 Breaker Failure 1 Amp Supervision 0 to 1 --- 1 F126 1 (Yes)
720A Breaker Failure 1 Use Seal-In 0 to 1 --- 1 F126 1 (Yes)
720B Breaker Failure 1 Three Pole Initiate 0 to 65535 --- 1 F300 0
720C Breaker Failure 1 Block 0 to 65535 --- 1 F300 0
720D Breaker Failure 1 Phase Amp Supv Pickup 0.001 to 30 pu 0.001 F001 1050
720E Breaker Failure 1 Neutral Amp Supv Pickup 0.001 to 30 pu 0.001 F001 1050
720F Breaker Failure 1 Use Timer 1 0 to 1 --- 1 F126 1 (Yes)
7210 Breaker Failure 1 Timer 1 Pickup 0 to 65.535 s 0.001 F001 0
7211 Breaker Failure 1 Use Timer 2 0 to 1 --- 1 F126 1 (Yes)
7212 Breaker Failure 1 Timer 2 Pickup 0 to 65.535 s 0.001 F001 0
7213 Breaker Failure 1 Use Timer 3 0 to 1 --- 1 F126 1 (Yes)
7214 Breaker Failure 1 Timer 3 Pickup 0 to 65.535 s 0.001 F001 0
7215 Breaker Failure 1 Breaker Status 1 Phase A/3P 0 to 65535 --- 1 F300 0
7216 Breaker Failure 1 Breaker Status 2 Phase A/3P 0 to 65535 --- 1 F300 0
7217 Breaker Failure 1 Breaker Test On 0 to 65535 --- 1 F300 0
7218 Breaker Failure 1 Phase Amp Hiset Pickup 0.001 to 30 pu 0.001 F001 1050
7219 Breaker Failure 1 Neutral Amp Hiset Pickup 0.001 to 30 pu 0.001 F001 1050
721A Breaker Failure 1 Phase Amp Loset Pickup 0.001 to 30 pu 0.001 F001 1050
721B Breaker Failure 1 Neutral Amp Loset Pickup 0.001 to 30 pu 0.001 F001 1050
721C Breaker Failure 1 Loset Time 0 to 65.535 s 0.001 F001 0
721D Breaker Failure 1 Trip Dropout Delay 0 to 65.535 s 0.001 F001 0
721F Breaker Failure 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7220 Breaker Failure 1 Phase A Initiate 0 to 65535 --- 1 F300 0
7221 Breaker Failure 1 Phase B Initiate 0 to 65535 --- 1 F300 0
7222 Breaker Failure 1 Phase C Initiate 0 to 65535 --- 1 F300 0
7223 Breaker Failure 1 Breaker Status 1 Phase B 0 to 65535 --- 1 F300 0
7224 Breaker Failure 1 Breaker Status 1 Phase C 0 to 65535 --- 1 F300 0
7225 Breaker Failure 1 Breaker Status 2 Phase B 0 to 65535 --- 1 F300 0
7226 Breaker Failure 1 Breaker Status 2 Phase C 0 to 65535 --- 1 F300 0
7227 ...Repeated for Breaker Failure 2
Phase Directional Overcurrent (Read/Write Grouped Setting) (2 Modules)
7260 Phase Directional Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7261 Phase Directional Overcurrent 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
7262 Phase Directional Overcurrent 1 Block 0 to 65535 --- 1 F300 0
7263 Phase Directional Overcurrent 1 ECA 0 to 359 degrees 1 F001 30
7264 Phase Directional Overcurrent 1 Pol V Threshold 0 to 3 pu 0.001 F001 700
7265 Phase Directional Overcurrent 1 Block Overcurrent 0 to 1 --- 1 F126 0 (No)
7267 Phase Directional Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7268 Phase Directional Overcurrent 1 Reserved (8 items) 0 to 1 --- 1 F001 0
7270 ...Repeated for Phase Directional Overcurrent 2
Neutral Directional Overcurrent (Read/Write Grouped Setting) (2 Modules)
7280 Neutral Directional Overcurrent 1 Function 0 to 1 --- 1 F102 0 (Disabled)

86 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


7281 Neutral Directional Overcurrent 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
7282 Neutral Directional Overcurrent 1 Polarizing 0 to 2 --- 1 F230 0 (Voltage)
7283 Neutral Directional Overcurrent 1 Forward ECA -90 to 90 ° Lag 1 F002 75
7284 Neutral Directional Overcurrent 1 Forward Limit 40 to 90 degrees 1 F001 90
Angle
7285 Neutral Directional Overcurrent 1 Forward Pickup 0.006 to 30 pu 0.001 F001 50
7286 Neutral Directional Overcurrent 1 Reverse Limit Angle 40 to 90 degrees 1 F001 90
7287 Neutral Directional Overcurrent 1 Reverse Pickup 0.006 to 30 pu 0.001 F001 50
7289 Neutral Directional Overcurrent 1 Block 0 to 65535 --- 1 F300 0
728A Neutral Directional Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
728B Neutral Directional Overcurrent 1 Polarizing Voltage 0 to 1 --- 1 F231 0 (Calculated
V0)
728C Neutral Directional Overcurrent 1 Op Current 0 to 1 --- 1 F196 0 (Calculated
3I0)
728D Neutral Directional Overcurrent 1 Offset 0 to 250 ohms 0.01 F001 0
728E Neutral Directional Overcurrent 1 Pos Seq Restraint 0 to 0.5 --- 0.001 F001 63
728F Neutral Directional Overcurrent 1 Reserved 0 to 1 --- 1 F001 0
7290 ...Repeated for Neutral Directional Overcurrent 2
Negative-Sequence Directional Overcurrent (Read/Write Grouped Settings) (2 Modules)
72A0 Negative Sequence Directional Overcurrent 1 0 to 1 --- 1 F102 0 (Disabled)
Function
72A1 Negative Sequence Directional Overcurrent 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
72A2 Negative Sequence Directional Overcurrent 1 Type 0 to 1 --- 1 F179 0 (Neg
Sequence)
72A3 Neg Sequence Directional Overcurrent 1 Forward 0 to 90 ° Lag 1 F002 75
ECA
72A4 Neg Seq Directional Overcurrent 1 Forward Limit 40 to 90 degrees 1 F001 90
Angle
72A5 Neg Sequence Directional Overcurrent 1 Forward 0.015 to 30 pu 0.005 F001 50
Pickup
72A6 Neg Seq Directional Overcurrent 1 Reverse Limit 40 to 90 degrees 1 F001 90
Angle
72A7 Neg Sequence Directional Overcurrent 1 Reverse 0.015 to 30 pu 0.005 F001 50
Pickup
72A9 Negative Sequence Directional Overcurrent 1 Block 0 to 65535 --- 1 F300 0
72AA Negative Sequence Directional Overcurrent 1 Events 0 to 1 --- 1 F102 0 (Disabled)
72AB Negative Sequence Directional Overcurrent 1 Offset 0 to 250 ohms 0.01 F001 0
72AC Neg Seq Directional Overcurrent 1 Pos Seq Restraint 0 to 0.5 --- 0.001 F001 63
72AD Neg Seq Directional Overcurrent 1 Reserved (3 items) 0 to 1 --- 1 F001 0
72B0 ...Repeated for Neg Seq Directional Overcurrent 2
Breaker Arcing Current Settings (Read/Write Setting) (6 Modules)
72C0 Breaker 1 Arcing Amp Function 0 to 1 --- 1 F102 0 (Disabled)
72C1 Breaker 1 Arcing Amp Source 0 to 5 --- 1 F167 0 (SRC 1)
72C2 Breaker 1 Arcing Amp Limit 0 to 50000 kA2-cyc 1 F001 1000
72C3 Breaker 1 Arcing Exponent 1 to 5 --- 0.001 F001 2000
72C4 Breaker 1 Arcing Rated Interruption 0 to 100 kA 0.1 F001 315
72C5 Breaker 1 Arcing Time Offset 0 to 50 ms 1 F001 0
72C6 Breaker 1 Arcing Amp Block 0 to 65535 --- 1 F300 0
72C7 Breaker 1 Arcing Amp Events 0 to 1 --- 1 F102 0 (Disabled)
72C8 ...Repeated for Breaker 2 Arcing Amp

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 87


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


72D0 ...Repeated for Breaker 3 Arcing Amp
72D8 ...Repeated for Breaker 4 Arcing Amp
72E0 ...Repeated for Breaker 5 Arcing Amp
72E8 ...Repeated for Breaker 6 Arcing Amp
IEC 61850 Received Analog Settings (Read/Write) (128 Modules)
7300 IEC 61850 GOOSE Analog 1 Default Value –1000000 to 1000000 --- 0.001 F060 1000
7302 IEC 61850 GOOSE Analog Input 1 Mode 0 to 1 --- 1 F491 0 (Default
Value)
7303 IEC 61850 GOOSE Analog Input 1 Units --- --- --- F207 (none)
7305 IEC 61850 GOOSE Analog Input 1 Per-Unit Base 0 to 999999999.999 --- 0.001 F060 1
7307 ...Repeated for IEC 61850 GOOSE Analog Input 2
730E ...Repeated for IEC 61850 GOOSE Analog Input 3
7315 ...Repeated for IEC 61850 GOOSE Analog Input 4
731C ...Repeated for IEC 61850 GOOSE Analog Input 5
7323 ...Repeated for IEC 61850 GOOSE Analog Input 6
732A ...Repeated for IEC 61850 GOOSE Analog Input 7
7331 ...Repeated for IEC 61850 GOOSE Analog Input 8
7338 ...Repeated for IEC 61850 GOOSE Analog Input 9
733F ...Repeated for IEC 61850 GOOSE Analog Input 10
7346 ...Repeated for IEC 61850 GOOSE Analog Input 11
734D ...Repeated for IEC 61850 GOOSE Analog Input 12
7354 ...Repeated for IEC 61850 GOOSE Analog Input 13
735B ...Repeated for IEC 61850 GOOSE Analog Input 14
7362 ...Repeated for IEC 61850 GOOSE Analog Input 15
7369 ...Repeated for IEC 61850 GOOSE Analog Input 16
7370 ...Repeated for IEC 61850 GOOSE Analog Input 17
7377 ...Repeated for IEC 61850 GOOSE Analog Input 18
737E ...Repeated for IEC 61850 GOOSE Analog Input 19
7385 ...Repeated for IEC 61850 GOOSE Analog Input 20
738C ...Repeated for IEC 61850 GOOSE Analog Input 21
7393 ...Repeated for IEC 61850 GOOSE Analog Input 22
739A ...Repeated for IEC 61850 GOOSE Analog Input 23
73A1 ...Repeated for IEC 61850 GOOSE Analog Input 24
73A8 ...Repeated for IEC 61850 GOOSE Analog Input 25
73AF ...Repeated for IEC 61850 GOOSE Analog Input 26
73B6 ...Repeated for IEC 61850 GOOSE Analog Input 27
73BD ...Repeated for IEC 61850 GOOSE Analog Input 28
73C4 ...Repeated for IEC 61850 GOOSE Analog Input 29
73CB ...Repeated for IEC 61850 GOOSE Analog Input 30
73D2 ...Repeated for IEC 61850 GOOSE Analog Input 31
73D9 ...Repeated for IEC 61850 GOOSE Analog Input 32
73E0 ...Repeated for IEC 61850 GOOSE Analog Input 33
73E7 ...Repeated for IEC 61850 GOOSE Analog Input 34
73EE ...Repeated for IEC 61850 GOOSE Analog Input 35
73F5 ...Repeated for IEC 61850 GOOSE Analog Input 36
73FC ...Repeated for IEC 61850 GOOSE Analog Input 37
7403 ...Repeated for IEC 61850 GOOSE Analog Input 38

88 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


740A ...Repeated for IEC 61850 GOOSE Analog Input 39
7411 ...Repeated for IEC 61850 GOOSE Analog Input 40
7418 ...Repeated for IEC 61850 GOOSE Analog Input 41
741F ...Repeated for IEC 61850 GOOSE Analog Input 42
7426 ...Repeated for IEC 61850 GOOSE Analog Input 43
742D ...Repeated for IEC 61850 GOOSE Analog Input 44
7434 ...Repeated for IEC 61850 GOOSE Analog Input 45
743B ...Repeated for IEC 61850 GOOSE Analog Input 46
7442 ...Repeated for IEC 61850 GOOSE Analog Input 47
7449 ...Repeated for IEC 61850 GOOSE Analog Input 48
7450 ...Repeated for IEC 61850 GOOSE Analog Input 49
7457 ...Repeated for IEC 61850 GOOSE Analog Input 50
745E ...Repeated for IEC 61850 GOOSE Analog Input 51
7465 ...Repeated for IEC 61850 GOOSE Analog Input 52
746C ...Repeated for IEC 61850 GOOSE Analog Input 53
7473 ...Repeated for IEC 61850 GOOSE Analog Input 54
747A ...Repeated for IEC 61850 GOOSE Analog Input 55
7481 ...Repeated for IEC 61850 GOOSE Analog Input 56
7488 ...Repeated for IEC 61850 GOOSE Analog Input 57
748F ...Repeated for IEC 61850 GOOSE Analog Input 58
7496 ...Repeated for IEC 61850 GOOSE Analog Input 59
749D ...Repeated for IEC 61850 GOOSE Analog Input 60
74A4 ...Repeated for IEC 61850 GOOSE Analog Input 61
74AB ...Repeated for IEC 61850 GOOSE Analog Input 62
74B2 ...Repeated for IEC 61850 GOOSE Analog Input 63
74B9 ...Repeated for IEC 61850 GOOSE Analog Input 64
74C0 ...Repeated for IEC 61850 GOOSE Analog Input 65
74C7 ...Repeated for IEC 61850 GOOSE Analog Input 66
74CE ...Repeated for IEC 61850 GOOSE Analog Input 67
74D5 ...Repeated for IEC 61850 GOOSE Analog Input 68
74DC ...Repeated for IEC 61850 GOOSE Analog Input 69
74E3 ...Repeated for IEC 61850 GOOSE Analog Input 70
74EA ...Repeated for IEC 61850 GOOSE Analog Input 71
74F1 ...Repeated for IEC 61850 GOOSE Analog Input 72
74F8 ...Repeated for IEC 61850 GOOSE Analog Input 73
74FF ...Repeated for IEC 61850 GOOSE Analog Input 74
7506 ...Repeated for IEC 61850 GOOSE Analog Input 75
750D ...Repeated for IEC 61850 GOOSE Analog Input 76
7514 ...Repeated for IEC 61850 GOOSE Analog Input 77
751B ...Repeated for IEC 61850 GOOSE Analog Input 78
7522 ...Repeated for IEC 61850 GOOSE Analog Input 79
7529 ...Repeated for IEC 61850 GOOSE Analog Input 80
7530 ...Repeated for IEC 61850 GOOSE Analog Input 81
7537 ...Repeated for IEC 61850 GOOSE Analog Input 82
753E ...Repeated for IEC 61850 GOOSE Analog Input 83
7545 ...Repeated for IEC 61850 GOOSE Analog Input 84
754C ...Repeated for IEC 61850 GOOSE Analog Input 85

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 89


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


7553 ...Repeated for IEC 61850 GOOSE Analog Input 86
755A ...Repeated for IEC 61850 GOOSE Analog Input 87
7561 ...Repeated for IEC 61850 GOOSE Analog Input 88
7568 ...Repeated for IEC 61850 GOOSE Analog Input 89
656F ...Repeated for IEC 61850 GOOSE Analog Input 90
7576 ...Repeated for IEC 61850 GOOSE Analog Input 91
757D ...Repeated for IEC 61850 GOOSE Analog Input 92
7584 ...Repeated for IEC 61850 GOOSE Analog Input 93
758B ...Repeated for IEC 61850 GOOSE Analog Input 94
7592 ...Repeated for IEC 61850 GOOSE Analog Input 95
7599 ...Repeated for IEC 61850 GOOSE Analog Input 96
75A0 ...Repeated for IEC 61850 GOOSE Analog Input 97
75A7 ...Repeated for IEC 61850 GOOSE Analog Input 98
75AE ...Repeated for IEC 61850 GOOSE Analog Input 99
75B5 ...Repeated for IEC 61850 GOOSE Analog Input 100
75BC ...Repeated for IEC 61850 GOOSE Analog Input 101
75C3 ...Repeated for IEC 61850 GOOSE Analog Input 102
75CA ...Repeated for IEC 61850 GOOSE Analog Input 103
75D1 ...Repeated for IEC 61850 GOOSE Analog Input 104
75D8 ...Repeated for IEC 61850 GOOSE Analog Input 105
75DF ...Repeated for IEC 61850 GOOSE Analog Input 106
75E6 ...Repeated for IEC 61850 GOOSE Analog Input 107
75ED ...Repeated for IEC 61850 GOOSE Analog Input 108
75F4 ...Repeated for IEC 61850 GOOSE Analog Input 109
76FB ...Repeated for IEC 61850 GOOSE Analog Input 110
7602 ...Repeated for IEC 61850 GOOSE Analog Input 111
7609 ...Repeated for IEC 61850 GOOSE Analog Input 112
7610 ...Repeated for IEC 61850 GOOSE Analog Input 113
7617 ...Repeated for IEC 61850 GOOSE Analog Input 114
761E ...Repeated for IEC 61850 GOOSE Analog Input 115
7625 ...Repeated for IEC 61850 GOOSE Analog Input 116
762C ...Repeated for IEC 61850 GOOSE Analog Input 117
7633 ...Repeated for IEC 61850 GOOSE Analog Input 118
763A ...Repeated for IEC 61850 GOOSE Analog Input 119
7641 ...Repeated for IEC 61850 GOOSE Analog Input 120
7648 ...Repeated for IEC 61850 GOOSE Analog Input 121
764F ...Repeated for IEC 61850 GOOSE Analog Input 122
7656 ...Repeated for IEC 61850 GOOSE Analog Input 123
765D ...Repeated for IEC 61850 GOOSE Analog Input 124
7664 ...Repeated for IEC 61850 GOOSE Analog Input 125
766B ...Repeated for IEC 61850 GOOSE Analog Input 126
7672 ...Repeated for IEC 61850 GOOSE Analog Input 127
7679 ...Repeated for IEC 61850 GOOSE Analog Input 128
Load Shed Source (Read/Write Settings)
7A60 Load Shed Source Source A 0 to 5 --- 1 F167 0 (SRC 1)
7A61 Load Shed Source Events 0 to 1 --- 1 F102 1 (Enabled)
7A62 Load Shed Source Minimum Voltage 0 to 1.25 pu 0.01 F001 10

90 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


7A63 Load Shed Source Maximum V_2 0.05 to 1.25 pu 0.01 F001 10
7A64 Load Shed Source Reserved (12 items) 0 to 1 --- 1 F001 0
Load Shed Underfrequency (Read/Write Settings) (10 Modules)
7A70 Load Shed UF 1 Function 0 to 1 --- 1 F012 0 (Disabled)
7A71 Load Shed UF 1 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7A72 Load Shed UF 1 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7A73 Load Shed UF 1 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7A74 Load Shed UF 1 Arm 0 to 65535 --- 1 F300 1
7A75 Load Shed UF 1 Block 0 to 65535 --- 1 F300 0
7A76 Load Shed UF 1 Events 0 to 1 --- 1 F102 1 (Enabled)
7A77 Load Shed UF 1 Reserved (9 items) 0 to 1 --- 1 F001 0
7A80 Load Shed UF 2 Function 0 to 1 --- 1 F012 0 (Disabled)
7A81 Load Shed UF 2 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7A82 Load Shed UF 2 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7A83 Load Shed UF 2 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7A84 Load Shed UF 2 Arm 0 to 65535 --- 1 F300 1
7A85 Load Shed UF 2 Block 0 to 65535 --- 1 F300 0
7A86 Load Shed UF 2 Events 0 to 1 --- 1 F102 1 (Enabled)
7A87 Load Shed UF 2 Reserved (9 items) 0 to 1 --- 1 F001 0
7A90 Load Shed UF 3 Function 0 to 1 --- 1 F012 0 (Disabled)
7A91 Load Shed UF 3 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7A92 Load Shed UF 3 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7A93 Load Shed UF 3 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7A94 Load Shed UF 3 Arm 0 to 65535 --- 1 F300 1
7A95 Load Shed UF 3 Block 0 to 65535 --- 1 F300 0
7A96 Load Shed UF 3 Events 0 to 1 --- 1 F102 1 (Enabled)
7A97 Load Shed UF 3 Reserved (9 items) 0 to 1 --- 1 F001 0
7AA0 Load Shed UF 4 Function 0 to 1 --- 1 F012 0 (Disabled)
7AA1 Load Shed UF 4 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7AA2 Load Shed UF 4 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7AA3 Load Shed UF 4 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7AA4 Load Shed UF 4 Arm 0 to 65535 --- 1 F300 1
7AA5 Load Shed UF 4 Block 0 to 65535 --- 1 F300 0
7AA6 Load Shed UF 4 Events 0 to 1 --- 1 F102 1 (Enabled)
7AA7 Load Shed UF 4 Reserved (9 items) 0 to 1 --- 1 F001 0
7AB0 Load Shed UF 5 Function 0 to 1 --- 1 F012 0 (Disabled)
7AB1 Load Shed UF 5 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7AB2 Load Shed UF 5 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7AB3 Load Shed UF 5 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7AB4 Load Shed UF 5 Arm 0 to 65535 --- 1 F300 1
7AB5 Load Shed UF 5 Block 0 to 65535 --- 1 F300 0
7AB6 Load Shed UF 5 Events 0 to 1 --- 1 F102 1 (Enabled)
7AB7 Load Shed UF 5 Reserved (9 items) 0 to 1 --- 1 F001 0
7AC0 Load Shed UF 6 Function 0 to 1 --- 1 F012 0 (Disabled)
7AC1 Load Shed UF 6 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7AC2 Load Shed UF 6 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7AC3 Load Shed UF 6 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 91


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


7AC4 Load Shed UF 6 Arm 0 to 65535 --- 1 F300 1
7AC5 Load Shed UF 6 Block 0 to 65535 --- 1 F300 0
7AC6 Load Shed UF 6 Events 0 to 1 --- 1 F102 1 (Enabled)
7AC7 Load Shed UF 6 Reserved (9 items) 0 to 1 --- 1 F001 0
7AD0 Load Shed UF 7 Function 0 to 1 --- 1 F012 0 (Disabled)
7AD1 Load Shed UF 7 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7AD2 Load Shed UF 7 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7AD3 Load Shed UF 7 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7AD4 Load Shed UF 7 Arm 0 to 65535 --- 1 F300 1
7AD5 Load Shed UF 7 Block 0 to 65535 --- 1 F300 0
7AD6 Load Shed UF 7 Events 0 to 1 --- 1 F102 1 (Enabled)
7AD7 Load Shed UF 7 Reserved (9 items) 0 to 1 --- 1 F001 0
7AE0 Load Shed UF 8 Function 0 to 1 --- 1 F012 0 (Disabled)
7AE1 Load Shed UF 8 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7AE2 Load Shed UF 8 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7AE3 Load Shed UF 8 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7AE4 Load Shed UF 8 Arm 0 to 65535 --- 1 F300 1
7AE5 Load Shed UF 8 Block 0 to 65535 --- 1 F300 0
7AE6 Load Shed UF 8 Events 0 to 1 --- 1 F102 1 (Enabled)
7AE7 Load Shed UF 8 Reserved (9 items) 0 to 1 --- 1 F001 0
7AF0 Load Shed UF 9 Function 0 to 1 --- 1 F012 0 (Disabled)
7AF1 Load Shed UF 9 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7AF2 Load Shed UF 9 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7AF3 Load Shed UF 9 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7AF4 Load Shed UF 9 Arm 0 to 65535 --- 1 F300 1
7AF5 Load Shed UF 9 Block 0 to 65535 --- 1 F300 0
7AF6 Load Shed UF 9 Events 0 to 1 --- 1 F102 1 (Enabled)
7AF7 Load Shed UF 9 Reserved (9 items) 0 to 1 --- 1 F001 0
7B00 Load Shed UF 10 Function 0 to 1 --- 1 F012 0 (Disabled)
7B01 Load Shed UF 10 Pickup 45.00 to 65.00 Hz 0.01 F001 59.00
7B02 Load Shed UF 10 Pickup Delay 0.00 to 99.99 s 0.01 F001 0.00
7B03 Load Shed UF 10 Dropout Delay 0.00 to 99.99 s 0.01 F001 0.00
7B04 Load Shed UF 10 Arm 0 to 65535 --- 1 F300 1
7B05 Load Shed UF 10 Block 0 to 65535 --- 1 F300 0
7B06 Load Shed UF 10 Events 0 to 1 --- 1 F102 1 (Enabled)
7B07 Load Shed UF 10 Reserved (9 items) 0 to 1 --- 1 F001 0
Load Shed Undervoltage (Read/Write Settings) (6 Modules)
7B10 Load Shed Undervoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7B11 Load Shed Undervoltage 1 Pickup 0.1 to 1.25 pu 0.01 F001 90
7B12 Load shed Undervoltage 1 Pickup Delay 0 to 99.99 s 0.01 F001 0
7B13 Load Shed Undervoltage 1 Dropout Delay 0 to 99.99 s 0.01 F001 0
7B14 Load Shed Undervoltage 1 Arm 0 to 65535 --- 1 F300 1
7B15 Load Shed Undervoltage 1 Block 0 to 65535 --- 1 F300 0
7B16 Load Shed Undervoltage 1 Events 0 to 1 --- 1 F102 1 (Enabled)
7B17 Load Shed Undervoltage 1 Reserved (9 items) 0 to 1 --- 1 F001 0
7B20 ...Repeated for Load Shed Undervoltage 2
7B30 ...Repeated for Load Shed Undervoltage 3

92 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


7B40 ...Repeated for Load Shed Undervoltage 4
7B50 ...Repeated for Load Shed Undervoltage 5
7B60 ...Repeated for Load Shed Undervoltage 6
Load Shed Frequency Rate (Read/Write Settings) (4 Modules)
7B70 Load Shed Rate 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7B71 Load Shed Rate 1 Pickup -15 to 0.1 Hz/s 0.01 F002 -50
7B72 Load Shed Rate 1 Pickup Delay 0 to 99.99 s 0.01 F001 0
7B73 Load Shed Rate 1 Dropout Delay 0 to 99.99 s 0.01 F001 0
7B74 Load Shed Rate 1 Arm 0 to 65535 --- 1 F300 1
7B75 Load Shed Rate 1 Block 0 to 65535 --- 1 F300 0
7B76 Load Shed Rate 1 Events 0 to 1 --- 1 F102 1 (Enabled)
7B77 Load Shed Rate 1 Reserved (9 items) 0 to 1 --- 1 F001 0
7B80 ...Repeated for Load Shed Rate 2
7B90 ...Repeated for Load Shed Rate 3
7BA0 ...Repeated for Load Shed Rate 4
Load Shed Frequency Rate Actual Values (Read Only) (4 Modules)
7BB0 Load Shed Rate df/dt 1 -327.67 to 327.67 Hz/s 0.01 F002 0
7BB1 Load Shed Rate df/dt 2
7BB2 Load Shed Rate df/dt 3
7BB3 Load Shed Rate df/dt 4
Small Signal Oscillation Detector (SSOD) (Read/Write Settings) (2 Modules)
7C00 Small Signal Oscillation Detector 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7C01 Small Signal Oscillation Detector 1 Input (6 items) 0 to 4294967295 --- 1 F600 0
Small Signal Oscillation Detector (SSOD) Actual Values (Read Only) (2 Modules)
7C06 Small Signal Oscillation Detector 1 Magnitude 0 to 20 pu 0.001 F003 0
7C08 Small Signal Oscillation Detector 1 Input Counter 0 to 65535 --- 1 F003 0
7C0A Small Signal Oscillation Detector 1 Input Time 0 to 4294967296 ms 1 F003 0
7C0C Small Signal Oscillation Detector 2 Magnitude 0 to 20 pu 0.001 F003 0
7C0E Small Signal Oscillation Detector 2 Input Counter 0 to 65535 --- 1 F003 0
7C10 Small Signal Oscillation Detector 2 Input Time 0 to 4294967296 ms 1 F003 0
Small Signal Oscillation Detector (SSOD) (Read/Write Settings) (2 Modules)
7C11 Small Signal Oscillation Detector 1 Trip Pickup 0.05 to 10 pu 0.01 F001 20
7C12 Small Signal Oscillation Detector 1 Deadband 0.01 to 2 pu 0.01 F001 10
7C13 Small Signal Oscillation Detector 1 Alarm Delay 0 to 600 s 0.01 F001 1000
7C14 Small Signal Oscillation Detector 1 Trip Delay 0 to 600 s 0.01 F001 500
7C16 Small Signal Oscillation Detector 1 Block 0 to 65535 --- 1 F300 0
7C18 Small Signal Oscillation Detector 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7C19 ...Repeated for Small Signal Oscillation Detector 2
Small Signal Oscillation Detector (SSOD) Slave Actual Values (Read Only) (5 Modules)
7C20 SSOD Slave 1 Device ID 1 to 32 --- 1 F001 0
7C21 SSOD Slave 1 Counter Value 0 to 65535 --- 1 F003 0
7C23 SSOD Slave 1 Input Value –1000000000000 to --- 0.001 F060 0
1000000000000
7C25 SSOD Slave 1 Quality Value 0 to 1 --- 1 F078 0 (Quality
Bad)
7C26 SSOD Slave 1 Input time 0 to 4294967296 ms 1 F003 0
7C28 SSOD Slave 2 Device ID 1 to 32 --- 1 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 93


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


7C29 SSOD Slave 2 Counter Value 0 to 65535 --- 1 F003 0
7C2B SSOD Slave 2 Input Value –1000000000000 to --- 0.001 F060 0
1000000000000
7C2D SSOD Slave 2 Quality Value 0 to 1 --- 1 F078 0 (bad)
7C2E SSOD Slave 2 Input Time 0 to 4294967296 ms 1 F003 0
7C30 SSOD Slave 3 Device ID 1 to 32 --- 1 F001 0
7C31 SSOD Slave 3 Counter Value 0 to 65535 --- 1 F003 0
7C33 SSOD Slave 3 Input Value –1000000000000 to --- 0.001 F060 0
1000000000000
7C35 SSOD Slave 3 Quality Value 0 to 1 --- 1 F078 0 (bad)
7C36 SSOD Slave 3 Input Time 0 to 4294967296 ms 1 F003 0
7C38 SSOD Slave 4 Device ID 1 to 32 --- 1 F001 0
7C39 SSOD Slave 4 Counter Value 0 to 65535 --- 1 F003 0
7C3B SSOD Slave 4 Input Value –1000000000000 to --- 0.001 F060 0
1000000000000
7C3D SSOD Slave 4 Quality Value 0 to 1 --- 1 F078 0 (bad)
7C3E SSOD Slave 4 Input Time 0 to 4294967296 ms 1 F003 0
7C40 SSOD Slave 5 Device ID 1 to 32 --- 1 F001 0
7C41 SSOD Slave 5 Counter Value 0 to 65535 --- 1 F003 0
7C43 SSOD Slave 5 Input Value –1000000000000 to --- 0.001 F060 0
1000000000000
7C45 SSOD Slave 5 Quality Value 0 to 1 --- 1 F078 0 (bad)
7C46 SSOD Slave 5 Input Time 0 to 4294967296 ms 1 F003 0
Neutral Overvoltage (Read/Write Grouped Setting) (3 Modules)
7F00 Neutral Overvoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7F01 Neutral Overvoltage 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
7F02 Neutral Overvoltage 1 Pickup 0 to 1.25 pu 0.001 F001 300
7F03 Neutral Overvoltage 1 Pickup Delay 0 to 600 s 0.01 F001 100
7F04 Neutral Overvoltage 1 Reset Delay 0 to 600 s 0.01 F001 100
7F05 Neutral Overvoltage 1 Block 0 to 65535 --- 1 F300 0
7F07 Neutral Overvoltage 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7F08 Neutral Overvoltage 1 Curves 0 to 3 --- 1 F096 0 (Definite
Time)
7F09 Neutral Overvoltage 1 Reserved (7 items) 0 to 65535 --- 1 F001 0
7F10 ...Repeated for Neutral Overvoltage 2
7F20 ...Repeated for Neutral Overvoltage 3
Auxiliary Overvoltage (Read/Write Grouped Setting) (3 Modules)
7F30 Auxiliary Overvoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7F31 Auxiliary Overvoltage 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
7F32 Auxiliary Overvoltage 1 Pickup 0 to 1.1 pu 0.001 F001 300
7F33 Auxiliary Overvoltage 1 Pickup Delay 0 to 600 s 0.01 F001 100
7F34 Auxiliary Overvoltage 1 Reset Delay 0 to 600 s 0.01 F001 100
7F35 Auxiliary Overvoltage 1 Block 0 to 65535 --- 1 F300 0
7F37 Auxiliary Overvoltage 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7F38 Auxiliary Overvoltage 1 Reserved (8 items) 0 to 65535 --- 1 F001 0
7F40 ...Repeated for Auxiliary Overvoltage 2
7F50 ...Repeated for Auxiliary Overvoltage 3

94 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


Auxiliary Undervoltage (Read/Write Grouped Setting) (3 Modules)
7F60 Auxiliary Undervoltage 1 Function 0 to 1 --- 1 F102 0 (Disabled)
7F61 Auxiliary Undervoltage 1 Signal Source 0 to 5 --- 1 F167 0 (SRC 1)
7F62 Auxiliary Undervoltage 1 Pickup 0 to 1.1 pu 0.001 F001 700
7F63 Auxiliary Undervoltage 1 Delay 0 to 600 s 0.01 F001 100
7F64 Auxiliary Undervoltage 1 Curve 0 to 1 --- 1 F111 0 (Definite
Time)
7F65 Auxiliary Undervoltage 1 Minimum Voltage 0 to 3 pu 0.001 F001 100
7F66 Auxiliary Undervoltage 1 Block 0 to 65535 --- 1 F300 0
7F68 Auxiliary Undervoltage 1 Events 0 to 1 --- 1 F102 0 (Disabled)
7F69 Auxiliary Undervoltage 1 Reserved (7 items) 0 to 65535 --- 1 F001 0
7F70 ...Repeated for Auxiliary Undervoltage 2
7F80 ...Repeated for Auxiliary Undervoltage 3
Frequency Actual Values (Read Only)
8000 Tracking Frequency 2 to 90 Hz 0.01 F001 0
Annunciator (Read/Write Setting)
8411 Annunciator Alarm Input (288 items) 0 to 65535 --- 1 F300 0
IEC 61850 Logical Node Name Prefixes (Read/Write Setting)
8600 IEC 61850 GGIO LN Prefix (6 items) 0 to 65534 --- 1 F206 (none)
Automation Virtual Input Settings (Read/Write Setting) (128 Modules)
92E0 Automation Virtual Input 1 Name --- --- --- F205 "Aut VI 1 "
92E6 Automation Virtual Input 1 Function 0 to 1 --- 1 F102 0 (Disabled)
92E7 Automation Virtual Input 1 Programmed Type 0 to 1 --- 1 F127 0 (Latched)
92E8 Automation Virtual Input 1 Events 0 to 1 --- 1 F102 0 (Disabled)
92E9 ...Repeated for Automation Virtual Input 2
92F2 ...Repeated for Automation Virtual Input 3
92FB ...Repeated for Automation Virtual Input 4
9304 ...Repeated for Automation Virtual Input 5
930D ...Repeated for Automation Virtual Input 6
9316 ...Repeated for Automation Virtual Input 7
931F ...Repeated for Automation Virtual Input 8
9328 ...Repeated for Automation Virtual Input 9
9331 ...Repeated for Automation Virtual Input 10
933A ...Repeated for Automation Virtual Input 11
9343 ...Repeated for Automation Virtual Input 12
934C ...Repeated for Automation Virtual Input 13
9355 ...Repeated for Automation Virtual Input 14
935E ...Repeated for Automation Virtual Input 15
9367 ...Repeated for Automation Virtual Input 16
9370 ...Repeated for Automation Virtual Input 17
9379 ...Repeated for Automation Virtual Input 18
9382 ...Repeated for Automation Virtual Input 19
938B ...Repeated for Automation Virtual Input 20
9394 ...Repeated for Automation Virtual Input 21
939D ...Repeated for Automation Virtual Input 22
93A6 ...Repeated for Automation Virtual Input 23
93AF ...Repeated for Automation Virtual Input 24

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 95


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


93B8 ...Repeated for Automation Virtual Input 25
93C1 ...Repeated for Automation Virtual Input 26
93CA ...Repeated for Automation Virtual Input 27
93D3 ...Repeated for Automation Virtual Input 28
93DC ...Repeated for Automation Virtual Input 29
93E5 ...Repeated for Automation Virtual Input 30
93EE ...Repeated for Automation Virtual Input 31
93F7 ...Repeated for Automation Virtual Input 32
9400 ...Repeated for Automation Virtual Input 33
9409 ...Repeated for Automation Virtual Input 34
9412 ...Repeated for Automation Virtual Input 35
941B ...Repeated for Automation Virtual Input 36
9424 ...Repeated for Automation Virtual Input 37
942D ...Repeated for Automation Virtual Input 38
9436 ...Repeated for Automation Virtual Input 39
943F ...Repeated for Automation Virtual Input 40
9448 ...Repeated for Automation Virtual Input 41
9451 ...Repeated for Automation Virtual Input 42
945A ...Repeated for Automation Virtual Input 43
9463 ...Repeated for Automation Virtual Input 44
946C ...Repeated for Automation Virtual Input 45
9475 ...Repeated for Automation Virtual Input 46
947E ...Repeated for Automation Virtual Input 47
9487 ...Repeated for Automation Virtual Input 48
9490 ...Repeated for Automation Virtual Input 49
9499 ...Repeated for Automation Virtual Input 50
94A2 ...Repeated for Automation Virtual Input 51
94AB ...Repeated for Automation Virtual Input 52
94B4 ...Repeated for Automation Virtual Input 52
94BD ...Repeated for Automation Virtual Input 53
94BD ...Repeated for Automation Virtual Input 54
94C6 ...Repeated for Automation Virtual Input 55
94CF ...Repeated for Automation Virtual Input 56
94D8 ...Repeated for Automation Virtual Input 57
94E1 ...Repeated for Automation Virtual Input 58
94EA ...Repeated for Automation Virtual Input 59
94F3 ...Repeated for Automation Virtual Input 60
94FC ...Repeated for Automation Virtual Input 61
9505 ...Repeated for Automation Virtual Input 62
950E ...Repeated for Automation Virtual Input 63
9517 ...Repeated for Automation Virtual Input 64
9520 ...Repeated for Automation Virtual Input 65
9529 ...Repeated for Automation Virtual Input 66
9532 ...Repeated for Automation Virtual Input 67
953B ...Repeated for Automation Virtual Input 68
9544 ...Repeated for Automation Virtual Input 69
954D ...Repeated for Automation Virtual Input 70

96 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


9556 ...Repeated for Automation Virtual Input 71
955F ...Repeated for Automation Virtual Input 72
9568 ...Repeated for Automation Virtual Input 73
9571 ...Repeated for Automation Virtual Input 74
957A ...Repeated for Automation Virtual Input 75
9583 ...Repeated for Automation Virtual Input 76
958C ...Repeated for Automation Virtual Input 77
9595 ...Repeated for Automation Virtual Input 78
959E ...Repeated for Automation Virtual Input 79
95A7 ...Repeated for Automation Virtual Input 80
95B0 ...Repeated for Automation Virtual Input 81
95B9 ...Repeated for Automation Virtual Input 82
95C2 ...Repeated for Automation Virtual Input 83
95CB ...Repeated for Automation Virtual Input 84
95D4 ...Repeated for Automation Virtual Input 85
95DD ...Repeated for Automation Virtual Input 86
95E6 ...Repeated for Automation Virtual Input 87
95EF ...Repeated for Automation Virtual Input 88
95F8 ...Repeated for Automation Virtual Input 89
9601 ...Repeated for Automation Virtual Input 90
960A ...Repeated for Automation Virtual Input 91
9613 ...Repeated for Automation Virtual Input 92
961C ...Repeated for Automation Virtual Input 93
9625 ...Repeated for Automation Virtual Input 94
962E ...Repeated for Automation Virtual Input 95
9637 ...Repeated for Automation Virtual Input 96
9640 ...Repeated for Automation Virtual Input 97
9649 ...Repeated for Automation Virtual Input 98
9652 ...Repeated for Automation Virtual Input 99
965B ...Repeated for Automation Virtual Input 100
9664 ...Repeated for Automation Virtual Input 101
966D ...Repeated for Automation Virtual Input 102
9676 ...Repeated for Automation Virtual Input 103
967F ...Repeated for Automation Virtual Input 104
9688 ...Repeated for Automation Virtual Input 105
9691 ...Repeated for Automation Virtual Input 106
969A ...Repeated for Automation Virtual Input 107
96A3 ...Repeated for Automation Virtual Input 108
96AC ...Repeated for Automation Virtual Input 109
96B5 ...Repeated for Automation Virtual Input 110
96BE ...Repeated for Automation Virtual Input 111
96C7 ...Repeated for Automation Virtual Input 112
96D0 ...Repeated for Automation Virtual Input 113
96D9 ...Repeated for Automation Virtual Input 114
96E2 ...Repeated for Automation Virtual Input 115
96EB ...Repeated for Automation Virtual Input 116
96F4 ...Repeated for Automation Virtual Input 117

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 97


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


96FD ...Repeated for Automation Virtual Input 118
6706 ...Repeated for Automation Virtual Input 119
970F ...Repeated for Automation Virtual Input 120
9718 ...Repeated for Automation Virtual Input 121
9721 ...Repeated for Automation Virtual Input 122
972A ...Repeated for Automation Virtual Input 123
9733 ...Repeated for Automation Virtual Input 124
973C ...Repeated for Automation Virtual Input 125
9745 ...Repeated for Automation Virtual Input 126
974E ...Repeated for Automation Virtual Input 127
9757 ...Repeated for Automation Virtual Input 128
Automation Virtual Output Settings (Read/Write Setting) (255 Modules)
9760 Automation Virtual Output 1 Name --- --- --- F205 "Aut VO 1 "
9766 Automation Virtual Output 1 Events 0 to 1 --- 1 F102 0 (Disabled)
9767 ...Repeated for Automation Virtual Output 2
976E ...Repeated for Automation Virtual Output 3
9775 ...Repeated for Automation Virtual Output 4
977C ...Repeated for Automation Virtual Output 5
9783 ...Repeated for Automation Virtual Output 6
978A ...Repeated for Automation Virtual Output 7
9791 ...Repeated for Automation Virtual Output 8
9798 ...Repeated for Automation Virtual Output 9
979F ...Repeated for Automation Virtual Output 10
97A6 ...Repeated for Automation Virtual Output 11
97AD ...Repeated for Automation Virtual Output 12
97B4 ...Repeated for Automation Virtual Output 13
97BB ...Repeated for Automation Virtual Output 14
97C2 ...Repeated for Automation Virtual Output 15
97C9 ...Repeated for Automation Virtual Output 16
97D0 ...Repeated for Automation Virtual Output 17
97D7 ...Repeated for Automation Virtual Output 18
97DE ...Repeated for Automation Virtual Output 19
97E5 ...Repeated for Automation Virtual Output 20
97EC ...Repeated for Automation Virtual Output 21
97F3 ...Repeated for Automation Virtual Output 22
97FA ...Repeated for Automation Virtual Output 23
9801 ...Repeated for Automation Virtual Output 24
9808 ...Repeated for Automation Virtual Output 25
980F ...Repeated for Automation Virtual Output 26
9816 ...Repeated for Automation Virtual Output 27
981D ...Repeated for Automation Virtual Output 28
9824 ...Repeated for Automation Virtual Output 29
982B ...Repeated for Automation Virtual Output 30
9832 ...Repeated for Automation Virtual Output 31
9839 ...Repeated for Automation Virtual Output 32
9840 ...Repeated for Automation Virtual Output 33
9847 ...Repeated for Automation Virtual Output 34

98 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


984E ...Repeated for Automation Virtual Output 35
9855 ...Repeated for Automation Virtual Output 36
985C ...Repeated for Automation Virtual Output 37
9863 ...Repeated for Automation Virtual Output 38
986A ...Repeated for Automation Virtual Output 39
9871 ...Repeated for Automation Virtual Output 40
9878 ...Repeated for Automation Virtual Output 41
987F ...Repeated for Automation Virtual Output 42
9886 ...Repeated for Automation Virtual Output 43
988D ...Repeated for Automation Virtual Output 44
9894 ...Repeated for Automation Virtual Output 45
989B ...Repeated for Automation Virtual Output 46
98A2 ...Repeated for Automation Virtual Output 47
98A9 ...Repeated for Automation Virtual Output 48
98B0 ...Repeated for Automation Virtual Output 49
98B7 ...Repeated for Automation Virtual Output 50
98BE ...Repeated for Automation Virtual Output 51
98C5 ...Repeated for Automation Virtual Output 52
98CC ...Repeated for Automation Virtual Output 53
98D3 ...Repeated for Automation Virtual Output 54
98DA ...Repeated for Automation Virtual Output 55
98E1 ...Repeated for Automation Virtual Output 56
98E8 ...Repeated for Automation Virtual Output 57
98EF ...Repeated for Automation Virtual Output 58
98F6 ...Repeated for Automation Virtual Output 59
98FD ...Repeated for Automation Virtual Output 60
9904 ...Repeated for Automation Virtual Output 61
990B ...Repeated for Automation Virtual Output 62
9912 ...Repeated for Automation Virtual Output 63
9919 ...Repeated for Automation Virtual Output 64
9920 ...Repeated for Automation Virtual Output 65
9927 ...Repeated for Automation Virtual Output 66
992E ...Repeated for Automation Virtual Output 67
9935 ...Repeated for Automation Virtual Output 68
993C ...Repeated for Automation Virtual Output 69
9943 ...Repeated for Automation Virtual Output 70
994A ...Repeated for Automation Virtual Output 71
9951 ...Repeated for Automation Virtual Output 72
9958 ...Repeated for Automation Virtual Output 73
995F ...Repeated for Automation Virtual Output 74
9966 ...Repeated for Automation Virtual Output 75
996D ...Repeated for Automation Virtual Output 76
9974 ...Repeated for Automation Virtual Output 77
997B ...Repeated for Automation Virtual Output 78
9982 ...Repeated for Automation Virtual Output 79
9989 ...Repeated for Automation Virtual Output 80
9990 ...Repeated for Automation Virtual Output 81

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 99


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


9997 ...Repeated for Automation Virtual Output 82
999E ...Repeated for Automation Virtual Output 83
99A5 ...Repeated for Automation Virtual Output 84
99AC ...Repeated for Automation Virtual Output 85
99B3 ...Repeated for Automation Virtual Output 86
99BA ...Repeated for Automation Virtual Output 87
99C1 ...Repeated for Automation Virtual Output 88
99C8 ...Repeated for Automation Virtual Output 89
99CF ...Repeated for Automation Virtual Output 90
99D6 ...Repeated for Automation Virtual Output 91
99DD ...Repeated for Automation Virtual Output 92
99E4 ...Repeated for Automation Virtual Output 93
99EB ...Repeated for Automation Virtual Output 94
99F2 ...Repeated for Automation Virtual Output 95
99F9 ...Repeated for Automation Virtual Output 96
9A00 ...Repeated for Automation Virtual Output 97
9A07 ...Repeated for Automation Virtual Output 98
9A0E ...Repeated for Automation Virtual Output 99
9A15 ...Repeated for Automation Virtual Output 100
9A1C ...Repeated for Automation Virtual Output 101
9A23 ...Repeated for Automation Virtual Output 102
9A2A ...Repeated for Automation Virtual Output 103
9A31 ...Repeated for Automation Virtual Output 104
9A38 ...Repeated for Automation Virtual Output 105
9A3F ...Repeated for Automation Virtual Output 106
9A46 ...Repeated for Automation Virtual Output 107
9A4D ...Repeated for Automation Virtual Output 108
9A54 ...Repeated for Automation Virtual Output 109
9A5B ...Repeated for Automation Virtual Output 110
9A62 ...Repeated for Automation Virtual Output 111
9A69 ...Repeated for Automation Virtual Output 112
9A70 ...Repeated for Automation Virtual Output 113
9A77 ...Repeated for Automation Virtual Output 114
9A7E ...Repeated for Automation Virtual Output 115
9A85 ...Repeated for Automation Virtual Output 116
9A8C ...Repeated for Automation Virtual Output 117
9A93 ...Repeated for Automation Virtual Output 118
9A9A ...Repeated for Automation Virtual Output 119
9AA1 ...Repeated for Automation Virtual Output 120
9AA8 ...Repeated for Automation Virtual Output 121
9AAF ...Repeated for Automation Virtual Output 122
9AB6 ...Repeated for Automation Virtual Output 123
9ABD ...Repeated for Automation Virtual Output 124
9AC4 ...Repeated for Automation Virtual Output 125
9ACB ...Repeated for Automation Virtual Output 126
9AD2 ...Repeated for Automation Virtual Output 127
9AD9 ...Repeated for Automation Virtual Output 128

100 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


9AE0 ...Repeated for Automation Virtual Output 129
9AE7 ...Repeated for Automation Virtual Output 130
9AEE ...Repeated for Automation Virtual Output 131
9AF5 ...Repeated for Automation Virtual Output 132
9AFC ...Repeated for Automation Virtual Output 133
9B03 ...Repeated for Automation Virtual Output 134
9B0A ...Repeated for Automation Virtual Output 135
9B11 ...Repeated for Automation Virtual Output 136
9B18 ...Repeated for Automation Virtual Output 137
9B1F ...Repeated for Automation Virtual Output 138
9B26 ...Repeated for Automation Virtual Output 139
9B2D ...Repeated for Automation Virtual Output 140
9B34 ...Repeated for Automation Virtual Output 141
9B3B ...Repeated for Automation Virtual Output 142
9B42 ...Repeated for Automation Virtual Output 143
9B49 ...Repeated for Automation Virtual Output 144
9B50 ...Repeated for Automation Virtual Output 145
9B57 ...Repeated for Automation Virtual Output 146
9B5E ...Repeated for Automation Virtual Output 147
9B65 ...Repeated for Automation Virtual Output 148
9B6C ...Repeated for Automation Virtual Output 149
9B73 ...Repeated for Automation Virtual Output 150
9B7A ...Repeated for Automation Virtual Output 151
9B81 ...Repeated for Automation Virtual Output 152
9B88 ...Repeated for Automation Virtual Output 153
9B8F ...Repeated for Automation Virtual Output 154
9B96 ...Repeated for Automation Virtual Output 155
9B9D ...Repeated for Automation Virtual Output 156
9BA4 ...Repeated for Automation Virtual Output 157
9BAB ...Repeated for Automation Virtual Output 158
9BB2 ...Repeated for Automation Virtual Output 159
9BB9 ...Repeated for Automation Virtual Output 160
9BC0 ...Repeated for Automation Virtual Output 161
9BC7 ...Repeated for Automation Virtual Output 162
9BCE ...Repeated for Automation Virtual Output 163
9BD5 ...Repeated for Automation Virtual Output 164
9BDC ...Repeated for Automation Virtual Output 165
9BE3 ...Repeated for Automation Virtual Output 166
9BEA ...Repeated for Automation Virtual Output 167
9BF1 ...Repeated for Automation Virtual Output 168
9BF8 ...Repeated for Automation Virtual Output 169
9BFF ...Repeated for Automation Virtual Output 170
9C06 ...Repeated for Automation Virtual Output 171
9C0D ...Repeated for Automation Virtual Output 172
9C14 ...Repeated for Automation Virtual Output 173
9C1B ...Repeated for Automation Virtual Output 174
9C22 ...Repeated for Automation Virtual Output 175

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 101


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


9C29 ...Repeated for Automation Virtual Output 176
9C30 ...Repeated for Automation Virtual Output 177
9C37 ...Repeated for Automation Virtual Output 178
9C3E ...Repeated for Automation Virtual Output 179
9C45 ...Repeated for Automation Virtual Output 180
9C4C ...Repeated for Automation Virtual Output 181
9C53 ...Repeated for Automation Virtual Output 182
9C5A ...Repeated for Automation Virtual Output 183
9C61 ...Repeated for Automation Virtual Output 184
9C68 ...Repeated for Automation Virtual Output 185
9C6F ...Repeated for Automation Virtual Output 186
9C76 ...Repeated for Automation Virtual Output 187
9C7D ...Repeated for Automation Virtual Output 188
9C84 ...Repeated for Automation Virtual Output 189
9C8B ...Repeated for Automation Virtual Output 190
9C92 ...Repeated for Automation Virtual Output 191
9C99 ...Repeated for Automation Virtual Output 192
9CA0 ...Repeated for Automation Virtual Output 193
9CA7 ...Repeated for Automation Virtual Output 194
9CAE ...Repeated for Automation Virtual Output 195
9CB5 ...Repeated for Automation Virtual Output 196
9CBC ...Repeated for Automation Virtual Output 197
9CC3 ...Repeated for Automation Virtual Output 198
9CCA ...Repeated for Automation Virtual Output 199
9CD1 ...Repeated for Automation Virtual Output 200
9CD8 ...Repeated for Automation Virtual Output 201
9CDF ...Repeated for Automation Virtual Output 202
9CE6 ...Repeated for Automation Virtual Output 203
9CED ...Repeated for Automation Virtual Output 204
9CF4 ...Repeated for Automation Virtual Output 205
9CFB ...Repeated for Automation Virtual Output 206
9D02 ...Repeated for Automation Virtual Output 207
9D09 ...Repeated for Automation Virtual Output 208
9D10 ...Repeated for Automation Virtual Output 209
9D17 ...Repeated for Automation Virtual Output 210
9D1E ...Repeated for Automation Virtual Output 211
9D25 ...Repeated for Automation Virtual Output 212
9D2C ...Repeated for Automation Virtual Output 213
9D33 ...Repeated for Automation Virtual Output 214
9D3A ...Repeated for Automation Virtual Output 215
9D41 ...Repeated for Automation Virtual Output 216
9D48 ...Repeated for Automation Virtual Output 217
9D4F ...Repeated for Automation Virtual Output 218
9D56 ...Repeated for Automation Virtual Output 219
9D5D ...Repeated for Automation Virtual Output 220
9D64 ...Repeated for Automation Virtual Output 221
9D6B ...Repeated for Automation Virtual Output 222

102 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


9D72 ...Repeated for Automation Virtual Output 223
9D79 ...Repeated for Automation Virtual Output 224
9D80 ...Repeated for Automation Virtual Output 225
9D87 ...Repeated for Automation Virtual Output 226
9D8E ...Repeated for Automation Virtual Output 227
9D95 ...Repeated for Automation Virtual Output 228
9D9C ...Repeated for Automation Virtual Output 229
9DA3 ...Repeated for Automation Virtual Output 230
9DAA ...Repeated for Automation Virtual Output 231
9DB1 ...Repeated for Automation Virtual Output 232
9DB8 ...Repeated for Automation Virtual Output 233
9DBF ...Repeated for Automation Virtual Output 234
9DC6 ...Repeated for Automation Virtual Output 235
9DCD ...Repeated for Automation Virtual Output 236
9DD4 ...Repeated for Automation Virtual Output 237
9DDB ...Repeated for Automation Virtual Output 238
9DE2 ...Repeated for Automation Virtual Output 239
9DE9 ...Repeated for Automation Virtual Output 240
9DF0 ...Repeated for Automation Virtual Output 241
9DF7 ...Repeated for Automation Virtual Output 242
9DFE ...Repeated for Automation Virtual Output 243
9E05 ...Repeated for Automation Virtual Output 244
9E0C ...Repeated for Automation Virtual Output 245
9E13 ...Repeated for Automation Virtual Output 246
9E1A ...Repeated for Automation Virtual Output 247
9E21 ...Repeated for Automation Virtual Output 248
9E28 ...Repeated for Automation Virtual Output 249
9E2F ...Repeated for Automation Virtual Output 250
9E36 ...Repeated for Automation Virtual Output 251
9E3D ...Repeated for Automation Virtual Output 252
9E44 ...Repeated for Automation Virtual Output 253
9E4B ...Repeated for Automation Virtual Output 254
9E52 ...Repeated for Automation Virtual Output 255
FlexState Settings (Read/Write Setting)
9E70 FlexState Parameters (256 items) --- --- --- F300 0
FlexElement (Read/Write Setting) (8 Modules)
A0B0 FlexElement 1 Function 0 to 1 --- 1 F102 0 (Disabled)
A0B1 FlexElement 1 Name --- --- --- F206 “FxE 1”
A0B4 FlexElement 1 InputP 0 to 4294967295 --- 1 F600 0
A0B6 FlexElement 1 InputM 0 to 4294967295 --- 1 F600 0
A0B8 FlexElement 1 Compare 0 to 1 --- 1 F516 0 (LEVEL)
A0B9 FlexElement 1 Input 0 to 1 --- 1 F515 0 (SIGNED)
A0BA FlexElement 1 Direction 0 to 1 --- 1 F517 0 (OVER)
A0BB FlexElement 1 Hysteresis 0.1 to 50 % 0.1 F001 30
A0BC FlexElement 1 Pickup -90 to 90 pu 0.001 F004 1000
A0BE FlexElement 1 DeltaT Units 0 to 2 --- 1 F518 0
(Milliseconds)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 103


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


A0BF FlexElement 1 DeltaT 20 to 86400 --- 1 F003 20
A0C1 FlexElement 1 Pickup Delay 0 to 65.535 s 0.001 F001 0
A0C2 FlexElement 1 Reset Delay 0 to 65.535 s 0.001 F001 0
A0C3 FlexElement 1 Block 0 to 65535 --- 1 F300 0
A0C4 FlexElement 1 Events 0 to 1 --- 1 F102 0 (Disabled)
A0C5 ...Repeated for FlexElement 2
A0DA ...Repeated for FlexElement 3
A0EF ...Repeated for FlexElement 4
A104 ...Repeated for FlexElement 5
A119 ...Repeated for FlexElement 6
A12E ...Repeated for FlexElement 7
A143 ...Repeated for FlexElement 8
FlexElement Actual Values (Read Only) (8 Modules)
A2D0 FlexElement 1 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2D2 FlexElement 2 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2D4 FlexElement 3 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2D6 FlexElement 4 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2D8 FlexElement 5 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2DA FlexElement 6 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2DC FlexElement 7 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
A2DE FlexElement 8 Actual -2147483.647 to --- 0.001 F004 0
2147483.647
Fault Report Settings (Read/Write Setting) (5 Modules)
A350 Fault Report 1 Source 0 to 5 --- 1 F167 0 (SRC 1)
A351 Fault Report 1 Trigger 0 to 65535 --- 1 F300 0
A352 Fault Report 1 Z1 Magnitude 0.01 to 250 ohms 0.01 F001 300
A353 Fault Report 1 Z1 Angle 25 to 90 degrees 1 F001 75
A354 Fault Report 1 Z0 Magnitude 0.01 to 650 ohms 0.01 F001 900
A355 Fault Report 1 Z0 Angle 25 to 90 degrees 1 F001 75
A356 Fault Report 1 Line Length Units 0 to 1 --- 1 F147 0 (km)
A357 Fault Report 1 Line Length 0 to 2000 0.1 F001 1000
A358 Fault Report 1 VT Substitution 0 to 2 --- 1 F270 0 (None)
A359 Fault Report 1 System Z0 Magnitude 0.01 to 650.00 ohms 0.01 F001 200
A35A Fault Report 1 System Z0 Angle 25 to 90 degrees 1 F001 75
A35B ...Repeated for Fault Report 2
A366 ...Repeated for Fault Report 3
A371 ...Repeated for Fault Report 4
A37C ...Repeated for Fault Report 5
VT Fuse Failure Settings (Read/Write Setting) (6 Modules)
A3F0 VT Fuse Failure 1 Function 0 to 1 --- 1 F102 0 (Disabled)
A3F1 ...Repeated for VT Fuse Failure 2
A3F2 ...Repeated for VT Fuse Failure 3

104 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


A3F3 ...Repeated for VT Fuse Failure 4
A3F4 ...Repeated for VT Fuse Failure 5
A3F5 ...Repeated for VT Fuse Failure 6
Selector Switch Actual Values (Read Only) (10 Modules)
A400 Selector 1 Position 1 to 7 --- 1 F001 0
A401 Selector 2 Position 1 to 7 --- 1 F001 0
A402 Selector 3 Position 1 to 7 --- 1 F001 0
A403 Selector 4 Position 1 to 7 --- 1 F001 0
A404 Selector 5 Position 1 to 7 --- 1 F001 0
A405 Selector 6 Position 1 to 7 --- 1 F001 0
A406 Selector 7 Position 1 to 7 --- 1 F001 0
A407 Selector 8 Position 1 to 7 --- 1 F001 0
A408 Selector 9 Position 1 to 7 --- 1 F001 0
A409 Selector 10 Position 1 to 7 --- 1 F001 0
Selector Switch Settings (Read/Write Setting) (10 Modules)
A410 Selector 1 Function 0 to 1 --- 1 F102 0 (Disabled)
A411 Selector 1 Range 1 to 7 --- 1 F001 7
A412 Selector 1 Timeout 3 to 60 s 0.1 F001 50
A413 Selector 1 Step Up 0 to 65535 --- 1 F300 0
A414 Selector 1 Step Mode 0 to 1 --- 1 F083 0 (Time-out)
A415 Selector 1 Acknowledge 0 to 65535 --- 1 F300 0
A416 Selector 1 Bit0 0 to 65535 --- 1 F300 0
A417 Selector 1 Bit1 0 to 65535 --- 1 F300 0
A418 Selector 1 Bit2 0 to 65535 --- 1 F300 0
A419 Selector 1 Bit Mode 0 to 1 --- 1 F083 0 (Time-out)
A41A Selector 1 Bit Acknowledge 0 to 65535 --- 1 F300 0
A41B Selector 1 Power Up Mode 0 to 2 --- 1 F084 0 (Restore)
A41D Selector 1 Events 0 to 1 --- 1 F102 0 (Disabled)
A41E Selector 1 Reserved (10 items) --- --- 1 F001 0
A428 ...Repeated for Selector 2
A440 ...Repeated for Selector 3
A458 ...Repeated for Selector 4
A470 ...Repeated for Selector 5
A488 ...Repeated for Selector 6
A4A0 ...Repeated for Selector 7
A4B8 ...Repeated for Selector 8
A4D0 ...Repeated for Selector 9
A4E8 ...Repeated for Selector 10
DNP/IEC Points (Read/Write Setting)
A500 DNP/IEC 60870-5-104 Binary Input Points (256 items) 0 to 65535 --- 1 F300 0
A600 DNP/IEC 60870-5-104 Analog Input Points (256 items) 0 to 4294967295 --- 1 F600 0
FlexCurve C (Read/Write Setting)
A900 FlexCurve C (120 items) 0 to 65535 ms 1 F011 0
Non Volatile Latches (Read/Write Setting) (16 Modules)
AA00 Non-Volatile Latch 1 Function 0 to 1 --- 1 F102 0 (Disabled)
AA01 Non-Volatile Latch 1 Type 0 to 1 --- 1 F519 0 (Reset
Dominant)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 105


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


AA02 Non-Volatile Latch 1 Set 0 to 65535 --- 1 F300 0
AA03 Non-Volatile Latch 1 Reset 0 to 65535 --- 1 F300 0
AA05 Non-Volatile Latch 1 Events 0 to 1 --- 1 F102 0 (Disabled)
AA06 Non-Volatile Latch 1 Reserved (4 items) --- --- --- F001 0
AA0A ...Repeated for Non-Volatile Latch 2
AA14 ...Repeated for Non-Volatile Latch 3
AA1E ...Repeated for Non-Volatile Latch 4
AA28 ...Repeated for Non-Volatile Latch 5
AA32 ...Repeated for Non-Volatile Latch 6
AA3C ...Repeated for Non-Volatile Latch 7
AA46 ...Repeated for Non-Volatile Latch 8
AA50 ...Repeated for Non-Volatile Latch 9
AA5A ...Repeated for Non-Volatile Latch 10
AA64 ...Repeated for Non-Volatile Latch 11
AA6E ...Repeated for Non-Volatile Latch 12
AA78 ...Repeated for Non-Volatile Latch 13
AA82 ...Repeated for Non-Volatile Latch 14
AA8C ...Repeated for Non-Volatile Latch 15
AA96 ...Repeated for Non-Volatile Latch 16
Digital Counter (Read/Write Setting) (8 Modules)
AB00 Digital Counter 1 Function 0 to 1 --- 1 F102 0 (Disabled)
AB01 Digital Counter 1 Name --- --- --- F205 “Counter 1"
AB07 Digital Counter 1 Units --- --- --- F206 (none)
AB0A Digital Counter 1 Block 0 to 65535 --- 1 F300 0
AB0B Digital Counter 1 Up 0 to 65535 --- 1 F300 0
AB0C Digital Counter 1 Down 0 to 65535 --- 1 F300 0
AB0D Digital Counter 1 Preset –2147483647 to --- 1 F004 0
2147483647
AB0F Digital Counter 1 Compare –2147483647 to --- 1 F004 0
2147483647
AB11 Digital Counter 1 Reset 0 to 65535 --- 1 F300 0
AB12 Digital Counter 1 Freeze/Reset 0 to 65535 --- 1 F300 0
AB13 Digital Counter 1 Freeze/Count 0 to 65535 --- 1 F300 0
AB14 Digital Counter 1 Set To Preset 0 to 65535 --- 1 F300 0
AB15 Digital Counter 1 Reserved (11 items) --- --- --- F001 0
AB20 ...Repeated for Digital Counter 2
AB40 ...Repeated for Digital Counter 3
AB60 ...Repeated for Digital Counter 4
AB80 ...Repeated for Digital Counter 5
ABA0 ...Repeated for Digital Counter 6
ABC0 ...Repeated for Digital Counter 7
ABE0 ...Repeated for Digital Counter 8
FlexCurve D (Read/Write Setting)
AC78 FlexCurve D (120 items) 0 to 65535 ms 1 F011 0
IEC 61850 Config GOOSE Rx (Read/Write Setting) (8 Modules)
AD25 IEC 61850 Config GOOSE Rx Dataset Item (64 items) 0 to 288 --- 1 F233 0 (None)
AD65 ...Repeated for module number 2

106 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


ADA5 ...Repeated for module number 3
ADE5 ...Repeated for module number 4
AE25 ...Repeated for module number 5
AE65 ...Repeated for module number 6
AEA5 ...Repeated for module number 7
AEE5 ...Repeated for module number 8
IEC 61850 Config GOOSE Tx (GOOSEOut) (Read/Write Setting) (8 Modules)
AF25 IEC 61850 Config GOOSE GoEna Function 0 to 1 --- 1 F102 0 (Disabled)
AF26 IEC 61850 Config GOOSE ID --- --- --- F209 "GOOSEOut_x
_"
AF47 IEC 61850 Config GOOSE Destination MAC --- --- --- F072 0
AF4A IEC 61850 Config GOOSE VLAN priority 0 to 7 --- 1 F001 4
AF4B IEC 61850 Config GOOSE VLAN ID 0 to 4095 --- 1 F001 0
AF4C IEC 61850 Config GOOSE ETYPE APPID 0 to 16383 --- 1 F001 0
AF4D IEC 61850 Config GOOSE ConfRev 1 to 4294967295 --- 1 F003 1
AF4F IEC 61850 Config GOOSE Tx Dataset Item (64 items) 0 to 516 --- 1 F232 0 (NONE)
AF8F ...Repeated for module number 2
AFF9 ...Repeated for module number 3
B063 ...Repeated for module number 4
B0CD ...Repeated for module number 5
B137 ...Repeated for module number 6
B1A1 ...Repeated for module number 7
B20B ...Repeated for module number 8
IEC 61850 GGIO1 Configuration (Read/Write Setting)
B275 IEC 61850 GGIO1 Indications 8 to 128 --- 8 F001 8
B276 IEC 61850 GGIO1 Indication Operands (128 items) 0 to 65535 --- 1 F300 0
IEC 61850 GGIO2 Control Configuration (Read/Write Settings) (64 Modules)
B2F6 IEC 61850 GGIO2 SPCSO 1 ctlModel 0 to 2 --- 1 F001 1
B2F7 ...Repeated for IEC 61850 GGIO2 SPCSO 2
B2F8 ...Repeated for IEC 61850 GGIO2 SPCSO 3
B2F9 ...Repeated for IEC 61850 GGIO2 SPCSO 4
B2FA ...Repeated for IEC 61850 GGIO2 SPCSO 5
B2FB ...Repeated for IEC 61850 GGIO2 SPCSO 6
B2FC ...Repeated for IEC 61850 GGIO2 SPCSO 7
B2FD ...Repeated for IEC 61850 GGIO2 SPCSO 8
B2FE ...Repeated for IEC 61850 GGIO2 SPCSO 9
B2FF ...Repeated for IEC 61850 GGIO2 SPCSO 10
B300 ...Repeated for IEC 61850 GGIO2 SPCSO 11
B301 ...Repeated for IEC 61850 GGIO2 SPCSO 12
B302 ...Repeated for IEC 61850 GGIO2 SPCSO 13
B303 ...Repeated for IEC 61850 GGIO2 SPCSO 14
B304 ...Repeated for IEC 61850 GGIO2 SPCSO 15
B305 ...Repeated for IEC 61850 GGIO2 SPCSO 16
B306 ...Repeated for IEC 61850 GGIO2 SPCSO 17
B307 ...Repeated for IEC 61850 GGIO2 SPCSO 18
B308 ...Repeated for IEC 61850 GGIO2 SPCSO 19
B309 ...Repeated for IEC 61850 GGIO2 SPCSO 20

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 107


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


B30A ...Repeated for IEC 61850 GGIO2 SPCSO 21
B30B ...Repeated for IEC 61850 GGIO2 SPCSO 22
B30C ...Repeated for IEC 61850 GGIO2 SPCSO 23
B30D ...Repeated for IEC 61850 GGIO2 SPCSO 24
B30E ...Repeated for IEC 61850 GGIO2 SPCSO 25
B30F ...Repeated for IEC 61850 GGIO2 SPCSO 26
B310 ...Repeated for IEC 61850 GGIO2 SPCSO 27
B311 ...Repeated for IEC 61850 GGIO2 SPCSO 28
B312 ...Repeated for IEC 61850 GGIO2 SPCSO 29
B313 ...Repeated for IEC 61850 GGIO2 SPCSO 30
B314 ...Repeated for IEC 61850 GGIO2 SPCSO 31
B315 ...Repeated for IEC 61850 GGIO2 SPCSO 32
B316 ...Repeated for IEC 61850 GGIO2 SPCSO 33
B317 ...Repeated for IEC 61850 GGIO2 SPCSO 34
B318 ...Repeated for IEC 61850 GGIO2 SPCSO 35
B319 ...Repeated for IEC 61850 GGIO2 SPCSO 36
B31A ...Repeated for IEC 61850 GGIO2 SPCSO 37
B31B ...Repeated for IEC 61850 GGIO2 SPCSO 38
B31C ...Repeated for IEC 61850 GGIO2 SPCSO 39
B31D ...Repeated for IEC 61850 GGIO2 SPCSO 40
B31E ...Repeated for IEC 61850 GGIO2 SPCSO 41
B31F ...Repeated for IEC 61850 GGIO2 SPCSO 42
B320 ...Repeated for IEC 61850 GGIO2 SPCSO 43
B321 ...Repeated for IEC 61850 GGIO2 SPCSO 44
B322 ...Repeated for IEC 61850 GGIO2 SPCSO 45
B323 ...Repeated for IEC 61850 GGIO2 SPCSO 46
B324 ...Repeated for IEC 61850 GGIO2 SPCSO 47
B325 ...Repeated for IEC 61850 GGIO2 SPCSO 48
B326 ...Repeated for IEC 61850 GGIO2 SPCSO 49
B327 ...Repeated for IEC 61850 GGIO2 SPCSO 50
B328 ...Repeated for IEC 61850 GGIO2 SPCSO 51
B329 ...Repeated for IEC 61850 GGIO2 SPCSO 52
B32A ...Repeated for IEC 61850 GGIO2 SPCSO 53
B32B ...Repeated for IEC 61850 GGIO2 SPCSO 54
B32C ...Repeated for IEC 61850 GGIO2 SPCSO 55
B32D ...Repeated for IEC 61850 GGIO2 SPCSO 56
B32E ...Repeated for IEC 61850 GGIO2 SPCSO 57
B32F ...Repeated for IEC 61850 GGIO2 SPCSO 58
B330 ...Repeated for IEC 61850 GGIO2 SPCSO 59
B331 ...Repeated for IEC 61850 GGIO2 SPCSO 60
B332 ...Repeated for IEC 61850 GGIO2 SPCSO 61
B333 ...Repeated for IEC 61850 GGIO2 SPCSO 62
B334 ...Repeated for IEC 61850 GGIO2 SPCSO 63
B335 ...Repeated for IEC 61850 GGIO2 SPCSO 64
IEC61850 GGIO4 Analog General Configuration (Read/Write Setting)
B336 IEC 61850 GGIO4 Analogs 4 to 32 --- 4 F001 4

108 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


IEC61850 GGIO4 Analog Points Configuration (Read/Write Settings) (32 Modules)
B337 IEC 61850 GGIO4 Analog 1 Value 0 to 4294967295 --- 1 F600 0
B339 IEC 61850 GGIO4 Analog 1 db 0.001 to 100 % 0.001 F003 100000
B33B IEC 61850 GGIO4 Analog 1 Min -1000000000000 to --- 0.001 F060 0
1000000000000
B33D IEC 61850 GGIO4 Analog 1 Max -1000000000000 to --- 0.001 F060 100000
1000000000000
B33F ...Repeated for IEC 61850 GGIO4 Analog 2
B347 ...Repeated for IEC 61850 GGIO4 Analog 3
B34F ...Repeated for IEC 61850 GGIO4 Analog 4
B357 ...Repeated for IEC 61850 GGIO4 Analog 5
B35F ...Repeated for IEC 61850 GGIO4 Analog 6
B367 ...Repeated for IEC 61850 GGIO4 Analog 7
B36F ...Repeated for IEC 61850 GGIO4 Analog 8
B377 ...Repeated for IEC 61850 GGIO4 Analog 9
B37F ...Repeated for IEC 61850 GGIO4 Analog 10
F387 ...Repeated for IEC 61850 GGIO4 Analog 11
B38F ...Repeated for IEC 61850 GGIO4 Analog 12
B397 ...Repeated for IEC 61850 GGIO4 Analog 13
B39F ...Repeated for IEC 61850 GGIO4 Analog 14
B3A7 ...Repeated for IEC 61850 GGIO4 Analog 15
B3AF ...Repeated for IEC 61850 GGIO4 Analog 16
B3B7 ...Repeated for IEC 61850 GGIO4 Analog 17
B3B7 ...Repeated for IEC 61850 GGIO4 Analog 18
B3C7 ...Repeated for IEC 61850 GGIO4 Analog 19
B3CF ...Repeated for IEC 61850 GGIO4 Analog 20
B3D7 ...Repeated for IEC 61850 GGIO4 Analog 21
B3DF ...Repeated for IEC 61850 GGIO4 Analog 22
B3E7 ...Repeated for IEC 61850 GGIO4 Analog 23
B3EF ...Repeated for IEC 61850 GGIO4 Analog 24
B3F7 ...Repeated for IEC 61850 GGIO4 Analog 25
B4FF ...Repeated for IEC 61850 GGIO4 Analog 26
B407 ...Repeated for IEC 61850 GGIO4 Analog 27
B40F ...Repeated for IEC 61850 GGIO4 Analog 28
B417 ...Repeated for IEC 61850 GGIO4 Analog 29
B41F ...Repeated for IEC 61850 GGIO4 Analog 30
B427 ...Repeated for IEC 61850 GGIO4 Analog 31
B42F ...Repeated for IEC 61850 GGIO4 Analog 32
IEC 61850 GSE Configuration (Read/Write Settings)
B437 Default GOOSE Update Time 1 to 60 s 1 F001 60
B438 IEC 61850 GSSE GsEna Function 0 to 1 --- 1 F102 0 (Disabled)
B439 IEC 61850 GSSE ID --- --- --- F209 "GSSEOut"
B45A IEC 6158 GOOSE GoEna (transmission) Function 0 to 1 --- 1 F102 0 (Disabled)
B45B IEC 61850 GSSE Destination MAC --- --- --- F072 0
B45E IEC 61850 GOOSE ID --- --- --- F209 "GOOSEOut"
B47F IEC 61850 GOSSE Destination MAC --- --- --- F072 0
B482 IEC 61850 GOOSE VLAN Priority 0 to 7 --- 1 F001 4

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 109


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


B483 IEC 61850 GOOSE VLAN ID 0 to 4095 --- 1 F001 0
B484 IEC 61850 GOOSE ETYPE APPID 0 to 16383 --- 1 F001 0
IEC 61850 Logical Node Name Prefixes (Read/Write Settings)
B485 IEC 61850 LPHD1 LN Prefix 0 to 65534 --- 1 F206 (none)
B488 IEC 61850 PIOC LN Prefix (14 items) 0 to 65534 --- 1 F206 (none)
B4B2 IEC 61850 PTOC LN Prefix (18 items) 0 to 65534 --- 1 F206 (none)
B4E8 IEC 61850 PTUV LN Prefix (10 items) 0 to 65534 --- 1 F206 (none)
B506 IEC 61850 PTOV LN Prefix (8 items) 0 to 65534 --- 1 F206 (none)
B51E IEC 61850 PDIS LN Prefix (10 items) 0 to 65534 --- 1 F206 (none)
B35C IEC 61850 RBRF LN Prefix (2 items) 0 to 65534 --- 1 F206 (none)
B542 IEC 61850 RPSB LN Prefix 0 to 65534 --- 1 F206 (none)
B545 IEC 61850 RREC LN Prefix 0 to 65534 --- 1 F206 (none)
B548 IEC 61850 MMXU LN Prefix (6 items) 0 to 65534 --- 1 F206 (none)
B686 IEC 61850 RFLO LN Prefix 0 to 65534 --- 1 F206 (none)
B695 IEC 61850 XCBR LN Prefix (6 items) 0 to 65534 --- 1 F206 (none)
B6A7 IEC 61850 PTRC LN Prefix (6 items) 0 to 65534 --- 1 F206 (none)
B6B9 IEC 61850 PDIF LN Prefix 0 to 65534 --- 1 F206 (none)
B6C5 IEC 61850 MMXN Ln Prefix 0 to 65534 --- 1 F206 (none)
B734 IEC 61850 RSYN LN Prefix (2 items) 0 to 65534 --- 1 F206 (none)
B73A IEC 61850 ZLIN LN Prefix (4 items) 0 to 65534 --- 1 F206 (none)
B746 IEC 61850 XSWI LN Prefix (30 items) 0 to 65534 --- 1 F206 (none)
B7A0 IEC 61850 CILO LN Prefix (36 items) 0 to 65534 --- 1 F206 (none)
B80C IEC 61850 CSWI LN Prefix (36 items) 0 to 65534 --- 1 F206 (none)
B878 IEC 61850 PSDE LN Prefix (2 items) 0 to 65534 --- 1 F206 (none)
B87E IEC 61850 RDIR LN Prefix (2 items) 0 to 65534 --- 1 F206 (none)
B884 IEC 61850 PTUF LN Prefix (10 items) 0 to 65534 --- 1 F206 (none)
B8A2 IEC 61850 PTOF LN Prefix (2 items) 0 to 65534 --- 1 F206 (none)
B8AE IEC 61850 PFRC LN Prefix (4 items) 0 to 65534 --- 1 F206 (none)
IEC 61850 MMXU Deadbands (Read/Write Settings) (6 Modules)
B8BA IEC 61850 MMXU TotW Deadband 1 0.001 to 100 % 0.001 F003 10000
B8BC IEC 61850 MMXU TotVAr Deadband 1 0.001 to 100 % 0.001 F003 10000
B8BE IEC 61850 MMXU TotVA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8C0 IEC 61850 MMXU TotPF Deadband 1 0.001 to 100 % 0.001 F003 10000
B8C2 IEC 61850 MMXU Hz Deadband 1 0.001 to 100 % 0.001 F003 10000
B8C4 IEC 61850 MMXU PPV.phsAB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8C6 IEC 61850 MMXU PPV.phsBC Deadband 1 0.001 to 100 % 0.001 F003 10000
B8C8 IEC 61850 MMXU PPV.phsCA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8CA IEC 61850 MMXU PhV.phsADeadband 1 0.001 to 100 % 0.001 F003 10000
B8CC IEC 61850 MMXU PhV.phsB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8CE IEC 61850 MMXU PhV.phsC Deadband 1 0.001 to 100 % 0.001 F003 10000
B8D0 IEC 61850 MMXU A.phsA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8D2 IEC 61850 MMXU A.phsB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8D4 IEC 61850 MMXU A.phsC Deadband 1 0.001 to 100 % 0.001 F003 10000
B8D6 IEC 61850 MMXU A.neut Deadband 1 0.001 to 100 % 0.001 F003 10000
B8D8 IEC 61850 MMXU W.phsA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8DA IEC 61850 MMXU W.phsB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8DC IEC 61850 MMXU W.phsC Deadband 1 0.001 to 100 % 0.001 F003 10000

110 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


B8DE IEC 61850 MMXU VAr.phsA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8E0 IEC 61850 MMXU VAr.phsB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8E2 IEC 61850 MMXU VAr.phsC Deadband 1 0.001 to 100 % 0.001 F003 10000
B8E4 IEC 61850 MMXU VA.phsA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8E6 IEC 61850 MMXU VA.phsB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8E8 IEC 61850 MMXU VA.phsC Deadband 1 0.001 to 100 % 0.001 F003 10000
B8EA IEC 61850 MMXU PF.phsA Deadband 1 0.001 to 100 % 0.001 F003 10000
B8EC IEC 61850 MMXU PF.phsB Deadband 1 0.001 to 100 % 0.001 F003 10000
B8EE IEC 61850 MMXU PF.phsC Deadband 1 0.001 to 100 % 0.001 F003 10000
B8F0 ...Repeated for Deadband 2
B926 ...Repeated for Deadband 3
B95C ...Repeated for Deadband 4
B992 ...Repeated for Deadband 5
B9C8 ...Repeated for Deadband 6
IEC 61850 Buffered Report Settings (Read/Write Setting) (8 Modules)
B9FE IEC 61850 Buffered Reports 1 RptID --- --- --- F209 (none)
BA1F IEC 61850 Buffered Reports 1 OptFlds 0 to 65535 --- 1 F001 0
BA20 IEC 61850 Buffered Reports 1 BufTm 0 to 4294967295 --- 1 F003 0
BA22 IEC 61850 Buffered Reports 1 TrgOps 0 to 65535 --- 1 F001 0
BA23 IEC 61850 Buffered Reports 1 IntgPd 0 to 4294967295 --- 1 F003 0
BA25 ...Repeated for Buffered Reports 2
BA4C ...Repeated for Buffered Reports 3
BA73 ...Repeated for Buffered Reports 4
BA9A ...Repeated for Buffered Reports 5
BAC1 ...Repeated for Buffered Reports 6
BAE8 ...Repeated for Buffered Reports 7
BB0F ...Repeated for Buffered Reports 8
IEC 61850 Server Configuration (Read/Write Setting)
BC6E MMS IP Port Number 1 to 65535 --- 1 F001 102
BC6F IEC 61850 Logical Device Name --- --- --- F213 “IEDName”
BC7F IEC 61850 Logical Device Instance --- --- --- F213 “LDInst”
BC8F IEC 61850 LPHD DC PhyNam Location 0 to 65534 --- --- F204 “Location”
BCB7 IEC 61850 Server Scanning Function 0 to 1 --- 1 F102 0 (Disabled)
IEC 61850 GSSE Hold Time (Read/Write Setting)
BCB8 GSSE Minimum Hold Time 50 to 4000 ms 1 F001 400
BCBA GOOSE Minimum Time to Live 50 to 4000 ms 1 F001 400
IEC 61850 GOOSE Retrans Profiles (Read/Write Setting) (8 Modules)
BCBC Config GOOSE 1 Minimum Time to Live 50 to 4000 ms 1 F001 400
BCBD Config GOOSE 1 Retrans Profile 0 to 3 --- 1 F221 2 (STANDARD)
BCBE ...Repeated for Config GOOSE 2
BCC0 ...Repeated for Config GOOSE 3
BCC2 ...Repeated for Config GOOSE 4
BCC4 ...Repeated for Config GOOSE 5
BCC6 ...Repeated for Config GOOSE 6
BCC8 ...Repeated for Config GOOSE 7
BCCA ...Repeated for Config GOOSE 8
IEC 61850 GGIO5 Control Configuration (Read/Write Setting) (128 Modules)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 111


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


BCCC IEC 61850 GGIO5 SPCSO 1 ctlModel 0 to 2 --- 1 F001 1
BCCD ...Repeated for IEC 61850 GGIO5 SPCSO 2 ctlModel
BCCE ...Repeated for IEC 61850 GGIO5 SPCSO 3 ctlModel
BCCF ...Repeated for IEC 61850 GGIO5 SPCSO 4 ctlModel
BCD0 ...Repeated for IEC 61850 GGIO5 SPCSO 5 ctlModel
BCD1 ...Repeated for IEC 61850 GGIO5 SPCSO 6 ctlModel
BCD2 ...Repeated for IEC 61850 GGIO5 SPCSO 7 ctlModel
BCD3 ...Repeated for IEC 61850 GGIO5 SPCSO 8 ctlModel
BCD4 ...Repeated for IEC 61850 GGIO5 SPCSO 9 ctlModel
BCD5 ...Repeated for IEC 61850 GGIO5 SPCSO 10 ctlModel
BCD6 ...Repeated for IEC 61850 GGIO5 SPCSO 11 ctlModel
BCD7 ...Repeated for IEC 61850 GGIO5 SPCSO 12 ctlModel
BCD8 ...Repeated for IEC 61850 GGIO5 SPCSO 13 ctlModel
BCD9 ...Repeated for IEC 61850 GGIO5 SPCSO 14 ctlModel
BCDA ...Repeated for IEC 61850 GGIO5 SPCSO 15 ctlModel
BCDB ...Repeated for IEC 61850 GGIO5 SPCSO 16 ctlModel
BCDC ...Repeated for IEC 61850 GGIO5 SPCSO 17 ctlModel
BCDD ...Repeated for IEC 61850 GGIO5 SPCSO 18 ctlModel
BCDE ...Repeated for IEC 61850 GGIO5 SPCSO 19 ctlModel
BCDF ...Repeated for IEC 61850 GGIO5 SPCSO 20 ctlModel
BCE0 ...Repeated for IEC 61850 GGIO5 SPCSO 21 ctlModel
BCE1 ...Repeated for IEC 61850 GGIO5 SPCSO 22 ctlModel
BCE2 ...Repeated for IEC 61850 GGIO5 SPCSO 23 ctlModel
BCE3 ...Repeated for IEC 61850 GGIO5 SPCSO 24 ctlModel
BCE4 ...Repeated for IEC 61850 GGIO5 SPCSO 25 ctlModel
BCE5 ...Repeated for IEC 61850 GGIO5 SPCSO 26 ctlModel
BCE6 ...Repeated for IEC 61850 GGIO5 SPCSO 27 ctlModel
BCE7 ...Repeated for IEC 61850 GGIO5 SPCSO 28 ctlModel
BCE8 ...Repeated for IEC 61850 GGIO5 SPCSO 29 ctlModel
BCE9 ...Repeated for IEC 61850 GGIO5 SPCSO 30 ctlModel
BCEA ...Repeated for IEC 61850 GGIO5 SPCSO 31 ctlModel
BCEB ...Repeated for IEC 61850 GGIO5 SPCSO 32 ctlModel
BCEC ...Repeated for IEC 61850 GGIO5 SPCSO 33 ctlModel
BCED ...Repeated for IEC 61850 GGIO5 SPCSO 34 ctlModel
BCEE ...Repeated for IEC 61850 GGIO5 SPCSO 35 ctlModel
BCEF ...Repeated for IEC 61850 GGIO5 SPCSO 36 ctlModel
BCF0 ...Repeated for IEC 61850 GGIO5 SPCSO 37 ctlModel
BCF1 ...Repeated for IEC 61850 GGIO5 SPCSO 38 ctlModel
BCF2 ...Repeated for IEC 61850 GGIO5 SPCSO 39 ctlModel
BCF3 ...Repeated for IEC 61850 GGIO5 SPCSO 40 ctlModel
BCF4 ...Repeated for IEC 61850 GGIO5 SPCSO 41 ctlModel
BCF5 ...Repeated for IEC 61850 GGIO5 SPCSO 42 ctlModel
BCF6 ...Repeated for IEC 61850 GGIO5 SPCSO 43 ctlModel
BCF7 ...Repeated for IEC 61850 GGIO5 SPCSO 44 ctlModel
BCF8 ...Repeated for IEC 61850 GGIO5 SPCSO 45 ctlModel
BCF9 ...Repeated for IEC 61850 GGIO5 SPCSO 46 ctlModel
BCFA ...Repeated for IEC 61850 GGIO5 SPCSO 47 ctlModel

112 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


BCFB ...Repeated for IEC 61850 GGIO5 SPCSO 48 ctlModel
BCFC ...Repeated for IEC 61850 GGIO5 SPCSO 49 ctlModel
BCFD ...Repeated for IEC 61850 GGIO5 SPCSO 50 ctlModel
BCFE ...Repeated for IEC 61850 GGIO5 SPCSO 51 ctlModel
BCFF ...Repeated for IEC 61850 GGIO5 SPCSO 52 ctlModel
BC00 ...Repeated for IEC 61850 GGIO5 SPCSO 53 ctlModel
BC01 ...Repeated for IEC 61850 GGIO5 SPCSO 54 ctlModel
BD02 ...Repeated for IEC 61850 GGIO5 SPCSO 55 ctlModel
BD03 ...Repeated for IEC 61850 GGIO5 SPCSO 56 ctlModel
BD04 ...Repeated for IEC 61850 GGIO5 SPCSO 57 ctlModel
BD05 ...Repeated for IEC 61850 GGIO5 SPCSO 58 ctlModel
BD06 ...Repeated for IEC 61850 GGIO5 SPCSO 59 ctlModel
BD07 ...Repeated for IEC 61850 GGIO5 SPCSO 60 ctlModel
BD08 ...Repeated for IEC 61850 GGIO5 SPCSO 61 ctlModel
BD09 ...Repeated for IEC 61850 GGIO5 SPCSO 62 ctlModel
BD0A ...Repeated for IEC 61850 GGIO5 SPCSO 63 ctlModel
BD0B ...Repeated for IEC 61850 GGIO5 SPCSO 64 ctlModel
BD0C ...Repeated for IEC 61850 GGIO5 SPCSO 65 ctlModel
BD0D ...Repeated for IEC 61850 GGIO5 SPCSO 66 ctlModel
BD0E ...Repeated for IEC 61850 GGIO5 SPCSO 67 ctlModel
BD0F ...Repeated for IEC 61850 GGIO5 SPCSO 68 ctlModel
BD10 ...Repeated for IEC 61850 GGIO5 SPCSO 69 ctlModel
BD11 ...Repeated for IEC 61850 GGIO5 SPCSO 70 ctlModel
BD12 ...Repeated for IEC 61850 GGIO5 SPCSO 71 ctlModel
BD13 ...Repeated for IEC 61850 GGIO5 SPCSO 72 ctlModel
BD14 ...Repeated for IEC 61850 GGIO5 SPCSO 73 ctlModel
BD15 ...Repeated for IEC 61850 GGIO5 SPCSO 74 ctlModel
BD16 ...Repeated for IEC 61850 GGIO5 SPCSO 75 ctlModel
BD17 ...Repeated for IEC 61850 GGIO5 SPCSO 76 ctlModel
BD18 ...Repeated for IEC 61850 GGIO5 SPCSO 77 ctlModel
BD19 ...Repeated for IEC 61850 GGIO5 SPCSO 78 ctlModel
BD1A ...Repeated for IEC 61850 GGIO5 SPCSO 79 ctlModel
BD1B ...Repeated for IEC 61850 GGIO5 SPCSO 80 ctlModel
BD1C ...Repeated for IEC 61850 GGIO5 SPCSO 81 ctlModel
BD1D ...Repeated for IEC 61850 GGIO5 SPCSO 82 ctlModel
BD1E ...Repeated for IEC 61850 GGIO5 SPCSO 83 ctlModel
BD1F ...Repeated for IEC 61850 GGIO5 SPCSO 84 ctlModel
BD20 ...Repeated for IEC 61850 GGIO5 SPCSO 85 ctlModel
BD21 ...Repeated for IEC 61850 GGIO5 SPCSO 86 ctlModel
BD22 ...Repeated for IEC 61850 GGIO5 SPCSO 87 ctlModel
BD23 ...Repeated for IEC 61850 GGIO5 SPCSO 88 ctlModel
BD24 ...Repeated for IEC 61850 GGIO5 SPCSO 89 ctlModel
BD25 ...Repeated for IEC 61850 GGIO5 SPCSO 90 ctlModel
BD26 ...Repeated for IEC 61850 GGIO5 SPCSO 91 ctlModel
BD27 ...Repeated for IEC 61850 GGIO5 SPCSO 92 ctlModel
BD28 ...Repeated for IEC 61850 GGIO5 SPCSO 93 ctlModel
BD29 ...Repeated for IEC 61850 GGIO5 SPCSO 94 ctlModel

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 113


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


BD2A ...Repeated for IEC 61850 GGIO5 SPCSO 95 ctlModel
BD2B ...Repeated for IEC 61850 GGIO5 SPCSO 96 ctlModel
BD2C ...Repeated for IEC 61850 GGIO5 SPCSO 97 ctlModel
BD2D ...Repeated for IEC 61850 GGIO5 SPCSO 98 ctlModel
BD2E ...Repeated for IEC 61850 GGIO5 SPCSO 99 ctlModel
BD2F ...Repeated for IEC 61850 GGIO5 SPCSO 100 ctlModel
BD30 ...Repeated for IEC 61850 GGIO5 SPCSO 101 ctlModel
BD31 ...Repeated for IEC 61850 GGIO5 SPCSO 102 ctlModel
BD32 ...Repeated for IEC 61850 GGIO5 SPCSO 103 ctlModel
BD33 ...Repeated for IEC 61850 GGIO5 SPCSO 104 ctlModel
BD34 ...Repeated for IEC 61850 GGIO5 SPCSO 105 ctlModel
BD35 ...Repeated for IEC 61850 GGIO5 SPCSO 106 ctlModel
BD36 ...Repeated for IEC 61850 GGIO5 SPCSO 107 ctlModel
BD37 ...Repeated for IEC 61850 GGIO5 SPCSO 108 ctlModel
BD38 ...Repeated for IEC 61850 GGIO5 SPCSO 109 ctlModel
BD39 ...Repeated for IEC 61850 GGIO5 SPCSO 110 ctlModel
BD3A ...Repeated for IEC 61850 GGIO5 SPCSO 111 ctlModel
BD3B ...Repeated for IEC 61850 GGIO5 SPCSO 112 ctlModel
BD3C ...Repeated for IEC 61850 GGIO5 SPCSO 113 ctlModel
BD3D ...Repeated for IEC 61850 GGIO5 SPCSO 114 ctlModel
BD3E ...Repeated for IEC 61850 GGIO5 SPCSO 115 ctlModel
BD3F ...Repeated for IEC 61850 GGIO5 SPCSO 116 ctlModel
BD40 ...Repeated for IEC 61850 GGIO5 SPCSO 117 ctlModel
BD41 ...Repeated for IEC 61850 GGIO5 SPCSO 118 ctlModel
BD42 ...Repeated for IEC 61850 GGIO5 SPCSO 119 ctlModel
BD43 ...Repeated for IEC 61850 GGIO5 SPCSO 120 ctlModel
BD44 ...Repeated for IEC 61850 GGIO5 SPCSO 121 ctlModel
BD45 ...Repeated for IEC 61850 GGIO5 SPCSO 122 ctlModel
BD46 ...Repeated for IEC 61850 GGIO5 SPCSO 123 ctlModel
BD47 ...Repeated for IEC 61850 GGIO5 SPCSO 124 ctlModel
BD48 ...Repeated for IEC 61850 GGIO5 SPCSO 125 ctlModel
BD49 ...Repeated for IEC 61850 GGIO5 SPCSO 126 ctlModel
BD4A ...Repeated for IEC 61850 GGIO5 SPCSO 127 ctlModel
BD4B ...Repeated for IEC 61850 GGIO5 SPCSO 128 ctlModel
IEC 61850 Received Analogs (Read Only) (128 Modules)
BD28 IEC 61850 GOOSE Analog Input 1 -1000000000000 to --- 0.001 F060 0
1000000000000
BD2A ...Repeated for IEC 61850 GOOSE Analog Input 2
BD2C ...Repeated for IEC 61850 GOOSE Analog Input 3
BD2E ...Repeated for IEC 61850 GOOSE Analog Input 4
BD30 ...Repeated for IEC 61850 GOOSE Analog Input 5
BD32 ...Repeated for IEC 61850 GOOSE Analog Input 6
BD34 ...Repeated for IEC 61850 GOOSE Analog Input 7
BD36 ...Repeated for IEC 61850 GOOSE Analog Input 8
BD38 ...Repeated for IEC 61850 GOOSE Analog Input 9
BD3A ...Repeated for IEC 61850 GOOSE Analog Input 10
BD3C ...Repeated for IEC 61850 GOOSE Analog Input 11

114 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


BD3E ...Repeated for IEC 61850 GOOSE Analog Input 12
BD40 ...Repeated for IEC 61850 GOOSE Analog Input 13
BD42 ...Repeated for IEC 61850 GOOSE Analog Input 14
BD44 ...Repeated for IEC 61850 GOOSE Analog Input 15
BD46 ...Repeated for IEC 61850 GOOSE Analog Input 16
BD48 ...Repeated for IEC 61850 GOOSE Analog Input 17
BD4A ...Repeated for IEC 61850 GOOSE Analog Input 18
BD4C ...Repeated for IEC 61850 GOOSE Analog Input 19
BD4E ...Repeated for IEC 61850 GOOSE Analog Input 20
BD50 ...Repeated for IEC 61850 GOOSE Analog Input 21
BD52 ...Repeated for IEC 61850 GOOSE Analog Input 22
BD54 ...Repeated for IEC 61850 GOOSE Analog Input 23
BD56 ...Repeated for IEC 61850 GOOSE Analog Input 24
BD58 ...Repeated for IEC 61850 GOOSE Analog Input 25
BD5A ...Repeated for IEC 61850 GOOSE Analog Input 26
BD5C ...Repeated for IEC 61850 GOOSE Analog Input 27
BD5E ...Repeated for IEC 61850 GOOSE Analog Input 28
BD60 ...Repeated for IEC 61850 GOOSE Analog Input 29
BD62 ...Repeated for IEC 61850 GOOSE Analog Input 30
BD64 ...Repeated for IEC 61850 GOOSE Analog Input 31
BD66 ...Repeated for IEC 61850 GOOSE Analog Input 32
BD68 ...Repeated for IEC 61850 GOOSE Analog Input 33
BD6A ...Repeated for IEC 61850 GOOSE Analog Input 34
BD6C ...Repeated for IEC 61850 GOOSE Analog Input 35
BD6E ...Repeated for IEC 61850 GOOSE Analog Input 36
BD70 ...Repeated for IEC 61850 GOOSE Analog Input 37
BD72 ...Repeated for IEC 61850 GOOSE Analog Input 38
BD74 ...Repeated for IEC 61850 GOOSE Analog Input 39
BD76 ...Repeated for IEC 61850 GOOSE Analog Input 40
BD78 ...Repeated for IEC 61850 GOOSE Analog Input 41
BD7A ...Repeated for IEC 61850 GOOSE Analog Input 42
BD7C ...Repeated for IEC 61850 GOOSE Analog Input 43
BD7E ...Repeated for IEC 61850 GOOSE Analog Input 44
BD80 ...Repeated for IEC 61850 GOOSE Analog Input 45
BD82 ...Repeated for IEC 61850 GOOSE Analog Input 46
BD84 ...Repeated for IEC 61850 GOOSE Analog Input 47
BD86 ...Repeated for IEC 61850 GOOSE Analog Input 48
BD88 ...Repeated for IEC 61850 GOOSE Analog Input 49
BD8A ...Repeated for IEC 61850 GOOSE Analog Input 50
BD8C ...Repeated for IEC 61850 GOOSE Analog Input 51
BD8E ...Repeated for IEC 61850 GOOSE Analog Input 52
BD90 ...Repeated for IEC 61850 GOOSE Analog Input 53
BD92 ...Repeated for IEC 61850 GOOSE Analog Input 54
BD94 ...Repeated for IEC 61850 GOOSE Analog Input 55
BD96 ...Repeated for IEC 61850 GOOSE Analog Input 56
BD98 ...Repeated for IEC 61850 GOOSE Analog Input 57
BD9A ...Repeated for IEC 61850 GOOSE Analog Input 58

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 115


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


BD9C ...Repeated for IEC 61850 GOOSE Analog Input 59
BD9E ...Repeated for IEC 61850 GOOSE Analog Input 60
BDA0 ...Repeated for IEC 61850 GOOSE Analog Input 61
BDA2 ...Repeated for IEC 61850 GOOSE Analog Input 62
BDA4 ...Repeated for IEC 61850 GOOSE Analog Input 63
BDA6 ...Repeated for IEC 61850 GOOSE Analog Input 64
BDA8 ...Repeated for IEC 61850 GOOSE Analog Input 65
BDAA ...Repeated for IEC 61850 GOOSE Analog Input 66
BDAC ...Repeated for IEC 61850 GOOSE Analog Input 67
BDAE ...Repeated for IEC 61850 GOOSE Analog Input 68
BDB0 ...Repeated for IEC 61850 GOOSE Analog Input 69
BDB2 ...Repeated for IEC 61850 GOOSE Analog Input 70
BDB4 ...Repeated for IEC 61850 GOOSE Analog Input 71
BDB6 ...Repeated for IEC 61850 GOOSE Analog Input 72
BDB8 ...Repeated for IEC 61850 GOOSE Analog Input 73
BDBA ...Repeated for IEC 61850 GOOSE Analog Input 74
BDBC ...Repeated for IEC 61850 GOOSE Analog Input 75
BDBE ...Repeated for IEC 61850 GOOSE Analog Input 76
BDC0 ...Repeated for IEC 61850 GOOSE Analog Input 77
BDC2 ...Repeated for IEC 61850 GOOSE Analog Input 78
BDC4 ...Repeated for IEC 61850 GOOSE Analog Input 79
BDC6 ...Repeated for IEC 61850 GOOSE Analog Input 80
BDC8 ...Repeated for IEC 61850 GOOSE Analog Input 81
BDCA ...Repeated for IEC 61850 GOOSE Analog Input 82
BDCC ...Repeated for IEC 61850 GOOSE Analog Input 83
BDCE ...Repeated for IEC 61850 GOOSE Analog Input 84
BDD0 ...Repeated for IEC 61850 GOOSE Analog Input 85
BDD2 ...Repeated for IEC 61850 GOOSE Analog Input 86
BDD4 ...Repeated for IEC 61850 GOOSE Analog Input 87
BDD6 ...Repeated for IEC 61850 GOOSE Analog Input 88
BDD8 ...Repeated for IEC 61850 GOOSE Analog Input 89
BDDA ...Repeated for IEC 61850 GOOSE Analog Input 90
BDDC ...Repeated for IEC 61850 GOOSE Analog Input 91
BDDE ...Repeated for IEC 61850 GOOSE Analog Input 92
BDE0 ...Repeated for IEC 61850 GOOSE Analog Input 93
BDE2 ...Repeated for IEC 61850 GOOSE Analog Input 94
BDE4 ...Repeated for IEC 61850 GOOSE Analog Input 95
BDE6 ...Repeated for IEC 61850 GOOSE Analog Input 96
BDE8 ...Repeated for IEC 61850 GOOSE Analog Input 97
BDEA ...Repeated for IEC 61850 GOOSE Analog Input 98
BDEC ...Repeated for IEC 61850 GOOSE Analog Input 99
BDEE ...Repeated for IEC 61850 GOOSE Analog Input 100
BDF0 ...Repeated for IEC 61850 GOOSE Analog Input 101
BDF2 ...Repeated for IEC 61850 GOOSE Analog Input 102
BDF4 ...Repeated for IEC 61850 GOOSE Analog Input 103
BDF6 ...Repeated for IEC 61850 GOOSE Analog Input 104
BDF8 ...Repeated for IEC 61850 GOOSE Analog Input 105

116 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


BDFA ...Repeated for IEC 61850 GOOSE Analog Input 106
BDFC ...Repeated for IEC 61850 GOOSE Analog Input 107
BDFE ...Repeated for IEC 61850 GOOSE Analog Input 108
BE00 ...Repeated for IEC 61850 GOOSE Analog Input 109
BE02 ...Repeated for IEC 61850 GOOSE Analog Input 110
BE04 ...Repeated for IEC 61850 GOOSE Analog Input 111
BE06 ...Repeated for IEC 61850 GOOSE Analog Input 112
BE08 ...Repeated for IEC 61850 GOOSE Analog Input 113
BE0A ...Repeated for IEC 61850 GOOSE Analog Input 114
BE0C ...Repeated for IEC 61850 GOOSE Analog Input 115
BE0E ...Repeated for IEC 61850 GOOSE Analog Input 116
BE10 ...Repeated for IEC 61850 GOOSE Analog Input 117
BE12 ...Repeated for IEC 61850 GOOSE Analog Input 118
BE14 ...Repeated for IEC 61850 GOOSE Analog Input 119
BE16 ...Repeated for IEC 61850 GOOSE Analog Input 120
BE18 ...Repeated for IEC 61850 GOOSE Analog Input 121
BE1A ...Repeated for IEC 61850 GOOSE Analog Input 122
BE1C ...Repeated for IEC 61850 GOOSE Analog Input 123
BE1E ...Repeated for IEC 61850 GOOSE Analog Input 124
BE20 ...Repeated for IEC 61850 GOOSE Analog Input 125
BE22 ...Repeated for IEC 61850 GOOSE Analog Input 126
BE24 ...Repeated for IEC 61850 GOOSE Analog Input 127
BE26 ...Repeated for IEC 61850 GOOSE Analog Input 128
Contact Inputs (Read/Write Setting) (255 Modules)
BD50 Contact Input 1 Name --- --- --- F205 "Cont Ip 1"
BD56 Contact Input 1 Events 0 to 1 --- 1 F102 0 (Disabled)
BD57 Contact Input 1 Debounce Time 1.5 to 16 ms 0.25 F001 200
BD58 Contact Input 1 Voltage 24 to 250 V 1 F001 125
BD59 ...Repeated for Contact Input 2
BD62 ...Repeated for Contact Input 3
BD6B ...Repeated for Contact Input 4
BD74 ...Repeated for Contact Input 5
BD7D ...Repeated for Contact Input 6
BD86 ...Repeated for Contact Input 7
BD8F ...Repeated for Contact Input 8
BD98 ...Repeated for Contact Input 9
BDA1 ...Repeated for Contact Input 10
BDAA ...Repeated for Contact Input 11
BDB3 ...Repeated for Contact Input 12
BDBC ...Repeated for Contact Input 13
BDC5 ...Repeated for Contact Input 14
BDCE ...Repeated for Contact Input 15
BDD7 ...Repeated for Contact Input 16
BDE0 ...Repeated for Contact Input 17
BDE9 ...Repeated for Contact Input 18
BDF2 ...Repeated for Contact Input 19
BDFB ...Repeated for Contact Input 20

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 117


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


BE04 ...Repeated for Contact Input 21
BE0D ...Repeated for Contact Input 22
BE16 ...Repeated for Contact Input 23
BE1F ...Repeated for Contact Input 24
BE28 ...Repeated for Contact Input 25
BE31 ...Repeated for Contact Input 26
BE3A ...Repeated for Contact Input 27
BE43 ...Repeated for Contact Input 28
BE4C ...Repeated for Contact Input 29
BE55 ...Repeated for Contact Input 30
BE5E ...Repeated for Contact Input 31
BE67 ...Repeated for Contact Input 32
BE70 ...Repeated for Contact Input 33
BE79 ...Repeated for Contact Input 34
BE82 ...Repeated for Contact Input 35
BE8B ...Repeated for Contact Input 36
BE94 ...Repeated for Contact Input 37
BE9D ...Repeated for Contact Input 38
BEA6 ...Repeated for Contact Input 39
BEAF ...Repeated for Contact Input 40
BEB8 ...Repeated for Contact Input 41
BEC1 ...Repeated for Contact Input 42
BECA ...Repeated for Contact Input 43
BED3 ...Repeated for Contact Input 44
BEDC ...Repeated for Contact Input 45
BEE5 ...Repeated for Contact Input 46
BEEE ...Repeated for Contact Input 47
BEF7 ...Repeated for Contact Input 48
BF00 ...Repeated for Contact Input 49
BF09 ...Repeated for Contact Input 50
BF12 ...Repeated for Contact Input 51
BF1B ...Repeated for Contact Input 52
BF24 ...Repeated for Contact Input 53
BF2D ...Repeated for Contact Input 54
BF36 ...Repeated for Contact Input 55
BF3F ...Repeated for Contact Input 56
BF48 ...Repeated for Contact Input 57
BF51 ...Repeated for Contact Input 58
BF5A ...Repeated for Contact Input 59
BF63 ...Repeated for Contact Input 60
BF6C ...Repeated for Contact Input 61
BF75 ...Repeated for Contact Input 62
BF7E ...Repeated for Contact Input 63
BF87 ...Repeated for Contact Input 64
BF90 ...Repeated for Contact Input 65
BF99 ...Repeated for Contact Input 66
BFA2 ...Repeated for Contact Input 67

118 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


BFAB ...Repeated for Contact Input 68
BFB4 ...Repeated for Contact Input 69
BFBD ...Repeated for Contact Input 70
BFC6 ...Repeated for Contact Input 71
BFCF ...Repeated for Contact Input 72
BFD8 ...Repeated for Contact Input 73
BFE1 ...Repeated for Contact Input 74
BFEA ...Repeated for Contact Input 75
BFF3 ...Repeated for Contact Input 76
BFFC ...Repeated for Contact Input 77
C005 ...Repeated for Contact Input 78
C00E ...Repeated for Contact Input 79
C017 ...Repeated for Contact Input 80
C020 ...Repeated for Contact Input 81
C029 ...Repeated for Contact Input 82
C032 ...Repeated for Contact Input 83
C03B ...Repeated for Contact Input 84
C044 ...Repeated for Contact Input 85
C04D ...Repeated for Contact Input 86
C056 ...Repeated for Contact Input 87
C05F ...Repeated for Contact Input 88
C068 ...Repeated for Contact Input 89
C071 ...Repeated for Contact Input 90
C07A ...Repeated for Contact Input 91
C083 ...Repeated for Contact Input 92
C08C ...Repeated for Contact Input 93
C095 ...Repeated for Contact Input 94
C09E ...Repeated for Contact Input 95
C0A7 ...Repeated for Contact Input 96
C0B0 ...Repeated for Contact Input 97
C0B9 ...Repeated for Contact Input 98
C0C2 ...Repeated for Contact Input 99
C0CB ...Repeated for Contact Input 100
C0D4 ...Repeated for Contact Input 101
C0DD ...Repeated for Contact Input 102
C0E6 ...Repeated for Contact Input 103
C0EF ...Repeated for Contact Input 104
C0F8 ...Repeated for Contact Input 105
C101 ...Repeated for Contact Input 106
C10A ...Repeated for Contact Input 107
C113 ...Repeated for Contact Input 108
C11C ...Repeated for Contact Input 109
C125 ...Repeated for Contact Input 110
C12E ...Repeated for Contact Input 111
C137 ...Repeated for Contact Input 112
C140 ...Repeated for Contact Input 113
C149 ...Repeated for Contact Input 114

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 119


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


C152 ...Repeated for Contact Input 115
C15B ...Repeated for Contact Input 116
C164 ...Repeated for Contact Input 117
C16D ...Repeated for Contact Input 118
C176 ...Repeated for Contact Input 119
C17F ...Repeated for Contact Input 120
C188 ...Repeated for Contact Input 121
C191 ...Repeated for Contact Input 122
C19A ...Repeated for Contact Input 123
C1A3 ...Repeated for Contact Input 124
C1AC ...Repeated for Contact Input 125
C1B5 ...Repeated for Contact Input 126
C1BE ...Repeated for Contact Input 127
C1C7 ...Repeated for Contact Input 128
C1D0 ...Repeated for Contact Input 129
C1D9 ...Repeated for Contact Input 130
C1E2 ...Repeated for Contact Input 131
C1EB ...Repeated for Contact Input 132
C1F4 ...Repeated for Contact Input 133
C1FD ...Repeated for Contact Input 134
C206 ...Repeated for Contact Input 135
C20F ...Repeated for Contact Input 136
C218 ...Repeated for Contact Input 137
C221 ...Repeated for Contact Input 138
C22A ...Repeated for Contact Input 139
C233 ...Repeated for Contact Input 140
C23C ...Repeated for Contact Input 141
C245 ...Repeated for Contact Input 142
C24E ...Repeated for Contact Input 143
C257 ...Repeated for Contact Input 144
C260 ...Repeated for Contact Input 145
C269 ...Repeated for Contact Input 146
C272 ...Repeated for Contact Input 147
C27B ...Repeated for Contact Input 148
C284 ...Repeated for Contact Input 149
C28D ...Repeated for Contact Input 150
C296 ...Repeated for Contact Input 151
C29F ...Repeated for Contact Input 152
C2A8 ...Repeated for Contact Input 153
C2B1 ...Repeated for Contact Input 154
C2BA ...Repeated for Contact Input 155
C2C3 ...Repeated for Contact Input 156
C2CC ...Repeated for Contact Input 157
C2D5 ...Repeated for Contact Input 158
C2DE ...Repeated for Contact Input 159
C2E7 ...Repeated for Contact Input 160
C2F0 ...Repeated for Contact Input 161

120 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


C2F9 ...Repeated for Contact Input 162
C302 ...Repeated for Contact Input 163
C30B ...Repeated for Contact Input 164
C314 ...Repeated for Contact Input 165
C31D ...Repeated for Contact Input 166
C326 ...Repeated for Contact Input 167
C32F ...Repeated for Contact Input 168
C338 ...Repeated for Contact Input 169
C341 ...Repeated for Contact Input 170
C34A ...Repeated for Contact Input 171
C353 ...Repeated for Contact Input 172
C35C ...Repeated for Contact Input 173
C365 ...Repeated for Contact Input 174
C36E ...Repeated for Contact Input 175
C377 ...Repeated for Contact Input 176
C380 ...Repeated for Contact Input 177
C389 ...Repeated for Contact Input 178
C392 ...Repeated for Contact Input 179
C39B ...Repeated for Contact Input 180
C3A4 ...Repeated for Contact Input 181
C3AD ...Repeated for Contact Input 182
C3B6 ...Repeated for Contact Input 183
C3BF ...Repeated for Contact Input 184
C3C8 ...Repeated for Contact Input 185
C3D1 ...Repeated for Contact Input 186
C3DA ...Repeated for Contact Input 187
C3E3 ...Repeated for Contact Input 188
C3EC ...Repeated for Contact Input 189
C3F5 ...Repeated for Contact Input 190
C3FE ...Repeated for Contact Input 191
C407 ...Repeated for Contact Input 192
C410 ...Repeated for Contact Input 193
C419 ...Repeated for Contact Input 194
C422 ...Repeated for Contact Input 195
C42B ...Repeated for Contact Input 196
C434 ...Repeated for Contact Input 197
C43D ...Repeated for Contact Input 198
C446 ...Repeated for Contact Input 199
C44F ...Repeated for Contact Input 200
C458 ...Repeated for Contact Input 201
C461 ...Repeated for Contact Input 202
C46A ...Repeated for Contact Input 203
C473 ...Repeated for Contact Input 204
C47C ...Repeated for Contact Input 205
C485 ...Repeated for Contact Input 206
C48E ...Repeated for Contact Input 207
C497 ...Repeated for Contact Input 208

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 121


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


C4A0 ...Repeated for Contact Input 209
C4A9 ...Repeated for Contact Input 210
C4B2 ...Repeated for Contact Input 211
C4BB ...Repeated for Contact Input 212
C4C4 ...Repeated for Contact Input 213
C4CD ...Repeated for Contact Input 214
C4D6 ...Repeated for Contact Input 215
C4DF ...Repeated for Contact Input 216
C4E8 ...Repeated for Contact Input 217
C4F1 ...Repeated for Contact Input 218
C4FA ...Repeated for Contact Input 219
C503 ...Repeated for Contact Input 220
C50C ...Repeated for Contact Input 221
C515 ...Repeated for Contact Input 222
C51E ...Repeated for Contact Input 223
C527 ...Repeated for Contact Input 224
C530 ...Repeated for Contact Input 225
C539 ...Repeated for Contact Input 226
C542 ...Repeated for Contact Input 227
C54B ...Repeated for Contact Input 228
C554 ...Repeated for Contact Input 229
C55D ...Repeated for Contact Input 230
C566 ...Repeated for Contact Input 231
C56F ...Repeated for Contact Input 232
C578 ...Repeated for Contact Input 233
C581 ...Repeated for Contact Input 234
C58A ...Repeated for Contact Input 235
C593 ...Repeated for Contact Input 236
C59C ...Repeated for Contact Input 237
C5A5 ...Repeated for Contact Input 238
C5AE ...Repeated for Contact Input 239
C5B7 ...Repeated for Contact Input 240
C5C0 ...Repeated for Contact Input 241
C5C9 ...Repeated for Contact Input 242
C5D2 ...Repeated for Contact Input 243
C5DB ...Repeated for Contact Input 244
C5E4 ...Repeated for Contact Input 245
C5ED ...Repeated for Contact Input 246
C5F6 ...Repeated for Contact Input 247
C5FF ...Repeated for Contact Input 248
C608 ...Repeated for Contact Input 249
C611 ...Repeated for Contact Input 250
C61A ...Repeated for Contact Input 251
C623 ...Repeated for Contact Input 252
C62C ...Repeated for Contact Input 253
C635 ...Repeated for Contact Input 254
C63E ...Repeated for Contact Input 255

122 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


Contact Input Chatter Detection (Read/Write Setting)
C6E8 Chatter Detection Function 0 to 1 --- 1 F102 0 (Disabled)
C6E9 Chatter Time 1 to 100 s 1 F001 10
C6EA Chatter State Changes 10 to 100 --- 1 F001 30
Virtual Inputs (Read/Write Setting) (64 Modules)
C6F0 Virtual Input 1 Function 0 to 1 --- 1 F102 0 (Disabled)
C6F1 Virtual Input 1 Name --- --- --- F205 “Virt Ip 1“
C6F7 Virtual Input 1 Programmed Type 0 to 1 --- 1 F127 0 (Latched)
C6F8 Virtual Input 1 Events 0 to 1 --- 1 F102 0 (Disabled)
C6F9 ...Repeated for Virtual Input 2
C702 ...Repeated for Virtual Input 3
C70B ...Repeated for Virtual Input 4
C714 ...Repeated for Virtual Input 5
C71D ...Repeated for Virtual Input 6
C726 ...Repeated for Virtual Input 7
C72F ...Repeated for Virtual Input 8
C738 ...Repeated for Virtual Input 9
C741 ...Repeated for Virtual Input 10
C74A ...Repeated for Virtual Input 11
C753 ...Repeated for Virtual Input 12
C75C ...Repeated for Virtual Input 13
C765 ...Repeated for Virtual Input 14
C76E ...Repeated for Virtual Input 15
C777 ...Repeated for Virtual Input 16
C780 ...Repeated for Virtual Input 17
C789 ...Repeated for Virtual Input 18
C792 ...Repeated for Virtual Input 19
C79B ...Repeated for Virtual Input 20
C7A4 ...Repeated for Virtual Input 21
C7AD ...Repeated for Virtual Input 22
C7B6 ...Repeated for Virtual Input 23
C7BF ...Repeated for Virtual Input 24
C7C8 ...Repeated for Virtual Input 25
C7D1 ...Repeated for Virtual Input 26
C7DA ...Repeated for Virtual Input 27
C7E3 ...Repeated for Virtual Input 28
C7EC ...Repeated for Virtual Input 29
C7F5 ...Repeated for Virtual Input 30
C7FE ...Repeated for Virtual Input 31
C807 ...Repeated for Virtual Input 32
C810 ...Repeated for Virtual Input 33
C819 ...Repeated for Virtual Input 34
C822 ...Repeated for Virtual Input 35
C82B ...Repeated for Virtual Input 36
C834 ...Repeated for Virtual Input 37
C83D ...Repeated for Virtual Input 38
C846 ...Repeated for Virtual Input 39

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 123


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


C84F ...Repeated for Virtual Input 40
C858 ...Repeated for Virtual Input 41
C861 ...Repeated for Virtual Input 42
C86A ...Repeated for Virtual Input 43
C873 ...Repeated for Virtual Input 44
C87C ...Repeated for Virtual Input 45
C885 ...Repeated for Virtual Input 46
C88E ...Repeated for Virtual Input 47
C897 ...Repeated for Virtual Input 48
C8A0 ...Repeated for Virtual Input 49
C8A9 ...Repeated for Virtual Input 50
C8B2 ...Repeated for Virtual Input 51
C8BB ...Repeated for Virtual Input 52
CBC4 ...Repeated for Virtual Input 53
C8CD ...Repeated for Virtual Input 54
C8D6 ...Repeated for Virtual Input 55
C8DF ...Repeated for Virtual Input 56
C8E8 ...Repeated for Virtual Input 57
C8F1 ...Repeated for Virtual Input 58
C8FA ...Repeated for Virtual Input 59
C903 ...Repeated for Virtual Input 60
C90C ...Repeated for Virtual Input 61
C915 ...Repeated for Virtual Input 62
C91E ...Repeated for Virtual Input 63
C927 ...Repeated for Virtual Input 64
Virtual Outputs (Read/Write Setting) (96 Modules)
C930 Virtual Output 1 Name --- --- --- F205 “Virt Op 1 “
C936 Virtual Output 1 Events 0 to 1 --- 1 F102 0 (Disabled)
C937 ...Repeated for Virtual Output 2
C93E ...Repeated for Virtual Output 3
C945 ...Repeated for Virtual Output 4
C94C ...Repeated for Virtual Output 5
C953 ...Repeated for Virtual Output 6
C95A ...Repeated for Virtual Output 7
C961 ...Repeated for Virtual Output 8
C968 ...Repeated for Virtual Output 9
C96F ...Repeated for Virtual Output 10
C976 ...Repeated for Virtual Output 11
C97D ...Repeated for Virtual Output 12
C984 ...Repeated for Virtual Output 13
C98B ...Repeated for Virtual Output 14
C992 ...Repeated for Virtual Output 15
C999 ...Repeated for Virtual Output 16
C9A0 ...Repeated for Virtual Output 17
C9A7 ...Repeated for Virtual Output 18
C9AE ...Repeated for Virtual Output 19
C9B5 ...Repeated for Virtual Output 20

124 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


C9BC ...Repeated for Virtual Output 21
C9C3 ...Repeated for Virtual Output 22
C9CA ...Repeated for Virtual Output 23
C9D1 ...Repeated for Virtual Output 24
C9D8 ...Repeated for Virtual Output 25
C9DF ...Repeated for Virtual Output 26
C9E6 ...Repeated for Virtual Output 27
C9ED ...Repeated for Virtual Output 28
C9F4 ...Repeated for Virtual Output 29
C9FB ...Repeated for Virtual Output 30
CA02 ...Repeated for Virtual Output 31
CA09 ...Repeated for Virtual Output 32
CA10 ...Repeated for Virtual Output 33
CA17 ...Repeated for Virtual Output 34
CA1E ...Repeated for Virtual Output 35
CA25 ...Repeated for Virtual Output 36
CA2C ...Repeated for Virtual Output 37
CA33 ...Repeated for Virtual Output 38
CA3A ...Repeated for Virtual Output 39
CA41 ...Repeated for Virtual Output 40
CA48 ...Repeated for Virtual Output 41
CA4F ...Repeated for Virtual Output 42
CA56 ...Repeated for Virtual Output 43
CA5D ...Repeated for Virtual Output 44
CA64 ...Repeated for Virtual Output 45
CA6B ...Repeated for Virtual Output 46
CA72 ...Repeated for Virtual Output 47
CA79 ...Repeated for Virtual Output 48
CA80 ...Repeated for Virtual Output 49
CA87 ...Repeated for Virtual Output 50
CA8E ...Repeated for Virtual Output 51
CA95 ...Repeated for Virtual Output 52
CA9C ...Repeated for Virtual Output 53
CAA3 ...Repeated for Virtual Output 54
CAAA ...Repeated for Virtual Output 55
CAB1 ...Repeated for Virtual Output 56
CAB8 ...Repeated for Virtual Output 57
CABF ...Repeated for Virtual Output 58
CAC6 ...Repeated for Virtual Output 59
CACD ...Repeated for Virtual Output 60
CAD4 ...Repeated for Virtual Output 61
CADB ...Repeated for Virtual Output 62
CAE2 ...Repeated for Virtual Output 63
CAE9 ...Repeated for Virtual Output 64
CAF0 ...Repeated for Virtual Output 65
CAF7 ...Repeated for Virtual Output 66
CAFE ...Repeated for Virtual Output 67

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 125


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


CB05 ...Repeated for Virtual Output 68
CB0C ...Repeated for Virtual Output 69
CB13 ...Repeated for Virtual Output 70
CB1A ...Repeated for Virtual Output 71
CB21 ...Repeated for Virtual Output 72
CB28 ...Repeated for Virtual Output 73
CB2F ...Repeated for Virtual Output 74
CB36 ...Repeated for Virtual Output 75
CB3D ...Repeated for Virtual Output 76
CB44 ...Repeated for Virtual Output 77
CB4B ...Repeated for Virtual Output 78
CB52 ...Repeated for Virtual Output 79
CB59 ...Repeated for Virtual Output 80
CB60 ...Repeated for Virtual Output 81
CB67 ...Repeated for Virtual Output 82
CB6E ...Repeated for Virtual Output 83
CB75 ...Repeated for Virtual Output 84
CB7C ...Repeated for Virtual Output 85
CB83 ...Repeated for Virtual Output 86
CB8A ...Repeated for Virtual Output 87
CB91 ...Repeated for Virtual Output 88
CB98 ...Repeated for Virtual Output 89
CB9F ...Repeated for Virtual Output 90
CBA6 ...Repeated for Virtual Output 91
CBAD ...Repeated for Virtual Output 92
CBB4 ...Repeated for Virtual Output 93
CBBB ...Repeated for Virtual Output 94
CBC2 ...Repeated for Virtual Output 95
CBC9 ...Repeated for Virtual Output 96
Remote Inputs (Read/Write Setting) (64 Modules)
CD50 Remote Input 1 Device 1 to 32 --- 1 F001 1
CD51 Remote Input 1 Bit Pair 0 to 128 --- 1 F156 0 (None)
CD52 Remote Input 1 Default State 0 to 3 --- 1 F086 0 (Off)
CD53 Remote Input 1 Events 0 to 1 --- 1 F102 0 (Disabled)
CD54 Remote Input 1 Name --- --- --- F205 “Rem I/P 1”
CD5A ...Repeated for Remote Input 2
CD64 ...Repeated for Remote Input 3
CD6E ...Repeated for Remote Input 4
CD78 ...Repeated for Remote Input 5
CD82 ...Repeated for Remote Input 6
CD8C ...Repeated for Remote Input 7
CD96 ...Repeated for Remote Input 8
CDA0 ...Repeated for Remote Input 9
CDAA ...Repeated for Remote Input 10
CDB4 ...Repeated for Remote Input 11
CDBE ...Repeated for Remote Input 12
CDC8 ...Repeated for Remote Input 13

126 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


CDD2 ...Repeated for Remote Input 14
CDDC ...Repeated for Remote Input 15
CDE6 ...Repeated for Remote Input 16
CDF0 ...Repeated for Remote Input 17
CDFA ...Repeated for Remote Input 18
CE0E ...Repeated for Remote Input 19
CE18 ...Repeated for Remote Input 20
CE22 ...Repeated for Remote Input 21
CE2C ...Repeated for Remote Input 22
CE2C ...Repeated for Remote Input 23
CE36 ...Repeated for Remote Input 24
CE40 ...Repeated for Remote Input 25
CE4A ...Repeated for Remote Input 26
CE54 ...Repeated for Remote Input 27
CE5E ...Repeated for Remote Input 28
CE68 ...Repeated for Remote Input 29
CE72 ...Repeated for Remote Input 30
CE7C ...Repeated for Remote Input 31
CE86 ...Repeated for Remote Input 32
CE90 ...Repeated for Remote Input 33
CE9A ...Repeated for Remote Input 34
CEA4 ...Repeated for Remote Input 35
CEAE ...Repeated for Remote Input 36
CEB8 ...Repeated for Remote Input 37
CEC2 ...Repeated for Remote Input 38
CECC ...Repeated for Remote Input 39
CED6 ...Repeated for Remote Input 40
CEE0 ...Repeated for Remote Input 41
CEEA ...Repeated for Remote Input 42
CEF4 ...Repeated for Remote Input 43
CEFE ...Repeated for Remote Input 44
CF08 ...Repeated for Remote Input 45
CF12 ...Repeated for Remote Input 46
CF1C ...Repeated for Remote Input 47
CF26 ...Repeated for Remote Input 48
CF30 ...Repeated for Remote Input 49
CF3A ...Repeated for Remote Input 50
CF44 ...Repeated for Remote Input 51
CF4E ...Repeated for Remote Input 52
CF58 ...Repeated for Remote Input 53
CF62 ...Repeated for Remote Input 54
CF6C ...Repeated for Remote Input 55
CF76 ...Repeated for Remote Input 56
CF80 ...Repeated for Remote Input 57
CF8A ...Repeated for Remote Input 58
CF94 ...Repeated for Remote Input 59
CF9E ...Repeated for Remote Input 60

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 127


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


CFA8 ...Repeated for Remote Input 61
CFB2 ...Repeated for Remote Input 62
CFBC ...Repeated for Remote Input 63
CFC6 ...Repeated for Remote Input 64
Remote Output DNA Pairs (Read/Write Setting) (32 Modules)
CFD0 Remote Output DNA 1 Operand 0 to 65535 --- 1 F300 0
CFD1 Remote Output DNA 1 Events 0 to 1 --- 1 F102 0 (Disabled)
CFD2 Remote Output DNA 1 Reserved (2 items) 0 to 1 --- 1 F001 0
CFD4 ...Repeated for Remote Output 2
CFD8 ...Repeated for Remote Output 3
CFDC ...Repeated for Remote Output 4
CFE0 ...Repeated for Remote Output 5
CFE4 ...Repeated for Remote Output 6
CFE8 ...Repeated for Remote Output 7
CFEC ...Repeated for Remote Output 8
CFF0 ...Repeated for Remote Output 9
CFF4 ...Repeated for Remote Output 10
CFF8 ...Repeated for Remote Output 11
CFFC ...Repeated for Remote Output 12
D000 ...Repeated for Remote Output 13
D004 ...Repeated for Remote Output 14
D008 ...Repeated for Remote Output 15
D00C ...Repeated for Remote Output 16
D010 ...Repeated for Remote Output 17
D014 ...Repeated for Remote Output 18
D018 ...Repeated for Remote Output 19
D01C ...Repeated for Remote Output 20
D020 ...Repeated for Remote Output 21
D024 ...Repeated for Remote Output 22
D028 ...Repeated for Remote Output 23
D02C ...Repeated for Remote Output 24
D030 ...Repeated for Remote Output 25
D034 ...Repeated for Remote Output 26
D038 ...Repeated for Remote Output 27
D03C ...Repeated for Remote Output 28
D040 ...Repeated for Remote Output 29
D044 ...Repeated for Remote Output 30
D048 ...Repeated for Remote Output 31
D04C ...Repeated for Remote Output 32
Remote Output UserSt Pairs (Read/Write Setting) (32 Modules)
D050 Remote Output UserSt 1 Operand 0 to 65535 --- 1 F300 0
D051 Remote Output UserSt 1 Events 0 to 1 --- 1 F102 0 (Disabled)
D052 Remote Output UserSt 1 Reserved (2 items) 0 to 1 --- 1 F001 0
D054 ...Repeated for Remote Output 2
D058 ...Repeated for Remote Output 3
D05C ...Repeated for Remote Output 4
D060 ...Repeated for Remote Output 5

128 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


D064 ...Repeated for Remote Output 6
D068 ...Repeated for Remote Output 7
D06C ...Repeated for Remote Output 8
D070 ...Repeated for Remote Output 9
D074 ...Repeated for Remote Output 10
D078 ...Repeated for Remote Output 11
D07C ...Repeated for Remote Output 12
D080 ...Repeated for Remote Output 13
D084 ...Repeated for Remote Output 14
D088 ...Repeated for Remote Output 15
D08C ...Repeated for Remote Output 16
D090 ...Repeated for Remote Output 17
D094 ...Repeated for Remote Output 18
D098 ...Repeated for Remote Output 19
D09C ...Repeated for Remote Output 20
D0A0 ...Repeated for Remote Output 21
D0A4 ...Repeated for Remote Output 22
D0A8 ...Repeated for Remote Output 23
D0AC ...Repeated for Remote Output 24
D0B0 ...Repeated for Remote Output 25
D0B4 ...Repeated for Remote Output 26
D0B8 ...Repeated for Remote Output 27
D0BC ...Repeated for Remote Output 28
D0C0 ...Repeated for Remote Output 29
D0C4 ...Repeated for Remote Output 30
D0C8 ...Repeated for Remote Output 31
D0CC ...Repeated for Remote Output 32
Remote DPS Inputs (Read/Write Setting) (16 Modules)
D0D0 Remote DPS Input 1 Device 1 to 32 --- 1 F001 1
D0D1 Remote DPS Input 1 Bit Pair 0 to 64 --- 1 F158 0 (None)
D0D2 Remote DPS Input 1 Default State 0 to 4 --- 1 F087 4 (LATEST)
D0D3 Remote DPS Input 1 Events 0 to 1 --- 1 F102 0 (Disabled)
D0D4 Remote DPS Input 1 Name --- --- --- F205 "RemDPS Ip
1"
D0DA ...Repeated for Remote DPS Input 2
D0E4 ...Repeated for Remote DPS Input 3
D0EE ...Repeated for Remote DPS Input 4
D0F8 ...Repeated for Remote DPS Input 5
D102 ...Repeated for Remote DPS Input 6
D10C ...Repeated for Remote DPS Input 7
D116 ...Repeated for Remote DPS Input 8
D120 ...Repeated for Remote DPS Input 9
D12A ...Repeated for Remote DPS Input 10
D134 ...Repeated for Remote DPS Input 11
D13E ...Repeated for Remote DPS Input 12
D148 ...Repeated for Remote DPS Input 13
D152 ...Repeated for Remote DPS Input 14

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 129


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


D15C ...Repeated for Remote DPS Input 15
D166 ...Repeated for Remote DPS Input 16
IEC 61850 GGIO6 Configuration (Read/Write Setting)
D210 IEC 61850 GGIO6 Master Device (2 items) 0 to 32 --- 1 F079 0 (NONE)
D212 IEC 61850 GGIO6 Analog Value (4 items) 0 to 4294967295 --- 1 F600 0
D21A IEC 61850 GGIO6 Indication Operands (2 items) 0 to 65535 --- 1 F300 0
IEC 61850 Report ConfRev (Read/Write Setting)
D260 IEC 61850 GGIO1 ConfRev 1 to 4294967295 --- 1 F003 1
D262 IEC 61850 GGIO4 ConfRev 1 to 4294967295 --- 1 F003 1
Mandatory (Read/Write Setting)
D280 Test Mode Function 0 to 1 --- 1 F102 0 (Disabled)
D282 Test Mode Initiate 0 to 65535 --- 1 F300 1
Mandatory (Read/Write Command)
D283 Clear All Relay Records Command 0 to 1 --- 1 F126 0 (No)
Contact Outputs (Read/Write Setting) (128 Modules)
D290 Contact Output 1 Name --- --- --- F205 “Cont Op 1"
D296 Contact Output 1 Operation 0 to 65535 --- 1 F300 0
D297 Contact Output 1 Seal In 0 to 65535 --- 1 F300 0
D298 Contact Output 1 Events 0 to 1 --- 1 F102 1 (Enabled)
D299 Contact Output 1 Voltage Threshold 20 to 250 --- 1 F001 20
D29A Contact Output 1 Reserved 20 to 300 --- 1 F001 125
D29B ...Repeated for Contact Output 2
D2A6 ...Repeated for Contact Output 3
D2B1 ...Repeated for Contact Output 4
D2BC ...Repeated for Contact Output 5
D2C7 ...Repeated for Contact Output 6
D2D2 ...Repeated for Contact Output 7
D2DD ...Repeated for Contact Output 8
D2E8 ...Repeated for Contact Output 9
D2F3 ...Repeated for Contact Output 10
D2FE ...Repeated for Contact Output 11
D309 ...Repeated for Contact Output 12
D314 ...Repeated for Contact Output 13
D31F ...Repeated for Contact Output 14
D32A ...Repeated for Contact Output 15
D335 ...Repeated for Contact Output 16
D340 ...Repeated for Contact Output 17
D34B ...Repeated for Contact Output 18
D356 ...Repeated for Contact Output 19
D361 ...Repeated for Contact Output 20
D36C ...Repeated for Contact Output 21
D377 ...Repeated for Contact Output 22
D382 ...Repeated for Contact Output 23
D38D ...Repeated for Contact Output 24
D398 ...Repeated for Contact Output 25
D3A3 ...Repeated for Contact Output 26
D3AE ...Repeated for Contact Output 27

130 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


D3B9 ...Repeated for Contact Output 28
D3C4 ...Repeated for Contact Output 29
D3CF ...Repeated for Contact Output 30
D3DA ...Repeated for Contact Output 31
D3E5 ...Repeated for Contact Output 32
D3F0 ...Repeated for Contact Output 33
D3FB ...Repeated for Contact Output 34
D406 ...Repeated for Contact Output 35
D411 ...Repeated for Contact Output 36
D41C ...Repeated for Contact Output 37
D427 ...Repeated for Contact Output 38
D432 ...Repeated for Contact Output 39
D43D ...Repeated for Contact Output 40
D448 ...Repeated for Contact Output 41
D453 ...Repeated for Contact Output 42
D45E ...Repeated for Contact Output 43
D469 ...Repeated for Contact Output 44
D474 ...Repeated for Contact Output 45
D47F ...Repeated for Contact Output 46
D48A ...Repeated for Contact Output 47
D495 ...Repeated for Contact Output 48
D4A0 ...Repeated for Contact Output 49
D4AB ...Repeated for Contact Output 50
D4B6 ...Repeated for Contact Output 51
D4C1 ...Repeated for Contact Output 52
D4CC ...Repeated for Contact Output 53
D4D7 ...Repeated for Contact Output 54
D4E2 ...Repeated for Contact Output 55
D4ED ...Repeated for Contact Output 56
D4F8 ...Repeated for Contact Output 57
D503 ...Repeated for Contact Output 58
D50E ...Repeated for Contact Output 59
D519 ...Repeated for Contact Output 60
D524 ...Repeated for Contact Output 61
D52F ...Repeated for Contact Output 62
D53A ...Repeated for Contact Output 63
D545 ...Repeated for Contact Output 64
D550 ...Repeated for Contact Output 65
D55B ...Repeated for Contact Output 66
D566 ...Repeated for Contact Output 67
D571 ...Repeated for Contact Output 68
D57C ...Repeated for Contact Output 69
D587 ...Repeated for Contact Output 70
D592 ...Repeated for Contact Output 71
D59D ...Repeated for Contact Output 72
D5A8 ...Repeated for Contact Output 73
D5B3 ...Repeated for Contact Output 74

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 131


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


D5BE ...Repeated for Contact Output 75
D5C9 ...Repeated for Contact Output 76
D5D4 ...Repeated for Contact Output 77
D5DF ...Repeated for Contact Output 78
D5EA ...Repeated for Contact Output 79
D5F5 ...Repeated for Contact Output 80
D600 ...Repeated for Contact Output 81
D60B ...Repeated for Contact Output 82
D616 ...Repeated for Contact Output 83
D621 ...Repeated for Contact Output 84
D62C ...Repeated for Contact Output 85
D637 ...Repeated for Contact Output 86
D642 ...Repeated for Contact Output 87
D64D ...Repeated for Contact Output 88
D658 ...Repeated for Contact Output 89
D663 ...Repeated for Contact Output 90
D66E ...Repeated for Contact Output 91
D679 ...Repeated for Contact Output 92
D684 ...Repeated for Contact Output 93
D68F ...Repeated for Contact Output 94
D69A ...Repeated for Contact Output 95
D6A5 ...Repeated for Contact Output 96
D6B0 ...Repeated for Contact Output 97
D6BB ...Repeated for Contact Output 98
D6C6 ...Repeated for Contact Output 99
D6D1 ...Repeated for Contact Output 100
D6DC ...Repeated for Contact Output 101
D6E7 ...Repeated for Contact Output 102
D6F2 ...Repeated for Contact Output 103
D6FD ...Repeated for Contact Output 104
D708 ...Repeated for Contact Output 105
D713 ...Repeated for Contact Output 106
D71E ...Repeated for Contact Output 107
D729 ...Repeated for Contact Output 108
D734 ...Repeated for Contact Output 109
D73F ...Repeated for Contact Output 110
D74A ...Repeated for Contact Output 111
D755 ...Repeated for Contact Output 112
D760 ...Repeated for Contact Output 113
D76B ...Repeated for Contact Output 114
D776 ...Repeated for Contact Output 115
D781 ...Repeated for Contact Output 116
D78C ...Repeated for Contact Output 117
D797 ...Repeated for Contact Output 118
D7A2 ...Repeated for Contact Output 119
D7AD ...Repeated for Contact Output 120
D7B8 ...Repeated for Contact Output 121

132 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


D7C3 ...Repeated for Contact Output 122
D7CE ...Repeated for Contact Output 123
D7D9 ...Repeated for Contact Output 124
D7E4 ...Repeated for Contact Output 125
D7EF ...Repeated for Contact Output 126
D7FA ...Repeated for Contact Output 127
D805 ...Repeated for Contact Output 128
Fault Report Clear Settings (Read/Write Setting)
D820 Clear Fault Reports 0 to 65535 --- 1 F300 0
Clear Event Records (Read/Write Setting)
D822 Clear Event Records 0 to 65535 --- 1 F300 0
Clear Transient Recorder (Read/Write Setting)
D823 Clear Oscillography 0 to 65535 -- 1 F300 0
Clear Data Logger (Read/Write Setting)
D824 Clear Data Logger 0 to 65535 -- 1 F300 0
Clear Breaker Arcing Amps (Read/Write Setting) (6 Modules)
D825 Clear Breaker 1 ARC AMPs 0 to 65535 --- 1 F300 0
D826 ...Repeated for Breaker 2
D827 ...Repeated for Breaker 3
D828 ...Repeated for Breaker 4
D829 ...Repeated for Breaker 5
D82A ...Repeated for Breaker 6
Clear Energy (Read/Write Setting)
D82D Clear Energy 0 to 65535 --- 1 F300 0
Clear Unauthorized Access (Read/Write Setting)
D82F Reset Unauthorized Access 0 to 65535 --- 1 F300 0
PMU Recorder Commands (Read/Write Setting)
D833 Clear PMU Config Counter 0 to 65535 --- 1 F300 0
D834 Clear PMU Recorder 0 to 65535 --- 1 F300 0
Clear Relay Records (Read/Write Setting)
D835 Reserved (11 items) --- --- --- F001 0
Clear Disturbance Recorder (Read/Write Setting)
D842 Clear Disturbance Recorder 0 to 65535 --- 1 F300 0
Force Contacts Inputs (Read/Write Setting) (255 Modules)
DA40 Force Contact Input 1 State 0 to 2 --- 1 F144 0 (Normal)
DA41 ...Repeated for Force Contact Input 2
DA42 ...Repeated for Force Contact Input 3
DA43 ...Repeated for Force Contact Input 4
DA44 ...Repeated for Force Contact Input 5
DA45 ...Repeated for Force Contact Input 6
DA46 ...Repeated for Force Contact Input 7
DA47 ...Repeated for Force Contact Input 8
DA48 ...Repeated for Force Contact Input 9
DA49 ...Repeated for Force Contact Input 10
DA4A ...Repeated for Force Contact Input 11
DA4B ...Repeated for Force Contact Input 12
DA4C ...Repeated for Force Contact Input 13

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 133


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


DA4D ...Repeated for Force Contact Input 14
DA4E ...Repeated for Force Contact Input 15
DA4F ...Repeated for Force Contact Input 16
DA50 ...Repeated for Force Contact Input 17
DA51 ...Repeated for Force Contact Input 18
DA52 ...Repeated for Force Contact Input 19
DA53 ...Repeated for Force Contact Input 20
DA54 ...Repeated for Force Contact Input 21
DA55 ...Repeated for Force Contact Input 22
DA56 ...Repeated for Force Contact Input 23
DA57 ...Repeated for Force Contact Input 24
DA58 ...Repeated for Force Contact Input 25
DA59 ...Repeated for Force Contact Input 26
DA5A ...Repeated for Force Contact Input 27
DA5B ...Repeated for Force Contact Input 28
DA5C ...Repeated for Force Contact Input 29
DA5D ...Repeated for Force Contact Input 30
DA5E ...Repeated for Force Contact Input 31
DA5F ...Repeated for Force Contact Input 32
DA60 ...Repeated for Force Contact Input 33
DA61 ...Repeated for Force Contact Input 34
DA62 ...Repeated for Force Contact Input 35
DA63 ...Repeated for Force Contact Input 36
DA64 ...Repeated for Force Contact Input 37
DA65 ...Repeated for Force Contact Input 38
DA66 ...Repeated for Force Contact Input 39
DA67 ...Repeated for Force Contact Input 40
DA68 ...Repeated for Force Contact Input 41
DA69 ...Repeated for Force Contact Input 42
DA6A ...Repeated for Force Contact Input 43
DA6B ...Repeated for Force Contact Input 44
DA6C ...Repeated for Force Contact Input 45
DA6D ...Repeated for Force Contact Input 46
DA6E ...Repeated for Force Contact Input 47
DA6F ...Repeated for Force Contact Input 48
DA70 ...Repeated for Force Contact Input 49
DA71 ...Repeated for Force Contact Input 50
DA72 ...Repeated for Force Contact Input 51
DA73 ...Repeated for Force Contact Input 52
DA74 ...Repeated for Force Contact Input 53
DA75 ...Repeated for Force Contact Input 54
DA76 ...Repeated for Force Contact Input 55
DA77 ...Repeated for Force Contact Input 56
DA78 ...Repeated for Force Contact Input 57
DA79 ...Repeated for Force Contact Input 58
DA7A ...Repeated for Force Contact Input 59
DA7B ...Repeated for Force Contact Input 60

134 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


DA7C ...Repeated for Force Contact Input 61
DA7D ...Repeated for Force Contact Input 62
DA7E ...Repeated for Force Contact Input 63
DA7F ...Repeated for Force Contact Input 64
DA80 ...Repeated for Force Contact Input 65
DA81 ...Repeated for Force Contact Input 66
DA82 ...Repeated for Force Contact Input 67
DA83 ...Repeated for Force Contact Input 68
DA84 ...Repeated for Force Contact Input 69
DA85 ...Repeated for Force Contact Input 70
DA86 ...Repeated for Force Contact Input 71
DA87 ...Repeated for Force Contact Input 72
DA88 ...Repeated for Force Contact Input 73
DA89 ...Repeated for Force Contact Input 74
DA8A ...Repeated for Force Contact Input 75
DA8B ...Repeated for Force Contact Input 76
DA8C ...Repeated for Force Contact Input 77
DA8D ...Repeated for Force Contact Input 78
DA8E ...Repeated for Force Contact Input 79
DA8F ...Repeated for Force Contact Input 80
DA90 ...Repeated for Force Contact Input 81
DA91 ...Repeated for Force Contact Input 82
DA92 ...Repeated for Force Contact Input 83
DA93 ...Repeated for Force Contact Input 84
DA94 ...Repeated for Force Contact Input 85
DA95 ...Repeated for Force Contact Input 86
DA96 ...Repeated for Force Contact Input 87
DA97 ...Repeated for Force Contact Input 88
DA98 ...Repeated for Force Contact Input 89
DA99 ...Repeated for Force Contact Input 90
DA9A ...Repeated for Force Contact Input 91
DA9B ...Repeated for Force Contact Input 92
DA9C ...Repeated for Force Contact Input 93
DA9D ...Repeated for Force Contact Input 94
DA9E ...Repeated for Force Contact Input 95
DA9F ...Repeated for Force Contact Input 96
DAA0 ...Repeated for Force Contact Input 97
DAA1 ...Repeated for Force Contact Input 98
DAA2 ...Repeated for Force Contact Input 99
DAA3 ...Repeated for Force Contact Input 100
DAA4 ...Repeated for Force Contact Input 101
DAA5 ...Repeated for Force Contact Input 102
DAA6 ...Repeated for Force Contact Input 103
DAA7 ...Repeated for Force Contact Input 104
DAA8 ...Repeated for Force Contact Input 105
DAA9 ...Repeated for Force Contact Input 106
DAAA ...Repeated for Force Contact Input 107

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 135


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


DAAB ...Repeated for Force Contact Input 108
DAAC ...Repeated for Force Contact Input 109
DAAD ...Repeated for Force Contact Input 110
DAAE ...Repeated for Force Contact Input 111
DAAF ...Repeated for Force Contact Input 112
DAB0 ...Repeated for Force Contact Input 113
DAB1 ...Repeated for Force Contact Input 114
DAB2 ...Repeated for Force Contact Input 115
DAB3 ...Repeated for Force Contact Input 116
DAB4 ...Repeated for Force Contact Input 117
DAB5 ...Repeated for Force Contact Input 118
DAB6 ...Repeated for Force Contact Input 119
DAB7 ...Repeated for Force Contact Input 120
DAB8 ...Repeated for Force Contact Input 121
DAB9 ...Repeated for Force Contact Input 122
DABA ...Repeated for Force Contact Input 123
DABB ...Repeated for Force Contact Input 124
DABC ...Repeated for Force Contact Input 125
DABD ...Repeated for Force Contact Input 126
DABE ...Repeated for Force Contact Input 127
DABF ...Repeated for Force Contact Input 128
DAC0 ...Repeated for Force Contact Input 129
DAC1 ...Repeated for Force Contact Input 130
DAC2 ...Repeated for Force Contact Input 131
DAC3 ...Repeated for Force Contact Input 132
DAC4 ...Repeated for Force Contact Input 133
DAC5 ...Repeated for Force Contact Input 134
DAC6 ...Repeated for Force Contact Input 135
DAC7 ...Repeated for Force Contact Input 136
DAC8 ...Repeated for Force Contact Input 137
DAC9 ...Repeated for Force Contact Input 138
DACA ...Repeated for Force Contact Input 139
DACB ...Repeated for Force Contact Input 140
DACC ...Repeated for Force Contact Input 141
DACD ...Repeated for Force Contact Input 142
DACE ...Repeated for Force Contact Input 143
DACF ...Repeated for Force Contact Input 144
DAD0 ...Repeated for Force Contact Input 145
DAD1 ...Repeated for Force Contact Input 146
DAD2 ...Repeated for Force Contact Input 147
DAD3 ...Repeated for Force Contact Input 148
DAD4 ...Repeated for Force Contact Input 149
DAD5 ...Repeated for Force Contact Input 150
DAD6 ...Repeated for Force Contact Input 151
DAD7 ...Repeated for Force Contact Input 152
DAD8 ...Repeated for Force Contact Input 153
DAD9 ...Repeated for Force Contact Input 154

136 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


DADA ...Repeated for Force Contact Input 155
DADB ...Repeated for Force Contact Input 156
DADC ...Repeated for Force Contact Input 157
DADD ...Repeated for Force Contact Input 158
DADE ...Repeated for Force Contact Input 159
DADF ...Repeated for Force Contact Input 160
DAE0 ...Repeated for Force Contact Input 161
DAE1 ...Repeated for Force Contact Input 162
DAE2 ...Repeated for Force Contact Input 163
DAE3 ...Repeated for Force Contact Input 164
DAE4 ...Repeated for Force Contact Input 165
DAE5 ...Repeated for Force Contact Input 166
DAE6 ...Repeated for Force Contact Input 167
DAE7 ...Repeated for Force Contact Input 168
DAE8 ...Repeated for Force Contact Input 169
DAE9 ...Repeated for Force Contact Input 170
DAEA ...Repeated for Force Contact Input 171
DAEB ...Repeated for Force Contact Input 172
DAEC ...Repeated for Force Contact Input 173
DAED ...Repeated for Force Contact Input 174
DAEE ...Repeated for Force Contact Input 175
DAEF ...Repeated for Force Contact Input 176
DAF0 ...Repeated for Force Contact Input 177
DAF1 ...Repeated for Force Contact Input 178
DAF2 ...Repeated for Force Contact Input 179
DAF3 ...Repeated for Force Contact Input 180
DAF4 ...Repeated for Force Contact Input 181
DAF5 ...Repeated for Force Contact Input 182
DAF6 ...Repeated for Force Contact Input 183
DAF7 ...Repeated for Force Contact Input 184
DAF8 ...Repeated for Force Contact Input 185
DAF9 ...Repeated for Force Contact Input 186
DAFA ...Repeated for Force Contact Input 187
DAFB ...Repeated for Force Contact Input 188
DAFC ...Repeated for Force Contact Input 189
DAFD ...Repeated for Force Contact Input 190
DAFE ...Repeated for Force Contact Input 191
DAFF ...Repeated for Force Contact Input 192
DB00 ...Repeated for Force Contact Input 193
DB01 ...Repeated for Force Contact Input 194
DB02 ...Repeated for Force Contact Input 195
DB03 ...Repeated for Force Contact Input 196
DB04 ...Repeated for Force Contact Input 197
DB05 ...Repeated for Force Contact Input 198
DB06 ...Repeated for Force Contact Input 199
DB07 ...Repeated for Force Contact Input 200
DB08 ...Repeated for Force Contact Input 201

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 137


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


DB09 ...Repeated for Force Contact Input 202
DB0A ...Repeated for Force Contact Input 203
DB0B ...Repeated for Force Contact Input 204
DB0C ...Repeated for Force Contact Input 205
DB0D ...Repeated for Force Contact Input 206
DB0E ...Repeated for Force Contact Input 207
DB0F ...Repeated for Force Contact Input 208
DB10 ...Repeated for Force Contact Input 209
DB11 ...Repeated for Force Contact Input 210
DB12 ...Repeated for Force Contact Input 211
DB13 ...Repeated for Force Contact Input 212
DB14 ...Repeated for Force Contact Input 213
DB15 ...Repeated for Force Contact Input 214
DB16 ...Repeated for Force Contact Input 215
DB17 ...Repeated for Force Contact Input 216
DB18 ...Repeated for Force Contact Input 217
DB19 ...Repeated for Force Contact Input 218
DB1A ...Repeated for Force Contact Input 219
DB1B ...Repeated for Force Contact Input 220
DB1C ...Repeated for Force Contact Input 221
DB1D ...Repeated for Force Contact Input 222
DB1E ...Repeated for Force Contact Input 223
DB1F ...Repeated for Force Contact Input 224
DB20 ...Repeated for Force Contact Input 225
DB21 ...Repeated for Force Contact Input 226
DB22 ...Repeated for Force Contact Input 227
DB23 ...Repeated for Force Contact Input 228
DB24 ...Repeated for Force Contact Input 229
DB25 ...Repeated for Force Contact Input 230
DB26 ...Repeated for Force Contact Input 231
DB27 ...Repeated for Force Contact Input 232
DB28 ...Repeated for Force Contact Input 233
DB29 ...Repeated for Force Contact Input 234
DB2A ...Repeated for Force Contact Input 235
DB2B ...Repeated for Force Contact Input 236
DB2C ...Repeated for Force Contact Input 237
DB2D ...Repeated for Force Contact Input 238
DB2E ...Repeated for Force Contact Input 239
DB2F ...Repeated for Force Contact Input 240
DB30 ...Repeated for Force Contact Input 241
DB31 ...Repeated for Force Contact Input 242
DB32 ...Repeated for Force Contact Input 243
DB33 ...Repeated for Force Contact Input 244
DB34 ...Repeated for Force Contact Input 245
DB35 ...Repeated for Force Contact Input 246
DB36 ...Repeated for Force Contact Input 247
DB37 ...Repeated for Force Contact Input 248

138 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


DB38 ...Repeated for Force Contact Input 249
DB39 ...Repeated for Force Contact Input 250
DB3A ...Repeated for Force Contact Input 251
DB3B ...Repeated for Force Contact Input 252
DB3C ...Repeated for Force Contact Input 253
DB3D ...Repeated for Force Contact Input 254
DB3E ...Repeated for Force Contact Input 255
Force Contacts Outputs (Read/Write Setting) (128 Modules)
DB60 Force Contact Output 1 State 0 to 3 --- 1 F131 0 (Normal)
DB61 ...Repeated for Force Contact Output 2
...
DBDF ...Repeated for Force Contact Output 128
Automation Analog Settings (Read/Write Setting) (128 Modules)
DC00 Automation Virtual Analog 1 Name --- --- --- F205 "Analog 1"
DC06 ...Repeated for Automation Virtual Analog 2
DC0C ...Repeated for Automation Virtual Analog 3
DC12 ...Repeated for Automation Virtual Analog 4
DC18 ...Repeated for Automation Virtual Analog 5
DC1E ...Repeated for Automation Virtual Analog 6
DC24 ...Repeated for Automation Virtual Analog 7
DC2A ...Repeated for Automation Virtual Analog 8
DC30 ...Repeated for Automation Virtual Analog 9
DC36 ...Repeated for Automation Virtual Analog 10
DC3C ...Repeated for Automation Virtual Analog 11
DC42 ...Repeated for Automation Virtual Analog 12
DC48 ...Repeated for Automation Virtual Analog 13
DC4E ...Repeated for Automation Virtual Analog 14
DC54 ...Repeated for Automation Virtual Analog 15
DC5A ...Repeated for Automation Virtual Analog 16
DC60 ...Repeated for Automation Virtual Analog 17
DC66 ...Repeated for Automation Virtual Analog 18
DC6C ...Repeated for Automation Virtual Analog 19
DC72 ...Repeated for Automation Virtual Analog 20
DC78 ...Repeated for Automation Virtual Analog 21
DC7E ...Repeated for Automation Virtual Analog 22
DC84 ...Repeated for Automation Virtual Analog 23
DC8A ...Repeated for Automation Virtual Analog 24
DC90 ...Repeated for Automation Virtual Analog 25
DC96 ...Repeated for Automation Virtual Analog 26
DC9C ...Repeated for Automation Virtual Analog 27
DCA2 ...Repeated for Automation Virtual Analog 28
DCA8 ...Repeated for Automation Virtual Analog 29
DCAE ...Repeated for Automation Virtual Analog 30
DCB4 ...Repeated for Automation Virtual Analog 31
DCBA ...Repeated for Automation Virtual Analog 32
DCC0 ...Repeated for Automation Virtual Analog 33
DCC6 ...Repeated for Automation Virtual Analog 34

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 139


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


DCCC ...Repeated for Automation Virtual Analog 35
DCD2 ...Repeated for Automation Virtual Analog 36
DCD8 ...Repeated for Automation Virtual Analog 37
DCDE ...Repeated for Automation Virtual Analog 38
DCE4 ...Repeated for Automation Virtual Analog 39
DCEA ...Repeated for Automation Virtual Analog 40
DCF0 ...Repeated for Automation Virtual Analog 41
DCF6 ...Repeated for Automation Virtual Analog 42
DCFC ...Repeated for Automation Virtual Analog 43
DD02 ...Repeated for Automation Virtual Analog 44
DD08 ...Repeated for Automation Virtual Analog 45
DD0E ...Repeated for Automation Virtual Analog 46
DD14 ...Repeated for Automation Virtual Analog 47
DD1A ...Repeated for Automation Virtual Analog 48
DD20 ...Repeated for Automation Virtual Analog 49
DD26 ...Repeated for Automation Virtual Analog 50
DD2C ...Repeated for Automation Virtual Analog 51
DD32 ...Repeated for Automation Virtual Analog 52
DD38 ...Repeated for Automation Virtual Analog 53
DD3E ...Repeated for Automation Virtual Analog 54
DD44 ...Repeated for Automation Virtual Analog 55
DD4A ...Repeated for Automation Virtual Analog 56
DD50 ...Repeated for Automation Virtual Analog 57
DD56 ...Repeated for Automation Virtual Analog 58
DD5C ...Repeated for Automation Virtual Analog 59
DD62 ...Repeated for Automation Virtual Analog 60
DD68 ...Repeated for Automation Virtual Analog 61
DD6E ...Repeated for Automation Virtual Analog 62
DD74 ...Repeated for Automation Virtual Analog 63
DD7A ...Repeated for Automation Virtual Analog 64
DD80 ...Repeated for Automation Virtual Analog 65
DD86 ...Repeated for Automation Virtual Analog 66
DD8C ...Repeated for Automation Virtual Analog 67
DD92 ...Repeated for Automation Virtual Analog 68
DD98 ...Repeated for Automation Virtual Analog 69
DD9E ...Repeated for Automation Virtual Analog 70
DDA4 ...Repeated for Automation Virtual Analog 71
DDAA ...Repeated for Automation Virtual Analog 72
DDB0 ...Repeated for Automation Virtual Analog 73
DDB6 ...Repeated for Automation Virtual Analog 74
DDBC ...Repeated for Automation Virtual Analog 75
DDC2 ...Repeated for Automation Virtual Analog 76
DDC8 ...Repeated for Automation Virtual Analog 77
DDCE ...Repeated for Automation Virtual Analog 78
DDD4 ...Repeated for Automation Virtual Analog 79
DDDA ...Repeated for Automation Virtual Analog 80
DDE0 ...Repeated for Automation Virtual Analog 81

140 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


DDE6 ...Repeated for Automation Virtual Analog 82
DDEC ...Repeated for Automation Virtual Analog 83
DDF2 ...Repeated for Automation Virtual Analog 84
DDF8 ...Repeated for Automation Virtual Analog 85
DDFE ...Repeated for Automation Virtual Analog 86
DE04 ...Repeated for Automation Virtual Analog 87
DE0A ...Repeated for Automation Virtual Analog 88
DE10 ...Repeated for Automation Virtual Analog 89
DE16 ...Repeated for Automation Virtual Analog 90
DE1C ...Repeated for Automation Virtual Analog 91
DE22 ...Repeated for Automation Virtual Analog 92
DE28 ...Repeated for Automation Virtual Analog 93
DE2E ...Repeated for Automation Virtual Analog 94
DE34 ...Repeated for Automation Virtual Analog 95
DE3A ...Repeated for Automation Virtual Analog 96
DE40 ...Repeated for Automation Virtual Analog 97
DE46 ...Repeated for Automation Virtual Analog 98
DE4C ...Repeated for Automation Virtual Analog 99
DE52 ...Repeated for Automation Virtual Analog 100
DE58 ...Repeated for Automation Virtual Analog 101
DE5E ...Repeated for Automation Virtual Analog 102
DE64 ...Repeated for Automation Virtual Analog 103
DE6A ...Repeated for Automation Virtual Analog 104
DE70 ...Repeated for Automation Virtual Analog 105
DE76 ...Repeated for Automation Virtual Analog 106
DE7C ...Repeated for Automation Virtual Analog 107
DE82 ...Repeated for Automation Virtual Analog 108
DE88 ...Repeated for Automation Virtual Analog 109
DE8E ...Repeated for Automation Virtual Analog 110
DE94 ...Repeated for Automation Virtual Analog 111
DE9A ...Repeated for Automation Virtual Analog 112
DEA0 ...Repeated for Automation Virtual Analog 113
DEA6 ...Repeated for Automation Virtual Analog 114
DEAC ...Repeated for Automation Virtual Analog 115
DEB2 ...Repeated for Automation Virtual Analog 116
DEB8 ...Repeated for Automation Virtual Analog 117
DEBE ...Repeated for Automation Virtual Analog 118
DEC4 ...Repeated for Automation Virtual Analog 119
DECA ...Repeated for Automation Virtual Analog 120
DED0 ...Repeated for Automation Virtual Analog 121
DED6 ...Repeated for Automation Virtual Analog 122
DEDC ...Repeated for Automation Virtual Analog 123
DEE2 ...Repeated for Automation Virtual Analog 124
DEE8 ...Repeated for Automation Virtual Analog 125
DEEE ...Repeated for Automation Virtual Analog 126
DEF4 ...Repeated for Automation Virtual Analog 127
DEFA ...Repeated for Automation Virtual Analog 128

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 141


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


Phasor Measurement Unit One-Shot Actual Values (Read Only)
DFB0 PMU One-Shot Va Magnitude 0 to 999999.999 V 0.001 F060 0
DFB2 PMU One-Shot Va Angle -180 to 180 ° 0.01 F002 0
DFB3 PMU One-Shot Vb Magnitude 0 to 999999.999 V 0.001 F060 0
DFB5 PMU One-Shot Vb Angle -180 to 180 ° 0.01 F002 0
DFB6 PMU One-Shot Vc Magnitude 0 to 999999.999 V 0.001 F060 0
DFB8 PMU One-Shot Vc Angle -180 to 180 ° 0.01 F002 0
DFB9 PMU One-Shot Vx Magnitude 0 to 999999.999 V 0.001 F060 0
DFBB PMU One-Shot Vx Angle -180 to 180 ° 0.01 F002 0
DFBC PMU One-Shot Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
DFBE PMU One-Shot Positive-Sequence Voltage Angle -180 to 180 ° 0.01 F002 0
DFBF PMU One-Shot Negative-Sequence Voltage 0 to 999999.999 V 0.001 F060 0
Magnitude
DFC1 PMU One-Shot Negative-Sequence Voltage Angle -180 to 180 ° 0.01 F002 0
DFC2 PMU One-Shot Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
DFC4 PMU One-Shot Zero-Sequence Voltage Angle -180 to 180 ° 0.01 F002 0
DFC5 PMU One-Shot Ia Magnitude 0 to 999999.999 A 0.001 F060 0
DFC7 PMU One-Shot Ia Angle -180 to 180 ° 0.01 F002 0
DFC8 PMU One-Shot Ib Magnitude 0 to 999999.999 A 0.001 F060 0
DFCA PMU One-Shot Ib Angle -180 to 180 ° 0.01 F002 0
DFCB PMU One-Shot Ic Magnitude 0 to 999999.999 A 0.001 F060 0
DFCD PMU One-Shot Ic Angle -180 to 180 ° 0.01 F002 0
DFCE PMU One-Shot Ig Magnitude 0 to 999999.999 A 0.001 F060 0
DFD0 PMU One-Shot Ig Angle -180 to 180 ° 0.01 F002 0
DFD1 PMU One-Shot Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
DFD3 PMU One-Shot Positive-Sequence Current Angle -180 to 180 ° 0.01 F002 0
DFD4 PMU One-Shot Negative-Sequence Current 0 to 999999.999 A 0.001 F060 0
Magnitude
DFD6 PMU One-Shot Negative-Sequence Current Angle -180 to 180 ° 0.01 F002 0
DFD7 PMU One-Shot Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
DFD9 PMU One-Shot Zero-Sequence Current Angle -180 to 180 ° 0.01 F002 0
Phasor Measurement Unit Actual Values (Read Only)
E000 PMU Phase A Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E002 PMU Phase A Voltage Angle -180 to 180 ° 0.01 F002 0
E003 PMU Phase B Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E005 PMU Phase B Voltage Angle -180 to 180 ° 0.01 F002 0
E006 PMU Phase C Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E008 PMU Phase C Voltage Angle -180 to 180 ° 0.01 F002 0
E009 PMU Auxiliary Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E00B PMU Auxiliary Voltage Angle -180 to 180 ° 0.01 F002 0
E00C PMU Positive-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E00E PMU Positive-Sequence Voltage Angle -180 to 180 ° 0.01 F002 0
E00F PMU Negative-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E011 PMU Negative-Sequence Voltage Angle -180 to 180 ° 0.01 F002 0
E012 PMU Zero-Sequence Voltage Magnitude 0 to 999999.999 V 0.001 F060 0
E014 PMU Zero-Sequence Voltage Angle -180 to 180 ° 0.01 F002 0
E015 PMU Phase A Current Magnitude 0 to 999999.999 A 0.001 F060 0

142 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


E017 PMU Phase A Current Angle -180 to 180 ° 0.01 F002 0
E018 PMU Phase B Current Magnitude 0 to 999999.999 A 0.001 F060 0
E01A PMU Phase B Current Angle -180 to 180 ° 0.01 F002 0
E01B PMU Phase C Current Magnitude 0 to 999999.999 A 0.001 F060 0
E01D PMU Phase C Current Angle -180 to 180 ° 0.01 F002 0
E01E PMU Ground Current Magnitude 0 to 999999.999 A 0.001 F060 0
E020 PMU Ground Current Angle -180 to 180 ° 0.01 F002 0
E021 PMU Positive-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
E023 PMU Positive-Sequence Current Angle -180 to 180 ° 0.01 F002 0
E024 PMU Negative-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
E026 PMU Negative-Sequence Current Angle -180 to 180 ° 0.01 F002 0
E027 PMU Zero-Sequence Current Magnitude 0 to 999999.999 A 0.001 F060 0
E029 PMU Zero-Sequence Current Angle -180 to 180 ° 0.01 F002 0
E02A PMU Frequency 2 to 90 Hz 0.001 F003 0
E02C PMU df/dt -327.67 to 327.67 Hz/s 0.01 F002 0
E02D PMU Configuration Change Counter 0 to 65535 --- 1 F001 0
E02E Reserved (4 items)
Phasor Measurement Unit Basic Configuration (Read/Write Setting)
E032 PMU Function 0 to 1 --- 1 F102 0 (Disabled)
E033 PMU IDcode 1 to 65534 --- 1 F001 1
E034 PMU STN --- --- --- F203 "GE-UR+PMU"
E03C PMU Source 0 to 5 --- 1 F167 0 (SRC 1)
E03D PMU Post-Filter 0 to 3 --- 1 F540 1 (Symm 3-
point)
Phasor Measurement Unit Calibration (Read/Write Setting)
E03E PMU Va Calibration Angle -5 to 5 ° 0.05 F002 0
E03F PMU Vb Calibration Angle -5 to 5 ° 0.05 F002 0
E040 PMU Vc Calibration Angle -5 to 5 ° 0.05 F002 0
E041 PMU Vx Calibration Angle -5 to 5 ° 0.05 F002 0
E042 PMU Ia Calibration Angle -5 to 5 ° 0.05 F002 0
E043 PMU Ib Calibration Angle -5 to 5 ° 0.05 F002 0
E044 PMU Ic Calibration Angle -5 to 5 ° 0.05 F002 0
E045 PMU Ig Calibration Angle -5 to 5 ° 0.05 F002 0
E046 PMU Seq Volt Shift Angle -180 to 180 ° 30 F002 0
E047 PMU Seq Curr Shift Angle -180 to 180 ° 30 F002 0
Phasor Measurement Unit Communication (Read/Write Setting)
E048 PMU Com Port Type 0 to 1 --- 1 F545 1 (None)
E04B PMU PHS-x (14 items) 0 to 14 --- 1 F543 0 (Off)
E075 PMU PHS-x Name (14 items) --- --- --- F203 "GE-UR+PMU-
PHS x"
E1C5 PMU A-CH-x (8 items) 0 to 4294967295 --- 1 F600 0
E1F5 PMU D-CH-x Name (8 items) --- --- --- F203 "AnalogChan
nel x"
E2B5 PMU D-CH-x (16 items) 0 to 65535 --- 1 F300 0
E2E5 PMU D-CH-x Name (16 items) --- --- --- F203 "Dig Channel
x"
E465 PMU D-CH-x Normal State (16 items) 0 to 1 --- 1 F108 0 (Off)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 143


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


Phasor Measurement Unit Current Trigger (Read/Write Setting)
E495 PMU Current Trigger Function 0 to 1 --- 1 F102 0 (Disabled)
E496 PMU Current Trigger Pickup 0.1 to 30 pu 0.001 F001 1800
E497 PMU Current Trigger Pkp Time 0 to 600 s 0.01 F001 10
E498 PMU Current Trigger Dpo Time 0 to 600 s 0.01 F001 100
E499 PMU Current Trigger Block 0 to 65535 --- 1 F300 0
E49D PMU Current Trigger Events 0 to 1 --- 1 F102 0 (Disabled)
Phasor Measurement Unit df/dt Trigger (Read/Write Setting)
E49E PMU df/dt Trigger Function 0 to 1 --- 1 F102 0 (Disabled)
E49F PMU df/dt Trigger Raise 0.1 to 15 Hz/s 0.01 F001 25
E4A0 PMU df/dt Trigger Fall 0.1 to 15 Hz/s 0.01 F001 25
E4A1 PMU df/dt Trigger Pkp Time 0 to 600 s 0.01 F001 10
E4A2 PMU df/dt Trigger Dpo Time 0 to 600 s 0.01 F001 100
E4A3 PMU df/dt Trigger Block 0 to 65535 --- 1 F300 0
E4A7 PMU df/dt Trigger Events 0 to 1 --- 1 F102 0 (Disabled)
Phasor Measurement Unit Frequency Trigger (Read/Write Setting)
E4A8 PMU Freq Trigger Function 0 to 1 --- 1 F102 0 (Disabled)
E4A9 PMU Freq Trigger Low Freq 20 to 70 Hz 0.01 F001 4900
E4AA PMU Freq Trigger High Freq 20 to 70 Hz 0.01 F001 6100
E4AB PMU Freq Trigger Pkp Time 0 to 600 s 0.01 F001 10
E4AC PMU Freq Trigger Dpo Time 0 to 600 s 0.01 F001 100
E4AD PMU Freq Trigger Block 0 to 65535 --- 1 F300 0
E4B1 PMU Freq Trigger Events 0 to 1 --- 1 F102 0 (Disabled)
Phasor Measurement Unit Reporting Configuration (Read/Write Setting)
E4B2 PMU Network Reporting Function 0 to 1 --- 1 F102 0 (Disabled)
E4B3 PMU Network Reporting ID Code 1 to 65534 --- 1 F001 1
E4B4 PMU Network Reporting Rate 0 to 10 --- 1 F544 3 (10/sec)
E4B5 PMU Network Reporting Style 0 to 1 --- 1 F546 0 (Polar)
E4B6 PMU Network Reporting Format 0 to 1 --- 1 F547 0 (Integer)
E4B7 PMU Network PDC Control 0 to 1 --- 1 F102 0 (Disabled)
E4B8 PMU TCP Port Number 1 to 65535 --- 1 F001 4712
E4B9 PMU UDP Port Number 1 to 65535 --- 1 F001 4713
Phasor Measurement Unit One-Shot Command (Read/Write Setting)
E4BA PMU One-Shot Function 0 to 1 --- 1 F102 0 (Disabled)
E4BB PMU One-Shot Sequence Number 0 to 59 --- 1 F001 0
E4BC PMU One-Shot Time 0 to 235959 --- 1 F050 0
Phasor Measurement Unit Trigger (Read/Write Setting)
E4BE PMU Power Trigger Function 0 to 1 --- 1 F102 0 (Disabled)
E4BF PMU Power Trigger Active 0.25 to 3 pu 0.001 F001 1250
E4C0 PMU Power Trigger Reactive 0.25 to 3 pu 0.001 F001 1250
E4C1 PMU Power Trigger Apparent 0.25 to 3 pu 0.001 F001 1250
E4C2 PMU Power Trigger Pkp Time 0 to 600 s 0.01 F001 10
E4C3 PMU Power Trigger Dpo Time 0 to 600 s 0.01 F001 100
E4C4 PMU Power Trigger Block 0 to 65535 --- 1 F300 0
E4C8 PMU Power Trigger Events 0 to 1 -- 1 F102 0 (Disabled)
Phasor Measurement Unit Recorder Configuration Counter (Read/Write Command)
E4C9 PMU Recorder Clear Configuration Counter 0 to 1 --- 1 F126 0 (No)

144 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


Phasor Measurement Unit Recording (Read/Write Setting)
E4CA PMU Recording Rate 0 to 10 --- 1 F544 3 (10/sec)
E4CC PMU No of Time Records 1 to 128 --- 1 F001 3
E4CD PMU Trigger Mode 0 to 1 --- 1 F542 0 (Automatic
Overwrite)
E4CE PMU Timed Trigger Position 1 to 50 % 1 F001 10
E4D0 PMU Rec PHS-x (14 items) 0 to 14 --- 1 F543 0 (Off)
E4DE PMU Rec PHS-x Name (14 items) --- --- --- F203 "GE-UR+PMU-
PHS x"
E54E PMU Rec A-CH-x (8 items) 0 to 4294967295 --- 1 F600 0
E55E PMU Rec D-CH-x Name (8 items) --- --- --- F203 "AnalogChan
nel x"
E59E PMU Rec D-CH-x (16 items) 0 to 65535 --- 1 F300 0
E5AE PMU Rec D-CH-x Name (16 items) --- --- --- F203 "Dig Channel
x"
Phasor Measurement Unit Recording (Read/Write Command)
E62E PMU Recording Clear Command 0 to 1 --- 1 F126 0 (No)
E62F PMU Recording Force Trigger 0 to 1 --- 1 F126 0 (No)
Phasor Measurement Unit Recording (Read Only Actual Values)
E630 PMU Available Records 0 to 65535 --- 1 F001 0
E631 PMU Second per Record 0 to 429496729.5 --- 0.1 F003 0
E633 PMU Last Cleared Date 0 to 400000000 --- 1 F050 0
E635 PMU Newest Record 0 to 65535 --- 1 F001 0
Phasor Measurement Unit Records (Read Only Actual Values)
E636 PMU Recording Number of Triggers 0 to 65535 --- 1 F001 0
Phasor Measurement Unit Test Values (Read/Write Setting)
E636 PMU Test Function 0 to 1 --- 1 F102 0 (Disabled)
E637 PMU Phase A Voltage Test Magnitude 0 to 700 kV 0.01 F003 50000
E639 PMU Page A Voltage Test Angle -180 to 180 ° 0.05 F002 0
E63A PMU Phase B Voltage Test Magnitude 0 to 700 kV 0.01 F003 50000
E63C PMU Phase B Voltage Test Angle -180 to 180 ° 0.05 F002 -12000
E63D PMU Phase C Voltage Test Magnitude 0 to 700 kV 0.01 F003 50000
E63F PMU Phase C Voltage Test Angle -180 to 180 ° 0.05 F002 12000
E640 PMU Auxiliary Voltage Test Magnitude 0 to 700 kV 0.01 F003 50000
E642 PMU Auxiliary Voltage Test Angle -180 to 180 ° 0.05 F002 0
E643 PMU Phase A Current Test Magnitude 0 to 9.999 kA 0.001 F004 1000
E645 PMU Phase A Current Test Angle -180 to 180 ° 0.05 F002 -1000
E646 PMU Phase B Current Test Magnitude 0 to 9.999 kA 0.001 F004 1000
E648 PMU Phase B Current Test Angle -180 to 180 ° 0.05 F002 -13000
E649 PMU Phase C Current Test Magnitude 0 to 9.999 kA 0.001 F003 1000
E64B PMU Phase C Current Test Angle -180 to 180 ° 0.05 F002 11000
E64C PMU Ground Current Test Magnitude 0 to 9.999 kA 0.001 F004 0
E64E PMU Ground Current Test Angle -180 to 180 ° 0.05 F002 0
E64F PMU Test Frequency 20 to 70 Hz 0.001 F003 60000
E651 PMU Test df/dt -10 to 10 Hz/s 0.01 F002 0
Phasor Measurement Unit Triggering (Read/Write Setting)
E652 PMU User Trigger 0 to 65535 --- 1 F300 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 145


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


Phasor Measurement Unit Voltage Trigger (Read/Write Setting)
E653 PMU Voltage Trigger Function 0 to 1 --- 1 F102 0 (Disabled)
E654 PMU Voltage Trigger Low Volt 0.25 to 1.25 pu 0.001 F001 800
E655 PMU Voltage Trigger High Volt 0.75 to 1.75 pu 0.001 F001 1200
E656 PMU Voltage Trigger Pkp Time 0 to 600 s 0.01 F001 10
E657 PMU Voltage Trigger Dpo Time 0 to 600 s 0.01 F001 100
E658 PMU Voltage Trigger Block 0 to 65535 --- 1 F300 0
E65C PMU Voltage Trigger Events 0 to 1 --- 1 F102 0 (Disabled)
Phasor Measurement Unit RS485 Reporting Configuration (Read/Write Setting)
E65D Reserved (163 items)
Remote Devices (Read/Write Setting) (32 Modules)
E700 Remote Device 1 ID --- --- --- F209 "Remote
Device 1"
E721 Remote Device 1 Ethernet APPID 0 to 16383 --- 1 F001 0
E722 Remote Device 1 Dataset 0 to 8 --- 1 F184 0 (Fixed)
E723 ...Repeated for Remote Device 2
E744 ...Repeated for Remote Device 2
E745 ...Repeated for Remote Device 2
E746 ...Repeated for Remote Device 3

E769 ...Repeated for Remote Device 4


E78A ...Repeated for Remote Device 4

E7AD ...Repeated for Remote Device 5


E7AE ...Repeated for Remote Device 5

E7AF ...Repeated for Remote Device 6


E7D0 ...Repeated for Remote Device 6
E7D1 ...Repeated for Remote Device 6
E7D2 ...Repeated for Remote Device 7
E7F3 ...Repeated for Remote Device 7

E7F5 ...Repeated for Remote Device 8


E816 ...Repeated for Remote Device 8
E817 ...Repeated for Remote Device 8
E818 ...Repeated for Remote Device 9
E839 ...Repeated for Remote Device 9
E83A ...Repeated for Remote Device 9
E83B ...Repeated for Remote Device 10

E85E ...Repeated for Remote Device 11

E881 ...Repeated for Remote Device 12


E8A2 ...Repeated for Remote Device 12

146 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default

E8A4 ...Repeated for Remote Device 13


E8C5 ...Repeated for Remote Device 13

E8C7 ...Repeated for Remote Device 14


E8E8 ...Repeated for Remote Device 14

E8EA ...Repeated for Remote Device 15


E90B ...Repeated for Remote Device 15

E90D ...Repeated for Remote Device 16


E92E ...Repeated for Remote Device 16
E92E ...Repeated for Remote Device 16
E930 ...Repeated for Remote Device 17
E951 ...Repeated for Remote Device 17

E953 ...Repeated for Remote Device 18


E974 ...Repeated for Remote Device 18
E975 ...Repeated for Remote Device 18
E976 ...Repeated for Remote Device 19
E997 ...Repeated for Remote Device 19

E999 ...Repeated for Remote Device 20


E9BA ...Repeated for Remote Device 20
E9BB ...Repeated for Remote Device 20
E9BC ...Repeated for Remote Device 21
E9DD ...Repeated for Remote Device 21

E9DF ...Repeated for Remote Device 22


EA00 ...Repeated for Remote Device 22

EA02 ...Repeated for Remote Device 23


EA23 ...Repeated for Remote Device 23

EA25 ...Repeated for Remote Device 24


EA46 ...Repeated for Remote Device 24

EA48 ...Repeated for Remote Device 25


EA69 ...Repeated for Remote Device 25

EA6B ...Repeated for Remote Device 26


EA8C ...Repeated for Remote Device 26

EA8E ...Repeated for Remote Device 27


EAAF ...Repeated for Remote Device 27

EAB1 ...Repeated for Remote Device 28

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 147


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


EAD2 ...Repeated for Remote Device 28

EAD4 ...Repeated for Remote Device 29


EAF5 ...Repeated for Remote Device 29

EAF7 ...Repeated for Remote Device 30


EB18 ...Repeated for Remote Device 30

EB1A ...Repeated for Remote Device 31


EB3B ...Repeated for Remote Device 31

EB3D ...Repeated for Remote Device 32


EB5E ...Repeated for Remote Device 32
EB5F ...Repeated for Remote Device 32
Fast Load Shed (FLS) General Settings (Read/Write Setting)
F000 FLS Function 0 to 1 --- --- F102 0 (Disabled)
F001 FLS Block 0 to 65535 --- 1 F300 0
F002 FLS Events 0 to 1 --- 1 F102 1 (Enabled)
F003 FLS Calculation Mode 0 to 2 --- 1 F280 0 (ADAPTIVE)
F004 FLS Contingency Time 20 to 1000 s 1 F001 60
F005 FLS MAC Address --- --- --- F072 0
F008 FLS goID --- --- --- F209 "FLS_Data"
F029 FLS Etype AppID
Fast Load Shed (FLS) General Actual Values (Read Only)
F000 FLS Communications Trouble 0 to 1 --- --- F108 0 (Off)
F001 FLS Total Available Load 0 to 999999872 W 1 F060 0
F003 FLS Total Infeed 0 to 999999872 W 1 F060 0
F005 FLS Total Reserve 0 to 999999872 W 1 F060 0
F007 FLS Load Shed Order 0 to 999999872 W 1 F060 0
F009 FLS Contingency Timer 0 to 1 --- --- F108 0 (Off)
F00A FLS Any Shed Request 0 to 1 --- --- F108 0 (Off)
FLS Data Unit Actual Values (Read Only) (64 Modules)
F00B FLS Data Unit 1 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F00C FLS Data Unit 1 Status Value 0 to 1 --- --- F108 0 (Off)
F00D FLS Data Unit 1 Power Value 0 to 999999872 W 1 F060 0
F00F FLS Data Unit 2 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F010 FLS Data Unit 2 Status Value 0 to 1 --- --- F108 0 (Off)
F011 FLS Data Unit 2 Power Value 0 to 999999872 W 1 F060 0
F013 FLS Data Unit 3 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F014 FLS Data Unit 3 Status Value 0 to 1 --- --- F108 0 (Off)
F015 FLS Data Unit 3 Power Value 0 to 999999872 W 1 F060 0
F017 FLS Data Unit 4 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F018 FLS Data Unit 4 Status Value 0 to 1 --- --- F108 0 (Off)
F019 FLS Data Unit 4 Power Value 0 to 999999872 W 1 F060 0
F01B FLS Data Unit 5 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F01C FLS Data Unit 5 Status Value 0 to 1 --- --- F108 0 (Off)
F01D FLS Data Unit 5 Power Value 0 to 999999872 W 1 F060 0

148 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


F01F FLS Data Unit 5 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F020 FLS Data Unit 5 Status Value 0 to 1 --- --- F108 0 (Off)
F021 FLS Data Unit 5 Power Value 0 to 999999872 W 1 F060 0
F01F FLS Data Unit 6 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F020 FLS Data Unit 6 Status Value 0 to 1 --- --- F108 0 (Off)
F021 FLS Data Unit 6 Power Value 0 to 999999872 W 1 F060 0
F023 FLS Data Unit 7 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F024 FLS Data Unit 7 Status Value 0 to 1 --- --- F108 0 (Off)
F025 FLS Data Unit 7 Power Value 0 to 999999872 W 1 F060 0
F027 FLS Data Unit 8 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F028 FLS Data Unit 8 Status Value 0 to 1 --- --- F108 0 (Off)
F029 FLS Data Unit 8 Power Value 0 to 999999872 W 1 F060 0
F02B FLS Data Unit 9 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F02C FLS Data Unit 9 Status Value 0 to 1 --- --- F108 0 (Off)
F02D FLS Data Unit 9 Power Value 0 to 999999872 W 1 F060 0
F02F FLS Data Unit 10 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F030 FLS Data Unit 10 Status Value 0 to 1 --- --- F108 0 (Off)
F031 FLS Data Unit 10 Power Value 0 to 999999872 W 1 F060 0
F033 FLS Data Unit 11 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F034 FLS Data Unit 11 Status Value 0 to 1 --- --- F108 0 (Off)
F035 FLS Data Unit 11 Power Value 0 to 999999872 W 1 F060 0
F037 FLS Data Unit 12 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F038 FLS Data Unit 12 Status Value 0 to 1 --- --- F108 0 (Off)
F039 FLS Data Unit 12 Power Value 0 to 999999872 W 1 F060 0
F03B FLS Data Unit 13 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F03C FLS Data Unit 13 Status Value 0 to 1 --- --- F108 0 (Off)
F03D FLS Data Unit 13 Power Value 0 to 999999872 W 1 F060 0
F03F FLS Data Unit 14 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F040 FLS Data Unit 14 Status Value 0 to 1 --- --- F108 0 (Off)
F041 FLS Data Unit 14 Power Value 0 to 999999872 W 1 F060 0
F043 FLS Data Unit 15 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F044 FLS Data Unit 15 Status Value 0 to 1 --- --- F108 0 (Off)
F045 FLS Data Unit 15 Power Value 0 to 999999872 W 1 F060 0
F047 FLS Data Unit 16 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F048 FLS Data Unit 16 Status Value 0 to 1 --- --- F108 0 (Off)
F049 FLS Data Unit 16 Power Value 0 to 999999872 W 1 F060 0
F04B FLS Data Unit 17 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F04C FLS Data Unit 17 Status Value 0 to 1 --- --- F108 0 (Off)
F04D FLS Data Unit 17 Power Value 0 to 999999872 W 1 F060 0
...
F107 FLS Data Unit 64 Communications Trouble 0 to 1 --- --- F108 0 (Off)
F108 FLS Data Unit 64 Status Value 0 to 1 --- --- F108 0 (Off)
F109 FLS Data Unit 64 Power Value 0 to 999999872 W 1 F060 0
FLS Data Unit Settings (Read/Write Setting) (64 Modules)
F03A FLS Data Unit 1 Type 0 to 65 --- 1 F281 0 (Disabled)
F03B FLS Data Unit 1 Substitute Power -999999900 to W 100 F060 0
999999900

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 149


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


F03D ...Repeated for FLS Data Unit 2
F047 ...Repeated for FLS Data Unit 2
F04A ...Repeated for FLS Data Unit 3
F054 ...Repeated for FLS Data Unit 3
F055 ...Repeated for FLS Data Unit 3
F057 ...Repeated for FLS Data Unit 4
F061 ...Repeated for FLS Data Unit 4
F064 ...Repeated for FLS Data Unit 5
F06E ...Repeated for FLS Data Unit 5
F06F ...Repeated for FLS Data Unit 5
F071 ...Repeated for FLS Data Unit 6
F07B ...Repeated for FLS Data Unit 6
F07E ...Repeated for FLS Data Unit 7
F088 ...Repeated for FLS Data Unit 7
F089 ...Repeated for FLS Data Unit 7
F08B ...Repeated for FLS Data Unit 8
F095 ...Repeated for FLS Data Unit 8
F096 ...Repeated for FLS Data Unit 8
F098 ...Repeated for FLS Data Unit 9
F0A2 ...Repeated for FLS Data Unit 9
F0A3 ...Repeated for FLS Data Unit 9
F0A5 ...Repeated for FLS Data Unit 10
F0AF ...Repeated for FLS Data Unit 10
F0B2 ...Repeated for FLS Data Unit 11
F0BC ...Repeated for FLS Data Unit 11
F0BD ...Repeated for FLS Data Unit 11
F0BF ...Repeated for FLS Data Unit 12
F0C9 ...Repeated for FLS Data Unit 12
F0CC ...Repeated for FLS Data Unit 13
F0D6 ...Repeated for FLS Data Unit 13
F0D7 ...Repeated for FLS Data Unit 13
F0D9 ...Repeated for FLS Data Unit 14
F0E3 ...Repeated for FLS Data Unit 14
F0E6 ...Repeated for FLS Data Unit 15
F0F0 ...Repeated for FLS Data Unit 15
F0F1 ...Repeated for FLS Data Unit 15
F0F3 ...Repeated for FLS Data Unit 16
F100 ...Repeated for FLS Data Unit 17
F10A ...Repeated for FLS Data Unit 17
F10D ...Repeated for FLS Data Unit 18
F117 ...Repeated for FLS Data Unit 18
F11A ...Repeated for FLS Data Unit 19
F124 ...Repeated for FLS Data Unit 19
F127 ...Repeated for FLS Data Unit 20
F134 ...Repeated for FLS Data Unit 21
F141 ...Repeated for FLS Data Unit 22
F14B ...Repeated for FLS Data Unit 22

150 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


F14E ...Repeated for FLS Data Unit 23
F15B ...Repeated for FLS Data Unit 24
F165 ...Repeated for FLS Data Unit 24
F168 ...Repeated for FLS Data Unit 25
F172 ...Repeated for FLS Data Unit 25
F175 ...Repeated for FLS Data Unit 26
F182 ...Repeated for FLS Data Unit 27
F18F ...Repeated for FLS Data Unit 28
F19C ...Repeated for FLS Data Unit 29
F1A6 ...Repeated for FLS Data Unit 29
F1A9 ...Repeated for FLS Data Unit 30
F1B6 ...Repeated for FLS Data Unit 31
F1C3 ...Repeated for FLS Data Unit 32
F1D0 ...Repeated for FLS Data Unit 33
F1DD ...Repeated for FLS Data Unit 34
F1E7 ...Repeated for FLS Data Unit 34
F1EA ...Repeated for FLS Data Unit 35
F1F7 ...Repeated for FLS Data Unit 36
F201 ...Repeated for FLS Data Unit 36
F204 ...Repeated for FLS Data Unit 37
F211 ...Repeated for FLS Data Unit 38
F21E ...Repeated for FLS Data Unit 39
F228 ...Repeated for FLS Data Unit 39
F22B ...Repeated for FLS Data Unit 40
F242 ...Repeated for FLS Data Unit 41
F245 ...Repeated for FLS Data Unit 42
F252 ...Repeated for FLS Data Unit 43
F25F ...Repeated for FLS Data Unit 44
F26C ...Repeated for FLS Data Unit 45
F279 ...Repeated for FLS Data Unit 46
F284 ...Repeated for FLS Data Unit 46
F286 ...Repeated for FLS Data Unit 47
F293 ...Repeated for FLS Data Unit 48
F2A0 ...Repeated for FLS Data Unit 49
F2AA ...Repeated for FLS Data Unit 49
FSAD ...Repeated for FLS Data Unit 50
F2B7 ...Repeated for FLS Data Unit 50
F2BA ...Repeated for FLS Data Unit 51
F2C7 ...Repeated for FLS Data Unit 52
F2D4 ...Repeated for FLS Data Unit 53
F2E1 ...Repeated for FLS Data Unit 54
F2EE ...Repeated for FLS Data Unit 55
F2FB ...Repeated for FLS Data Unit 56
F305 ...Repeated for FLS Data Unit 56
F308 ...Repeated for FLS Data Unit 57
F315 ...Repeated for FLS Data Unit 58
F322 ...Repeated for FLS Data Unit 59

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 151


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


F32C ...Repeated for FLS Data Unit 59
F32F ...Repeated for FLS Data Unit 60
F339 ...Repeated for FLS Data Unit 60
F33C ...Repeated for FLS Data Unit 61
F349 ...Repeated for FLS Data Unit 62
F353 ...Repeated for FLS Data Unit 62
F356 ...Repeated for FLS Data Unit 63
F363 ...Repeated for FLS Data Unit 64
FLS Local Data Unit Actual Values (Read Only) (6 Modules)
F10B FLS Local Data Unit 1 Status Value 0 to 1 --- --- F108 0 (Off)
F10C FLS Local Data Unit 1 Power Value 0 to 999999900 W 100 F060 0
F10E FLS Local Data Unit 2 Status Value 0 to 1 --- --- F108 0 (Off)
F10F FLS Local Data Unit 2 Power Value 0 to 999999900 W 100 F060 0
F111 FLS Local Data Unit 3 Status Value 0 to 1 --- --- F108 0 (Off)
F112 FLS Local Data Unit 3 Power Value 0 to 999999900 W 100 F060 0
F114 FLS Local Data Unit 4 Status Value 0 to 1 --- --- F108 0 (Off)
F115 FLS Local Data Unit 4 Power Value 0 to 999999900 W 100 F060 0
F117 FLS Local Data Unit 5 Status Value 0 to 1 --- --- F108 0 (Off)
F118 FLS Local Data Unit 5 Power Value 0 to 999999900 W 100 F060 0
F11A FLS Local Data Unit 6 Status Value 0 to 1 --- --- F108 0 (Off)
F11B FLS Local Data Unit 6 Power Value 0 to 999999900 W 100 F060 0
Fast Load Shed Controller (FLSC) Infeed Actual Values (Read Only)
F143 FLSC Infeed Offline 1 0 to 1 --- --- F108 0 (Off)
F144 FLSC Infeed Offline 2 0 to 1 --- --- F108 0 (Off)
F145 FLSC Infeed Offline 3 0 to 1 --- --- F108 0 (Off)
F146 FLSC Infeed Offline 4 0 to 1 --- --- F108 0 (Off)
F147 FLSC Infeed Offline 5 0 to 1 --- --- F108 0 (Off)
F148 FLSC Infeed Offline 6 0 to 1 --- --- F108 0 (Off)
F149 FLSC Infeed Offline 7 0 to 1 --- --- F108 0 (Off)
F14A FLSC Infeed Offline 8 0 to 1 --- --- F108 0 (Off)
F14B FLSC Infeed Offline 9 0 to 1 --- --- F108 0 (Off)
F14C FLSC Infeed Offline 10 0 to 1 --- --- F108 0 (Off)
F14D FLSC Infeed Offline 11 0 to 1 --- --- F108 0 (Off)
F14E FLSC Infeed Offline 12 0 to 1 --- --- F108 0 (Off)
F14F FLSC Infeed Offline 13 0 to 1 --- --- F108 0 (Off)
F150 FLSC Infeed Offline 14 0 to 1 --- --- F108 0 (Off)
F151 FLSC Infeed Offline 15 0 to 1 --- --- F108 0 (Off)
F152 FLSC Infeed Offline 16 0 to 1 --- --- F108 0 (Off)
F153 FLSC Infeed Offline 17 0 to 1 --- --- F108 0 (Off)
F154 FLSC Infeed Offline 18 0 to 1 --- --- F108 0 (Off)
F155 FLSC Infeed Offline 19 0 to 1 --- --- F108 0 (Off)
F156 FLSC Infeed Offline 20 0 to 1 --- --- F108 0 (Off)
F157 FLSC Infeed Offline 21 0 to 1 --- --- F108 0 (Off)
F158 FLSC Infeed Offline 22 0 to 1 --- --- F108 0 (Off)
F159 FLSC Infeed Offline 23 0 to 1 --- --- F108 0 (Off)
F15A FLSC Infeed Offline 24 0 to 1 --- --- F108 0 (Off)
F15B FLSC Infeed Offline 25 0 to 1 --- --- F108 0 (Off)

152 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


F15C FLSC Infeed Offline 26 0 to 1 --- --- F108 0 (Off)
F15D FLSC Infeed Offline 27 0 to 1 --- --- F108 0 (Off)
F15E FLSC Infeed Offline 28 0 to 1 --- --- F108 0 (Off)
F15F FLSC Infeed Offline 29 0 to 1 --- --- F108 0 (Off)
F160 FLSC Infeed Offline 30 0 to 1 --- --- F108 0 (Off)
F161 FLSC Infeed Offline 31 0 to 1 --- --- F108 0 (Off)
F162 FLSC Infeed Offline 32 0 to 1 --- --- F108 0 (Off)
F163 FLSC Infeed Infeed 1 0 to 999999900 W 100 F060 0
F165 FLSC Infeed Infeed 2 0 to 999999900 W 100 F060 0
F167 FLSC Infeed Infeed 3 0 to 999999900 W 100 F060 0
F169 FLSC Infeed Infeed 4 0 to 999999900 W 100 F060 0
F16B FLSC Infeed Infeed 5 0 to 999999900 W 100 F060 0
F16D FLSC Infeed Infeed 6 0 to 999999900 W 100 F060 0
F16F FLSC Infeed Infeed 7 0 to 999999900 W 100 F060 0
F171 FLSC Infeed Infeed 8 0 to 999999900 W 100 F060 0
F173 FLSC Infeed Infeed 9 0 to 999999900 W 100 F060 0
F175 FLSC Infeed Infeed 10 0 to 999999900 W 100 F060 0
F177 FLSC Infeed Infeed 11 0 to 999999900 W 100 F060 0
F179 FLSC Infeed Infeed 12 0 to 999999900 W 100 F060 0
F17B FLSC Infeed Infeed 13 0 to 999999900 W 100 F060 0
F17D FLSC Infeed Infeed 14 0 to 999999900 W 100 F060 0
F17F FLSC Infeed Infeed 15 0 to 999999900 W 100 F060 0
F181 FLSC Infeed Infeed 16 0 to 999999900 W 100 F060 0
F183 FLSC Infeed Infeed 17 0 to 999999900 W 100 F060 0
F185 FLSC Infeed Infeed 18 0 to 999999900 W 100 F060 0
F187 FLSC Infeed Infeed 19 0 to 999999900 W 100 F060 0
F189 FLSC Infeed Infeed 20 0 to 999999900 W 100 F060 0
F18B FLSC Infeed Infeed 21 0 to 999999900 W 100 F060 0
F18D FLSC Infeed Infeed 22 0 to 999999900 W 100 F060 0
F18F FLSC Infeed Infeed 23 0 to 999999900 W 100 F060 0
F191 FLSC Infeed Infeed 24 0 to 999999900 W 100 F060 0
F193 FLSC Infeed Infeed 25 0 to 999999900 W 100 F060 0
F195 FLSC Infeed Infeed 26 0 to 999999900 W 100 F060 0
F197 FLSC Infeed Infeed 27 0 to 999999900 W 100 F060 0
F199 FLSC Infeed Infeed 28 0 to 999999900 W 100 F060 0
F19B FLSC Infeed Infeed 29 0 to 999999900 W 100 F060 0
F19D FLSC Infeed Infeed 30 0 to 999999900 W 100 F060 0
F19F FLSC Infeed Infeed 31 0 to 999999900 W 100 F060 0
F1A1 FLSC Infeed Infeed 32 0 to 999999900 W 100 F060 0
F1A3 FLSC Infeed Reserve 1 0 to 999999900 W 100 F060 0
F1A5 FLSC Infeed Reserve 2 0 to 999999900 W 100 F060 0
F1A7 FLSC Infeed Reserve 3 0 to 999999900 W 100 F060 0
F1A9 FLSC Infeed Reserve 4 0 to 999999900 W 100 F060 0
F1AB FLSC Infeed Reserve 5 0 to 999999900 W 100 F060 0
F1AD FLSC Infeed Reserve 6 0 to 999999900 W 100 F060 0
F1AF FLSC Infeed Reserve 7 0 to 999999900 W 100 F060 0
F1B1 FLSC Infeed Reserve 8 0 to 999999900 W 100 F060 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 153


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


F1B3 FLSC Infeed Reserve 9 0 to 999999900 W 100 F060 0
F1B5 FLSC Infeed Reserve 10 0 to 999999900 W 100 F060 0
F1B7 FLSC Infeed Reserve 11 0 to 999999900 W 100 F060 0
F1B9 FLSC Infeed Reserve 12 0 to 999999900 W 100 F060 0
F1BB FLSC Infeed Reserve 13 0 to 999999900 W 100 F060 0
F1BD FLSC Infeed Reserve 14 0 to 999999900 W 100 F060 0
F1BF FLSC Infeed Reserve 15 0 to 999999900 W 100 F060 0
F1C1 FLSC Infeed Reserve 16 0 to 999999900 W 100 F060 0
F1C3 FLSC Infeed Reserve 17 0 to 999999900 W 100 F060 0
F1C5 FLSC Infeed Reserve 18 0 to 999999900 W 100 F060 0
F1C7 FLSC Infeed Reserve 19 0 to 999999900 W 100 F060 0
F1C9 FLSC Infeed Reserve 20 0 to 999999900 W 100 F060 0
F1CB FLSC Infeed Reserve 21 0 to 999999900 W 100 F060 0
F1CD FLSC Infeed Reserve 22 0 to 999999900 W 100 F060 0
F1CF FLSC Infeed Reserve 23 0 to 999999900 W 100 F060 0
F1D1 FLSC Infeed Reserve 24 0 to 999999900 W 100 F060 0
F1D3 FLSC Infeed Reserve 25 0 to 999999900 W 100 F060 0
F1D5 FLSC Infeed Reserve 26 0 to 999999900 W 100 F060 0
F1D7 FLSC Infeed Reserve 27 0 to 999999900 W 100 F060 0
F1D9 FLSC Infeed Reserve 28 0 to 999999900 W 100 F060 0
F1DB FLSC Infeed Reserve 29 0 to 999999900 W 100 F060 0
F1DD FLSC Infeed Reserve 30 0 to 999999900 W 100 F060 0
F1DF FLSC Infeed Reserve 31 0 to 999999900 W 100 F060 0
F1E1 FLSC Infeed Reserve 32 0 to 999999900 W 100 F060 0
Fast Load Shed Controller (FLSC) Load Group Actual Values (Read Only)
F1E3 FLSC Load Group Load 1 0 to 999999900 W 100 F060 0
F1E5 FLSC Load Group Load 2 0 to 999999900 W 100 F060 0
F1E7 FLSC Load Group Load 3 0 to 999999900 W 100 F060 0
F1E9 FLSC Load Group Load 4 0 to 999999900 W 100 F060 0
F1EB FLSC Load Group Load 5 0 to 999999900 W 100 F060 0
F1ED FLSC Load Group Load 6 0 to 999999900 W 100 F060 0
F1EF FLSC Load Group Load 7 0 to 999999900 W 100 F060 0
F1F1 FLSC Load Group Load 8 0 to 999999900 W 100 F060 0
F1F3 FLSC Load Group Load 9 0 to 999999900 W 100 F060 0
F1F5 FLSC Load Group Load 10 0 to 999999900 W 100 F060 0
F1F7 FLSC Load Group Load 11 0 to 999999900 W 100 F060 0
F1F9 FLSC Load Group Load 12 0 to 999999900 W 100 F060 0
F1FB FLSC Load Group Load 13 0 to 999999900 W 100 F060 0
F1FD FLSC Load Group Load 14 0 to 999999900 W 100 F060 0
F1FF FLSC Load Group Load 15 0 to 999999900 W 100 F060 0
F201 FLSC Load Group Load 16 0 to 999999900 W 100 F060 0
F203 FLSC Load Group Load 17 0 to 999999900 W 100 F060 0
F205 FLSC Load Group Load 18 0 to 999999900 W 100 F060 0
F207 FLSC Load Group Load 19 0 to 999999900 W 100 F060 0
F209 FLSC Load Group Load 20 0 to 999999900 W 100 F060 0
F20B FLSC Load Group Load 21 0 to 999999900 W 100 F060 0
F20D FLSC Load Group Load 22 0 to 999999900 W 100 F060 0

154 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


F20F FLSC Load Group Load 23 0 to 999999900 W 100 F060 0
F211 FLSC Load Group Load 24 0 to 999999900 W 100 F060 0
F213 FLSC Load Group Load 25 0 to 999999900 W 100 F060 0
F215 FLSC Load Group Load 26 0 to 999999900 W 100 F060 0
F217 FLSC Load Group Load 27 0 to 999999900 W 100 F060 0
F219 FLSC Load Group Load 28 0 to 999999900 W 100 F060 0
F21B FLSC Load Group Load 29 0 to 999999900 W 100 F060 0
F21D FLSC Load Group Load 30 0 to 999999900 W 100 F060 0
F21F FLSC Load Group Load 31 0 to 999999900 W 100 F060 0
F221 FLSC Load Group Load 32 0 to 999999900 W 100 F060 0
F223 FLSC Load Group ShedReq 1 0 to 1 --- --- F108 0 (Off)
F224 FLSC Load Group ShedReq 2 0 to 1 --- --- F108 0 (Off)
F225 FLSC Load Group ShedReq 3 0 to 1 --- --- F108 0 (Off)
F226 FLSC Load Group ShedReq 4 0 to 1 --- --- F108 0 (Off)
F227 FLSC Load Group ShedReq 5 0 to 1 --- --- F108 0 (Off)
F228 FLSC Load Group ShedReq 6 0 to 1 --- --- F108 0 (Off)
F229 FLSC Load Group ShedReq 7 0 to 1 --- --- F108 0 (Off)
F22A FLSC Load Group ShedReq 8 0 to 1 --- --- F108 0 (Off)
F22B FLSC Load Group ShedReq 9 0 to 1 --- --- F108 0 (Off)
F22C FLSC Load Group ShedReq 10 0 to 1 --- --- F108 0 (Off)
F22D FLSC Load Group ShedReq 11 0 to 1 --- --- F108 0 (Off)
F22E FLSC Load Group ShedReq 12 0 to 1 --- --- F108 0 (Off)
F22F FLSC Load Group ShedReq 13 0 to 1 --- --- F108 0 (Off)
F230 FLSC Load Group ShedReq 14 0 to 1 --- --- F108 0 (Off)
F231 FLSC Load Group ShedReq 15 0 to 1 --- --- F108 0 (Off)
F232 FLSC Load Group ShedReq 16 0 to 1 --- --- F108 0 (Off)
F233 FLSC Load Group ShedReq 17 0 to 1 --- --- F108 0 (Off)
F234 FLSC Load Group ShedReq 18 0 to 1 --- --- F108 0 (Off)
F235 FLSC Load Group ShedReq 19 0 to 1 --- --- F108 0 (Off)
F236 FLSC Load Group ShedReq 20 0 to 1 --- --- F108 0 (Off)
F237 FLSC Load Group ShedReq 21 0 to 1 --- --- F108 0 (Off)
F238 FLSC Load Group ShedReq 22 0 to 1 --- --- F108 0 (Off)
F239 FLSC Load Group ShedReq 23 0 to 1 --- --- F108 0 (Off)
F23A FLSC Load Group ShedReq 24 0 to 1 --- --- F108 0 (Off)
F23B FLSC Load Group ShedReq 25 0 to 1 --- --- F108 0 (Off)
F23C FLSC Load Group ShedReq 26 0 to 1 --- --- F108 0 (Off)
F23D FLSC Load Group ShedReq 27 0 to 1 --- --- F108 0 (Off)
F23E FLSC Load Group ShedReq 28 0 to 1 --- --- F108 0 (Off)
F23F FLSC Load Group ShedReq 29 0 to 1 --- --- F108 0 (Off)
F240 FLSC Load Group ShedReq 30 0 to 1 --- --- F108 0 (Off)
F241 FLSC Load Group ShedReq 31 0 to 1 --- --- F108 0 (Off)
F242 FLSC Load Group ShedReq 32 0 to 1 --- --- F108 0 (Off)
Fast Load Shed Controller (FLSC) Scenario Actual Values (Read Only)
F243 FLSC Scenario Arming 1 0 to 999999900 W 100 F060 0
F245 FLSC Scenario Arming 2 0 to 999999900 W 100 F060 0
F247 FLSC Scenario Arming 3 0 to 999999900 W 100 F060 0
F249 FLSC Scenario Arming 4 0 to 999999900 W 100 F060 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 155


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


F24B FLSC Scenario Arming 5 0 to 999999900 W 100 F060 0
F24D FLSC Scenario Arming 6 0 to 999999900 W 100 F060 0
F24F FLSC Scenario Arming 7 0 to 999999900 W 100 F060 0
F251 FLSC Scenario Arming 8 0 to 999999900 W 100 F060 0
F253 FLSC Scenario Arming 9 0 to 999999900 W 100 F060 0
F255 FLSC Scenario Arming 10 0 to 999999900 W 100 F060 0
F257 FLSC Scenario Arming 11 0 to 999999900 W 100 F060 0
F259 FLSC Scenario Arming 12 0 to 999999900 W 100 F060 0
F25B FLSC Scenario Arming 13 0 to 999999900 W 100 F060 0
F25D FLSC Scenario Arming 14 0 to 999999900 W 100 F060 0
F25F FLSC Scenario Arming 15 0 to 999999900 W 100 F060 0
F261 FLSC Scenario Arming 16 0 to 999999900 W 100 F060 0
F263 FLSC Scenario Arming 17 0 to 999999900 W 100 F060 0
F265 FLSC Scenario Arming 18 0 to 999999900 W 100 F060 0
F267 FLSC Scenario Arming 19 0 to 999999900 W 100 F060 0
F269 FLSC Scenario Arming 20 0 to 999999900 W 100 F060 0
F26B FLSC Scenario Arming 21 0 to 999999900 W 100 F060 0
F26D FLSC Scenario Arming 22 0 to 999999900 W 100 F060 0
F26F FLSC Scenario Arming 23 0 to 999999900 W 100 F060 0
F271 FLSC Scenario Arming 24 0 to 999999900 W 100 F060 0
F273 FLSC Scenario Arming 25 0 to 999999900 W 100 F060 0
F275 FLSC Scenario Arming 26 0 to 999999900 W 100 F060 0
F277 FLSC Scenario Arming 27 0 to 999999900 W 100 F060 0
F279 FLSC Scenario Arming 28 0 to 999999900 W 100 F060 0
F27B FLSC Scenario Arming 29 0 to 999999900 W 100 F060 0
F27D FLSC Scenario Arming 30 0 to 999999900 W 100 F060 0
F27F FLSC Scenario Arming 31 0 to 999999900 W 100 F060 0
F281 FLSC Scenario Arming 32 0 to 999999900 W 100 F060 0
F283 FLSC Scenario Operand Value 1 0 to 1 --- 1 F108 0 (Off)
F284 FLSC Scenario Operand Value 2 0 to 1 --- 1 F108 0 (Off)
F285 FLSC Scenario Operand Value 3 0 to 1 --- 1 F108 0 (Off)
F286 FLSC Scenario Operand Value 4 0 to 1 --- 1 F108 0 (Off)
F287 FLSC Scenario Operand Value 5 0 to 1 --- 1 F108 0 (Off)
F288 FLSC Scenario Operand Value 6 0 to 1 --- 1 F108 0 (Off)
F289 FLSC Scenario Operand Value 7 0 to 1 --- 1 F108 0 (Off)
F28A FLSC Scenario Operand Value 8 0 to 1 --- 1 F108 0 (Off)
F28B FLSC Scenario Operand Value 9 0 to 1 --- 1 F108 0 (Off)
F28C FLSC Scenario Operand Value 10 0 to 1 --- 1 F108 0 (Off)
F28D FLSC Scenario Operand Value 11 0 to 1 --- 1 F108 0 (Off)
F28E FLSC Scenario Operand Value 12 0 to 1 --- 1 F108 0 (Off)
F28F FLSC Scenario Operand Value 13 0 to 1 --- 1 F108 0 (Off)
F290 FLSC Scenario Operand Value 14 0 to 1 --- 1 F108 0 (Off)
F291 FLSC Scenario Operand Value 15 0 to 1 --- 1 F108 0 (Off)
F292 FLSC Scenario Operand Value 16 0 to 1 --- 1 F108 0 (Off)
F293 FLSC Scenario Operand Value 17 0 to 1 --- 1 F108 0 (Off)
F294 FLSC Scenario Operand Value 18 0 to 1 --- 1 F108 0 (Off)
F295 FLSC Scenario Operand Value 19 0 to 1 --- 1 F108 0 (Off)

156 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


F296 FLSC Scenario Operand Value 20 0 to 1 --- 1 F108 0 (Off)
F297 FLSC Scenario Operand Value 21 0 to 1 --- 1 F108 0 (Off)
F298 FLSC Scenario Operand Value 22 0 to 1 --- 1 F108 0 (Off)
F299 FLSC Scenario Operand Value 23 0 to 1 --- 1 F108 0 (Off)
F29A FLSC Scenario Operand Value 24 0 to 1 --- 1 F108 0 (Off)
F29B FLSC Scenario Operand Value 25 0 to 1 --- 1 F108 0 (Off)
F29C FLSC Scenario Operand Value 26 0 to 1 --- 1 F108 0 (Off)
F29D FLSC Scenario Operand Value 27 0 to 1 --- 1 F108 0 (Off)
F29E FLSC Scenario Operand Value 28 0 to 1 --- 1 F108 0 (Off)
F29F FLSC Scenario Operand Value 29 0 to 1 --- 1 F108 0 (Off)
F2A0 FLSC Scenario Operand Value 30 0 to 1 --- 1 F108 0 (Off)
F2A1 FLSC Scenario Operand Value 31 0 to 1 --- 1 F108 0 (Off)
F2A2 FLSC Scenario Operand Value 32 0 to 1 --- 1 F108 0 (Off)
Fast Load Shed Controller (FLSC) Report Actual Values (Read Only)
F2A3 FLSC Report Recent Timestamp 0 to 4294967295 --- 1 F003 0
F2A5 FLSC Report Number 0 to 65535 --- 1 F001 0
Parallel Redundancy Protocol (PRP) Actual Values (Read Only)
F2B0 PRP Total Received Port A 0 to 4294967295 --- 1 F003 0
F2B2 PRP Total Received Port B 0 to 4294967295 --- 1 F003 0
F2B4 PRP Total Mismatches Port A 0 to 4294967295 --- 1 F003 0
F2B6 PRP Total Mismatches Port B 0 to 4294967295 --- 1 F003 0
F2B8 PRP Total Errors 0 to 4294967295 --- 1 F003 0
Fast Load Shed (FLS) Local Data Unit Settings (Read/Write Setting) (6 Modules)
F370 FLS Local Data Unit 1 ID --- --- --- F202 (none)
F37A FLS Local Data Unit 1 Type 0 to 65 --- 1 F281 0 (Disabled)
F37B FLS Local Data Unit 1 Substitute Power -999999900 to W 100 F060 0
999999900
F37D FLS Local Data Unit 1 Status 0 to 65535 --- 1 F300 0
F37E FLS Local Data Unit 1 Power 0 to 4294967295 --- 1 F600 0
F380 ...Repeated for FLS Local Data Unit 2
F38A ...Repeated for FLS Local Data Unit 2
F38E ...Repeated for FLS Local Data Unit 2
F390 ...Repeated for FLS Local Data Unit 3
F39A ...Repeated for FLS Local Data Unit 3
F39D ...Repeated for FLS Local Data Unit 3
F3A0 ...Repeated for FLS Local Data Unit 4
F3B0 ...Repeated for FLS Local Data Unit 5
F3BA ...Repeated for FLS Local Data Unit 5
F3BB ...Repeated for FLS Local Data Unit 5
F3BD ...Repeated for FLS Local Data Unit 5
F3C0 ...Repeated for FLS Local Data Unit 6
Fast Load Shed Controller (FLSC) Infeed Settings (Read/Write Setting)
F490 FLSC Infeed Maximum Power (32 items) 0 to 999999900 W 100 F060 100000000
F4D0 FLSC Infeed Percentage Reserve (32 items) 0 to 100 % 1 F001 0
F4F0 FLSC Infeed Reserve Method (32 items) 0 to 2 --- 1 F282 2
(Percentage/
Maximum)
F510 FLSC Infeed Initiate (32 items) 0 to 65535 --- 1 F001 0

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 157


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Address Description Range Units Step Format Default


Fast Load Shed Controller (FLSC) Load Group Settings (Read/Write Setting)
F530 FLSC Load Group ID (32 items) -- --- --- F202 (none)
F670 FLSC Load Group Priority (32 items) 0 to 128 --- 1 F001 0
Fast Load Shed Controller (FLSC) Scenario Settings (Read/Write Setting)
F690 FLSC Scenario ID (32 items) --- --- --- F202 (none)
F7D0 FLSC Scenario Operand (32 items) 0 to 65535 --- 1 F300 0
F7F0 FLSC Trip Mask (32 items) 0 to 4294967295 --- 1 F003 0
Fast Load Shed Controller (FLSC) Data Unit (DU) Substitute Override (Read/Write) (64 Modules)
F830 FLS DU 1 Substitute Power Override -999999900 to W 100 F060 0
999999900
F832 ...Repeated for FLS DU 2
F834 ...Repeated for FLS DU 3
F836 ...Repeated for FLS DU 4
F838 ...Repeated for FLS DU 5
F83A ...Repeated for FLS DU 6
F83C ...Repeated for FLS DU 7
F83E ...Repeated for FLS DU 8
F840 ...Repeated for FLS DU 9
F842 ...Repeated for FLS DU 10
F844 ...Repeated for FLS DU 11
F846 ...Repeated for FLS DU 12
F848 ...Repeated for FLS DU 13
F84A ...Repeated for FLS DU 14
F84C ...Repeated for FLS DU 15
F84E ...Repeated for FLS DU 16
F850 ...Repeated for FLS DU 17
F852 ...Repeated for FLS DU 18
F854 ...Repeated for FLS DU 19
F856 ...Repeated for FLS DU 20
F858 ...Repeated for FLS DU 21
F85A ...Repeated for FLS DU 22
F85C ...Repeated for FLS DU 23
F85E ...Repeated for FLS DU 24
F860 ...Repeated for FLS DU 25
F862 ...Repeated for FLS DU 26
F864 ...Repeated for FLS DU 27
F866 ...Repeated for FLS DU 28
F868 ...Repeated for FLS DU 29
F86A ...Repeated for FLS DU 30
F86C ...Repeated for FLS DU 31
F86E ...Repeated for FLS DU 32
F870 ...Repeated for FLS DU 33
F872 ...Repeated for FLS DU 34
F874 ...Repeated for FLS DU 35
F876 ...Repeated for FLS DU 36
F878 ...Repeated for FLS DU 37
F87A ...Repeated for FLS DU 38

158 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Address Description Range Units Step Format Default


F87C ...Repeated for FLS DU 39
F87E ...Repeated for FLS DU 40
F880 ...Repeated for FLS DU 41
F882 ...Repeated for FLS DU 42
F884 ...Repeated for FLS DU 43
F886 ...Repeated for FLS DU 44
F888 ...Repeated for FLS DU 45
F88A ...Repeated for FLS DU 46
F88C ...Repeated for FLS DU 47
F88E ...Repeated for FLS DU 48
F890 ...Repeated for FLS DU 49
F892 ...Repeated for FLS DU 50
F894 ...Repeated for FLS DU 51
F896 ...Repeated for FLS DU 52
F898 ...Repeated for FLS DU 53
F89A ...Repeated for FLS DU 54
F89C ...Repeated for FLS DU 55
F89E ...Repeated for FLS DU 56
F8A0 ...Repeated for FLS DU 57
F8A2 ...Repeated for FLS DU 58
F8A4 ...Repeated for FLS DU 59
F8A6 ...Repeated for FLS DU 60
F8A8 ...Repeated for FLS DU 61
F8AA ...Repeated for FLS DU 62
F8AC ...Repeated for FLS DU 63
F8AE ...Repeated for FLS DU 64
Fast Load Shed (FLS) Local Data Unit (LU) Substitute Override (Read/Write) (6 Modules)
F8B0 FLS LU 1 Substitute Power Override -999999900 to W 100 F060 0
999999900
F8B2 ...Repeated for FLS LU 2
F8B4 ...Repeated for FLS LU 3
F8B6 ...Repeated for FLS LU 4
F8B8 ...Repeated for FLS LU 5
F8BA ...Repeated for FLS LU 6
Fast Load Shed Controller (FLSC) Override Values (Read/Write)
F8BC FLS LG Priority Override (32 items) 0 to 128 --- 1 F001 0
F8DC FLS Scenario Trip Mask Override (32 items) 0 to 4294967295 --- 1 F003 0

Modbus data formats


This section outlines the data formats used in the Modbus memory map.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 159


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F001: UR_UINT16 (unsigned 16-bit integer)

F002: UR_SINT16 (signed 16-bit integer)

F003: UR_UINT32 (unsigned 32-bit integer, 2 registers)


The high order word is stored in the first register. The low order word is stored in the second
register.

F004: UR_SINT32 (signed 32-bit integer, 2 registers)


The high order word is stored in the first register. The low order word is stored in the second
register.

F010: Settings notification (16-bit enumeration)


This format code indicates the values for the settings notification command.
Enumeration Value
0 N_Clear
1 N_Loading
2 N_Notifying
3 N_Idle

F011: FlexCurve data (120 points) (UR_UINT16)


A FlexCurve is an array of 120 consecutive data points (x, y) that are interpolated to
generate a smooth curve. The y-axis is the user defined trip or operation time setting; the
x-axis is the pickup ratio and is pre-defined. See format F119 for a listing of the pickup
ratios; the enumeration value for the pickup ratio indicates the offset into the FlexCurve
base address where the corresponding time value is stored.

F012: Display scaling (unsigned 16-bit integer)


MSB indicates the SI units as a power of 10.
LSB indicates the number of decimal points to display.
Example: Current values are stored as 32 bit numbers with three decimal places and base
units in Amps. If the retrieved value is 12345.678 A and the display scale equals 0x0302
then the displayed value on the unit is 12.35 kA.

F013: Power factor metering (signed 16-bit integer)


Positive values indicate lagging power factor. Negative values indicate leading power
factor.

F050: Time and date (unsigned 32-bit integer)


Indicates the current time in seconds elapsed since 00:00:00 January 1, 1970.

F051: Date in SR format (alternate format for F050) (UR_UINT32)


First 16 bits are Month/Day (MM/DD/xxxx).
Month: 1=January, 2=February,...,12=December.
Day: 1 to 31 in steps of 1.
Last 16 bits are Year (xx/xx/YYYY): 1970 to 2106 in steps of 1.

F052: Time in SR format (alternate format for F050) (UR_UINT32)


First 16 bits are Hours/Minutes (HH:MM:xx.xxx).

160 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Hours: 0=12am, 1=1am,...,12=12pm,...23=11pm;


Minutes: 0 to 59 in steps of 1.
Last 16 bits are Seconds (xx:xx:.SS.SSS): 0=00.000s, 1=00.001,...,59999=59.999s).

F060: FLOATING_POINT (IEEE 32-bit floating point values)


Indicates 32-bit single precision floating point numbers in accordance to IEEE 754.

F072: HEX6 (six bytes - 12 ASCII digits)

F074: HEX20 (20 bytes - 40 ASCII digits)

F075: Recorder memory available (16-bit enumeration)


This format code indicates memory availability for reports.
Enumeration Value
0 Green
1 Yellow
2 Red

F076: Metering source (16-bit enumeration)


Enumeration Value
0 SRC 1
1 SRC 2
2 SRC 3
3 SRC 4

F078: SSOD slave device measurement quality (16-bit enumeration)


This format code indicates Small Signal Oscillation Detector quality.
Enumeration Value
0 Quality Bad
1 Quality Good

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 161


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F079: GGIO6 master device (16-bit enumeration)


Enumeration Value
0 None
1 Remote Device 1
↓ ↓
32 Remote Device 32

F080: Autoreclose 1P 3P mode (16-bit enumeration)


Enumeration Value
0 1 & 3 Pole
1 1 Pole
2 3 Pole - A
3 3 Pole - B

F081: Autoreclose 1P 3P breaker fail option (16-bit enumeration)


Enumeration Value
0 Continue
1 Lockout

F082: Autoreclose 1P 3P breaker sequence (16-bit enumeration)


Enumeration Value
0 1
1 2
2 1&2
3 1-2
4 2-1

F083: Selector step mode (16-bit enumeration)


This format code indicates selector step and bit modes.
Enumeration Value
0 Time-out
1 Acknowledge

F084: Selector power up (16-bit enumeration)


Enumeration Value
0 Restore
1 Synchronize
2 Sync/Restore

F086: SPS input default state (16-bit enumeration)


This format code indicates channel input state.
Enumeration Value
0 Off
1 On
2 Latest/Off
3 Latest/On

162 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F087: Remote double-point status input default states (16-bit enumeration)


Enumeration Value
0 Intermediate
1 Off
2 On
3 Bad
4 Latest

F088: Inter-relay application (16-bit enumeration)


Enumeration Value
0 None
1 Direct I/O
2
3 Teleprotection
4 Direct I/O redundant
5

F091: Data logger mode (16-bit enumeration)


Enumeration Value
0 Min
1 Max
2 Mean

F094: Trigger mode (16-bit enumeration)


Enumeration Value
0 Off
1 Trigger Only
2 Retrigger Only
3 Trigger/Retrigger

F095: Modbus file transfer state (16-bit enumeration)


Enumeration Value
0 Idle
1 Write
2 Read
3 File error
4 File OK
5 Start
6 Ready
7 File over

F096: Neutral overvoltage curve shape (16-bit enumeration)


Enumeration Value
0 Definite Time
1 FlexCurve A
2 FlexCurve B
3 FlexCurve C

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 163


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F097: CPU status (16-bit enumeration)


This format code indicates the state of the central processing module of the device.
Enumeration Value
0 Out of Service
1 In Test Mode
2 In Service

F100: VT connection type (16-bit enumeration)


Enumeration Value
0 Wye
1 Delta

F102: Enabled/disabled choice (16-bit enumeration)


This format code indicates the enabled or disabled value for relevant registers.
Enumeration Value
0 Disabled
1 Enabled

F103: Curve shapes (16-bit enumeration)


Enumeration Value
0 IEEE Mod Inv
1 IEEE Very Inv
2 IEEE Ext Inv
3 IEC Curve A
4 IEC Curve B
5 IEC Curve C
6 IEC Short Inv
7 IAC Ext Inv
8 IAC Very Inv
9 IAC Inv
10 IAC Short Inv
11 I Squared t
12 Definite Time
13 FlexCurve A
14 FlexCurve B
15 FlexCurve C
16 FlexCurve D

F104: Reset type (16-bit enumeration)


This format code indicates if reset is immediate or timed.
Enumeration Value
0 Instantaneous
1 Timed

164 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F106: Phase rotation (16-bit enumeration)


This format code indicates power system phase rotation.
Enumeration Value
0 ABC
1 ACB

F107: Select-before operate command (16-bit enumeration)


This format code indicates the values for the breaker and disconnect configuration
commands.
Enumeration Value
0 None
1 Select
2 Cancel
3 Bypass
4 On
5 Off
6 Close
7 Open
8 Tag
9 Untag
10 Substitution on
11 Substitution off
12 Substitution closed
13 Substitution opened
14 Local
15 Remote

F108: On/off selection (16-bit enumeration)


This format code indicates the on-off selection used in various commands and actual
values.
Enumeration Value
0 Off
1 On

F109: Disabled/latched/self-reset (16-bit enumeration)


This format code indicates pushbutton settings.
Enumeration Value
0 Disabled
1 Latched
2 Self-reset

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 165


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F111: Undervoltage curves (16-bit enumeration)


Enumeration Value
0 Definite Time
1 Inverse Time

F112: RS485 baud rate (16-bit enumeration)


Enumeration Value
0 300
1 600
2 1200
3 2400
4 4800
5 9600
6 19200
7 38400
8 57600
9 115200

F113: Parity (16-bit enumeration)


This format code indicates parity of the serial interface.
Enumeration Value
0 None
1 Odd
2 Even

F114: IRIG-B signal type (16-bit enumeration)


Enumeration Value
0 None
1 DC Shift
2 Amplitude Modulated

F118: Oscillography mode (16-bit enumeration)


Enumeration Value
0 Automatic Overwrite
1 Protected

F119: FlexCurve pickup ratios (16-bit enumeration)


This format code is used for format code F011.
Enumeration Value
0 0.00
1 0.05
2 0.10
3 0.15
4 0.20
5 0.25
6 0.30
7 0.35

166 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Value
8 0.40
9 0.45
10 0.48
11 0.50
12 0.52
13 0.54
14 0.56
15 0.58
16 0.60
17 0.62
18 0.64
19 0.66
20 0.68
21 0.70
22 0.72
23 0.74
24 0.76
25 0.78
26 0.80
27 0.82
28 0.84
29 0.86
30 0.88
31 0.90
32 0.91
33 0.92
34 0.93
35 0.94
36 0.95
37 0.96
38 0.97
39 0.98
40 1.03
41 1.05
42 1.10
43 1.20
44 1.30
45 1.40
46 1.50
47 1.60
48 1.70
49 1.80
50 1.90
51 2.00
52 2.10
53 2.20
54 2.30

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 167


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Value
55 2.40
56 2.50
57 2.60
58 2.70
59 2.80
60 2.90
61 3.00
62 3.10
63 3.20
64 3.30
65 3.40
66 3.50
67 3.60
68 3.70
69 3.80
70 3.90
71 4.00
72 4.10
73 4.20
74 4.30
75 4.40
76 4.50
77 4.60
78 4.70
79 4.80
80 4.90
81 5.00
82 5.10
83 5.20
84 5.30
85 5.40
86 5.50
87 5.60
88 5.70
89 5.80
90 5.90
91 6.00
92 6.50
93 7.00
94 7.50
95 8.00
96 8.50
97 9.00
98 9.50
99 10.00
100 10.50
101 11.00

168 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Value
102 11.50
103 12.00
104 12.50
105 13.00
106 13.50
107 14.00
108 14.50
109 15.00
110 15.50
111 16.00
112 16.50
113 17.00
114 17.50
115 18.00
116 18.50
117 19.00
118 19.50
119 20.00

F122: Element input signal type (16-bit enumeration)


Enumeration Value
0 Phasor
1 RMS

F123: CT secondary (16-bit enumeration)


Enumeration Value
0 1A
1 5A

F124: List of elements (16-bit enumeration)


This format code identifies the protection and control elements within the F502 bitfield.
Enumeration Element
0 Phase instantaneous overcurrent 1
1 Phase instantaneous overcurrent 2
2 Phase instantaneous overcurrent 3
3 Phase instantaneous overcurrent 4
16 Phase time overcurrent 1
17 Phase time overcurrent 2
18 Phase time overcurrent 3
19 Phase time overcurrent 4
24 Phase directional overcurrent 1
25 Phase directional overcurrent 2
32 Neutral instantaneous overcurrent 1
33 Neutral instantaneous overcurrent 2
34 Neutral instantaneous overcurrent 3
35 Neutral instantaneous overcurrent 4

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 169


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Element
48 Neutral time overcurrent 1
49 Neutral time overcurrent 2
50 Neutral time overcurrent 3
51 Neutral time overcurrent 4
56 Neutral directional overcurrent 1
57 Neutral directional overcurrent 2
60 Negative-sequence directional overcurrent 1
61 Negative-sequence directional overcurrent 2
64 Ground instantaneous overcurrent 1
65 Ground instantaneous overcurrent 2
66 Ground instantaneous overcurrent 3
67 Ground instantaneous overcurrent 4
80 Ground time overcurrent 1
81 Ground time overcurrent 2
82 Ground time overcurrent 3
83 Ground time overcurrent 4
96 Negative-sequence instantaneous overcurrent 1
97 Negative-sequence instantaneous overcurrent 2
112 Negative-sequence time overcurrent 1
113 Negative-sequence time overcurrent 2
120 Negative-sequence overvoltage
140 Auxiliary undervoltage 1
141 Auxiliary undervoltage 2
144 Phase undervoltage 1
145 Phase undervoltage 2
148 Auxiliary overvoltage 1
149 Auxiliary overvoltage 2
152 Phase overvoltage 1
153 Phase overvoltage 2
156 Neutral overvoltage 1
157 Neutral overvoltage 2
191 Battery monitor
224 Voltage transformer fuse failure (VTFF) 1
225 Voltage transformer fuse failure (VTFF) 2
226 Voltage transformer fuse failure (VTFF) 3
232 Source 1 disturbance detection (50DD)
233 Source 2 disturbance detection (50DD)
234 Source 3 disturbance detection (50DD)
272 Breaker control 1
273 Breaker control 2
274 Breaker control 3
275 Breaker control 4
276 Breaker control 5
277 Breaker control 6
280 Breaker failure 1
281 Breaker failure 2
288 Breaker arcing current 1

170 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Element
289 Breaker arcing current 2
294 Breaker flashover 1
295 Breaker flashover 2
312 Synchrocheck 1
313 Synchrocheck 2
336 Setting group
337 Reset
376 Autoreclose
385 Selector switch 1
386 Selector switch 2
400 FlexElement™ 1
401 FlexElement 2
402 FlexElement 3
403 FlexElement 4
404 FlexElement 5
405 FlexElement 6
406 FlexElement 7
407 FlexElement 8
420 Non-volatile latch 1
421 Non-volatile latch 2
422 Non-volatile latch 3
423 Non-volatile latch 4
424 Non-volatile latch 5
425 Non-volatile latch 6
426 Non-volatile latch 7
427 Non-volatile latch 8
428 Non-volatile latch 9
429 Non-volatile latch 10
430 Non-volatile latch 11
431 Non-volatile latch 12
432 Non-volatile latch 13
433 Non-volatile latch 14
434 Non-volatile latch 15
435 Non-volatile latch 16
496 Frequency rate of change load shedding 1
497 Frequency rate of change load shedding 2
498 Frequency rate of change load shedding 3
499 Frequency rate of change load shedding 4
512 Undervoltage load shedding 1
513 Undervoltage load shedding 2
514 Undervoltage load shedding 3
515 Undervoltage load shedding 4
516 Undervoltage load shedding 5
517 Undervoltage load shedding 6
520 Underfrequency load shedding 1
521 Underfrequency load shedding 2
522 Underfrequency load shedding 3

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 171


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Element
523 Underfrequency load shedding 4
524 Underfrequency load shedding 5
525 Underfrequency load shedding 6
526 Underfrequency load shedding 7
527 Underfrequency load shedding 8
528 Underfrequency load shedding 9
529 Underfrequency load shedding 10
544 Digital counter 1
545 Digital counter 2
546 Digital counter 3
547 Digital counter 4
548 Digital counter 5
549 Digital counter 6
550 Digital counter 7
551 Digital counter 8
680 FlexMatrix™ 1
681 FlexMatrix 2
682 FlexMatrix 3
683 FlexMatrix 4
684 FlexMatrix 5
685 FlexMatrix 6
686 FlexMatrix 7
687 FlexMatrix 8
699 Any pushbutton on
700 User-programmable pushbutton 1
701 User-programmable pushbutton 2
702 User-programmable pushbutton 3
703 User-programmable pushbutton 4
704 User-programmable pushbutton 5
705 User-programmable pushbutton 6
706 User-programmable pushbutton 7
707 User-programmable pushbutton 8
708 User-programmable pushbutton 9
709 User-programmable pushbutton 10
710 User-programmable pushbutton 11
711 User-programmable pushbutton 12
712 User-programmable pushbutton 13
713 User-programmable pushbutton 14
714 User-programmable pushbutton 15
715 User-programmable pushbutton 16
716 User-programmable pushbutton 17
717 User-programmable pushbutton 18
718 User-programmable pushbutton 19
719 User-programmable pushbutton 20
750 Disconnect configuration 1
751 Disconnect configuration 2
752 Disconnect configuration 3

172 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Element
753 Disconnect configuration 4
754 Disconnect configuration 5
755 Disconnect configuration 6
756 Disconnect configuration 7
757 Disconnect configuration 8
758 Disconnect configuration 9
759 Disconnect configuration 10
760 Disconnect configuration 11
761 Disconnect configuration 12
762 Disconnect configuration 13
763 Disconnect configuration 14
764 Disconnect configuration 15
765 Disconnect configuration 16
766 Disconnect configuration 17
767 Disconnect configuration 18
768 Disconnect configuration 19
769 Disconnect configuration 20
770 Disconnect configuration 21
771 Disconnect configuration 22
772 Disconnect configuration 23
773 Disconnect configuration 24
774 Disconnect configuration 25
775 Disconnect configuration 26
776 Disconnect configuration 27
777 Disconnect configuration 28
778 Disconnect configuration 29
779 Disconnect configuration 30
780 Disconnect control 1
781 Disconnect control 2
782 Disconnect control 3
783 Disconnect control 4
784 Disconnect control 5
785 Disconnect control 6
786 Disconnect control 7
787 Disconnect control 8
788 Disconnect control 9
789 Disconnect control 10
790 Disconnect control 11
791 Disconnect control 12
792 Disconnect control 13
793 Disconnect control 14
794 Disconnect control 15
795 Disconnect control 16
796 Disconnect control 17
797 Disconnect control 18
798 Disconnect control 19
799 Disconnect control 20

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 173


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Element
800 Disconnect control 21
801 Disconnect control 22
802 Disconnect control 23
803 Disconnect control 24
804 Disconnect control 25
805 Disconnect control 26
806 Disconnect control 27
807 Disconnect control 28
808 Disconnect control 29
809 Disconnect control 30

F126: Yes/No selection (16-bit enumeration)


This format code indicates the on-off selection used in various commands and actual
values.
Enumeration Value
0 No
1 Yes

F127: Latched or self-resetting (16-bit enumeration)


Enumeration Value
0 Latched
1 Self-Reset

F131: Forced contact output state (16-bit enumeration)


Enumeration Value
0 Normal
1 Energized
2 De-energized
3 Freeze

F133: Program state (16-bit enumeration)


This format code indicates if the device in online or offline. The device needs to be in the
Programmed state to function, else error messages display.
Enumeration Value
0 Not Programmed
1 Programmed

174 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F134: Settings notification status (16-bit enumeration)


Enumeration Value
0 N/A
1 OK
2 Fail

F144: Forced contact input state (16-bit enumeration)


Enumeration Value
0 Normal
1 Open
2 Closed

F147: Line length units (16-bit enumeration)


Enumeration Value
0 km
1 miles

F148: Fault type (16-bit enumeration)


This format code indicates the fault locator fault type value.
Enumeration Value
0 Not available
1 Phase A to ground fault (A-G)
2 Phase B to ground fault (B-G)
3 Phase C to ground fault (C-G)
4 Phase A to B fault (A-B)
5 Phase B to C fault (B-C)
6 Phase C to A fault (C-A)
7 Phase A to B to ground fault (A-B-G)
8 Phase B to C to ground fault (B-C-G)
9 Phase C to A to ground fault (C-A-G)
10 Phase A to B to C fault (A-B-C)
11 Phase A to B to C to ground fault (A-B-C-G)

F150: Inter-relay protocol encoding (16-bit enumeration)


This format code indicates the clock.
Enumeration Value
0 Default
1 G.703 Octet Internal Clock
2 G.703 Octet External Clock
3 G.703 Internal Clock
4 G.703 External Clock
5 Diff. Manchester
6 C37.94 Internal Clock
7 C37.94 External Clock

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 175


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F155: Ethernet link status (16-bit enumeration)


Enumeration Value
0 Offline
1 Online

F156: Remote input dataset items (16-bit enumeration)


Enumeration Value
0 None
1 DNA-1
↓ ↓
32 DNA-32
33 UserSt-1
34 UserSt-2
35 UserSt-3
36 UserSt-4
37 UserSt-5
38 UserSt-6
39 UserSt-7
40 UserSt-8
41 UserSt-9
42 UserSt-10
43 UserSt-11
44 UserSt-12
45 UserSt-13
46 UserSt-14
47 UserSt-15
48 UserSt-16
49 UserSt-17
50 UserSt-18
51 UserSt-19
52 UserSt-20
53 UserSt-21
54 UserSt-22
55 UserSt-23
56 UserSt-24
57 UserSt-25
58 UserSt-26
59 UserSt-27
60 UserSt-28
61 UserSt-29
62 UserSt-30
63 UserSt-31
64 UserSt-32
65 Dataset Item 1
↓ ↓
128 Dataset Item 64

176 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F157: Pole indication mode (16-bit enumeration)


Enumeration Value
0 3-Pole
1 1-Pole

F158: Remote DPS input dataset items (16-bit enumeration)


Enumeration Value
0 None
1 Dataset Item 1
↓ ↓
64 Dataset Item 64

F166: Auxiliary VT connect type (16-bit enumeration)


Enumeration Value
0 Vn
1 Vag
2 Vbg
3 Vcg
4 Vab
5 Vbc
6 Vca

F167: Signal source (16-bit enumeration)


Enumeration Value
0 SRC 1
1 SRC 2
2 SRC 3
3 SRC 4
4 SRC 5
5 SRC 6

F170: Ethernet speed (16-bit enumeration)


Enumeration Value
0 10 Mbps
1 100 Mbps

F171: Ethernet duplex mode (16-bit enumeration)


Enumeration Value
0 Half duplex
1 Full duplex

F172: Redundancy and PRP (16-bit enumeration)


This format code indicates the status of any Ethernet redundancy setting.
Enumeration Value
0 Single IP
1 Dual IP
2 PRP

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 177


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F173: Network IP update status (16-bit enumeration)


This format code indicates port status.
Enumeration Value
0 OK
1 PORT 1 NETMASK ERROR
2 PORT 2 NETMASK ERROR
3 PORT 3 NETMASK ERROR
4 PORT 1 IP ADDR RSVD
5 PORT 2 IP ADDR RSVD
6 PORT 3 IP ADDR RSVD
7 PORT 1 IP ADDR LPBK
8 PORT 2 IP ADDR LPBK
9 PORT 3 IP ADDR LPBK
10 PORT 1 IP ADDR NETWK
11 PORT 2 IP ADDR NETWK
12 PORT 3 IP ADDR NETWK
13 PORT 1 IP ADDR BDCST
14 PORT 2 IP ADDR BDCST
15 PORT 3 IP ADDR BDCST
16 PRT 1-2 SUBNET OVRLP
17 PRT 1-3 SUBNET OVRLP
18 PRT 2-3 SUBNET OVRLP
19 >1 GATEWAY DEFINED

178 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F174: Communication port without UDP (16-bit enumeration)


Enumeration Value
0 None
1 COM1 - RS485
2 Network - TCP

F176: Synchrocheck dead source select (16-bit enumeration)


Enumeration Value
0 None
1 LV1 and DV2
2 DV1 and LV2
3 DV1 or DV2
4 DV1 Xor DV2
5 DV1 and DV2

F177: Communication port with UDP (16-bit enumeration)


Enumeration Value
0 None
1 COM1 - RS485
2 Network - TCP
3 Network - UDP

F179: Negative sequence directional overcurrent type (16-bit enumeration)


Enumeration Value
0 Negative sequence
1 Zero sequence

F183: AC input waveform sample rate (16-bit enumeration)


Enumeration Value
0 Off
1 16 samples/cycle
2 32 samples/cycle
3 64 samples/cycle
4 128 samples/cycle
5 256 samples/cycle

F184: IEC 61850 dataset (16-bit enumeration)


Enumeration Value
0 Fixed
1 GOOSEIn 1
2 GOOSEIn 2
3 GOOSEIn 3
4 GOOSEIn 4
5 GOOSEIn 5
6 GOOSEIn 6
7 GOOSEIn 7
8 GOOSEIn 8

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 179


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F186: Measurement mode (16-bit enumeration)


This format code indicates undervoltage measurement mode.
Enumeration Value
0 Phase to Ground
1 Phase to Phase

180 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F192: Ethernet operation mode (16-bit enumeration)


Enumeration Value
0 10/100 BASE-TX
1 100 BASE-FX
2 Auto

F194: DNP scale factor (16-bit enumeration)


Enumeration Value
0 0.01
1 0.1
2 1
3 10
4 100
5 1000
6 10000
7 100000
8 0.001

F196: Neutral directional overcurrent operate current (16-bit enumeration)


Enumeration Value
0 Calculated 3I0
1 Measured IG

F197: DNP binary input point block (16-bit enumeration)


Enumeration Value
0 Not used
1 Virtual Ins 1-16
2 Virtual Ins 17-32
3 Virtual Outs 1-16
4 Virtual Outs 17-32
5 Virtual Outs 33-48
6 Virtual Outs 49-64
7 Contact Ins 1-16
8 Contact Ins 17-32
9 Contact Ins 33-48
10 Contact Ins 49-64
11 Contact Ins 65-80
12 Contact Ins 81-96
13 Contact Outs 1-16
14 Contact Outs 17-32
15 Contact Outs 33-48
16 Contact Outs 49-64
17 Remote Ins 1-16
18 Remote Ins 17-32
19 Remote Devs 1-16
20 Elements 1-16
21 Elements 17-32

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 181


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Value
22 Elements 33-48
23 Elements 49-64
24 Elements 65-80
25 Elements 81-96
26 Elements 97-112
27 Elements 113-128
28 Elements 129-144
29 Elements 145-160
30 Elements 161-176
31 Elements 177-192
32 Elements 193-208
33 Elements 209-224
34 Elements 225-240
35 Elements 241-256
36 Elements 257-272
37 Elements 273-288
38 Elements 289-304
39 Elements 305-320
40 Elements 321-336
41 Elements 337-352
42 Elements 353-368
43 Elements 369-384
44 Elements 385-400
45 Elements 401-416
46 Elements 417-432
47 Elements 433-448
48 Elements 449-464
49 Elements 465-480
50 Elements 481-496
51 Elements 497-512
52 Elements 513-528
53 Elements 529-544
54 Elements 545-560
55 Self Tests 1-16
56 Self Tests 17-32

F202: TEXT20 (20-character ASCII text)


10 registers, 16 bits, first character most significant bit (MSB), second character least
significant bit (LSB).

182 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F203: TEXT16 (16-character ASCII text)

F204: TEXT80 (80-character ASCII text)

F205: TEXT12 (12-character ASCII text)

F206: TEXT6 (6-character ASCII text)

F207: TEXT4 (4-character ASCII text)

F209: TEXT65 (65-character ASCII text)

F211: Source Selection (16-bit enumeration)


This format code indicates signal source.
Enumeration Value
0 None
1 SRC 1
2 SRC 2
3 SRC 3
4 SRC 4
5 SRC 5
6 SRC 6

F213: TEXT32 (32-character ASCII text)

F215: TEXT8 (eight-character ASCII text)

F221: IEC 61850 GOOSE retransmission profiles (16-bit enumeration)


Enumeration Value
0 NONE
1 AGGRESSIVE
2 STANDARD
3 RELAXED

F223: Setting control access type (16-bit enumeration)


This format code indicates local or remote connection.
Enumeration Value
0 Local
1 Remote

F230: Directional polarizing (16-bit enumeration)


This format code indicates over/undercurrent directional polarizing.
Enumeration Value
0 Voltage
1 Current
2 Dual

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 183


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F231: Polarizing voltage (16-bit enumeration)


This format code indicates over/undercurrent directional polarizing voltage.
Enumeration Value
0 Calculated V0
1 Measured VX

F232: IEC 61850 GOOSE Tx Dataset items (16-bit enumeration)


This format code indicates the IEC 68150 Tx items.
Enumeration Value
0 None
1 GGIO1.ST.Ind1.q
2 GGIO1.ST.Ind1.stVal
3 GGIO1.ST.Ind2.q
4 GGIO1.ST.Ind2.stVal
↓ ↓
255 GGIO1.ST.Ind128.q
256 GGIO1.ST.Ind128.stVal
257 MMXU1.MX.TotW.mag.f
258 MMXU1.MX.TotVAr.mag.f
259 MMXU1.MX.TotVA.mag.f
260 MMXU1.MX.TotPF.mag.f
261 MMXU1.MX.Hz.mag.f
262 MMXU1.MX.PPV.phsAB.cVal.mag.f
263 MMXU1.MX.PPV.phsAB.cVal.ang.f
264 MMXU1.MX.PPV.phsBC.cVal.mag.f
265 MMXU1.MX.PPV.phsBC.cVal.ang.f
266 MMXU1.MX.PPV.phsCA.cVal.mag.f
267 MMXU1.MX.PPV.phsCA.cVal.ang.f
268 MMXU1.MX.PhV.phsA.cVal.mag.f
269 MMXU1.MX.PhV.phsA.cVal.ang.f
270 MMXU1.MX.PhV.phsB.cVal.mag.f
271 MMXU1.MX.PhV.phsB.cVal.ang.f
272 MMXU1.MX.PhV.phsC.cVal.mag.f
273 MMXU1.MX.PhV.phsC.cVal.ang.f
274 MMXU1.MX.A.phsA.cVal.mag.f
275 MMXU1.MX.A.phsA.cVal.ang.f
276 MMXU1.MX.A.phsB.cVal.mag.f
277 MMXU1.MX.A.phsB.cVal.ang.f
278 MMXU1.MX.A.phsC.cVal.mag.f
279 MMXU1.MX.A.phsC.cVal.ang.f
280 MMXU1.MX.A.neut.cVal.mag.f
281 MMXU1.MX.A.neut.cVal.ang.f
282 MMXU1.MX.W.phsA.cVal.mag.f
283 MMXU1.MX.W.phsB.cVal.mag.f
284 MMXU1.MX.W.phsC.cVal.mag.f
285 MMXU1.MX.VAr.phsA.cVal.mag.f
286 MMXU1.MX.VAr.phsB.cVal.mag.f

184 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Value
287 MMXU1.MX.VAr.phsC.cVal.mag.f
288 MMXU1.MX.VA.phsA.cVal.mag.f
289 MMXU1.MX.VA.phsB.cVal.mag.f
290 MMXU1.MX.VA.phsC.cVal.mag.f
291 MMXU1.MX.PF.phsA.cVal.mag.f
292 MMXU1.MX.PF.phsB.cVal.mag.f
293 MMXU1.MX.PF.phsC.cVal.mag.f
294 MMXU2.MX.TotW.mag.f
295 MMXU2.MX.TotVAr.mag.f
296 MMXU2.MX.TotVA.mag.f
297 MMXU2.MX.TotPF.mag.f
298 MMXU2.MX.Hz.mag.f
299 MMXU2.MX.PPV.phsAB.cVal.mag.f
300 MMXU2.MX.PPV.phsAB.cVal.ang.f
301 MMXU2.MX.PPV.phsBC.cVal.mag.f
302 MMXU2.MX.PPV.phsBC.cVal.ang.f
303 MMXU2.MX.PPV.phsCA.cVal.mag.f
304 MMXU2.MX.PPV.phsCA.cVal.ang.f
305 MMXU2.MX.PhV.phsA.cVal.mag.f
306 MMXU2.MX.PhV.phsA.cVal.ang.f
307 MMXU2.MX.PhV.phsB.cVal.mag.f
308 MMXU2.MX.PhV.phsB.cVal.ang.f
309 MMXU2.MX.PhV.phsC.cVal.mag.f
310 MMXU2.MX.PhV.phsC.cVal.ang.f
311 MMXU2.MX.A.phsA.cVal.mag.f
312 MMXU2.MX.A.phsA.cVal.ang.f
313 MMXU2.MX.A.phsB.cVal.mag.f
314 MMXU2.MX.A.phsB.cVal.ang.f
315 MMXU2.MX.A.phsC.cVal.mag.f
316 MMXU2.MX.A.phsC.cVal.ang.f
317 MMXU2.MX.A.neut.cVal.mag.f
318 MMXU2.MX.A.neut.cVal.ang.f
319 MMXU2.MX.W.phsA.cVal.mag.f
320 MMXU2.MX.W.phsB.cVal.mag.f
321 MMXU2.MX.W.phsC.cVal.mag.f
322 MMXU2.MX.VAr.phsA.cVal.mag.f
323 MMXU2.MX.VAr.phsB.cVal.mag.f
324 MMXU2.MX.VAr.phsC.cVal.mag.f
325 MMXU2.MX.VA.phsA.cVal.mag.f
326 MMXU2.MX.VA.phsB.cVal.mag.f
327 MMXU2.MX.VA.phsC.cVal.mag.f
328 MMXU2.MX.PF.phsA.cVal.mag.f
329 MMXU2.MX.PF.phsB.cVal.mag.f
330 MMXU2.MX.PF.phsC.cVal.mag.f
331 MMXU3.MX.TotW.mag.f
332 MMXU3.MX.TotVAr.mag.f
333 MMXU3.MX.TotVA.mag.f

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 185


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Value
334 MMXU3.MX.TotPF.mag.f
335 MMXU3.MX.Hz.mag.f
336 MMXU3.MX.PPV.phsAB.cVal.mag.f
337 MMXU3.MX.PPV.phsAB.cVal.ang.f
338 MMXU3.MX.PPV.phsBC.cVal.mag.f
339 MMXU3.MX.PPV.phsBC.cVal.ang.f
340 MMXU3.MX.PPV.phsCA.cVal.mag.f
341 MMXU3.MX.PPV.phsCA.cVal.ang.f
342 MMXU3.MX.PhV.phsA.cVal.mag.f
343 MMXU3.MX.PhV.phsA.cVal.ang.f
344 MMXU3.MX.PhV.phsB.cVal.mag.f
345 MMXU3.MX.PhV.phsB.cVal.ang.f
346 MMXU3.MX.PhV.phsC.cVal.mag.f
347 MMXU3.MX.PhV.phsC.cVal.ang.f
348 MMXU3.MX.A.phsA.cVal.mag.f
349 MMXU3.MX.A.phsA.cVal.ang.f
350 MMXU3.MX.A.phsB.cVal.mag.f
351 MMXU3.MX.A.phsB.cVal.ang.f
352 MMXU3.MX.A.phsC.cVal.mag.f
353 MMXU3.MX.A.phsC.cVal.ang.f
354 MMXU3.MX.A.neut.cVal.mag.f
355 MMXU3.MX.A.neut.cVal.ang.f
356 MMXU3.MX.W.phsA.cVal.mag.f
357 MMXU3.MX.W.phsB.cVal.mag.f
358 MMXU3.MX.W.phsC.cVal.mag.f
359 MMXU3.MX.VAr.phsA.cVal.mag.f
360 MMXU3.MX.VAr.phsB.cVal.mag.f
361 MMXU3.MX.VAr.phsC.cVal.mag.f
362 MMXU3.MX.VA.phsA.cVal.mag.f
363 MMXU3.MX.VA.phsB.cVal.mag.f
364 MMXU3.MX.VA.phsC.cVal.mag.f
365 MMXU3.MX.PF.phsA.cVal.mag.f
366 MMXU3.MX.PF.phsB.cVal.mag.f
367 MMXU3.MX.PF.phsC.cVal.mag.f
368 MMXU4.MX.TotW.mag.f
369 MMXU4.MX.TotVAr.mag.f
370 MMXU4.MX.TotVA.mag.f
371 MMXU4.MX.TotPF.mag.f
372 MMXU4.MX.Hz.mag.f
373 MMXU4.MX.PPV.phsAB.cVal.mag.f
374 MMXU4.MX.PPV.phsAB.cVal.ang.f
375 MMXU4.MX.PPV.phsBC.cVal.mag.f
376 MMXU4.MX.PPV.phsBC.cVal.ang.f
377 MMXU4.MX.PPV.phsCA.cVal.mag.f
378 MMXU4.MX.PPV.phsCA.cVal.ang.f
379 MMXU4.MX.PhV.phsA.cVal.mag.f
380 MMXU4.MX.PhV.phsA.cVal.ang.f

186 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Value
381 MMXU4.MX.PhV.phsB.cVal.mag.f
382 MMXU4.MX.PhV.phsB.cVal.ang.f
383 MMXU4.MX.PhV.phsC.cVal.mag.f
384 MMXU4.MX.PhV.phsC.cVal.ang.f
385 MMXU4.MX.A.phsA.cVal.mag.f
386 MMXU4.MX.A.phsA.cVal.ang.f
387 MMXU4.MX.A.phsB.cVal.mag.f
388 MMXU4.MX.A.phsB.cVal.ang.f
389 MMXU4.MX.A.phsC.cVal.mag.f
390 MMXU4.MX.A.phsC.cVal.ang.f
391 MMXU4.MX.A.neut.cVal.mag.f
392 MMXU4.MX.A.neut.cVal.ang.f
393 MMXU4.MX.W.phsA.cVal.mag.f
394 MMXU4.MX.W.phsB.cVal.mag.f
395 MMXU4.MX.W.phsC.cVal.mag.f
396 MMXU4.MX.VAr.phsA.cVal.mag.f
397 MMXU4.MX.VAr.phsB.cVal.mag.f
398 MMXU4.MX.VAr.phsC.cVal.mag.f
399 MMXU4.MX.VA.phsA.cVal.mag.f
400 MMXU4.MX.VA.phsB.cVal.mag.f
401 MMXU4.MX.VA.phsC.cVal.mag.f
402 MMXU4.MX.PF.phsA.cVal.mag.f
403 MMXU4.MX.PF.phsB.cVal.mag.f
404 MMXU4.MX.PF.phsC.cVal.mag.f
405 MMXU5.MX.TotW.mag.f
406 MMXU5.MX.TotVAr.mag.f
407 MMXU5.MX.TotVA.mag.f
408 MMXU5.MX.TotPF.mag.f
409 MMXU5.MX.Hz.mag.f
410 MMXU5.MX.PPV.phsAB.cVal.mag.f
411 MMXU5.MX.PPV.phsAB.cVal.ang.f
412 MMXU5.MX.PPV.phsBC.cVal.mag.f
413 MMXU5.MX.PPV.phsBC.cVal.ang.f
414 MMXU5.MX.PPV.phsCA.cVal.mag.f
415 MMXU5.MX.PPV.phsCA.cVal.ang.f
416 MMXU5.MX.PhV.phsA.cVal.mag.f
417 MMXU5.MX.PhV.phsA.cVal.ang.f
418 MMXU5.MX.PhV.phsB.cVal.mag.f
419 MMXU5.MX.PhV.phsB.cVal.ang.f
420 MMXU5.MX.PhV.phsC.cVal.mag.f
421 MMXU5.MX.PhV.phsC.cVal.ang.f
422 MMXU5.MX.A.phsA.cVal.mag.f
423 MMXU5.MX.A.phsA.cVal.ang.f
424 MMXU5.MX.A.phsB.cVal.mag.f
425 MMXU5.MX.A.phsB.cVal.ang.f
426 MMXU5.MX.A.phsC.cVal.mag.f
427 MMXU5.MX.A.phsC.cVal.ang.f

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 187


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

Enumeration Value
428 MMXU5.MX.A.neut.cVal.mag.f
429 MMXU5.MX.A.neut.cVal.ang.f
430 MMXU5.MX.W.phsA.cVal.mag.f
431 MMXU5.MX.W.phsB.cVal.mag.f
432 MMXU5.MX.W.phsC.cVal.mag.f
433 MMXU5.MX.VAr.phsA.cVal.mag.f
434 MMXU5.MX.VAr.phsB.cVal.mag.f
435 MMXU5.MX.VAr.phsC.cVal.mag.f
436 MMXU5.MX.VA.phsA.cVal.mag.f
437 MMXU5.MX.VA.phsB.cVal.mag.f
438 MMXU5.MX.VA.phsC.cVal.mag.f
439 MMXU5.MX.PF.phsA.cVal.mag.f
440 MMXU5.MX.PF.phsB.cVal.mag.f
441 MMXU5.MX.PF.phsC.cVal.mag.f
442 MMXU6.MX.TotW.mag.f
443 MMXU6.MX.TotVAr.mag.f
444 MMXU6.MX.TotVA.mag.f
445 MMXU6.MX.TotPF.mag.f
446 MMXU6.MX.Hz.mag.f
447 MMXU6.MX.PPV.phsAB.cVal.mag.f
448 MMXU6.MX.PPV.phsAB.cVal.ang.f
449 MMXU6.MX.PPV.phsBC.cVal.mag.f
450 MMXU6.MX.PPV.phsBC.cVal.ang.f
451 MMXU6.MX.PPV.phsCA.cVal.mag.f
452 MMXU6.MX.PPV.phsCA.cVal.ang.f
453 MMXU6.MX.PhV.phsA.cVal.mag.f
454 MMXU6.MX.PhV.phsA.cVal.ang.f
455 MMXU6.MX.PhV.phsB.cVal.mag.f
456 MMXU6.MX.PhV.phsB.cVal.ang.f
457 MMXU6.MX.PhV.phsC.cVal.mag.f
458 MMXU6.MX.PhV.phsC.cVal.ang.f
459 MMXU6.MX.A.phsA.cVal.mag.f
460 MMXU6.MX.A.phsA.cVal.ang.f
461 MMXU6.MX.A.phsB.cVal.mag.f
462 MMXU6.MX.A.phsB.cVal.ang.f
463 MMXU6.MX.A.phsC.cVal.mag.f
464 MMXU6.MX.A.phsC.cVal.ang.f
465 MMXU6.MX.A.neut.cVal.mag.f
466 MMXU6.MX.A.neut.cVal.ang.f
467 MMXU6.MX.W.phsA.cVal.mag.f
468 MMXU6.MX.W.phsB.cVal.mag.f
469 MMXU6.MX.W.phsC.cVal.mag.f
470 MMXU6.MX.VAr.phsA.cVal.mag.f
471 MMXU6.MX.VAr.phsB.cVal.mag.f
472 MMXU6.MX.VAr.phsC.cVal.mag.f
473 MMXU6.MX.VA.phsA.cVal.mag.f
474 MMXU6.MX.VA.phsB.cVal.mag.f

188 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Value
475 MMXU6.MX.VA.phsC.cVal.mag.f
476 MMXU6.MX.PF.phsA.cVal.mag.f
477 MMXU6.MX.PF.phsB.cVal.mag.f
478 MMXU6.MX.PF.phsC.cVal.mag.f
479 GGIO4.MX.AnIn1.mag.f
480 GGIO4.MX.AnIn2.mag.f
481 GGIO4.MX.AnIn3.mag.f
482 GGIO4.MX.AnIn4.mag.f
483 GGIO4.MX.AnIn5.mag.f
484 GGIO4.MX.AnIn6.mag.f
485 GGIO4.MX.AnIn7.mag.f
486 GGIO4.MX.AnIn8.mag.f
487 GGIO4.MX.AnIn9.mag.f
488 GGIO4.MX.AnIn10.mag.f
489 GGIO4.MX.AnIn11.mag.f
490 GGIO4.MX.AnIn12.mag.f
491 GGIO4.MX.AnIn13.mag.f
492 GGIO4.MX.AnIn14.mag.f
493 GGIO4.MX.AnIn15.mag.f
494 GGIO4.MX.AnIn16.mag.f
495 GGIO4.MX.AnIn17.mag.f
496 GGIO4.MX.AnIn18.mag.f
497 GGIO4.MX.AnIn19.mag.f
498 GGIO4.MX.AnIn20.mag.f
499 GGIO4.MX.AnIn21.mag.f
500 GGIO4.MX.AnIn22.mag.f
501 GGIO4.MX.AnIn23.mag.f
502 GGIO4.MX.AnIn24.mag.f
503 GGIO4.MX.AnIn25.mag.f
504 GGIO4.MX.AnIn26.mag.f
505 GGIO4.MX.AnIn27.mag.f
506 GGIO4.MX.AnIn28.mag.f
507 GGIO4.MX.AnIn29.mag.f
508 GGIO4.MX.AnIn30.mag.f
509 GGIO4.MX.AnIn31.mag.f
510 GGIO4.MX.AnIn32.mag.f
511 GGIO6.MX.AnIn1.mag.f
512 GGIO6.MX.AnIn2.mag.f
513 GGIO6.MX.AnIn3.mag.f
514 GGIO6.MX.AnIn4.mag.f
515 GGIO6.ST.Ind1.stVal
516 GGIO6.ST.Ind2.stVal

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 189


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F233: IEC 61850 GOOSE Rx Dataset items (16-bit enumeration)


This format code indicates the IEC 68150 Rx items.
Enumeration Value
0 None
1 GGIO3.ST.Ind1.q
2 GGIO3.ST.Ind1.stVal
3 GGIO3.ST.Ind2.q
4 GGIO3.ST.Ind2.stVal
↓ ↓
127 GGIO3.ST.Ind64q
128 GGIO3.ST.Ind64.stVal
129 GGIO3.ST.IndPos1.q
130 GGIO3.ST.IndPos1.stVal
131 GGIO3.ST.IndPos2.q
132 GGIO3.ST.IndPos2.stVal
↓ ↓
159 GGIO3.ST.IndPos16.q
160 GGIO3.ST.IndPos16.stVal
161 GGIO3.MX.AnIn1.mag.f
162 GGIO3.MX.AnIn2.mag.f
↓ ↓
288 GGIO3.MX.AnIn128.mag.f

F237: Daylight savings time months (16-bit enumeration)


This format code indicates the months of the year for starting and stopping daylight
savings time.
Enumeration Value
0 January
1 February
2 March
3 April
4 May
5 June
6 July
7 August
8 September
9 October
10 November
11 December

F238: Daylight savings time days (16-bit enumeration)


This format code indicates the days of the week to start and stop daylight savings time.
Enumeration Value
0 Sunday
1 Monday
2 Tuesday
3 Wednesday

190 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

Enumeration Value
4 Thursday
5 Friday
6 Saturday

F239: Daylight savings time day instance (16-bit enumeration)


This format code indicates the week for the day to start and stop daylight savings time.
Enumeration Value
0 First
1 Second
2 Third
3 Fourth
4 Last

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 191


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F270: Fault report VT substitution (16-bit enumeration)


Enumeration Value
0 None
1 I0
2 V0

F280: Fast load shed (FLS) calculation mode (16-bit enumeration)


Enumeration Value
0 Adaptive
1 Static
2 Aggregator

F281: Fast load shed (FLS) data unit type (16-bit enumeration)
Enumeration Value
0 Disabled
1 Infeed 1
↓ ↓
32 Infeed 32
33 Load Group 1
↓ ↓
64 Load Group 32
65 Aggregator

F282: Fast load shed (FLS) reserve method (16-bit enumeration)


Enumeration Value
0 Maximum
1 Percentage
65 Percentage/Maximum

F491: Direct analog default mode (16-bit enumeration)


This format code indicates input default mode.
Enumeration Value
0 Default Value
1 Last Known

F300: FlexLogic BASE type (6-bit type)


The FlexLogic BASE type is 6 bits and is combined with a 9-bit descriptor and 1 bit for
protection element to form a 16-bit value. The combined bits are of the form:
PTTTTTTTDDDDDDDD, where P bit if set, indicates that the FlexLogic type is associated
with a protection element state and T represents bits for the BASE type, and D represents
bits for the descriptor.
The values in square brackets indicate the base type with P prefix [PTTTTTTT] and the
values in round brackets indicate the descriptor range.

192 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

[0] Off (0) – This is boolean FALSE value


[1] On (1) – This is boolean TRUE value
[2] CONTACT INPUTS (1 to 96)
[3] CONTACT INPUTS OFF (1 to 96)
[4] VIRTUAL INPUTS (1 to 32)
[6] VIRTUAL OUTPUTS (1 to 64
[8] CONTACT OUTPUTS
[10] CONTACT OUTPUTS VOLTAGE DETECTED (1 to 64)
[11] CONTACT OUTPUTS VOLTAGE OFF DETECTED (1 to 64)
[12] CONTACT OUTPUTS CURRENT DETECTED (1 to 64)
[13] CONTACT OUTPUTS CURRENT OFF DETECTED (1 to 64)
[14] REMOTE INPUTS (1 to 32)
[16] DIRECT INPUTS (1 to 96)
[18] REMOTE OUTPUT DNA BIT PAIRS (1 to 32)
[20] REMOTE OUTPUT UserSt BIT PAIRS (1 to 32)
[22] REMOTE DEVICE ONLINE (1 to 16)
[24] MISCELLANEOUS EQUATION
[26] TELEPROTECTION INPUTS
[28] INSERT (via keypad only)
[30] DELETE (via keypad only)
[32] END
[34] NOT (1 INPUT)
[36] 2 INPUT XOR (0)
[38] LATCH SET/RESET (2 inputs)
[40] OR (2 to 16 inputs)
[42] AND (2 to 16 inputs)
[44] NOR (2 to 16 inputs)
[46] NAND (2 to 16 inputs)
[48] TIMER (1 to 32)
[50] ASSIGN VIRTUAL OUTPUT (1 to 64)
[52] ONE SHOT
[54] SELF-TEST ERROR (see F141 for range)
[56] PLATFORM DIRECT INPUT (1 to 96)
[58] PLATFORM DIRECT OUTPUT (1 to 96)
[60] PLATFORM DIRECT DEVICE (1 to 8)
[64 to 127] ELEMENT STATES (see the Element States section in the Modbus memory map)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 193


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F400: CT/VT bank selection (UR_UINT16)


Enumeration Value
0 Card 1 Contact 1 to 4
1 Card 1 Contact 5 to 8
2 Card 2 Contact 1 to 4
3 Card 2 Contact 5 to 8
4 Card 3 Contact 1 to 4
5 Card 3 Contact 5 to 8

F500: Input and output states (16-bit packed bitfield)


This format code indicates the states of various inputs and outputs. The number of
registers used is determined by the specific data item. A bit value of 0 indicates off and a
bit value of 1 indicates on.

F502: Element operate states (16-bit packed bitfield)


Each bit indicates the operate state for an element. See the F124 format code for a list of
element IDs. The operate bit for element ID x is bit [X mod 16] in register [X/16]. A bit value
of 0 indicates off and a bit value of 1 indicates on.

F515: Element input mode (16-bit enumeration)


This format code indicates FlexElement input mode.
Enumeration Value
0 Signed
1 Absolute

F516: Element compare mode (16-bit enumeration)


This format code indicates FlexElement compare mode.
Enumeration Value
0 Level
1 Delta

F517: Element direction operation (16-bit enumeration)


This format code indicates FlexElement direction.
Enumeration Value
0 Over
1 Under

F518: FlexElement units (16-bit enumeration)


Enumeration Value
0 Milliseconds
1 Seconds
2 Minutes

F519: Non-volatile latch reset/set dominant (16-bit enumeration)


This format code indicates non-volatile latch type.
Enumeration Value
0 Reset Dominant
1 Set Dominant

194 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F523: DNP object 20, 22, 23 default variation (16-bit enumeration)


Enumeration Value
0 1
1 2
2 5
3 6

F524: DNP object 21 default variation (16-bit enumeration)


Enumeration Value
0 1
1 2
2 9
3 10

F525: DNP object 32 default variation (16-bit enumeration)


Enumeration Value
0 1
1 2
2 3
3 4
4 5
5 7

F531: Language (16-bit enumeration)


This format code indicates the language of the device software and hardware.
Enumeration Value
0 English
1 French

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 195


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

F540: PMU post-filter (16-bit enumeration)


Enumeration Value
0 None
1 Symm-3-point
2 Symm-5-point
3 Symm-7-point

F542: PMU trigger mode (16-bit enumeration)


Enumeration Value
0 Automatic Overwrite
1 Protected

F543: PMU phasors (16-bit enumeration)


Enumeration Value
0 Off
1 Va
2 Vb
3 Vc
4 Vx
5 Ia
6 Ib
7 Ic
8 Ig
9 V1
10 V2
11 V0
12 I1
13 I2
14 I0

F544: PMU recording/reporting rate (16-bit enumeration)


Enumeration Value
0 1/sec
1 2/sec
2 5/sec
3 10/sec
4 12/sec
5 15/sec
6 20/sec
7 25/sec
8 30/sec
9 50/sec
10 60/sec

196 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 2: MODBUS COMMUNICATION MODBUS MEMORY MAP

F545: PMU communications port type (16-bit enumeration)


Enumeration Value
0 Network
1 None

F546: PMU reporting style (16-bit enumeration)


Enumeration Value
0 Polar
1 Rectangular

F547: PMU reporting format(16-bit enumeration)


Enumeration Value
0 Integer
1 Floating

F600: FlexAnalog parameter (UR_UINT32)


The 32-bit value corresponds to the Modbus address (comprised of an 8-bit function code
and 16-bit address) of the value to be used when this parameter is selected. Only certain
values can be used as FlexAnalogs (basically all metering quantities used in protection).

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 197


MODBUS MEMORY MAP CHAPTER 2: MODBUS COMMUNICATION

198 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


C90Plus Controller

Chapter 3: DNP communication

DNP communication

This chapter outlines the Distributed Network Protocol (DNP).

DNP device profile


DNP allows for the optimization of control and data acquisition between the equipment in
the substation and the central control center. It improves upon many master-slave
protocols by improving overall communication performance requirements and provides
time-stamping with millisecond accuracy.

DNP v3.00 device profile document


This section represents a ‘device profile document’ defined by the DNP 3.0 subset
definitions document. The DNP implementation table is located in the following section.
• Vendor name — General Electric Multilin
• Device name — C90Plus Controller
• Highest DNP level supported:
– For requests — Level 2
– For responses — Level 2
• Device Function — Slave
• Notable objects, functions, and qualifiers supported in addition to the highest DNP
levels supported:
– Binary inputs (object 1)
– Binary input changes (object 2)
– Binary outputs (object 10)
– Control relay output block (object 12)
– Binary counters (object 20)
– Frozen counters (object 21)
– Counter change event (object 22)
– Frozen counter event (object 23)
– Analog inputs (object 30)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 199


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

– Analog input changes (object 32)


– Analog deadbands (object 34)
– Time and date (object 50)
– Time delay fine (object 52)
– Class 0, 1, 2, and 3 data (object 60)
– File transfer (object 70)
– Internal indications (object 80)
• Maximum data link frame size (octets):
– Transmitted — 292
– Received — 292
• Maximum application fragment size (octets):
– Transmitted — Configurable up to 2048
– Received — 2048
• Maximum data link re-tries — None
• Maximum application layer re-tries — None
• Requires data link layer confirmation — Never
• Requires application layer confirmation — When reporting event data, when sending
multi-fragment responses
• Timeouts while waiting for:
– Data link confirm — None
– Complete application fragment — None
– Application confirm — Fixed at 10 seconds
– Complete application response — None
• Others:
– Transmission delay — No intentional delay
– Need time interval — Configurable (default is 24 hours)
– Select/operate arm timeout — 10 seconds
– Binary input change scanning period — 16 times per power system cycle
– Analog input change scanning period — 500 ms
– Counter change scanning period — 500 ms
– Frozen counter event scanning period — 500 ms
– Unsolicited response notification delay —100 ms
– Unsolicited response retry delay — Configurable from 0 to 60 seconds
• Sends/executes control operations:
– Write binary outputs — Never
– Select/operate — Always
– Direct operate — Always
– Direct operate – no acknowledge — Always
– Count > 1 — Never
– Pulse on — Sometimes
– Pulse off — Sometimes
– Latch on — Sometimes
– Latch off — Sometimes
– Queue — Never
– Clear queue — Never

200 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

Explanation of sometimes — Object 12 points are mapped to the C90Plus virtual inputs.
The persistence of virtual inputs is determined by the virtual input Type settings. The
“Pulse on” and “Latch on” operations perform the same function in the C90Plus; that is,
the appropriate virtual input is placed in the “On” state. If the virtual input is
programmed to “Self-Reset,” it resets after one FlexLogic™ pass. The on/off times and
count value are ignored. The “Pulse off” and “Latch off” operations place the
appropriate virtual input into the “Off” state. The “Trip” and “Close” operations place
the appropriate virtual input into the “On” state.
• Reports binary input change events when no specific variation requested — Only
time-tagged
• Reports time-tagged binary input change events when no specific variation requested
— Binary input change with time
• Sends unsolicited responses — Configurable; enable/disable unsolicited function
codes supported
• Sends static data in unsolicited responses — Never
• Default counter object/variation:
– Default object — 20
– Default variation — 1
A point-by-point list is attached.
• Counters roll over at:
– 16 bits (counter 8)
– 32 bits (counters 0 to 7 and 9)
A point-by-point list is attached.
• Sends multi-fragment responses — Yes

DNP v3.00 implementation document


This section identifies the variations, function codes, and qualifiers supported by the
C90Plus in both request and response messages. For static (non-change-event) objects,
requests sent with qualifiers 00, 01, 06, 07, or 08, are responded to with qualifiers 00 or 01.
Static object requests sent with qualifiers 17 or 28 are responded to with qualifiers 17 or
28. For change-event objects, qualifiers 17 or 28 are always responded to.
A default variation refers to the variation responded when variation 0 is requested and in
class 0, 1, 2, or 3 scans. The default variations for object types 1, 2, 20, 21, 22, 23, 30, and 32
are selected via the C90Plus settings. This optimizes the class 0 poll data size.
For static (non-change-event) objects, qualifiers 17 or 28 are only responded when a
request is sent with qualifiers 17 or 28, respectively. Otherwise, static object requests sent
with qualifiers 00, 01, 06, 07, or 08 are responded to with qualifiers 00 or 01 (for change-
event objects, qualifiers 17 or 28 are always responded to).
Cold restarts are implemented the same as warm restarts, meaning when the DNP process
restarts, not the C90Plus.

Object 1 (binary inputs)


Object 1, Variation 0: Binary input (default variation)
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 1, variation 0:
– 1 (read)
– 22 (assign class)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 201


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

• Qualifier codes for requests, object 1, variation 0:


– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
There are no codes used for responses.
Object 1, Variation 1: Binary input
Object 1, Variation 2: Binary input with status
The following codes are used for requests.
• Function codes for requests, object 1, variations 1 and 2:
– 1 (read)
– 22 (assign class)
• Qualifier codes for requests, object 1, variations 1 and 2:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 1, variations 1 and 2:
– 129 (response)
• Qualifier codes for responses, object 1, variations 1 and 2:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 2 (binary input changes)


Object 2, Variation 0: Binary input change
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 2, variation 0:
– 1 (read)
• Qualifier codes for requests, object 2, variation 0:
– 06 (no range, or all)
– 07, 08 (limited quantity)
There are no codes used for responses.
Object 2, Variation 1: Binary input change without time
Object 2, Variation 2: Binary input change with time
The following codes are used for requests.
• Function codes for requests, object 2, variations 1 and 2:
– 1 (read)
• Qualifier codes for requests, object 2, variations 1 and 2:
– 06 (no range, or all)
– 07, 08 (limited quantity)
The following codes are used for responses.
• Function codes for responses, object 2, variations 1 and 2:
– 129 (response)

202 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

– 130 (unsolicited response)


• Qualifier codes for responses, object 2, variations 1 and 2:
– 17, 28 (index)
Object 2, Variation 3: Binary input change with relative time
The following codes are used for requests.
• Function codes for requests, object 2, variation 0:
– 1 (read)
• Qualifier codes for requests, object 2, variation 0:
– 06 (no range, or all)
– 07, 08 (limited quantity)
There are no codes used for responses.

Object 10 (binary outputs)


Object 10, Variation 0: Binary output status
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 10, variation 0:
– 1 (read)
• Qualifier codes for requests, object 10, variation 0:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
There are no codes used for responses.
Object 10, Variation 2: Binary output status
The following codes are used for requests.
• Function codes for requests, object 10, variation 2:
– 1 (read)
• Qualifier codes for requests, object 10, variation 2:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 10, variation 2:
– 129 (response)
• Qualifier codes for responses, object 10, variation 2:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 12 (control relay output blocks)


Object 12, Variation 1: Control relay output block
The following codes are used for requests.
• Function codes for requests, object 12, variation 1:

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 203


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

– 3 (select)
– 4 (operate)
– 5 (direct operate)
– 6 (direct operate, no acknowledge)
• Qualifier codes for requests, object 12, variation 1:
– 00, 01 (start-stop)
– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 12, variation 1:
– 129 (response)
• Qualifier codes for responses, object 12, variation 1:
– echo of request

Object 20 (binary counters)


Object 20, variation 0: Binary counter
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 20, variation 0:
– 1 (read)
– 7 (freeze)
– 8 (freeze, no acknowledge)
– 9 (freeze clear)
– 10 (freeze clear, no acknowledge)
– 22 (assign class)
• Qualifier codes for requests, object 20, variation 0:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
There are no codes used for responses.
Object 20, variation 1: 32-bit binary counter
Object 20, variation 2: 16-bit binary counter
Object 20, variation 5: 32-bit binary counter without flag
Object 20, variation 6: 16-bit binary counter without flag
The following codes are used for requests.
• Function codes for requests, object 20, variations 1, 2, 5, and 6:
– 1 (read)
– 7 (freeze)
– 8 (freeze, no acknowledge)
– 9 (freeze clear)
– 10 (freeze clear, no acknowledge)
– 22 (assign class)
• Qualifier codes for requests, object 20, variations 1, 2, 5, and 6:
– 00, 01 (start-stop)

204 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

– 06 (no range, or all)


– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 20, variations 1, 2, 5, and 6:
– 129 (response)
• Qualifier codes for responses, object 20, variations 1, 2, 5, and 6:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 21 (frozen counters)


Object 21, variation 0: Frozen counter
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 21, variation 0:
– 1 (read)
– 22 (assign class)
• Qualifier codes for requests, object 21, variation 0:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
There are no codes used for responses.
Object 21, variation 1: 32-bit frozen counter
Object 21, variation 2: 16-bit frozen counter
Object 21, variation 9: 32-bit frozen counter without flag
Object 21, variation 10: 16-bit frozen counter without flag
The following codes are used for requests.
• Function codes for requests, object 21, variations 1, 2, 9, and 10:
– 1 (read)
– 22 (assign class)
• Qualifier codes for requests, object 21, variations 1, 2, 9, and 10:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 21, variations 1, 2, 9, and 10:
– 129 (response)
• Qualifier codes for responses, object 21, variations 1, 2, 9, and 10:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 22 (counter change events)


Object 22, variation 0: counter change events

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 205


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 22, variation 0:
– 1 (read)
• Qualifier codes for requests, object 22, variation 0:
– 06 (no range, or all)
– 07, 08 (limited quantity)
There are no codes used for responses.
Object 22, variation 1: 32-bit counter change events
Object 22, variation 2: 16-bit counter change events
Object 22, variation 5: 32-bit counter change events with time
Object 22, variation 6: 16-bit counter change events with time
The following codes are used for requests.
• Function codes for requests, object 22, variations 1, 2, 5, and 6:
– 1 (read)
• Qualifier codes for requests, object 22, variations 1, 2, 5, and 6:
– 06 (no range, or all)
– 07, 08 (limited quantity)
The following codes are used for responses.
• Function codes for responses, object 22, variations 1, 2, 5, and 6:
– 129 (response)
– 130 (unsolicited response)
• Qualifier codes for responses, object 22, variations 1, 2, 5, and 6:
– 17, 28 (index)

Object 23 (counter change events)


Object 23, variation 0: frozen counter events
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 23, variation 0:
– 1 (read)
• Qualifier codes for requests, object 23, variation 0:
– 06 (no range, or all)
– 07, 08 (limited quantity)
There are no codes used for responses.
Object 23, variation 1: 32-bit frozen counter events
Object 23, variation 2: 16-bit frozen counter events
Object 23, variation 5: 32-bit frozen counter events with time
Object 23, variation 6: 16-bit frozen counter events with time
The following codes are used for requests.
• Function codes for requests, object 23, variations 1, 2, 5, and 6:
– 1 (read)
• Qualifier codes for requests, object 23, variations 1, 2, 5, and 6:
– 06 (no range, or all)
– 07, 08 (limited quantity)
The following codes are used for responses.

206 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

• Function codes for responses, object 23, variations 1, 2, 5, and 6:


– 129 (response)
– 130 (unsolicited response)
• Qualifier codes for responses, object 23, variations 1, 2, 5, and 6:
– 17, 28 (index)

Object 30 (analog inputs)


Object 30, variation 0: analog inputs
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 30, variation 0:
– 1 (read)
– 22 (assign class)
• Qualifier codes for requests, object 30, variation 0:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
There are no codes used for responses.
Object 30, variation 1: 32-bit analog inputs
Object 30, variation 2: 16-bit analog inputs
Object 30, variation 3: 32-bit analog inputs without flag
Object 30, variation 4: 16-bit analog inputs without flag
Object 30, variation 5: short floating point analog inputs
The following codes are used for requests.
• Function codes for requests, object 30, variations 1, 2, 3, 4, and 5:
– 1 (read)
– 22 (assign class)
• Qualifier codes for requests, object 30, variations 1, 2, 3, 4, and 5:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 30, variations 1, 2, 3, 4, and 5:
– 129 (response)
• Qualifier codes for responses, object 30, variations 1, 2, 3, 4, and 5:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 32 (analog input change events)


Object 32, variation 0: analog input change events
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 32, variation 0:
– 1 (read)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 207


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

• Qualifier codes for requests, object 32, variation 0:


– 06 (no range, or all)
– 07, 08 (limited quantity)
There are no codes used for responses.
Object 32, variation 1: 32-bit analog input change events without time
Object 32, variation 2: 16-bit analog input change events without time
Object 32, variation 3: 32-bit analog input change events with time
Object 32, variation 4: 16-bit analog input change events with time
Object 32, variation 5: short floating point analog input change events without time
Object 32, variation 7: short floating point analog input change events with time
The following codes are used for requests.
• Function codes for requests, object 32, variations 1, 2, 3, 4, 5, and 7:
– 1 (read)
• Qualifier codes for requests, object 32, variations 1, 2, 3, 4, 5, and 7:
– 06 (no range, or all)
– 07, 08 (limited quantity)
The following codes are used for responses.
• Function codes for responses, object 32, variations 1, 2, 3, 4, 5, and 7:
– 129 (response)
– 130 (unsolicited response)
• Qualifier codes for responses, object 32, variations 1, 2, 3, 4, 5, and 7:
– 17, 28 (index)

Object 34 (analog deadbands)


Object 34, variation 0: analog input reporting deadband
Variation 0 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 34, variation 0:
– 1 (read)
• Qualifier codes for requests, object 34, variation 0:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07, 08 (limited quantity)
– 17, 28 (index)
There are no codes used for responses.
Object 34, variation 1: 16-bit analog input reporting deadband
Object 34, variation 2: 32-bit analog input reporting deadband
Object 34, variation 3: short floating point analog input reporting deadband
The following codes are used for requests.
• Function codes for requests, object 34, variations 1 and 2:
– 1 (read)
– 2 (write)
• Function codes for requests, object 34, variation 3:
– 1 (read)
• Qualifier codes for requests, object 34, variations 1, 2, and 3:
– 00, 01 (start-stop)

208 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

– 06 (no range, or all)


– 07, 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 34, variations 1, 2, and 3:
– 129 (response)
• Qualifier codes for responses, object 34, variations 1, 2, and 3:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 50 (time and date)


Object 50, variation 1: time and date
Variation 1 is used to request the default variation. The following codes are used for
requests.
• Function codes for requests, object 50, variation 1:
– 1 (read)
– 2 (write)
• Qualifier codes for requests, object 50, variation 1:
– 00, 01 (start-stop)
– 06 (no range, or all)
– 07 (limited quantity, quantity = 1)
– 08 (limited quantity)
– 17, 28 (index)
The following codes are used for responses.
• Function codes for responses, object 50, variation 1:
– 129 (response)
• Qualifier codes for responses, object 50, variation 1:
– 00, 01 (start-stop)
– 17, 28 (index)

Object 52 (time delay)


Object 52, variation 2: time delay fine
There are no codes used for requests.
The following codes are used for responses.
• Function codes for responses, object 52, variation 2:
– 129 (response)
• Qualifier codes for responses, object 52, variation 2:
– 07 (limited quantity, quantity = 1)

Object 60 (class 0, 1, 2, and 3 data)


Object 60, variation 0: class 0, 1, 2, and 3 data
The following codes are used for requests.
• Function codes for requests, object 60, variation 0:
– 1 (read)
– 20 (enable unsolicited response)

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 209


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

– 21 (disable unsolicited response)


– 22 (assign class)
• Qualifier codes for requests, object 60, variation 0:
– 06 (no range, or all)
There are no codes used for responses.
Object 60, variation 1: class 0 data
The following codes are used for requests.
• Function codes for requests, object 60, variation 1:
– 1 (read)
– 22 (assign class)
• Qualifier codes for requests, object 60, variation 1:
– 06 (no range, or all)
There are no codes used for responses.
Object 60, variation 2: class 1 data
Object 60, variation 3: class 2 data
Object 60, variation 4: class 3 data
The following codes are used for requests.
• Function codes for requests, object 60, variation 1:
– 1 (read)
– 20 (enable unsolicited response)
– 21 (disable unsolicited response)
– 22 (assign class)
• Qualifier codes for requests, object 60, variation 1:
– 06 (no range, or all)
– 07, 08 (limited quantity)
There are no codes used for responses.

Object 80 (internal indications)


Object 80, variation 1: internal indications
The following codes are used for requests.
• Function codes for requests, object 80, variation 1:
– 1 (read)
• Qualifier codes for requests, object 80, variation 1:
– 00, 01 (start-stop), index = 7
The following codes are used for responses.
• Function codes for responses, object 80, variation 1:
– 129 (response)
• Qualifier codes for responses, object 80, variation 1:
– 00, 01 (start-stop)

DNP protocol settings


The DNP server can simultaneously support one client over serial RS485 and one client
over Ethernet or two clients over Ethernet. Level 3 is supported for parsing requests and
generating responses. It is capable of reporting any indication or measurement and

210 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

operating any output present in the device. Both direct-operate and select-before-operate
modes of control are supported. Two user-configurable input and output maps are
implemented.
Select the Settings > Communications > DNP > Protocol menu to open the DNP protocol
configuration window.
Figure 3: DNP protocol configuration settings

The following settings are available.


DNP Channel 1 Port, DNP Channel 2 Port
Range: None, COM1-RS485, Network-TCP, Network-UDP
Default: None
These settings specify the communications port assigned to the DNP protocol for each
channel. Once DNP is assigned to a serial port, the Modbus protocol is disabled on that
port. When this setting is set to “Network-TCP,” the DNP protocol can be used over TCP/IP
on channels 1 or 2. When this value is set to “Network-UDP,” the DNP protocol can be
used over UDP/IP on channel 1 only.
Changes to these settings take effect after power has been cycled to the relay.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 211


DNP DEVICE PROFILE CHAPTER 3: DNP COMMUNICATION

DNP Channel Address


Range: 0 to 65519 in steps of 1
Default: 1
This setting specifies the DNP slave address. This number identifies the C90Plus on a DNP
communications link. Assign a unique address to each DNP slave.
DNP Client Address 1 through DNP Client Address 5
Range: any standard IP address
Default: 0.0.0.0
These settings force the C90Plus to respond to a maximum of five specific DNP masters.
DNP TCP/UDP Port Number
Range: 1 to 65535 in steps of 1
Default: 20000
This setting specifies the TCP/UDP port to use for DNP communications.
DNP Unsolicited Response Function
Range: Enabled, Disabled
Default: Disabled
Program this setting to “Disabled” for RS485 applications, since there is no collision
avoidance mechanism.
DNP Unsolicited Response Timeout
Range: 0 to 60 seconds in steps of 1
Default: 5 seconds
This setting specifies how long the C90Plus waits for a DNP master to confirm an
unsolicited response.
DNP Unsolicited Response Maximum Re-Tries
Range: 1 to 255 in steps of 1
Default: 10
This setting specifies the number of times the C90Plus retransmits an unsolicited
response without receiving confirmation from the master. A value of “255” allows infinite
re-tries.
DNP Unsolicited Response Destination Address
Range: 0 to 65519 in steps of 1
Default: 1
This setting specifies the DNP address to which all unsolicited responses are sent. The IP
address to which unsolicited responses are sent is determined by the C90Plus from the
current TCP connection or the most recent UDP message.
DNP Current Scale Factor, DNP Voltage Scale Factor, DNP Power Scale Factor, DNP
Energy Scale Factor, DNP Other Scale Factor
Range: 0.001, 0.01, 0.1, 1, 10, 100, 1000, 10000, 100000
Default: 1
These settings scale the analog input current values. For example, if the DNP Current
Scale Factor is “10,” all DNP analog input points that represent currents are returned
with values 10 times smaller (for example, a value of 700 amps on the C90Plus is returned
as 70). Likewise, if the DNP Voltage Scale Factor is “0.01,” all DNP analog input points
that represent voltages are returned with values 100 times larger (for example, a value
of 17 volts on the C90Plus is returned as 1700).
These settings are useful when analog input values must be adjusted to fit within certain
ranges in DNP masters.

212 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP DEVICE PROFILE

DNP Current Default Deadband, DNP Voltage Default Deadband, DNP Power Default
Deadband, DNP Energy Default Deadband, DNP Other Default Deadband
Range: 0 to 100000000 in steps of 1
Default: 30000
These settings determine when to trigger unsolicited responses containing analog input
data. These settings group the C90Plus analog input data into types: current, voltage,
power, energy, and other. Each setting represents the default deadband value for all
analog input points of that type. For example, to trigger unsolicited responses from the
C90Plus when any current values change by 15 amps, configure the DNP Current
Default Deadband setting to “15.”
These settings are the deadband default values. DNP object 34 points can be used to
change deadband values from the default for each individual DNP analog input point.
Whenever power is removed and re-applied to the C90Plus, the default deadbands are in
effect.
DNP Time Sync IIN Period
Range: 1 to 10080 minutes in steps of 1
Default: 1440 minutes
This setting determines how often the Need Time Internal Indication (IIN) bit is set by the
C90Plus. Changing this time allows the DNP master to send time synchronization
commands more or less often, as required.
DNP Message Fragment Size
Range: 30 to 2048 in steps of 1
Default: 240
This setting determines the size, in bytes, at which message fragmentation occurs. Large
fragment sizes allow for more efficient throughput; smaller fragment sizes cause more
application layer confirmations to be necessary, which can provide for more robust data
transfer over noisy communication channels.
DNP Object 1 Variation, DNP Object 2 Variation, DNP Object 20 Variation, DNP Object
21 Variation, DNP Object 22 Variation, DNP Object 23 Variation, DNP Object 30
Variation, DNP Object 32 Variation
Range: 1, 2 (object 1); 1, 2, 3 (object 2); 1, 2, 5, 6 (objects 20, 22, and 23); 1, 2, 9, 10 (object
21); 1, 2, 3, 4, 5 (object 30); 1, 2, 3, 5, 7 (object 32)
Default: 1 (objects 20, 21, 22, 23, 30, and 32); 2 (objects 1 and 2)
These settings select the DNP default variation number for object types 1, 2, 20, 21, 22,
23, 30, and 32. The default variation refers to the variation response when variation 0 is
requested and/or in class 0, 1, 2, or 3 scans.
DNP Number of Paired Controls
Range: 0 to 32 in steps of 1
Default: 0
The DNP binary outputs typically map one-to-one to IED data points. That is, each DNP
binary output controls a single physical or virtual control point in an IED. In the C90Plus,
DNP binary outputs are mapped to protection and/or automation virtual inputs.
However, some legacy DNP implementations use a mapping of one DNP binary output
to two physical or virtual control points to support the concept of trip/close (for circuit
breakers) or raise/lower (for tap changers) using a single control point. That is, the DNP
master can operate a single point for both trip and close, or raise and lower, operations.
The C90Plus can be configured to support paired control points, with each paired control
point operating two virtual inputs (protection or automation). This setting allows
configuration of 0 to 32 binary output paired controls. Points not configured as paired
operate on a one-to-one basis.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 213


DNP POINTS CHAPTER 3: DNP COMMUNICATION

DNP TCP Connection Timeout


Range: 10 to 300 seconds in steps of 1
Default: 120 seconds
This setting specifies a time delay for the detection of dead network TCP connections. If
there is no data traffic on a DNP TCP connection for greater than the time specified by
this setting, the connection is aborted by the C90Plus. This frees the connection to be re-
used by a client.
Changes to this setting takes effect after power has been cycled to the relay.

DNP points
Binary input points
The DNP binary input data points are configured through the Settings > Communications
> DNP > User Point List menu item. When a freeze function is performed on a binary
counter point, the frozen value is available in the corresponding frozen counter point.
The binary input DNP parameters are as follows:
• Static (steady-state) object number — 1
• Change event object number — 2
• Request function codes supported — 1 (read), 22 (assign class)
• Static variation reported when variation 0 requested — 2 (binary input with status),
configurable
• Change event variation reported when variation 0 requested — 2 (binary input change
with time), configurable
• Change event scan rate —16 times per power system cycle
• Change event buffer size — 500
• Default class for all points — 1

Binary and control relay output points


The supported control relay output block fields are: Pulse On, Pulse Off, Latch On, Latch Off,
Paired Trip, and Paired Close.
The binary relay output DNP parameters are as follows:
• Object number — 10
• Request function codes supported — 1 (read)
• Default variation reported when variation 0 requested — 2 (binary output status)
The control relay output block DNP parameters are as follows:
• Object number — 12
• Request function codes supported — 3 (select), 4 (operate), 5 (direct operate), 6 (direct
operate, no acknowledge)
The binary and control relay output points correspond to protection virtual inputs and
automation virtual inputs as follows. Point N corresponds to virtual input N + 1. As such, we
have the following concordance:
Point 0 → protection virtual input 1
Point 1 → protection virtual input 2
Point 2 → protection virtual input 3
...
Point 63 → protection virtual input 64

214 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP POINTS

Point 64 → automation virtual input 1


Point 65 → automation virtual input 2
Point 66 → automation virtual input 3
...
Point 191 → automation virtual input 128

Binary and frozen counter points


The following description applies to binary counters (object 20) and frozen counters (object
21). When a freeze function is performed on a binary counter point, the frozen value is
available in the corresponding frozen counter point.
The binary counter DNP parameters are as follows:
• Static (steady-state) object number — 20
• Change event object number — 22
• Request function codes supported — 1 (read), 7 (freeze), 8 (freeze, no acknowledge), 9
(freeze and clear), 10 (freeze and clear, no acknowledge), 22 (assign class)
• Static variation reported when variation 0 requested — 1 (32-bit binary counter with
flag)
• Change event variation reported when variation 0 requested: — 1 (32-bit counter
change event without time)
• Change event buffer size — 10
• Default class for all points — 3
The frozen counter DNP parameters are as follows:
• Static (steady-state) object number — 21
• Change event object number — 23
• Request function codes supported — 1 (read)
• Static variation reported when variation 0 requested — 1 (32-bit frozen counter with
flag)
• Change event variation reported when variation 0 requested — 1 (32-bit frozen
counter event without time)
• Change event buffer size —10
• Default class for all points — 3
The binary and frozen counter points correspond to the digital counter, oscillography, and
event recorder functions as indicated in the following table.
Table 11: Binary and frozen counter points
Point Description
0 Digital counter 1
1 Digital counter 2
2 Digital counter 3
3 Digital counter 4
4 Digital counter 5
5 Digital counter 6
6 Digital counter 7
7 Digital counter 8
8 Transient record newest file number
9 Events since last clear

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 215


DNP POINTS CHAPTER 3: DNP COMMUNICATION

A counter freeze command has no meaning for counters 8 and 9. The C90Plus digital
counter values are represented as 32-bit integers. The DNP 3.0 protocol defines counters
to be unsigned integers. Take care when interpreting negative counter values.

Analog input points


The DNP analog input data points are configured through the Settings > Communications
> DNP > User Point List menu item.
It is important to note that 16-bit and 32-bit variations of analog inputs are transmitted
through DNP as signed numbers. Even for analog input points that are not valid as
negative values, the maximum positive representation is 32767 for 16-bit values and
2147483647 for 32-bit values. This is a DNP requirement.
The deadbands for all analog input points are in the same units as the analog input
quantity. For example, an analog input quantity measured in volts has a corresponding
deadband in units of volts. This is in conformance with DNP Technical Bulletin 9809-001:
Analog Input Reporting Deadband. Relay settings are available to set default deadband
values according to data type. Deadbands for individual analog input points can be set
using DNP object 34.
The analog input DNP parameters are as follows:
• Static (steady-state) object number — 30
• Change event object number — 32
• Request function codes supported — 1 (read), 2 (write, deadbands only), 22 (assign
class)
• Static variation reported when variation 0 requested — 1 (32-bit analog input)
• Change event variation reported when variation 0 requested — 1 (analog change
event without time)
• Change event scan rate — Defaults to 500 ms
• Change event buffer size — 256
• Default class for all points — 2

DNP user point list settings


The binary and analog inputs points for the DNP protocol can be configured to a maximum
of 256 points. The value for each point is user-programmable and can be configured by
assigning FlexLogic operands for binary inputs or FlexAnalog parameters for analog
inputs.
The DNP point lists always begin with point 0 and end at the first “Off” value. Since DNP
point lists must be in one continuous block, any points assigned after the first “Off” point
are ignored.
Select the Settings > Communications > DNP > User Point List menu to open the DNP
user point list configuration window.

216 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


CHAPTER 3: DNP COMMUNICATION DNP POINTS

Figure 4: DNP user point list configuration settings

The following settings are available for points 0 through 255.


DNP Binary Input Point 0...DNP Binary Input Point 255
Range: any FlexLogic operand
Default: Off
These settings represent DNP binary input points and are configured by assigning an
appropriate FlexLogic operand to each. Up to 256 binary input points can be configured
for the DNP protocol. Changes take effect when the C90Plus is restarted.
DNP Analog Input Point 0...DNP Analog Input Point 255
Range: any FlexAnalog parameter
Default: Off
These settings represent DNP analog input points and are configured by assigning an
appropriate FlexAnalog parameter to each. Up to 256 analog input points can be
configured for the DNP protocol. Changes take effect when the C90Plus is restarted.

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 217


DNP POINTS CHAPTER 3: DNP COMMUNICATION

218 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE


C90Plus Controller

Index

Index

Fast load shed memory map ......................................................... 148


A Fault
Autoreclose, Modbus ............................................................................. 84 report, Modbus .................................................................................... 104
Auxiliary overvoltage, Modbus ......................................................... 94 FlexCurve, Modbus ...........................................................105, 106, 107
Auxiliary undervoltage, Modbus ..................................................... 95 FlexElements, Modbus .............................................................103, 104
FlexState, Modbus ................................................................................ 103
FLS memory map .................................................................................. 148
B FLSC memory map ............................................................................... 152
Breaker arcing current, Modbus ..................................................... 87
Breaker failure, Modbus ....................................................................... 86
H
Help, getting .................................................................................................. 1
C
Communications
CRC-16 error checking ..........................................................................4 I
DNP ........................................................................................................... 199 IEC 61850 protocol
half and full duplex .................................................................................3 Modbus ......................................................................................................88
Modbus .........................................................................................................5
CRC-16 algorithm .......................................................................................4
M
Memory map ................................................................................................ 9
D Modbus
Digital counters, Modbus ................................................................. 106 execute operation ................................................................................... 6
DNP function code 03/04h ............................................................................ 5
implementation table ...................................................................... 201 function code 05h ................................................................................... 6
Modbus ................................................................................................... 105 memory map ............................................................................................ 9
settings ................................................................................................... 210 read/write settings/actual values ................................................... 5
user point list ....................................................................................... 216 settings ........................................................................................................ 8
DNP COMMUNICATIONS supported function codes ................................................................... 5
Modbus registers .................................................................................. 72 user map ..................................................................................................... 8
Duplex, full and half ...................................................................................3

N
F Negative sequence directional OC, Modbus ............................87
Fast load shed controller ................................................................. 152 Negative sequence IOC, Modbus ....................................................83

C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE 219


INDEX

Negative sequence overvoltage, Modbus .................................84


Negative sequence TOC, Modbus ..................................................83
Neutral directional OC, Modbus ......................................................86
Neutral overvoltage, Modbus ...........................................................94
Non-volatile latches, Modbus ........................................................ 105

P
Phase directional OC, Modbus .........................................................86
Phase overvoltage, Modbus ..............................................................85
Phase undervoltage, Modbus ...........................................................85

R
Repair .................................................................................................................1

S
Sensitive directional power, Modbus ...........................................84
Settings .................................................................................................. 8, 210
Support, technical ......................................................................................1

T
Technical support .......................................................................................1

U
User map .........................................................................................................8
User point list .......................................................................................... 216

V
VT
fuse failure, Modbus ......................................................................... 104

220 C90PLUS AUTOMATION LOGIC CONTROLLER – COMMUNICATIONS GUIDE

Potrebbero piacerti anche