You are on page 1of 51

PRON NA20-MB0

MODBUS PROTOCOL USER GUIDE 2.50

Modbus Communication Protocol User Guide

PRON NA20-MB0

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 1 of 51

PRON NA20-MB0
Contents
Contents ........................................................................................................................................................................ 2 1 Modbus RTU communication................................................................................................................................ 3 1.1 Serial port settings........................................................................................................................................ 3 1.2 Transmission mode ...................................................................................................................................... 3 1.3 Data Types ................................................................................................................................................... 3 1.4 Supported functions ..................................................................................................................................... 4 1.5 Exceptions .................................................................................................................................................... 4 1.6 Modbus/TCP ................................................................................................................................................ 5 1.7 Network setting............................................................................................................................................. 5 1.8 NTP synchronization .................................................................................................................................... 5 2 Logical organization of the protections data ........................................................................................................ 6 2.1 Basic Data Type ........................................................................................................................................... 6 2.1.1 BIT............................................................................................................................................................ 6 2.1.2 BYTE........................................................................................................................................................ 7 2.1.3 UBYTE ..................................................................................................................................................... 7 2.1.4 WORD...................................................................................................................................................... 8 2.1.5 UWORD ................................................................................................................................................... 8 2.1.6 LONG ....................................................................................................................................................... 9 2.1.7 ULONG .................................................................................................................................................... 9 2.1.8 ARR........................................................................................................................................................ 10 2.1.9 STR ........................................................................................................................................................ 11 2.1.10 CMD ....................................................................................................................................................... 11 3 How to read the Address Data Table.................................................................................................................. 12 3.1 Address Data Table.................................................................................................................................... 12 3.1.1 VAR........................................................................................................................................................ 12 3.1.2 REF ........................................................................................................................................................ 12 3.1.3 IDX ......................................................................................................................................................... 12 3.1.4 DIM......................................................................................................................................................... 13 3.1.5 TYPE...................................................................................................................................................... 13 3.1.6 UM.......................................................................................................................................................... 13 3.1.7 Kv 13 3.1.8 ENUM..................................................................................................................................................... 14 3.2 Common properties.................................................................................................................................... 14 3.2.1 Input state .............................................................................................................................................. 14 3.2.2 Output state............................................................................................................................................ 14 4 Examples ............................................................................................................................................................ 15 4.1 Example 1. How to read a variable ............................................................................................................ 15 4.2 Example 2. How to read a BIT data type ................................................................................................... 16 4.3 Example 3. How to execute a command.................................................................................................... 16 5 Glossary .............................................................................................................................................................. 17 6 Appendix A. Address Data Table........................................................................................................................ 18

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 2 of 51

PRON NA20-MB0
Introduction
This Protocol Manual is for use with Thytronic Protective Relays, such as the DMC, NTG and PRO-N series that support Modbus RTU and Modbus TCP communication protocol.

1 Modbus RTU communication


The Thytronic Protective Relay (TPR) uses a communication protocol called Modbus. A company called Modicon, for use with their programmable controllers, developed the Modbus protocol. Since that time Modbus has evolved into common communication protocol in industry and its now a de-facto standard. The communication method involves using a master-slave technique, in which there is one master and several slaves. The TPR is a slave device. Only the master can initiate queries. These queries are directed to an individual slave device and the appropriate slave responds with the requested data. There are two transmission modes. These modes are known as RTU (Remote Terminal Unit) and ASCII (American Standard Code for Information Interchange). The TPR can be setup in a network of up to 247 slave devices. Each device must have a different address (1-247). The TPR can be set for RTU mode only.

The MODBUS protocol documentation can be found online at www.modicon.com or www.modbus.org (document PDI-MBUS-300 REV J).

1.1 Serial port settings


To communicate with a TPR, the serial port of the Master has to be configured with the following settings: Address 1 Baud Rate 19200 Parity No Table 1 Serial port settings Stop bits 1 Data bits 8

Remark: Every TPR has a default MODBUS Slave Address set to 1.

1.2 Transmission mode


The transmission mode supported by TPR is RTU. The ASCII transmission mode is not supported.

1.3 Data Types


A TPR has 4 data table, each of which corresponds to one of the 4 basic Modbus data type. Each table contains up to 1024 data that can be accessed with the proper function as described in the following table.
table/data type Coils Discrete Inputs Input Registers Holding Registers reference 0X 1X 3X 4X information 1 bit 1 bit 16 bit Word 16 bit Word Access Read/Write Read only Read only Read/Write Function Code for Reading 0x01 0x02 0x04 0x03 Function Code for Writing 0x05 0x06, 0x10

Table 2. Modbus Data Type

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 3 of 51

PRON NA20-MB0
1.4 Supported functions
TPR supports the following Modbus functions: Code 0x01 0x02 0x03 0x04 0x05 0x06 0x0F 0x10 Name Read Coil Status Read Input Status Read Holding Registers Read Input Registers Force Single Coil Preset Single Register Force Multiple Coil Preset Multiple Registers Table 3 Supported Modbus functions

The smallest data that can be exchanged within a Modbus message is the Modbus Register. A Modbus Register is a 16 bit data in the Big Endian representation, called WORD (W) W = BH BL

1.5 Exceptions
When a TPR receives a request that can not handle (e.g. the data address doesnt exists, the function is not supported, etc.), a special response called Exception is returned to the Master. This message contains the information needed to recognize the error occurred. In an Exception message the most significant bit (msb) of the Function field is set to 1. Function Code field: in case of exception, the msb is set to 1. Data field: this field contains a value related to the kind of error generated by the request.

An example of request with exception response could be the following: TX 04 S RX S = Slave Address F = Function Code ADR = Modbus Data Address DIM = Dimension (number of registers) DATA = data value CRC = Cyclical Redundancy Code 07 F 04 S A5 50 ADR 87 F 00 02 DIM - CRC - CRC

01 DATA

In this example the function code 07 is not supported by the TPR. The response is an exception message (the msb of function code F=0x87 is set to 1). The Data field value is 1 and according with the Modbus standard corresponds to the Illegal function exception.

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 4 of 51

PRON NA20-MB0
The next table describes all the exceptions handled by the TPRs. Code 01 02 03 04 05 06 Name ILLEGAL FUNCTION ILLEGAL DATA ADDRESS ILLEGAL DATA VALUE SLAVE DEVICE FAILURE ACKNOWLEDGE SLAVE DEVICE BUSY Description The function code received in the query is not an allowable action for the slave. The data address received in the query is not an allowable address for the slave A value contained in the query data field is not an allowable value for the slave An unrecoverable error occurred while the slave was attempting to perform the requested action. The slave has accepted the request and is processing it, but a long duration of time will be required to do so. This response is returned to prevent a timeout error from occurring in the master. The slave is engaged in processing a long-duration program command. The master should retransmit the message later when the slave is free.

1.6 Modbus/TCP
Modbus/TCP, an extension of Modbus/RTU, defines how Modbus/RTU and Modbus/ASCII messages are encoded within and transported over TCP/IP-based networks. Modbus/TCP is just as simple to implement and flexible to apply as the original Modbus/RTU. The specification can be found online at www.modicon.com

Transaction Identifier

Protocol Identifier

Length Field

Modbus Frame

CHECKSUM

TCP FRAME

MODBUS FRAME

DATA

1.7 Network setting


Every device connected to the TCP/IP network including the TPRs must have a unique IP address. Every TPR has the following default IP address: Default IP Address = 200.1.1.135

1.8 NTP synchronization


To synchronize the Real Time Clock of more than one protection at the same time the NTP service is available. Network Time Protocol (NTP) is a protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks. NTP uses UDP port 123 as its transport layer. It is designed particularly to resist the effects of variable latency. To synchronize all the TPR in a network is sufficient to send a broadcast NTP packet on the network.

The NTP service can be enabled/disabled changing the NTP synchronization parameter (Appendix A Address Data Table).

More information about the NTP protocol and service can be found online at www.ntp.org

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 5 of 51

PRON NA20-MB0
2 Logical organization of the protections data
Each TPR has some data that can be read and/or written. These data are grouped in 4 data table. Data with 1 bit of information (e.g. the state of an output), can be placed in the Discrete Inputs table or in the Coils table, while data with more than 1 bit of information (e.g. the value of a current), can be placed in the Register table, sometimes fitting more than one register as described in the following example.

1x, Discrete Input n var 6 I> Start 7 I> Trip 8 I> Block1

n 157 158 159 160 161

3x, Input Registers var Power frequeny Phase current IL1 value Word L Phase current IL1 value Word H Phase current IL2 value Word L Phase current IL2 value Word H

Table 4. Example of data structures

Example: lets read the value of the variable I> Start. This variable is the first one in the Discrete Input data table. To read this kind of data the Modbus function 0x02 has to be used. As described in the standard the Modbus address to access the data is given by IDX-1 = 5 in this case. To read the data from the Slave address 1 the next request has to be sent: TX 01 S 02 F 00 05 ADR 00 01 DIM - CRC

2.1 Basic Data Type


In this chapter all the basic TPR data type and their relationship with the Modbus data type will be described.

2.1.1 BIT
Description: Variable with 1 bit of information. Relationship with Modbus: The information corresponds to the least significant bit (lsb) of the first data byte addressed in the query.

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 6 of 51

PRON NA20-MB0
2.1.2 BYTE
Description: Signed variable with 1 byte (8 bit) of information. Range: -128 +127

Relationship with Modbus: A BYTE data type is always placed in the Least Significant Byte (LSB) of a Modbus Register (DIM=1). B Byte 00 B Modbus Register

Example: relationship between the data BYTE whose value is 13 (0x0D) and its Modbus representation: 0D Byte 00 0D Modbus Register

2.1.3 UBYTE
Description: Unsigned variable with 1 byte (8 bit) of information. Range: 0 +255

Relationship with Modbus: A BYTE data type is always placed in the Least Significant Byte (LSB) of a Modbus Register (DIM=1).

B UByte

00 B Modbus Register

Example: relationship between the data BYTE whose value is 13 (0x0D) and its Modbus representation: 0D Byte 00 0D Modbus Register

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 7 of 51

PRON NA20-MB0
2.1.4 WORD
Description: Signed variable with 2 byte (16 bit) of information. Range: -32.768 +32.767

Relationship with Modbus: A WORD data type is always placed in a Modbus Register (DIM=1) keeping the representation (Big Endian).

BH

BL

Word

BH BL Modbus Register

Example: relationship between the data WORD whose value is 3073 (0x0C01) and its Modbus representation:

0C

01

Word

0C 01 Modbus Register

2.1.5 UWORD
Description: Unsigned variable with 2 byte (16 bit) of information. Range: 0 +65.535

Relationship with Modbus: A UWORD data type is always placed in a Modbus Register (DIM=1) keeping the representation (Big Endian). BH BL BH BL Modbus Register

UWord

Example: relationship between the data UWORD whose value is 3073 (0x0C01) and its Modbus representation: 0C 01 0C 01 Modbus Register

UWord

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 8 of 51

PRON NA20-MB0
2.1.6 LONG
Description: Signed variable with 4 byte (32 bit) of information. Range: -2.147.483.648 +2.147.483.647

Relationship with Modbus: A LONG data type is placed in two Modbus Registers (DIM=2). The Least Significant Word of the LONG data type is placed in the first Modbus register while the Most Significant Word of the LONG data type is placed in the second Modbus register. BHH BHL BLH BLL WH WL Long BLH BLL BHH BHL WL WH Modbus Registers

Example: relationship between the data LONG 66536 (0x103E8) and its value in the Modbus protocol domain: 00 01 03 Long E8 03 E8 00 01 Modbus Registers

2.1.7 ULONG
Description: Unsigned variable with 4 byte (32 bit) of information. Range: -0 +4.294.967.295

Relationship with Modbus: A ULONG data type is placed in two Modbus Registers (DIM=2). The Least Significant Word of the ULONG data type is placed in the first Modbus register while the Most Significant Word is placed in the second Modbus register. LHH LHL LLH LLL WH WL ULong LLH LLL LHH LHL WL WH Modbus Registers

Example: relationship between the ULONG data whose value is 66536 (0x103E8) and its Modbus representation: 00 01 03 ULong E8 03 E8 00 01 Modbus Registers

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 9 of 51

PRON NA20-MB0
2.1.8 ARR
Description: Array of BYTE. Relationship with Modbus: An ARR data type of length n is placed in N Modbus Registers (N= ceil(n/2) ) keeping the byte ordering. If odd n, the last byte of ARR is placed in the MSB of the last Modbus register, while the LSB is set to 0 If even n: B1 1 B2 2 Array[n] Bn n B1 1 B2 Bn-1 Bn

N Modbus Registers N = ceil(n/2)

If odd n: B1 1 B2 2 Array[n] Bn n B1 1 B2 Bn 0

N Modbus Registers

Example: Lets consider an array with 3 bytes whose values are: (0x01, 0x3A, 0x1F). This array can be placed in N=ceil(3/2)=ceil(1.5)=2 Modbus registers. 01 1 3A 1F 2 3 Array[3] 01 3A 1F 00 1 2 Modbus Registers

The ceil function returns the smallest integer value that is greater than or equal to a number. For example, ceil(2.3)=3 , ceil(1.5)=2.

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 10 of 51

PRON NA20-MB0
2.1.9 STR
Description: String data type. Its represented by an array of BYTE. Every byte represents the hexadecimal ASCII code associated with the character of the string Relationship with Modbus: An STR data type of length n is placed in N Modbus Registers (N= ceil(n/2) ) keeping the byte ordering. If odd n, the last byte is placed in the MSB of the last Modbus register. A zero padding operation (with char \0) is necessary for every writing operation where the length of the string is lower than the number of bytes contained in the Modbus registers. If even n: C1 1 C2 2 String[n] Cn n C1 1 C2 Cn-1 Cn

N Modbus Registers N = ceil(n/2)

If odd n: C1 1 C2 2 String[n] Cn n C1 1 C2 Cn \0

N Modbus Registers

Example: Lets assume Relay reference name is a STRING variable whose length is 8 characters, its Modbus address is 0x0029 and its dimension is 4 Modbus registers. Lets set its value to NAxx. First of all the ASCII code in hexadecimal notation for each character of the string NA10 is equal to 0x4E417878 An example of write request could be the following: TX 01 S 10 F 00 29 ADR 00 05 DIM 10 B 4E 41 DATA1 N A 78 78 DATA2 x x 00 00 DATA3 \0 \0 00 00 DATA4 \0 \0 - CRC

Remark. A zero padding operation is necessary because the length of the string DMC901 is lower than the length of the RACK_TYPE variable.

2.1.10

CMD

Description: This type of data represents a command. Every Command corresponds to a Coil data type. To execute the command, the value of the associated Coil has to be set to 1 with the Modbus function 0x05.

The ceil function returns the smallest integer value that is greater than or equal to a number. For example, ceil(2.3)=3 , ceil(1.5)=2.

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 11 of 51

PRON NA20-MB0
3 How to read the Address Data Table
All the information necessary to read/write data from/to a TPR is contained in the Address Data Table (see Appendix A).

3.1 Address Data Table


Now a description of all the Address Data Tables fields is given:
VAR REF IDX DIM TYPE UM KV ENUM

Table 5. Address Data Tables field

3.1.1 VAR
The VAR field contains the description of the variable. An example of VAR fields could be: Relay phase nominal current - In , Relay reference name or I> Trip.

3.1.2 REF
The REF field tells which data table the variable is stored in. The REF field can assume one of the following values: 0x: 1x: 3x: 4x: data stored in the COIL table data stored in the DISCRETE INPUT table data stored in the INPUT REGISTER table data stored in the HOLDING REGISTER table

3.1.3 IDX
The IDX field represents the position of the table (specified by REF) in which the variable VAR is stored. The IDX value is related to the Modbus address of the variable. The relationship between IDX and Modbus address is the following: MB address = IDX - 1

Example: lets consider the following Address Data Table VAR Relay phase nominal current - In Relay reference name I> Trip REF 3x 3x 1x IDX 50 42 7 DIM 1 8 1

Lets see that the variable Relay phase nominal current - In is the 50th variable stored in the Input Registers table (reference 3x) and its dimension is 1 Modbus register (DIM=1).

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 12 of 51

PRON NA20-MB0
3.1.4 DIM
The DIM field is the number of Modbus registers necessary to contain the VAR data. Example: lets read the value of the variable Relay phase nominal current - In . From the previous table we see that the reference is 4x for which the function 0x03 has to be used for reading. The Modbus address is IDX-1=50-1=49. The request for reading is the following: TX
01 S 03 F 00 31 ADR 00 01 DIM - CRC

3.1.5 TYPE
The TYPE field specifies the basic data type associated with VAR, as described in chapter 2.1.

3.1.6 UM
The UM field specifies the Unit of Measure of the variable. If UM is empty, it means that the Unit is just a number.

3.1.7 Kv
The Kv field contains the scale factor that has to be applied to the variable to obtain the real value. If Kv is not equal to 1, the value of the variable must be divided by Kv. Example: lets consider the following address data table
VAR REF IDX DIM TYPE UM KV ENUM

Phase current IL1 - Value

3x

159

LONG

In

16000

Lets read the Phase current IL1 - Value from the Slave address 1. TX Lets assume the following response: RX
01 S 04 F 04 B A9 80 00 03 DATA1 DATA2 LONG VALL VALH CRC 01 S 04 F 00 9E ADR 00 02 DIM - CRC

The TYPE field is necessary to decode the right value returned from the Modbus response, as described in chapter 2.1. The decoded value contained in the response is 0x0003A980 = 240000. Kv=16000 means that the value of the variable has to be divided by 16000. UM specify the Unit. The Phase current IL1 Value is equal to 15 In.

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 13 of 51

PRON NA20-MB0
3.1.8 ENUM
The ENUM field, whenever is defined, contains the meaning of all possible values assumed by the variable.

3.2 Common properties


Some common properties are now described for a better understanding.

3.2.1 Input state


State Its the physical state of the Input: 0 or 1 (OFF or ON)

3.2.2 Output state


State Its the logical state of the output: 0 or 1 (OFF or ON); could not correspond with its physical state Fail Its the Coil Failure Status: 0 or 1 (OFF=OK o ON=Fault).

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 14 of 51

PRON NA20-MB0
4 Examples
For all the examples, the following symbols are assumed: S F B ADR DIM CRC DATAx VALx = Slave Modbus address (1-247) = Modbus Function code (1,2,3,4,5,6,15,16) = number of byte in the DATA field = Modbus DATA address = number of Modbus DATA address = Cyclical Redundancy Check = register x of DATA field = value x of the variable

4.1 Example 1. How to read a variable


Lets read from the Slave address 1 the value of the Relay phase nominal current - In . From the Address Data Table (Appendix A) we find out the following information;
VAR REF IDX DIM TYPE UM Kv ENUM

Relay phase nominal current - In

3x

50

UWORD

The REF field value specify an Input Register (3x), so the function 0x04 is used for reading. From the IDX the Modbus address is derived: Modbus address = IDX -1 = 50 - 1 = 49. DIM specify the number of register to be read. TX RX
01 S 01 S 04 F 04 F 00 3E ADR 04 B 00 02 DIM CRC - CRC -

00 05 DATA

The TYPE field value is equal to UWORD. Applying the rules described in the chapter 2.1, the following value is obtained VAL = 0x0005= 5. Il UM field specify the Unit of measure that is Ampere, while Kv = 1 means that the value doesnt need to be scaled. The Relay phase nominal current In is equal to 5A.

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 15 of 51

PRON NA20-MB0
4.2 Example 2. How to read a BIT data type
Lets read from the Slave address 1 the variable I> Trip. From the Address Data Table (Appendix A) we find out the following information;
VAR REF IDX DIM TYPE UM Kv ENUM

I> Trip

1x

BIT

0=OFF, 1=ON

The REF field value specify a Discrete Input (1x), so the function 0x02 is used for reading. From the IDX the Modbus address is derived: Modbus address = IDX -1 = 7 - 1 = 6. DIM specify the number of register to be read. TX RX
01 S 01 S 02 F 02 F 00 06 ADR 01 B 00 01 DIM CRC - CRC -

00 01 VAL

The TYPE field value is equal to BIT. Applying the rules described in the chapter 2.1, the following value is obtained VAL = 1. The ENUM field specifies the meaning of the value. In this case, the value 1 corresponds to the ON state and it means that a Trip has occurred on the first threshold of the 51 function.

4.3 Example 3. How to execute a command


Lets execute the command Reset events on the Slave address 1. From the Address Data Table (Appendix A) we find out the following information;
VAR REF IDX DIM TYPE UM Kv ENUM

Reset LEDs

0x

CMD

0=OFF, 1=ON

The TYPE field value specifies a Command (CMD). As described in chapter 2.1, to execute the command, it is necessary to set its value to 1. The REF field value specify a Coil (0x), so the function 0x05 is used for writing. From the IDX the Modbus address is derived: Modbus address = IDX -1 = 2 - 1 = 1 The Response message is known as an Acknowledge because its an echo of the request, and it means that the Coil has been set:

TX RX

01 S 01 S

05 F 05 F

00 01 ADR 00 01 ADR

FF 00 DATA FF 00 DATA

- CRC - CRC

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 16 of 51

PRON NA20-MB0

5 Glossary
BH BL LSB lsb MSB msb NTP RTU TPR WH WL Most significative Byte of a Word data (Higher byte) Least significative Byte of a Word data (Lower byte) Least Significative Byte least significative bit Most Significative Byte Most significative bit Network Time Protocol Remote Terminal Unit Thytronic Protective Relay Most significative Word of a Long data (Higher word) Least significative Word of a Long data (Lower word)

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 17 of 51

PRON NA20-MB0
6 Appendix A. Address Data Table
VAR Commands Set RTC Reset CB Open counter Reset LEDs Reset CB time action Reset Breaking currents SumI2t Reset Breaking currents SumI Reset partial counters Thermal image presetting Fault reading Reset faults Reset faults identifier Events reading Reset events Reset event identifier Open CB Close CB Test-off Test-on Reset on demand measures Day Month Year Hour Minute Second Testing rele 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 0x 4x 4x 4x 4x 4x 4x 4x 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 2 3 4 5 6 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD CMD UWORD UWORD UWORD UWORD UWORD UWORD WORD 1,31,1 1,12,1 2000,2099,1 0,23,1 0,59,1 0,59,1 1 1 1 1 1 1 0="K1",1="K2",2="K3",3="K4",4=" K5",5="K6",6="K7",7="K8",8="K9" ,9="K10" 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 18 of 51

PRON NA20-MB0
VAR Info Code Serial number Application sw release Base sw release DSP fw identifier DSP fw release Communication Address IP host address IP net mask Autonegotiation Enable Rated nominal values Relay reference name Relay phase nominal current - In Relay residual nominal current - IEn Phase CT primary nominal current - Inp Residual CT primary nominal current - IEnp Relay nominal frequency - fn Measurements reading mode Profile selection Profile Clock Day Month Year Hour Minute Second 3x 3x 3x 3x 3x 3x 65 66 67 68 69 70 1 1 1 1 1 1 UWORD UWORD UWORD UWORD UWORD UWORD 1 1 1 1 1 1 3x 64 1 WORD 0="A",1="B" 3x 3x 3x 3x 3x 3x 3x 45 53 55 57 59 61 63 8 2 2 2 2 2 1 STR ULONG ULONG ULONG ULONG ULONG WORD A A A A Hz 1 1 1 1 1 0="RELATIVE",1="PRIMARY" 3x 3x 3x 1x 1x 28 29 37 1 2 1 8 8 1 1 UBYTE STR STR BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 1 3x 3x 3x 3x 3x 3x 1 7 9 15 21 22 6 2 6 6 1 6 STR LONG STR STR UWORD STR 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 19 of 51

PRON NA20-MB0
VAR READINGS Diagnostic MINOR Fail alarm Protection and controls System diagnostic Device diagnostic Program diagnostic Data-base boot Data-base run-time DSP boot DSP run-time Memory boot Memory run-time Serial flash startup Serial flash run-time Data Bus heavy Data Bus minor Protection I/O assigned verify startup Protection I/O assigned verify run-time major Protection I/O assigned verify run-time minor PLC I/O assigned verify startup PLC I/O assigned verify run-time major PLC I/O assigned verify run-time minor 1x 1x 3x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3 4 71 5 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT WORD BIT WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD 0=NO, 1=YES 0=OUT OF SERVICE, 1=ON SERVICE 0="OK",1="FATAL",2="MAJOR",3 ="MINOR" 0=OK, 1=NOT OK 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" 0="OK",1="NOT OK",2="Disappeared" REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 20 of 51

PRON NA20-MB0
VAR Diagnostic MMI module - Boot 3x 89 1 WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" REF IDX DIM TYPE Range Um Kv ENUM

MMI module - Run-time

3x

90

WORD

MRI module - Boot

3x

91

WORD

MRI module - Run-time

3x

92

WORD

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 21 of 51

PRON NA20-MB0
VAR Diagnostic MID16-1 module - Boot 3x 93 1 WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" REF IDX DIM TYPE Range Um Kv ENUM

MID16-1 module - Run-time

3x

94

WORD

MID16-2 module - Boot

3x

95

WORD

MID16-2 module - Run-time

3x

96

WORD

PT100 module - Boot

3x

97

WORD

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 22 of 51

PRON NA20-MB0
VAR Diagnostic PT100 module - Run-time 3x 98 1 WORD 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" 0="NOT OK: Undefined module",1="OK",2="NOT OK: missing module",3="NOT OK: incompatible module",4="OK",5="NOT OK",6="OFF",7="OFF: Remove module" REF IDX DIM TYPE Range Um Kv ENUM

MCI module (4...20mA) - Boot

3x

99

WORD

MCI module (4...20mA) - Run-time

3x

100

WORD

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 23 of 51

PRON NA20-MB0
VAR PROTECTIONS Thermal protection with RTD thermometric probes - 26 Alarm ThAL1 Trip Th>1 Alarm ThAL2 Trip Th>2 Alarm ThAL3 Trip Th>3 Alarm ThAL4 Trip Th>4 Alarm ThAL5 Trip Th>5 Alarm ThAL6 Trip Th>6 Alarm ThAL7 Trip Th>7 Alarm ThAL8 Trip Th>8 Diag PT100 Undercurrent - 37 Start I< Trip I< BLK1 I< 1x 1x 1x 23 24 25 1 1 1 BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 24 of 51

PRON NA20-MB0
VAR Negative sequence overcurrent - 46 Start I2> Trip I2> BLK1 I2> BLK2IN I2> CLP I2> Start I2>> Trip I2>> BLK1 I2>> BLK2IN I2>> CLP I2>> Negative sequence current / positive sequence current ratio I2/I1 Start I21> Trip I21> BLK1 I21> Thermal image - 49 Alarm DthAL1 BLK1 DthAL1 BLK2IN DthAL1 Alarm DthAL2 BLK1 DthAL2 BLK2IN DthAL2 Trip Dth> BLK1 Dth> BLK2IN Dth> CLP Dth 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 39 40 41 42 43 44 45 46 47 48 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 36 37 38 1 1 1 BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 26 27 28 29 30 31 32 33 34 35 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 25 of 51

PRON NA20-MB0
VAR Phase overcurrent - 50/51 Start I> Trip I> BLK1 I> BLK2IN I> CLP I> Start I>> Trip I>> BLK1 I>> BLK2IN I>> CLP I>> Start I>>> Trip I>>> BLK1 I>>> BLK2IN I>>> CLP I>>> Residual overcurrent - 50N/51N Start IE> Trip IE> BLK1 IE> BLK2IN IE> CLP IE> Start IE>> Trip IE>> BLK1 IE>> BLK2IN IE>> CLP IE>> Start IE>>> Trip IE>>> BLK1 IE>>> BLK2IN IE>>> CLP IE>>> 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 26 of 51

PRON NA20-MB0
VAR Second Harmonic Restraint Start I2ndh> Trip circuit supervision - 74TCS Start 74TCS Trip 74TCS BLK1 74TCS Breaker Failure - BF Trip Int/Ext Start IBF> Start IEBF> Start BF Trip BF BLK1 BF CT supervision - 74CT Start I* Trip S< BLK1 S< 1x 1x 1x 89 90 91 1 1 1 BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 1x 1x 1x 83 84 85 86 87 88 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 80 81 82 1 1 1 BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 79 1 BIT 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 27 of 51

PRON NA20-MB0
VAR PLC State 1 State 2 State 3 State 4 State 5 State 6 State 7 State 8 State 9 State 10 State 11 State 12 State 13 State 14 State 15 State 16 State 17 State 18 State 19 State 20 State 21 State 22 State 23 State 24 State 25 State 26 State 27 State 28 State 29 State 30 State 31 State 32 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" 0="0",1="1" REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 28 of 51

PRON NA20-MB0
VAR Circuit Breaker supervision CB-State 52a 52b CB fail Break time assigned relays state State N.Open State SumI SumIL1 SumIL2 SumIL3 State SumI^2t SumIL1^2t SumIL2^2t SumIL3^2t State tbreak PARTIAL COUNTERS Thermal protection with RTD thermometric probes - 26 ParThAL1cnt - Value ParTh>1cnt - Value ParThAL2cnt - Value ParTh>2cnt - Value ParThAL3cnt - Value ParTh>3cnt - Value ParThAL4cnt - Value ParTh>4cnt - Value ParThAL5cnt - Value ParTh>5cnt - Value ParThAL6cnt - Value ParTh>6cnt - Value ParThAL7cnt - Value ParTh>7cnt - Value ParThAL8cnt - Value ParTh>8cnt - Value 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD 3x 1x 1x 1x 1x 1x 1x 3x 3x 3x 1x 3x 3x 3x 1x 133 92 93 94 95 96 97 134 136 138 98 140 142 144 99 1 1 1 1 1 1 1 2 2 2 1 2 2 2 1 WORD BIT BIT BIT BIT BIT BIT ULONG ULONG ULONG BIT ULONG ULONG ULONG BIT In^2s In^2s In^2s 250000 250000 250000 0=OFF, 1=ON In In In 16000 16000 16000 0=OFF, 1=ON 0="Open",1="Closed",2="?" 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 29 of 51

PRON NA20-MB0
VAR Undercurrent - 37 ParStI<cnt - Value ParTrI<cnt - Value ParBk1I<cnt - Value Negative sequence overcurrent - 46 ParStI2>cnt - Value ParTrI2>cnt - Value ParBk1I2>cnt - Value ParBk2I2>cnt - Value ParStI2>>cnt - Value ParTrI2>>cnt - Value ParBk1I2>>cnt - Value ParBk2I2>>cnt - Value Negative sequence current / positive sequence current ratio I2/I1 ParStI21>cnt - Value ParTrI21>cnt - Value ParBk1I21>cnt - Value Thermal image - 49 ParAlDthAL1cnt - Value ParBk1DthAL1cnt - Value ParBk2DthAL1cnt - Value ParAlDthAL2cnt - Value ParBk1DthAL2cnt - Value ParBk2DthAL2cnt - Value ParTrDth>cnt - Value ParBk1Dth>cnt - Value ParBk2Dth>cnt - Value 3x 3x 3x 3x 3x 3x 3x 3x 3x 176 177 178 179 180 181 182 183 184 1 1 1 1 1 1 1 1 1 WORD WORD WORD WORD WORD WORD WORD WORD WORD 3x 3x 3x 173 174 175 1 1 1 WORD WORD WORD 3x 3x 3x 3x 3x 3x 3x 3x 165 166 167 168 169 170 171 172 1 1 1 1 1 1 1 1 WORD WORD WORD WORD WORD WORD WORD WORD 3x 3x 3x 162 163 164 1 1 1 WORD WORD WORD REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 30 of 51

PRON NA20-MB0
VAR Phase overcurrent - 50/51 ParStI>cnt - Value ParTrI>cnt - Value ParBk1I>cnt - Value ParBk2I>cnt - Value ParStI>>cnt - Value ParTrI>>cnt - Value ParBk1I>>cnt - Value ParBk2I>>cnt - Value ParStI>>>cnt - Value ParTrI>>>cnt - Value ParBk1I>>>cnt - Value ParBk2I>>>cnt - Value Residual overcurrent - 50N/51N ParStIE>cnt - Value ParTrIE>cnt - Value ParBk1IE>cnt - Value ParBk2IE>cnt - Value ParStIE>>cnt - Value ParTrIE>>cnt - Value ParBk1IE>>cnt - Value ParBk2IE>>cnt - Value ParStIE>>>cnt - Value ParTrIE>>>cnt - Value ParBk1IE>>>cnt - Value ParBk2IE>>>cnt - Value Second Harmonic Restraint ParStI2ndh>cnt - Value 3x 209 1 WORD 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 197 198 199 200 201 202 203 204 205 206 207 208 1 1 1 1 1 1 1 1 1 1 1 1 WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 185 186 187 188 189 190 191 192 193 194 195 196 1 1 1 1 1 1 1 1 1 1 1 1 WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD WORD REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 31 of 51

PRON NA20-MB0
VAR Trip circuit supervision - 74TCS ParTr74TCScnt - Value ParBk1-74TCScnt - Value Circuit Breaker supervision N.OpenCBcnt CT supervision - 74CT ParTr74CTcnt - Value ParBk1-74CTcnt - Value Accessory counters ParStBFcnt - Value ParTrBFcnt - Value ParBk1BFcnt - Value 3x 3x 3x 215 216 217 1 1 1 WORD WORD WORD 3x 3x 213 214 1 1 WORD WORD 3x 212 1 UWORD 1 3x 3x 210 211 1 1 WORD WORD REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 32 of 51

PRON NA20-MB0
VAR Delayed inputs IN1 IN2 IN3 IN4 IN5 IN6 IN7 IN8 IN9 IN10 IN11 IN12 IN13 IN14 IN15 IN16 IN17 IN18 IN19 IN20 IN21 IN22 IN23 IN24 IN25 IN26 IN27 IN28 IN29 IN30 IN31 IN32 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 33 of 51

PRON NA20-MB0
VAR Delayed inputs IN33 IN34 IN35 IN36 IN37 IN38 IN39 IN40 IN41 IN42 IN43 IN44 IN45 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 132 133 134 135 136 137 138 139 140 141 142 143 144 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 34 of 51

PRON NA20-MB0
VAR Internal states Reset LEDs Profile selection Fault trigger IE/IPh Block2 IPh Block2 IE Block2 Block1 Tcs1 Tcs2 Trip External protections Reset partial counters Reset CB monitoring data 52a 52b Open CB Close CB Thermal image presetting Remote trip Reset on demand measures Block2 BLK2IN-Iph BLK2IN-IE tB timeout ST-Iph-BLK2 ST-IE-BLK2 BLK2OUT-Iph BLK2OUT-IE BLK2OUT-Iph/IE 1x 1x 1x 1x 1x 1x 1x 1x 164 165 166 167 168 169 170 171 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 35 of 51

PRON NA20-MB0
VAR Relays K1 - State K1 - Diagnostic K2 - State K2 - Diagnostic K3 - State K3 - Diagnostic K4 - State K4 - Diagnostic K5 - State K5 - Diagnostic K6 - State K6 - Diagnostic K7 - State K7 - Diagnostic K8 - State K8 - Diagnostic K9 - State K9 - Diagnostic K10 - State K10 - Diagnostic MEASURES Physical f - Value IL1 - Value IL2 - Value IL3 - Value IE - Value Calculated DTheta - Value ILmax - Value ILmin - Value IL - Value 3x 3x 3x 3x 228 230 232 234 2 2 2 2 LONG LONG LONG LONG DThetaB In In In 1000 16000 16000 16000 3x 3x 3x 3x 3x 218 220 222 224 226 2 2 2 2 2 LONG LONG LONG LONG LONG Hz In In In IEn 1000 16000 16000 16000 80000 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT BIT 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON 0=OFF, 1=ON REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 36 of 51

PRON NA20-MB0
VAR Sequence I1 - Value I2 - Value I2/I1 - Value 2nd harmonic IL1-2nd - Value IL2-2nd - Value IL3-2nd - Value I-2nd/IL - Value 3rd harmonic IL1-3rd - Value IL2-3rd - Value IL3-3rd - Value IE-3rd - Value 4th harmonic IL1-4th - Value IL2-4th - Value IL3-4th - Value 5th harmonic IL1-5th - Value IL2-5th - Value IL3-5th - Value 3x 3x 3x 264 266 268 2 2 2 LONG LONG LONG In In In 16000 16000 16000 3x 3x 3x 258 260 262 2 2 2 LONG LONG LONG In In In 16000 16000 16000 3x 3x 3x 3x 250 252 254 256 2 2 2 2 LONG LONG LONG LONG In In In IEn 16000 16000 16000 80000 3x 3x 3x 3x 242 244 246 248 2 2 2 2 LONG LONG LONG LONG In In In % 16000 16000 16000 20 3x 3x 3x 236 238 240 2 2 2 LONG LONG LONG In In 16000 16000 8000 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 37 of 51

PRON NA20-MB0
VAR Phase demands IL1FIX - Value IL2FIX - Value IL3FIX - Value IL1ROL - Value IL2ROL - Value IL3ROL - Value IL1MAX - Value IL2MAX - Value IL3MAX - Value IL1MIN - Value IL2MIN - Value IL3MIN - Value 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 270 272 274 276 278 280 282 284 286 288 290 292 2 2 2 2 2 2 2 2 2 2 2 2 LONG LONG LONG LONG LONG LONG LONG LONG LONG LONG LONG LONG In In In In In In In In In In In In 16000 16000 16000 16000 16000 16000 16000 16000 16000 16000 16000 16000 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 38 of 51

PRON NA20-MB0
VAR PT100 Probes PT1 T1 PT2 T2 PT3 T3 PT4 T4 PT5 T5 PT6 T6 PT7 T7 PT8 T8 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 294 295 297 298 300 301 303 304 306 307 309 310 312 313 315 316 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 WORD LONG WORD LONG WORD LONG WORD LONG WORD LONG WORD LONG WORD LONG WORD LONG ^C 10 ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" ^C 10 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" 0="ON",1="WAIT",2="LOW",3="H IGH",4="FAIL" REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 39 of 51

PRON NA20-MB0
VAR Fault 0 Fault n. 0 - Fault counter Fault n. 0 - Date Fault n. 0 - Time Fault n. 0 - Fault cause 3x 3x 3x 3x 318 320 326 332 2 6 6 1 LONG STR STR WORD 0="No faults",1="I< Start",2="I< Trip",3="I2> Start",4="I2> Trip",5="I2>> Start",6="I2>> Trip",7="I21> Start",8="I21> Trip",9="I> Start",10="I> Trip",11="I>> Start",12="I>> Trip",13="I>>> Start",14="I>>> Trip",15="IE> Start",16="IE> Trip",17="IE>> Start",18="IE>> Trip",19="IE>>> Start",20="IE>>> Trip",21="DThetaAL1 Alarm",22="DThetaAL2 Alarm",23="DTheta> Trip",24="PT1 Alarm",25="PT1 Trip",26="PT2 Alarm",27="PT2 Trip",28="PT3 Alarm",29="PT3 Trip",30="PT4 Alarm",31="PT4 Trip",32="PT5 Alarm",33="PT5 Trip",34="PT6 Alarm",35="PT6 Trip",36="PT7 Alarm",37="PT7 Trip",38="PT8 Alarm",39="PT8 Trip",40="74TCS Trip",41="74CT Trip",42="BF Start",43="BF Trip",44="Logic input" 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 40 of 51

PRON NA20-MB0
VAR Fault 0 Fault n. 0 - IL1r Fault n. 0 - IL2r Fault n. 0 - IL3r Fault n. 0 - IEr Fault n. 0 - DTheta-r Fault n. 0 - I2r Fault n. 0 - (I2/I1)r Fault n. 0 - T1r Fault n. 0 - T2r Fault n. 0 - T3r Fault n. 0 - T4r Fault n. 0 - T5r Fault n. 0 - T6r Fault n. 0 - T7r Fault n. 0 - T8r Fault n. 0 - Inputs IN1-IN5 Fault n. 0 - Inputs IN6-IN13 Fault n. 0 - Inputs IN14-IN29 Fault n. 0 - Inputs IN30-IN45 Fault n. 0 - Outputs K1-K6 Fault n. 0 - Outputs K7-K10 Fault n. 0 - Fault cause info 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 333 335 337 339 341 343 345 347 349 351 353 355 357 359 361 363 364 365 366 367 368 369 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 8 ULONG ULONG ULONG ULONG ULONG ULONG ULONG LONG LONG LONG LONG LONG LONG LONG LONG UWORD UWORD UWORD UWORD UWORD UWORD STR ^C ^C ^C ^C ^C ^C ^C ^C In In In IEn DThetaB In 16000 16000 16000 80000 1000 16000 8000 10 10 10 10 10 10 10 10 1 1 1 1 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 41 of 51

PRON NA20-MB0
VAR Fault 1 Fault n. 1 - Fault counter Fault n. 1 - Date Fault n. 1 - Time Fault n. 1 - Fault cause 3x 3x 3x 3x 377 379 385 391 2 6 6 1 LONG STR STR WORD 0="No faults",1="I< Start",2="I< Trip",3="I2> Start",4="I2> Trip",5="I2>> Start",6="I2>> Trip",7="I21> Start",8="I21> Trip",9="I> Start",10="I> Trip",11="I>> Start",12="I>> Trip",13="I>>> Start",14="I>>> Trip",15="IE> Start",16="IE> Trip",17="IE>> Start",18="IE>> Trip",19="IE>>> Start",20="IE>>> Trip",21="DThetaAL1 Alarm",22="DThetaAL2 Alarm",23="DTheta> Trip",24="PT1 Alarm",25="PT1 Trip",26="PT2 Alarm",27="PT2 Trip",28="PT3 Alarm",29="PT3 Trip",30="PT4 Alarm",31="PT4 Trip",32="PT5 Alarm",33="PT5 Trip",34="PT6 Alarm",35="PT6 Trip",36="PT7 Alarm",37="PT7 Trip",38="PT8 Alarm",39="PT8 Trip",40="74TCS Trip",41="74CT Trip",42="BF Start",43="BF Trip",44="Logic input" 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 42 of 51

PRON NA20-MB0
VAR Fault 1 Fault n. 1 - IL1r Fault n. 1 - IL2r Fault n. 1 - IL3r Fault n. 1 - IEr Fault n. 1 - DTheta-r Fault n. 1 - I2r Fault n. 1 - (I2/I1)r Fault n. 1 - T1r Fault n. 1 - T2r Fault n. 1 - T3r Fault n. 1 - T4r Fault n. 1 - T5r Fault n. 1 - T6r Fault n. 1 - T7r Fault n. 1 - T8r Fault n. 1 - Inputs IN1-IN5 Fault n. 1 - Inputs IN6-IN13 Fault n. 1 - Inputs IN14-IN29 Fault n. 1 - Inputs IN30-IN45 Fault n. 1 - Outputs K1-K6 Fault n. 1 - Outputs K7-K10 Fault n. 1 - Fault cause info 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 392 394 396 398 400 402 404 406 408 410 412 414 416 418 420 422 423 424 425 426 427 428 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 8 ULONG ULONG ULONG ULONG ULONG ULONG ULONG LONG LONG LONG LONG LONG LONG LONG LONG UWORD UWORD UWORD UWORD UWORD UWORD STR ^C ^C ^C ^C ^C ^C ^C ^C In In In IEn DThetaB In 16000 16000 16000 80000 1000 16000 8000 10 10 10 10 10 10 10 10 1 1 1 1 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 43 of 51

PRON NA20-MB0
VAR Fault 2 Fault n. 2 - Fault counter Fault n. 2 - Date Fault n. 2 - Time Fault n. 2 - Fault cause 3x 3x 3x 3x 436 438 444 450 2 6 6 1 LONG STR STR WORD 0="No faults",1="I< Start",2="I< Trip",3="I2> Start",4="I2> Trip",5="I2>> Start",6="I2>> Trip",7="I21> Start",8="I21> Trip",9="I> Start",10="I> Trip",11="I>> Start",12="I>> Trip",13="I>>> Start",14="I>>> Trip",15="IE> Start",16="IE> Trip",17="IE>> Start",18="IE>> Trip",19="IE>>> Start",20="IE>>> Trip",21="DThetaAL1 Alarm",22="DThetaAL2 Alarm",23="DTheta> Trip",24="PT1 Alarm",25="PT1 Trip",26="PT2 Alarm",27="PT2 Trip",28="PT3 Alarm",29="PT3 Trip",30="PT4 Alarm",31="PT4 Trip",32="PT5 Alarm",33="PT5 Trip",34="PT6 Alarm",35="PT6 Trip",36="PT7 Alarm",37="PT7 Trip",38="PT8 Alarm",39="PT8 Trip",40="74TCS Trip",41="74CT Trip",42="BF Start",43="BF Trip",44="Logic input" 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 44 of 51

PRON NA20-MB0
VAR Fault 2 Fault n. 2 - IL1r Fault n. 2 - IL2r Fault n. 2 - IL3r Fault n. 2 - IEr Fault n. 2 - DTheta-r Fault n. 2 - I2r Fault n. 2 - (I2/I1)r Fault n. 2 - T1r Fault n. 2 - T2r Fault n. 2 - T3r Fault n. 2 - T4r Fault n. 2 - T5r Fault n. 2 - T6r Fault n. 2 - T7r Fault n. 2 - T8r Fault n. 2 - Inputs IN1-IN5 Fault n. 2 - Inputs IN6-IN13 Fault n. 2 - Inputs IN14-IN29 Fault n. 2 - Inputs IN30-IN45 Fault n. 2 - Outputs K1-K6 Fault n. 2 - Outputs K7-K10 Fault n. 2 - Fault cause info 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 451 453 455 457 459 461 463 465 467 469 471 473 475 477 479 481 482 483 484 485 486 487 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 8 ULONG ULONG ULONG ULONG ULONG ULONG ULONG LONG LONG LONG LONG LONG LONG LONG LONG UWORD UWORD UWORD UWORD UWORD UWORD STR ^C ^C ^C ^C ^C ^C ^C ^C In In In IEn DThetaB In 16000 16000 16000 80000 1000 16000 8000 10 10 10 10 10 10 10 10 1 1 1 1 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 45 of 51

PRON NA20-MB0
VAR Fault 3 Fault n. 3 - Fault counter Fault n. 3 - Date Fault n. 3 - Time Fault n. 3 - Fault cause 3x 3x 3x 3x 495 497 503 509 2 6 6 1 LONG STR STR WORD 0="No faults",1="I< Start",2="I< Trip",3="I2> Start",4="I2> Trip",5="I2>> Start",6="I2>> Trip",7="I21> Start",8="I21> Trip",9="I> Start",10="I> Trip",11="I>> Start",12="I>> Trip",13="I>>> Start",14="I>>> Trip",15="IE> Start",16="IE> Trip",17="IE>> Start",18="IE>> Trip",19="IE>>> Start",20="IE>>> Trip",21="DThetaAL1 Alarm",22="DThetaAL2 Alarm",23="DTheta> Trip",24="PT1 Alarm",25="PT1 Trip",26="PT2 Alarm",27="PT2 Trip",28="PT3 Alarm",29="PT3 Trip",30="PT4 Alarm",31="PT4 Trip",32="PT5 Alarm",33="PT5 Trip",34="PT6 Alarm",35="PT6 Trip",36="PT7 Alarm",37="PT7 Trip",38="PT8 Alarm",39="PT8 Trip",40="74TCS Trip",41="74CT Trip",42="BF Start",43="BF Trip",44="Logic input" 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 46 of 51

PRON NA20-MB0
VAR Fault 3 Fault n. 3 - IL1r Fault n. 3 - IL2r Fault n. 3 - IL3r Fault n. 3 - IEr Fault n. 3 - DTheta-r Fault n. 3 - I2r Fault n. 3 - (I2/I1)r Fault n. 3 - T1r Fault n. 3 - T2r Fault n. 3 - T3r Fault n. 3 - T4r Fault n. 3 - T5r Fault n. 3 - T6r Fault n. 3 - T7r Fault n. 3 - T8r Fault n. 3 - Inputs IN1-IN5 Fault n. 3 - Inputs IN6-IN13 Fault n. 3 - Inputs IN14-IN29 Fault n. 3 - Inputs IN30-IN45 Fault n. 3 - Outputs K1-K6 Fault n. 3 - Outputs K7-K10 Fault n. 3 - Fault cause info 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 510 512 514 516 518 520 522 524 526 528 530 532 534 536 538 540 541 542 543 544 545 546 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 8 ULONG ULONG ULONG ULONG ULONG ULONG ULONG LONG LONG LONG LONG LONG LONG LONG LONG UWORD UWORD UWORD UWORD UWORD UWORD STR ^C ^C ^C ^C ^C ^C ^C ^C In In In IEn DThetaB In 16000 16000 16000 80000 1000 16000 8000 10 10 10 10 10 10 10 10 1 1 1 1 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 47 of 51

PRON NA20-MB0
VAR Events Event n. 0 - Event counter Event n. 0 - Date Event n. 0 - Hour Event n. 0 - Cause Event n. 1 - Event counter Event n. 1 - Date Event n. 1 - Hour Event n. 1 - Cause Event n. 2 - Event counter Event n. 2 - Date Event n. 2 - Hour Event n. 2 - Cause Event n. 3 - Event counter Event n. 3 - Date Event n. 3 - Hour Event n. 3 - Cause Event n. 4 - Event counter Event n. 4 - Date Event n. 4 - Hour Event n. 4 - Cause Event n. 5 - Event counter Event n. 5 - Date Event n. 5 - Hour Event n. 5 - Cause Event n. 6 - Event counter Event n. 6 - Date Event n. 6 - Hour Event n. 6 - Cause Event n. 7 - Event counter Event n. 7 - Date Event n. 7 - Hour Event n. 7 - Cause 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 554 556 562 568 569 571 577 583 584 586 592 598 599 601 607 613 614 616 622 628 629 631 637 643 644 646 652 658 659 661 667 673 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD SEE MANUAL END PAGE SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 48 of 51

PRON NA20-MB0
VAR Events Event n. 8 - Event counter Event n. 8 - Date Event n. 8 - Hour Event n. 8 - Cause Event n. 9 - Event counter Event n. 9 - Date Event n. 9 - Hour Event n. 9 - Cause Event n. 10 - Event counter Event n. 10 - Date Event n. 10 - Hour Event n. 10 - Cause Event n. 11 - Event counter Event n. 11 - Date Event n. 11 - Hour Event n. 11 - Cause Event n. 12 - Event counter Event n. 12 - Date Event n. 12 - Hour Event n. 12 - Cause Event n. 13 - Event counter Event n. 13 - Date Event n. 13 - Hour Event n. 13 - Cause Event n. 14 - Event counter Event n. 14 - Date Event n. 14 - Hour Event n. 14 - Cause Event n. 15 - Event counter Event n. 15 - Date Event n. 15 - Hour Event n. 15 - Cause 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 674 676 682 688 689 691 697 703 704 706 712 718 719 721 727 733 734 736 742 748 749 751 757 763 764 766 772 778 779 781 787 793 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD SEE MANUAL END PAGE SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 SEE MANUAL END PAGE 1 1 REF IDX DIM TYPE Range Um Kv ENUM

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 49 of 51

PRON NA20-MB0
VAR Events Event n. 16 - Event counter Event n. 16 - Date Event n. 16 - Hour Event n. 16 - Cause Event n. 17 - Event counter Event n. 17 - Date Event n. 17 - Hour Event n. 17 - Cause Event n. 18 - Event counter Event n. 18 - Date Event n. 18 - Hour Event n. 18 - Cause Event n. 19 - Event counter Event n. 19 - Date Event n. 19 - Hour Event n. 19 - Cause 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 3x 794 796 802 808 809 811 817 823 824 826 832 838 839 841 847 853 2 6 6 1 2 6 6 1 2 6 6 1 2 6 6 1 LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD LONG STR STR WORD SEE MANUAL END PAGE SEE MANUAL END PAGE 1 1 SEE MANUAL END PAGE SEE MANUAL END PAGE 1 1 REF IDX DIM TYPE Range Um Kv ENUM

VAR Test TEST state

REF 1x

IDX 192

DIM 1

TYPE BIT

Range

Um

Kv

ENUM 0=OFF, 1=ON

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 50 of 51

PRON NA20-MB0

Event n. x - Cause

0="No events",1="IN1 on",2="IN1 off",3="IN2 on",4="IN2 off",5="IN3 on",6="IN3 off",7="IN4 on", 8="IN4 off",9="IN5 on",10="IN5 off",11="IN6 on",12="IN6 off",13="IN7 on",14="IN7 off",15="IN8 on", 16="IN8 off",17="IN9 on",18="IN9 off",19="IN10 on",20="IN10 off",21="IN11 on",22="IN11 off", 23="IN12 on",24="IN12 off",25="IN13 on",26="IN13 off",27="IN14 on",28="IN14 off",29="IN15 on", 30="IN15 off",31="IN16 on",32="IN16 off",33="IN17 on",34="IN17 off",35="IN18 on",36="IN18 off", 37="IN19 on",38="IN19 off",39="IN20 on",40="IN20 off",41="IN21 on",42="IN21 off",43="IN22 on", 44="IN22 off",45="IN23 on",46="IN23 off",47="IN24 on",48="IN24 off",49="IN25 on",50="IN25 off", 51="IN26 on",52="IN26 off",53="IN27 on",54="IN27 off",55="IN28 on",56="IN28 off",57="IN29 on", 58="IN29 off",59="IN30 on",60="IN30 off",61="IN31 on",62="IN31 off",63="IN32 on",64="IN32 off", 65="IN33 on",66="IN33 off",67="IN34 on",68="IN34 off",69="IN35 on",70="IN35 off",71="IN36 on", 72="IN36 off",73="IN37 on",74="IN37 off",75="IN38 on",76="IN38 off",77="IN39 on",78="IN39 off", 79="IN40 on",80="IN40 off",81="IN41 on",82="IN41 off",83="IN42 on",84="IN42 off",85="IN43 on", 86="IN43 off",87="IN44 on",88="IN44 off",89="IN45 on",90="IN45 off",91="I< Start",92="I< Trip", 93="I2> Start",94="I2> Trip",95="I2>> Start",96="I2>> Trip",97="I21> Start",98="I21> Trip", 99="DThetaAL1 Alarm",100="DThetaAL2 Alarm",101="DTheta> Trip",102="I> Start",103="I> Trip", 104="I>> Start",105="I>> Trip",106="I>>> Start",107="I>>> Trip",108="IE> Start",109="IE> Trip", 110="IE>> Start",111="IE>> Trip",112="IE>>> Start",113="IE>>> Trip",114="PT1 Alarm", 115="PT1 Trip",116="PT2 Alarm",117="PT2 Trip",118="PT3 Alarm",119="PT3 Trip",120="PT4 Alarm", 121="PT4 Trip",122="PT5 Alarm",123="PT5 Trip",124="PT6 Alarm",125="PT6 Trip",126="PT7 Alarm", 127="PT7 Trip",128="PT8 Alarm",129="PT8 Trip",130="74TCS Trip",131="BF Start",132="BF Trip", 133="CB State diag",134="Remote trip",135="Settings",136="Logic input",137="Power down", 138="Power up",200="TX Trip on",201="TX Trip off",202="RX Trip on",203="RX Trip off", 204="RX blkin on",205="RX blkin off",206="TX blk2out on",207="TX blk2out off", 208="61850 RX blin on",209="61850 RX blin off",210="61850 RX open CB on", 211="61850 RX open CB off",212="61850 RX close CB on",213="61850 RX close CB off", 214="61850 Start simulator on",215="61850 Start simulator off",216="61850 Trip simulator on", 217="61850 Trip simulator off",218="61850 Block simulator on",219="61850 Block simulator off", 220="61850 Quality simulator on (quality=invalid)",221="61850 Quality simulator off (quality=ok)"

Version 2.50
PRON NA20-MB0 Remote Setting Manual Page: 51 of 51

You might also like