You are on page 1of 73

NVA100X-T-MB0

MODBUS PROTOCOL USER GUIDE 1.40


Modbus Communication Protocol User Guide
NVA100X-T-MB0

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 1 of 73


NVA100X-T-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 protection’s 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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 2 of 73


NVA100X-T-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 it’s 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 Baud Rate Parity Stop bits Data bits


1 19200 No 1 8
Table 1 Serial port settings

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 reference information Access Function Code for Function Code for
Reading Writing
Coils 0X 1 bit Read/Write 0x01 0x05
Discrete Inputs 1X 1 bit Read only 0x02 -
Input Registers 3X 16 bit Word Read only 0x04 -
Holding Registers 4X 16 bit Word Read/Write 0x03 0x06, 0x10
Table 2. Modbus Data Type

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 3 of 73


NVA100X-T-MB0
1.4 Supported functions

TPR supports the following Modbus functions:

Code Name
0x01 Read Coil Status
0x02 Read Input Status
0x03 Read Holding Registers
0x04 Read Input Registers
0x05 Force Single Coil
0x06 Preset Single Register
0x0F Force Multiple Coil
0x10 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 doesn’t 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:

04 07 A5 50 00 02 - -
TX
S F ADR DIM CRC

04 87 01 - -
RX
S F DATA CRC

S = Slave Address
F = Function Code
ADR = Modbus Data Address
DIM = Dimension (number of registers)
DATA = data value
CRC = Cyclical Redundancy Code

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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 4 of 73


NVA100X-T-MB0
The next table describes all the exceptions handled by the TPRs.

Code Name Description


The function code received in the query is not an allowable action for
01 ILLEGAL FUNCTION
the slave.
The data address received in the query is not an allowable address for
02 ILLEGAL DATA ADDRESS
the slave
A value contained in the query data field is not an allowable value for
03 ILLEGAL DATA VALUE
the slave
An unrecoverable error occurred while the slave was attempting to
04 SLAVE DEVICE FAILURE
perform the requested action.
The slave has accepted the request and is processing it, but a long
05 ACKNOWLEDGE 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.
06 SLAVE DEVICE BUSY
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 Protocol Length Field Modbus Frame CHECKSUM TCP FRAME


Identifier Identifier

MODBUS FRAME S F 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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 5 of 73


NVA100X-T-MB0

2 Logical organization of the protection’s 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 3x, Input Registers


n° var n° var
6 I> Start 157 Power frequeny
7 I> Trip 158 Phase current IL1 value – Word L
8 I> Block1 159 Phase current IL1 value – Word H
160 Phase current IL2 value – Word L
161 Phase current IL2 value – Word H

Table 4. Example of data structures

Example: let’s 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:

01 02 00 05 00 01 - -
TX
S F ADR 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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 6 of 73


NVA100X-T-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 00 B
Modbus
Byte
Register

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

0D 00 0D
Modbus
Byte
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 00 B
UByte Modbus
Register

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

0D 00 0D
Modbus
Byte
Register

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 7 of 73


NVA100X-T-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 BH BL
Modbus
Word
Register

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

0C 01 0C 01
Modbus
Word
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
UWord
Register

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

0C 01 0C 01
Modbus
UWord
Register

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 8 of 73


NVA100X-T-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 BLH BLL BHH BHL


WH WL WL WH
Long Modbus Registers

Example:
relationship between the data LONG 66536 (0x103E8) and its value in the Modbus protocol domain:

00 01 03 E8 03 E8 00 01
Long 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 LLH LLL LHH LHL


WH WL WL WH
ULong Modbus Registers

Example:
relationship between the ULONG data whose value is 66536 (0x103E8) and its Modbus representation:

00 01 03 E8 03 E8 00 01
ULong Modbus Registers

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 9 of 73


NVA100X-T-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 B2 Bn B1 B2 Bn-1 Bn
1 2 n 1 N
Array[n] Modbus Registers
N = ceil(n/2)
If odd n:

B1 B2 Bn B1 B2 Bn 0
1 2 n 1 N
Array[n] Modbus Registers
Example:
Let’s 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 3A 1F 01 3A 1F 00
1 2 3 1 2
Array[3] 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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 10 of 73


NVA100X-T-MB0

2.1.9 STR

Description:
String data type. It’s 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 C2 Cn C1 C2 Cn-1 Cn
1 2 n 1 N
String[n] Modbus Registers
N = ceil(n/2)
If odd n:

C1 C2 Cn C1 C2 Cn ‘\0’
1 2 n 1 N
String[n] Modbus Registers

Example:
Let’s 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. Let’s 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:

01 10 00 29 00 05 10 4E 41 78 78 00 00 00 00 - -
TX
S F ADR DIM B DATA1 DATA2 DATA3 DATA4 CRC
‘N’ ‘A’ ‘x’ ‘x’ ‘\0’ ‘\0’ ‘\0’ ‘\0’

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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 11 of 73


NVA100X-T-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 Table’s fields is given:

VAR REF IDX DIM TYPE UM KV ENUM

Table 5. Address Data Table’s 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: data stored in the COIL table


• 1x: data stored in the DISCRETE INPUT table
• 3x: data stored in the INPUT REGISTER table
• 4x: 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: let’s consider the following Address Data Table

VAR REF IDX DIM


Relay phase nominal current - In 3x 50 1
Relay reference name 3x 42 8
I> Trip 1x 7 1

Let’s 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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 12 of 73


NVA100X-T-MB0

3.1.4 DIM

The DIM field is the number of Modbus registers necessary to contain the VAR data.

Example: let’s 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:

01 03 00 31 00 01 - -
TX
S F ADR 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: let’s consider the following address data table

VAR REF IDX DIM TYPE UM KV ENUM


Phase current IL1 - Value 3x 159 2 LONG In 16000

Let’s read the “Phase current IL1 - Value “ from the Slave address 1.

01 04 00 9E 00 02 - -
TX
S F ADR DIM CRC

Let’s assume the following response:

01 04 04 A9 80 00 03 - -
RX
S F B DATA1 DATA2 CRC
LONG
VALL VALH

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 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 13 of 73


NVA100X-T-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
It’s the physical state of the Input: 0 or 1 (OFF or ON)

3.2.2 Output state


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

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 14 of 73


NVA100X-T-MB0

4 Examples
For all the examples, the following symbols are assumed:

S = Slave Modbus address (1-247)


F = Modbus Function code (1,2,3,4,5,6,15,16)
B = number of byte in the DATA field
ADR = Modbus DATA address
DIM = number of Modbus DATA address
CRC = Cyclical Redundancy Check
DATAx = register x of DATA field
VALx = value x of the variable

4.1 Example 1. How to read a variable

Let’s 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 1 UWORD A 1

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.

01 04 00 3E 00 02 - -
TX
S F ADR DIM CRC

01 04 04 00 05 - -
RX
S F B DATA CRC

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 doesn’t need to be
scaled. The “Relay phase nominal current – In” is equal to 5A.

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 15 of 73


NVA100X-T-MB0

4.2 Example 2. How to read a BIT data type


Let’s 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 7 1 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.

01 02 00 06 00 01 - -
TX
S F ADR DIM CRC

01 02 01 00 01 - -
RX
S F B VAL CRC

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

Let’s 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 2 1 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 it’s an echo of the request, and it means that the
Coil has been set:

01 05 00 01 FF 00 - -
TX
S F ADR DATA CRC

01 05 00 01 FF 00 - -
RX
S F ADR DATA CRC

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 16 of 73


NVA100X-T-MB0

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

Version 1.40

NVA100X-T-MB0 Remote Setting Manual Page: 17 of 73


NVA100X-T-MB0

6 Appendix A. Address Data Table


VAR REF IDX DIM TYPE Range Um Kv ENUM
Commands
Set RTC 0x 1 1 CMD 0=OFF, 1=ON
Reset LEDs 0x 2 1 CMD 0=OFF, 1=ON
Reset CB monitoring data side H 0x 3 1 CMD 0=OFF, 1=ON
Reset CB monitoring data side L 0x 4 1 CMD 0=OFF, 1=ON
Reset CB monitoring data side T 0x 5 1 CMD 0=OFF, 1=ON
Reset partial counters 0x 6 1 CMD 0=OFF, 1=ON
Thermal image presetting side H 0x 7 1 CMD 0=OFF, 1=ON
Fault reading 0x 8 1 CMD 0=OFF, 1=ON
Reset faults 0x 9 1 CMD 0=OFF, 1=ON
Reset faults identifier 0x 10 1 CMD 0=OFF, 1=ON
Events reading 0x 11 1 CMD 0=OFF, 1=ON
Reset events 0x 12 1 CMD 0=OFF, 1=ON
Reset event identifier 0x 13 1 CMD 0=OFF, 1=ON
Open CB side H 0x 14 1 CMD 0=OFF, 1=ON
Close CB side H 0x 15 1 CMD 0=OFF, 1=ON
Open CB side L 0x 16 1 CMD 0=OFF, 1=ON
Close CB side L 0x 17 1 CMD 0=OFF, 1=ON
Open CB side T 0x 18 1 CMD 0=OFF, 1=ON
Close CB side T 0x 19 1 CMD 0=OFF, 1=ON
Test-off 0x 20 1 CMD 0=OFF, 1=ON
Test-on 0x 21 1 CMD 0=OFF, 1=ON
Reset on demand measures 0x 22 1 CMD 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 18 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Commands
Day 4x 1 1 UWORD 1,31,1 1
Month 4x 2 1 UWORD 1,12,1 1
Year 4x 3 1 UWORD 2000,2099,1 1
Hour 4x 4 1 UWORD 0,23,1 1
Minute 4x 5 1 UWORD 0,59,1 1
Second 4x 6 1 UWORD 0,59,1 1
Testing rele 4x 7 1 WORD 0="KC1-1",1="KC1-2",2="KC1-
3",3="KC1-4",4="KC1-5",5="KC1-
6",6="KC1-7",7="KC1-8",8="KC2-
1",9="KC2-2",10="KC2-
3",11="KC2-4",12="KC2-
5",13="KC2-6",14="KC2-
7",15="KC2-8"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 19 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Info
Code 3x 1 7 STR
Serial number 3x 8 2 LONG 1
Application sw release 3x 10 6 STR
Base sw release 3x 16 6 STR
DSP fw identifier 3x 22 1 UWORD 1
DSP fw release 3x 23 6 STR
Communication
Address 3x 29 1 UBYTE 1
Local Ethernet IP host address 3x 30 8 STR
Local Ethernet IP Net Mask 3x 38 8 STR
Local Ethernet Autonegotiation 1x 1 1 BIT 0=OFF, 1=ON
Remote Ethernet IP host address 3x 46 8 STR
Remote Ethernet IP Net Mask 3x 54 8 STR
Remote Ethernet Autonegotiation 1x 2 1 BIT 0=OFF, 1=ON
Enable 1x 3 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 20 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Rated nominal values
Relay reference name 3x 62 10 STR
Relay phase nominal current side L 3x 72 2 ULONG A 1
Relay phase nominal current side H 3x 74 2 ULONG A 1
Relay residual current 1 3x 76 2 ULONG A 1
Relay residual current 2 3x 78 2 ULONG A 1
Phase CT primary nominal current side L - InpL 3x 80 2 ULONG A 1
Phase CT primary nominal current side H - InpH 3x 82 2 ULONG A 1
Residual CT primary nominal current 1 - IEn1p 3x 84 2 ULONG A 1
Residual CT primary nominal current 2 - IEn2p 3x 86 2 ULONG A 1
Primary nominal current chosen as reference - Inref 3x 88 2 ULONG A 1
Relay nominal voltage ( phase to phase ) - Un 3x 90 2 ULONG V 1
Line VT primary nominal voltage ( phase to phase ) - Unp 3x 92 2 ULONG V 1
Relay residual nominal voltage ( direct measurement ) - UEn 3x 94 2 ULONG V 1

Residual primary nominal voltage ( phase to phase ) * 1.73 - 3x 96 2 ULONG V 1


UEnp

Number of sides for differential protection - NumSides 3x 98 1 WORD 2="2",3="3"


Side reference for compensation - RefSide 3x 99 1 WORD 0="H",1="L",2="T",3="None"
Current matching type - MatchType 3x 100 1 WORD 0="INTERNAL",1="EXTERNAL"
Object protected by differential protection - ProtObj 3x 101 1 WORD 0="TRANSF",1="GEN-MOT-
LINE-BAR"
Relay nominal frequency - fn 3x 102 2 ULONG Hz 1
Measurements reading mode 3x 104 1 WORD 0="RELATIVE",1="PRIMARY"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 21 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Transformer
Transformer nominal power side H - SntH 3x 105 2 ULONG MVA 100
Transformer nominal voltage side H - VntH 3x 107 2 ULONG kV 1000
Transformer nominal current side H - IntH 3x 109 2 ULONG A 1
Transformer mismatching factor side H - mH 3x 111 1 UWORD 100
Transformer grounding side H - GndH 3x 112 1 WORD 0="Out",1="In"
Transformer connection side H - ConnH 3x 113 1 WORD 0="Y",1="D",2="Z"
Transformer vector group side H - VectGroupH 3x 114 1 WORD 0="0",1="1",2="2",3="3",4="4",5="
5",6="6",7="7",8="8",9="9",10="1
0",11="11"
Transformer nominal power side L - SntL 3x 115 2 ULONG MVA 100
Transformer nominal voltage side L - VntL 3x 117 2 ULONG kV 1000
Transformer nominal current side L - IntL 3x 119 2 ULONG A 1
Transformer mismatching factor side L - mL 3x 121 1 UWORD 100
Transformer grounding side L - GndL 3x 122 1 WORD 0="Out",1="In"
Transformer connection side L - ConnL 3x 123 1 WORD 0="y",1="d",2="z"
Transformer vector group side L - VectGroupL 3x 124 1 WORD 0="0",1="1",2="2",3="3",4="4",5="
5",6="6",7="7",8="8",9="9",10="1
0",11="11"
Transformer nominal power side T - SntT 3x 125 2 ULONG MVA 100
Transformer nominal voltage side T - VntT 3x 127 2 ULONG kV 1000
Transformer nominal current side T - IntT 3x 129 2 ULONG A 1
Transformer mismatching factor side T - mT 3x 131 1 UWORD 100
Transformer grounding side T - GndT 3x 132 1 WORD 0="Out",1="In"
Transformer connection side T - ConnT 3x 133 1 WORD 0="y",1="d",2="z"
Transformer vector group side T - VectGroupT 3x 134 1 WORD 0="0",1="1",2="2",3="3",4="4",5="
5",6="6",7="7",8="8",9="9",10="1
0",11="11"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 22 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Profile selection
Profile 3x 135 1 WORD 0="A",1="B"
Clock
Day 3x 136 1 UWORD 1
Month 3x 137 1 UWORD 1
Year 3x 138 1 UWORD 1
Hour 3x 139 1 UWORD 1
Minute 3x 140 1 UWORD 1
Second 3x 141 1 UWORD 1

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 23 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


READINGS
Diagnostic
MINOR Fail alarm 1x 4 1 BIT 0=NO, 1=YES
Protection and controls 1x 5 1 BIT 0=OUT OF SERVICE, 1=ON
SERVICE
System diagnostic 3x 142 1 WORD 0="OK",1="FATAL",2="MAJOR",3
="MINOR"
Device diagnostic 1x 6 1 BIT 0=OK, 1=NOT OK
Program diagnostic 3x 143 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Data-base boot 3x 144 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Data-base run-time 3x 145 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
DSP boot 3x 146 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
DSP run-time 3x 147 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Memory boot 3x 148 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Memory run-time 3x 149 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Serial flash startup 3x 150 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Serial flash run-time 3x 151 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Data Bus heavy 3x 152 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Data Bus minor 3x 153 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Protection I/O assigned verify startup 3x 154 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Protection I/O assigned verify run-time major 3x 155 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Protection I/O assigned verify run-time minor 3x 156 1 WORD 0="OK",1="NOT
OK",2="Disappeared"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 24 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Diagnostic
IRIG-B Run-time state 3x 157 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
IRIG-B Diagnostics 3x 158 1 WORD 0="Ok",1="No
Response",2="Oscillator
Failed",3="No
Configuration",4="Reset",5="Fail
B00X (DLCS)",6="Fail B12X
(ANALOG)",7="Fail
B12X+PPSEXT",8="Fail
PPSEXT",9="Synchro
Fail",10="No Year (IRIGB
Incongruence)",11="Time Not
Valid",12="Fail"
ME(1-2) Compensation factor 3x 159 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
M Compensation factor (H-L-T) 3x 160 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
Transformer mismatching factor (H-L-T) 3x 161 1 WORD 0="OK",1="NOT
OK",2="Disappeared"
MMI module - Boot 3x 162 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"
MMI module - Run-time 3x 163 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"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 25 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Diagnostic
Input module 1 - Boot 3x 164 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"
Input module 1 - Run-time 3x 165 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"
Input module 2 - Boot 3x 166 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"
Input module 2 - Run-time 3x 167 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"
Commands relays module 1 - Boot 3x 168 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"
Commands relays module 1 - Run-time 3x 169 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"
VAR REF IDX DIM TYPE Range Um Kv ENUM
Diagnostic

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 26 of 73
NVA100X-T-MB0
Commands relays module 2 - Boot 3x 170 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"
Commands relays module 2 - Run-time 3x 171 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"
PT100 module - Boot 3x 172 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"
PT100 module - Run-time 3x 173 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"
MCI module (4...20mA) - Boot 3x 174 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"
MCI module (4...20mA) - Run-time 3x 175 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"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 27 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Diagnostic
IRIG-B Module - Boot 3x 176 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"
IRIG-B Module - Run-time 3x 177 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"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 28 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


PROTECTIONS
Overexcitation - 24
Start (U/f)AL 1x 7 1 BIT 0=OFF, 1=ON
Trip (U/f)AL 1x 8 1 BIT 0=OFF, 1=ON
BLK1 (U/f)AL 1x 9 1 BIT 0=OFF, 1=ON
Start (U/f)> 1x 10 1 BIT 0=OFF, 1=ON
Trip (U/f)> 1x 11 1 BIT 0=OFF, 1=ON
BLK1 (U/f)> 1x 12 1 BIT 0=OFF, 1=ON
Start (U/f)>> 1x 13 1 BIT 0=OFF, 1=ON
Trip (U/f)>> 1x 14 1 BIT 0=OFF, 1=ON
BLK1 (U/f)>> 1x 15 1 BIT 0=OFF, 1=ON
Thermal protection with RTD thermometric probes - 26
Alarm ThAL1 1x 16 1 BIT 0=OFF, 1=ON
Trip Th>1 1x 17 1 BIT 0=OFF, 1=ON
Alarm ThAL2 1x 18 1 BIT 0=OFF, 1=ON
Trip Th>2 1x 19 1 BIT 0=OFF, 1=ON
Alarm ThAL3 1x 20 1 BIT 0=OFF, 1=ON
Trip Th>3 1x 21 1 BIT 0=OFF, 1=ON
Alarm ThAL4 1x 22 1 BIT 0=OFF, 1=ON
Trip Th>4 1x 23 1 BIT 0=OFF, 1=ON
Alarm ThAL5 1x 24 1 BIT 0=OFF, 1=ON
Trip Th>5 1x 25 1 BIT 0=OFF, 1=ON
Alarm ThAL6 1x 26 1 BIT 0=OFF, 1=ON
Trip Th>6 1x 27 1 BIT 0=OFF, 1=ON
Alarm ThAL7 1x 28 1 BIT 0=OFF, 1=ON
Trip Th>7 1x 29 1 BIT 0=OFF, 1=ON
Alarm ThAL8 1x 30 1 BIT 0=OFF, 1=ON
Trip Th>8 1x 31 1 BIT 0=OFF, 1=ON
Diag PT100 1x 32 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 29 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Undervoltage - 27
Start U< 1x 33 1 BIT 0=OFF, 1=ON
Trip U< 1x 34 1 BIT 0=OFF, 1=ON
BLK1 U< 1x 35 1 BIT 0=OFF, 1=ON
Start U<< 1x 36 1 BIT 0=OFF, 1=ON
Trip U<< 1x 37 1 BIT 0=OFF, 1=ON
BLK1 U<< 1x 38 1 BIT 0=OFF, 1=ON
Minima corrente - 37 side H
Start I(H)< 1x 39 1 BIT 0=OFF, 1=ON
Trip I(H)< 1x 40 1 BIT 0=OFF, 1=ON
BLK1 I(H)< 1x 41 1 BIT 0=OFF, 1=ON
Minima corrente - 37 side L
Start I(L)< 1x 42 1 BIT 0=OFF, 1=ON
Trip I(L)< 1x 43 1 BIT 0=OFF, 1=ON
BLK1 I(L)< 1x 44 1 BIT 0=OFF, 1=ON
Minima corrente - 37 side T
Start I(T)< 1x 45 1 BIT 0=OFF, 1=ON
Trip I(T)< 1x 46 1 BIT 0=OFF, 1=ON
BLK1 I(T)< 1x 47 1 BIT 0=OFF, 1=ON
Negative sequence overcurrent side H - 46 side H
Start I2(H)> 1x 48 1 BIT 0=OFF, 1=ON
Trip I2(H)> 1x 49 1 BIT 0=OFF, 1=ON
BLK1 I2(H)> 1x 50 1 BIT 0=OFF, 1=ON
BLK2IN I2(H)> 1x 51 1 BIT 0=OFF, 1=ON
CLP I2(H)> 1x 52 1 BIT 0=OFF, 1=ON
Start I2(H)>> 1x 53 1 BIT 0=OFF, 1=ON
Trip I2(H)>> 1x 54 1 BIT 0=OFF, 1=ON
BLK1 I2(H)>> 1x 55 1 BIT 0=OFF, 1=ON
BLK2IN I2(H)>> 1x 56 1 BIT 0=OFF, 1=ON
CLP I2(H)>> 1x 57 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 30 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Negative sequence overcurrent side L - 46 side L
Start I2(L)> 1x 58 1 BIT 0=OFF, 1=ON
Trip I2(L)> 1x 59 1 BIT 0=OFF, 1=ON
BLK1 I2(L)> 1x 60 1 BIT 0=OFF, 1=ON
BLK2IN I2(L)> 1x 61 1 BIT 0=OFF, 1=ON
CLP I2(L)> 1x 62 1 BIT 0=OFF, 1=ON
Start I2(L)>> 1x 63 1 BIT 0=OFF, 1=ON
Trip I2(L)>> 1x 64 1 BIT 0=OFF, 1=ON
BLK1 I2(L)>> 1x 65 1 BIT 0=OFF, 1=ON
BLK2IN I2(L)>> 1x 66 1 BIT 0=OFF, 1=ON
CLP I2(L)>> 1x 67 1 BIT 0=OFF, 1=ON
Negative sequence overcurrent side T - 46 side T
Start I2(T)> 1x 68 1 BIT 0=OFF, 1=ON
Trip I2(T)> 1x 69 1 BIT 0=OFF, 1=ON
BLK1 I2(T)> 1x 70 1 BIT 0=OFF, 1=ON
BLK2IN I2(T)> 1x 71 1 BIT 0=OFF, 1=ON
CLP I2(T)> 1x 72 1 BIT 0=OFF, 1=ON
Start I2(T)>> 1x 73 1 BIT 0=OFF, 1=ON
Trip I2(T)>> 1x 74 1 BIT 0=OFF, 1=ON
BLK1 I2(T)>> 1x 75 1 BIT 0=OFF, 1=ON
BLK2IN I2(T)>> 1x 76 1 BIT 0=OFF, 1=ON
CLP I2(T)>> 1x 77 1 BIT 0=OFF, 1=ON
Negative / Positive sequence current ratio side H - I2/I1
side H

Start I21(H)> 1x 78 1 BIT 0=OFF, 1=ON


Trip I21(H)> 1x 79 1 BIT 0=OFF, 1=ON
BLK1 I21(H)> 1x 80 1 BIT 0=OFF, 1=ON
BLK2IN I21(H)> 1x 81 1 BIT 0=OFF, 1=ON
BLK4IN I21(H)> 1x 82 1 BIT 0=OFF, 1=ON
CLP I21(H)> 1x 83 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 31 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Negative / Positive sequence current ratio side L - I2/I1
side L

Start I21(L)> 1x 84 1 BIT 0=OFF, 1=ON


Trip I21(L)> 1x 85 1 BIT 0=OFF, 1=ON
BLK1 I21(L)> 1x 86 1 BIT 0=OFF, 1=ON
BLK2IN I21(L)> 1x 87 1 BIT 0=OFF, 1=ON
BLK4IN I21(L)> 1x 88 1 BIT 0=OFF, 1=ON
CLP I21(L)> 1x 89 1 BIT 0=OFF, 1=ON
Negative / Positive sequence current ratio side T - I2/I1
side T

Start I21(T)> 1x 90 1 BIT 0=OFF, 1=ON


Trip I21(T)> 1x 91 1 BIT 0=OFF, 1=ON
BLK1 I21(T)> 1x 92 1 BIT 0=OFF, 1=ON
BLK2IN I21(T)> 1x 93 1 BIT 0=OFF, 1=ON
BLK4IN I21(T)> 1x 94 1 BIT 0=OFF, 1=ON
CLP I21(T)> 1x 95 1 BIT 0=OFF, 1=ON
Thermal image side H - 49 side H
Alarm DthAL1(H) 1x 96 1 BIT 0=OFF, 1=ON
BLK1 DthAL1(H) 1x 97 1 BIT 0=OFF, 1=ON
BLK2IN DthAL1(H) 1x 98 1 BIT 0=OFF, 1=ON
BLK4IN DthAL1(H) 1x 99 1 BIT 0=OFF, 1=ON
Alarm DthAL2(H) 1x 100 1 BIT 0=OFF, 1=ON
BLK1 DthAL2(H) 1x 101 1 BIT 0=OFF, 1=ON
BLK2IN DthAL2(H) 1x 102 1 BIT 0=OFF, 1=ON
BLK4IN DthAL2(H) 1x 103 1 BIT 0=OFF, 1=ON
Trip Dth(H)> 1x 104 1 BIT 0=OFF, 1=ON
BLK1 Dth(H)> 1x 105 1 BIT 0=OFF, 1=ON
BLK2IN Dth(H)> 1x 106 1 BIT 0=OFF, 1=ON
BLK4IN Dth(H)> 1x 107 1 BIT 0=OFF, 1=ON
CLP Dth(H) 1x 108 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 32 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Thermal image side L - 49 side L
Alarm DthAL1(L) 1x 109 1 BIT 0=OFF, 1=ON
BLK1 DthAL1(L) 1x 110 1 BIT 0=OFF, 1=ON
BLK2IN DthAL1(L) 1x 111 1 BIT 0=OFF, 1=ON
BLK4IN DthAL1(L) 1x 112 1 BIT 0=OFF, 1=ON
Alarm DthAL2(L) 1x 113 1 BIT 0=OFF, 1=ON
BLK1 DthAL2(L) 1x 114 1 BIT 0=OFF, 1=ON
BLK2IN DthAL2(L) 1x 115 1 BIT 0=OFF, 1=ON
BLK4IN DthAL2(L) 1x 116 1 BIT 0=OFF, 1=ON
Trip Dth(L)> 1x 117 1 BIT 0=OFF, 1=ON
BLK1 Dth(L)> 1x 118 1 BIT 0=OFF, 1=ON
BLK2IN Dth(L)> 1x 119 1 BIT 0=OFF, 1=ON
BLK4IN Dth(L)> 1x 120 1 BIT 0=OFF, 1=ON
CLP Dth(L) 1x 121 1 BIT 0=OFF, 1=ON
Thermal image side T - 49 side T
Alarm DthAL1(T) 1x 122 1 BIT 0=OFF, 1=ON
BLK1 DthAL1(T) 1x 123 1 BIT 0=OFF, 1=ON
BLK2IN DthAL1(T) 1x 124 1 BIT 0=OFF, 1=ON
BLK4IN DthAL1(T) 1x 125 1 BIT 0=OFF, 1=ON
Alarm DthAL2(T) 1x 126 1 BIT 0=OFF, 1=ON
BLK1 DthAL2(T) 1x 127 1 BIT 0=OFF, 1=ON
BLK2IN DthAL2(T) 1x 128 1 BIT 0=OFF, 1=ON
BLK4IN DthAL2(T) 1x 129 1 BIT 0=OFF, 1=ON
Trip Dth(T)> 1x 130 1 BIT 0=OFF, 1=ON
BLK1 Dth(T)> 1x 131 1 BIT 0=OFF, 1=ON
BLK2IN Dth(T)> 1x 132 1 BIT 0=OFF, 1=ON
BLK4IN Dth(T)> 1x 133 1 BIT 0=OFF, 1=ON
CLP Dth(T) 1x 134 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 33 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Phase overcurrent side H - 50/51 side H
Start I(H)> 1x 135 1 BIT 0=OFF, 1=ON
Trip I(H)> 1x 136 1 BIT 0=OFF, 1=ON
BLK1 I(H)> 1x 137 1 BIT 0=OFF, 1=ON
BLK2IN I(H)> 1x 138 1 BIT 0=OFF, 1=ON
BLK4IN I(H)> 1x 139 1 BIT 0=OFF, 1=ON
CLP I(H)> 1x 140 1 BIT 0=OFF, 1=ON
Start I(H)>> 1x 141 1 BIT 0=OFF, 1=ON
Trip I(H)>> 1x 142 1 BIT 0=OFF, 1=ON
BLK1 I(H)>> 1x 143 1 BIT 0=OFF, 1=ON
BLK2IN I(H)>> 1x 144 1 BIT 0=OFF, 1=ON
BLK4IN I(H)>> 1x 145 1 BIT 0=OFF, 1=ON
CLP I(H)>> 1x 146 1 BIT 0=OFF, 1=ON
Start I(H)>>> 1x 147 1 BIT 0=OFF, 1=ON
Trip I(H)>>> 1x 148 1 BIT 0=OFF, 1=ON
BLK1 I(H)>>> 1x 149 1 BIT 0=OFF, 1=ON
BLK2IN I(H)>>> 1x 150 1 BIT 0=OFF, 1=ON
BLK4IN I(H)>>> 1x 151 1 BIT 0=OFF, 1=ON
CLP I(H)>>> 1x 152 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 34 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Phase overcurrent side L - 50/51 side L
Start I(L)> 1x 153 1 BIT 0=OFF, 1=ON
Trip I(L)> 1x 154 1 BIT 0=OFF, 1=ON
BLK1 I(L)> 1x 155 1 BIT 0=OFF, 1=ON
BLK2IN I(L)> 1x 156 1 BIT 0=OFF, 1=ON
BLK4IN I(L)> 1x 157 1 BIT 0=OFF, 1=ON
CLP I(L)> 1x 158 1 BIT 0=OFF, 1=ON
Start I(L)>> 1x 159 1 BIT 0=OFF, 1=ON
Trip I(L)>> 1x 160 1 BIT 0=OFF, 1=ON
BLK1 I(L)>> 1x 161 1 BIT 0=OFF, 1=ON
BLK2IN I(L)>> 1x 162 1 BIT 0=OFF, 1=ON
BLK4IN I(L)>> 1x 163 1 BIT 0=OFF, 1=ON
CLP I(L)>> 1x 164 1 BIT 0=OFF, 1=ON
Start I(L)>>> 1x 165 1 BIT 0=OFF, 1=ON
Trip I(L)>>> 1x 166 1 BIT 0=OFF, 1=ON
BLK1 I(L)>>> 1x 167 1 BIT 0=OFF, 1=ON
BLK2IN I(L)>>> 1x 168 1 BIT 0=OFF, 1=ON
BLK4IN I(L)>>> 1x 169 1 BIT 0=OFF, 1=ON
CLP I(L)>>> 1x 170 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 35 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Phase overcurrent side T - 50/51 side T
Start I(T)> 1x 171 1 BIT 0=OFF, 1=ON
Trip I(T)> 1x 172 1 BIT 0=OFF, 1=ON
BLK1 I(T)> 1x 173 1 BIT 0=OFF, 1=ON
BLK2IN I(T)> 1x 174 1 BIT 0=OFF, 1=ON
BLK4IN I(T)> 1x 175 1 BIT 0=OFF, 1=ON
CLP I(T)> 1x 176 1 BIT 0=OFF, 1=ON
Start I(T)>> 1x 177 1 BIT 0=OFF, 1=ON
Trip I(T)>> 1x 178 1 BIT 0=OFF, 1=ON
BLK1 I(T)>> 1x 179 1 BIT 0=OFF, 1=ON
BLK2IN I(T)>> 1x 180 1 BIT 0=OFF, 1=ON
BLK4IN I(T)>> 1x 181 1 BIT 0=OFF, 1=ON
CLP I(T)>> 1x 182 1 BIT 0=OFF, 1=ON
Start I(T)>>> 1x 183 1 BIT 0=OFF, 1=ON
Trip I(T)>>> 1x 184 1 BIT 0=OFF, 1=ON
BLK1 I(T)>>> 1x 185 1 BIT 0=OFF, 1=ON
BLK2IN I(T)>>> 1x 186 1 BIT 0=OFF, 1=ON
BLK4IN I(T)>>> 1x 187 1 BIT 0=OFF, 1=ON
CLP I(T)>>> 1x 188 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 36 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Residual overcurrent - 50N.1/51N.1-87NHIZ.1
Start IE1> 1x 189 1 BIT 0=OFF, 1=ON
Trip IE1> 1x 190 1 BIT 0=OFF, 1=ON
BLK1 IE1> 1x 191 1 BIT 0=OFF, 1=ON
BLK2IN IE1> 1x 192 1 BIT 0=OFF, 1=ON
BLK4IN IE1> 1x 193 1 BIT 0=OFF, 1=ON
CLP IE1> 1x 194 1 BIT 0=OFF, 1=ON
Start IE1>> 1x 195 1 BIT 0=OFF, 1=ON
Trip IE1>> 1x 196 1 BIT 0=OFF, 1=ON
BLK1 IE1>> 1x 197 1 BIT 0=OFF, 1=ON
BLK2IN IE1>> 1x 198 1 BIT 0=OFF, 1=ON
BLK4IN IE1>> 1x 199 1 BIT 0=OFF, 1=ON
CLP IE1>> 1x 200 1 BIT 0=OFF, 1=ON
Start IE1>>> 1x 201 1 BIT 0=OFF, 1=ON
Trip IE1>>> 1x 202 1 BIT 0=OFF, 1=ON
BLK1 IE1>>> 1x 203 1 BIT 0=OFF, 1=ON
BLK2IN IE1>>> 1x 204 1 BIT 0=OFF, 1=ON
BLK4IN IE1>>> 1x 205 1 BIT 0=OFF, 1=ON
CLP IE1>>> 1x 206 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 37 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Residual overcurrent - 50N.2/51N.2-87NHIZ.2
Start IE2> 1x 207 1 BIT 0=OFF, 1=ON
Trip IE2> 1x 208 1 BIT 0=OFF, 1=ON
BLK1 IE2> 1x 209 1 BIT 0=OFF, 1=ON
BLK2IN IE2> 1x 210 1 BIT 0=OFF, 1=ON
BLK4IN IE2> 1x 211 1 BIT 0=OFF, 1=ON
CLP IE2> 1x 212 1 BIT 0=OFF, 1=ON
Start IE2>> 1x 213 1 BIT 0=OFF, 1=ON
Trip IE2>> 1x 214 1 BIT 0=OFF, 1=ON
BLK1 IE2>> 1x 215 1 BIT 0=OFF, 1=ON
BLK2IN IE2>> 1x 216 1 BIT 0=OFF, 1=ON
BLK4IN IE2>> 1x 217 1 BIT 0=OFF, 1=ON
CLP IE2>> 1x 218 1 BIT 0=OFF, 1=ON
Start IE2>>> 1x 219 1 BIT 0=OFF, 1=ON
Trip IE2>>> 1x 220 1 BIT 0=OFF, 1=ON
BLK1 IE2>>> 1x 221 1 BIT 0=OFF, 1=ON
BLK2IN IE2>>> 1x 222 1 BIT 0=OFF, 1=ON
BLK4IN IE2>>> 1x 223 1 BIT 0=OFF, 1=ON
CLP IE2>>> 1x 224 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 38 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Calculated residual overcurrent side H - 50N/51N side H
Start IEC(H)> 1x 225 1 BIT 0=OFF, 1=ON
Trip IEC(H)> 1x 226 1 BIT 0=OFF, 1=ON
BLK1 IEC(H)> 1x 227 1 BIT 0=OFF, 1=ON
BLK2IN IEC(H)> 1x 228 1 BIT 0=OFF, 1=ON
BLK4IN IEC(H)> 1x 229 1 BIT 0=OFF, 1=ON
CLP IEC(H)> 1x 230 1 BIT 0=OFF, 1=ON
Start IEC(H)>> 1x 231 1 BIT 0=OFF, 1=ON
Trip IEC(H)>> 1x 232 1 BIT 0=OFF, 1=ON
BLK1 IEC(H)>> 1x 233 1 BIT 0=OFF, 1=ON
BLK2IN IEC(H)>> 1x 234 1 BIT 0=OFF, 1=ON
BLK4IN IEC(H)>> 1x 235 1 BIT 0=OFF, 1=ON
CLP IEC(H)>> 1x 236 1 BIT 0=OFF, 1=ON
Start IEC(H)>>> 1x 237 1 BIT 0=OFF, 1=ON
Trip IEC(H)>>> 1x 238 1 BIT 0=OFF, 1=ON
BLK1 IEC(H)>>> 1x 239 1 BIT 0=OFF, 1=ON
BLK2IN IEC(H)>>> 1x 240 1 BIT 0=OFF, 1=ON
BLK4IN IEC(H)>>> 1x 241 1 BIT 0=OFF, 1=ON
CLP IEC(H)>>> 1x 242 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 39 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Calculated residual overcurrent side L - 50N/51N side L
Start IEC(L)> 1x 243 1 BIT 0=OFF, 1=ON
Trip IEC(L)> 1x 244 1 BIT 0=OFF, 1=ON
BLK1 IEC(L)> 1x 245 1 BIT 0=OFF, 1=ON
BLK2IN IEC(L)> 1x 246 1 BIT 0=OFF, 1=ON
BLK4IN IEC(L)> 1x 247 1 BIT 0=OFF, 1=ON
CLP IEC(L)> 1x 248 1 BIT 0=OFF, 1=ON
Start IEC(L)>> 1x 249 1 BIT 0=OFF, 1=ON
Trip IEC(L)>> 1x 250 1 BIT 0=OFF, 1=ON
BLK1 IEC(L)>> 1x 251 1 BIT 0=OFF, 1=ON
BLK2IN IEC(L)>> 1x 252 1 BIT 0=OFF, 1=ON
BLK4IN IEC(L)>> 1x 253 1 BIT 0=OFF, 1=ON
CLP IEC(L)>> 1x 254 1 BIT 0=OFF, 1=ON
Start IEC(L)>>> 1x 255 1 BIT 0=OFF, 1=ON
Trip IEC(L)>>> 1x 256 1 BIT 0=OFF, 1=ON
BLK1 IEC(L)>>> 1x 257 1 BIT 0=OFF, 1=ON
BLK2IN IEC(L)>>> 1x 258 1 BIT 0=OFF, 1=ON
BLK4IN IEC(L)>>> 1x 259 1 BIT 0=OFF, 1=ON
CLP IEC(L)>>> 1x 260 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 40 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Calculated residual overcurrent side T - 50N/51N side T
Start IEC(T)> 1x 261 1 BIT 0=OFF, 1=ON
Trip IEC(T)> 1x 262 1 BIT 0=OFF, 1=ON
BLK1 IEC(T)> 1x 263 1 BIT 0=OFF, 1=ON
BLK2IN IEC(T)> 1x 264 1 BIT 0=OFF, 1=ON
BLK4IN IEC(T)> 1x 265 1 BIT 0=OFF, 1=ON
CLP IEC(T)> 1x 266 1 BIT 0=OFF, 1=ON
Start IEC(T)>> 1x 267 1 BIT 0=OFF, 1=ON
Trip IEC(T)>> 1x 268 1 BIT 0=OFF, 1=ON
BLK1 IEC(T)>> 1x 269 1 BIT 0=OFF, 1=ON
BLK2IN IEC(T)>> 1x 270 1 BIT 0=OFF, 1=ON
BLK4IN IEC(T)>> 1x 271 1 BIT 0=OFF, 1=ON
CLP IEC(T)>> 1x 272 1 BIT 0=OFF, 1=ON
Start IEC(T)>>> 1x 273 1 BIT 0=OFF, 1=ON
Trip IEC(T)>>> 1x 274 1 BIT 0=OFF, 1=ON
BLK1 IEC(T)>>> 1x 275 1 BIT 0=OFF, 1=ON
BLK2IN IEC(T)>>> 1x 276 1 BIT 0=OFF, 1=ON
BLK4IN IEC(T)>>> 1x 277 1 BIT 0=OFF, 1=ON
CLP IEC(T)>>> 1x 278 1 BIT 0=OFF, 1=ON
Overvoltage - 59
Start U> 1x 279 1 BIT 0=OFF, 1=ON
Trip U> 1x 280 1 BIT 0=OFF, 1=ON
BLK1 U> 1x 281 1 BIT 0=OFF, 1=ON
Start U>> 1x 282 1 BIT 0=OFF, 1=ON
Trip U>> 1x 283 1 BIT 0=OFF, 1=ON
BLK1 U>> 1x 284 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 41 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Residual overvoltage - 59N
Start UE> 1x 285 1 BIT 0=OFF, 1=ON
Trip UE> 1x 286 1 BIT 0=OFF, 1=ON
BLK1 UE> 1x 287 1 BIT 0=OFF, 1=ON
Start UE>> 1x 288 1 BIT 0=OFF, 1=ON
Trip UE>> 1x 289 1 BIT 0=OFF, 1=ON
BLK1 UE>> 1x 290 1 BIT 0=OFF, 1=ON
Low impedance restricted ground fault - 64REF1
Start 64REF.1 1x 291 1 BIT 0=OFF, 1=ON
Trip 64REF.1 1x 292 1 BIT 0=OFF, 1=ON
BLK1 64REF.1 1x 293 1 BIT 0=OFF, 1=ON
Low impedance restricted ground fault - 64REF2
Start 64REF.2 1x 294 1 BIT 0=OFF, 1=ON
Trip 64REF.2 1x 295 1 BIT 0=OFF, 1=ON
BLK1 64REF.2 1x 296 1 BIT 0=OFF, 1=ON
Overfrequency - 81O
Start f> 1x 297 1 BIT 0=OFF, 1=ON
Trip f> 1x 298 1 BIT 0=OFF, 1=ON
BLK1 f> 1x 299 1 BIT 0=OFF, 1=ON
Start f>> 1x 300 1 BIT 0=OFF, 1=ON
Trip f>> 1x 301 1 BIT 0=OFF, 1=ON
BLK1 f>> 1x 302 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 42 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Underfrequency - 81U
Start f< 1x 303 1 BIT 0=OFF, 1=ON
Trip f< 1x 304 1 BIT 0=OFF, 1=ON
BLK1 f< 1x 305 1 BIT 0=OFF, 1=ON
Start f<< 1x 306 1 BIT 0=OFF, 1=ON
Trip f<< 1x 307 1 BIT 0=OFF, 1=ON
BLK1 f<< 1x 308 1 BIT 0=OFF, 1=ON
Start f<<< 1x 309 1 BIT 0=OFF, 1=ON
Trip f<<< 1x 310 1 BIT 0=OFF, 1=ON
BLK1 f<<< 1x 311 1 BIT 0=OFF, 1=ON
Start f<<<< 1x 312 1 BIT 0=OFF, 1=ON
Trip f<<<< 1x 313 1 BIT 0=OFF, 1=ON
BLK1 f<<<< 1x 314 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 43 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Differenziale - 87GMT
ST 2nd-REST 1x 315 1 BIT 0=OFF, 1=ON
ST 5th-REST 1x 316 1 BIT 0=OFF, 1=ON
ST H-REST-L1 1x 317 1 BIT 0=OFF, 1=ON
ST H-REST-L2 1x 318 1 BIT 0=OFF, 1=ON
ST H-REST-L3 1x 319 1 BIT 0=OFF, 1=ON
ST SatDet 1x 320 1 BIT 0=OFF, 1=ON
Start Id> 1x 321 1 BIT 0=OFF, 1=ON
Trip Id> 1x 322 1 BIT 0=OFF, 1=ON
BLK1 Id> 1x 323 1 BIT 0=OFF, 1=ON
ST Id>-L1 1x 324 1 BIT 0=OFF, 1=ON
TR Id>-L1 1x 325 1 BIT 0=OFF, 1=ON
ST Id>-L2 1x 326 1 BIT 0=OFF, 1=ON
TR Id>-L2 1x 327 1 BIT 0=OFF, 1=ON
ST Id>-L3 1x 328 1 BIT 0=OFF, 1=ON
TR Id>-L3 1x 329 1 BIT 0=OFF, 1=ON
Start Id>> 1x 330 1 BIT 0=OFF, 1=ON
Trip Id>> 1x 331 1 BIT 0=OFF, 1=ON
BLK1 Id>> 1x 332 1 BIT 0=OFF, 1=ON
ST Id>>-L1 1x 333 1 BIT 0=OFF, 1=ON
TR Id>>-L1 1x 334 1 BIT 0=OFF, 1=ON
ST Id>>-L2 1x 335 1 BIT 0=OFF, 1=ON
TR Id>>-L2 1x 336 1 BIT 0=OFF, 1=ON
ST Id>>-L3 1x 337 1 BIT 0=OFF, 1=ON
TR Id>>-L3 1x 338 1 BIT 0=OFF, 1=ON
Trip circuit supervision side H - 74TCS side H
Start 74TCS(H) 1x 339 1 BIT 0=OFF, 1=ON
Trip 74TCS(H) 1x 340 1 BIT 0=OFF, 1=ON
BLK1 74TCS(H) 1x 341 1 BIT 0=OFF, 1=ON
Trip circuit supervision side L - 74TCS side L
Start 74TCS(L) 1x 342 1 BIT 0=OFF, 1=ON
Trip 74TCS(L) 1x 343 1 BIT 0=OFF, 1=ON
BLK1 74TCS(L) 1x 344 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 44 of 73
NVA100X-T-MB0
VAR REF IDX DIM TYPE Range Um Kv ENUM
Trip circuit supervision side T - 74TCS side T
Start 74TCS(T) 1x 345 1 BIT 0=OFF, 1=ON
Trip 74TCS(T) 1x 346 1 BIT 0=OFF, 1=ON
BLK1 74TCS(T) 1x 347 1 BIT 0=OFF, 1=ON
Mancata apertura lato H - BF side H
Trip Int/Ext(H) 1x 348 1 BIT 0=OFF, 1=ON
Start IBF(H)> 1x 349 1 BIT 0=OFF, 1=ON
Start IEBF(H)> 1x 350 1 BIT 0=OFF, 1=ON
Start BF(H) 1x 351 1 BIT 0=OFF, 1=ON
Trip BF(H) 1x 352 1 BIT 0=OFF, 1=ON
BLK1 BF(H) 1x 353 1 BIT 0=OFF, 1=ON
Mancata apertura lato L - BF side L
Trip Int/Ext(L) 1x 354 1 BIT 0=OFF, 1=ON
Start IBF(L)> 1x 355 1 BIT 0=OFF, 1=ON
Start IEBF(L)> 1x 356 1 BIT 0=OFF, 1=ON
Start BF(L) 1x 357 1 BIT 0=OFF, 1=ON
Trip BF(L) 1x 358 1 BIT 0=OFF, 1=ON
BLK1 BF(L) 1x 359 1 BIT 0=OFF, 1=ON
Mancata apertura lato T - BF side T
Trip Int/Ext(T) 1x 360 1 BIT 0=OFF, 1=ON
Start IBF(T)> 1x 361 1 BIT 0=OFF, 1=ON
Start IEBF(T)> 1x 362 1 BIT 0=OFF, 1=ON
Start BF(T) 1x 363 1 BIT 0=OFF, 1=ON
Trip BF(T) 1x 364 1 BIT 0=OFF, 1=ON
BLK1 BF(T) 1x 365 1 BIT 0=OFF, 1=ON
CT supervision side H - 74CT side H
Start I(H)* 1x 366 1 BIT 0=OFF, 1=ON
Trip S(H)< 1x 367 1 BIT 0=OFF, 1=ON
BLK1 S(H)< 1x 368 1 BIT 0=OFF, 1=ON
CT supervision side L - 74CT side L
Start I(L)* 1x 369 1 BIT 0=OFF, 1=ON
Trip S(L)< 1x 370 1 BIT 0=OFF, 1=ON
BLK1 S(L)< 1x 371 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 45 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


CT supervision side T - 74CT side T
Start I(T)* 1x 372 1 BIT 0=OFF, 1=ON
Trip S(T)< 1x 373 1 BIT 0=OFF, 1=ON
BLK1 S(T)< 1x 374 1 BIT 0=OFF, 1=ON
Circuit Breaker supervision side H
CBH-State 3x 178 1 WORD 0="Open",1="Closed",2="?"
52Ha 1x 375 1 BIT 0=OFF, 1=ON
52Hb 1x 376 1 BIT 0=OFF, 1=ON
CB fail side H 1x 377 1 BIT 0=OFF, 1=ON
CBH Break time assigned relays state 1x 378 1 BIT 0=OFF, 1=ON
CBH State N.Open 1x 379 1 BIT 0=OFF, 1=ON
CBH State SumI 1x 380 1 BIT 0=OFF, 1=ON
CBH SumIL1 3x 179 2 ULONG InH 16000
CBH SumIL2 3x 181 2 ULONG InH 16000
CBH SumIL3 3x 183 2 ULONG InH 16000
CBH State SumI^2t 1x 381 1 BIT 0=OFF, 1=ON
CBH SumIL1^2t 3x 185 2 ULONG InH^2s 250000
CBH SumIL2^2t 3x 187 2 ULONG InH^2s 250000
CBH SumIL3^2t 3x 189 2 ULONG InH^2s 250000
CBH State tbreak 1x 382 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 46 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Circuit Breaker supervision side L
CBL-State 3x 191 1 WORD 0="Open",1="Closed",2="?"
52La 1x 383 1 BIT 0=OFF, 1=ON
52Lb 1x 384 1 BIT 0=OFF, 1=ON
CB fail side L 1x 385 1 BIT 0=OFF, 1=ON
CBL Break time assigned relays state 1x 386 1 BIT 0=OFF, 1=ON
CBL State N.Open 1x 387 1 BIT 0=OFF, 1=ON
CBL State SumI 1x 388 1 BIT 0=OFF, 1=ON
CBL SumIL1 3x 192 2 ULONG InL 16000
CBL SumIL2 3x 194 2 ULONG InL 16000
CBL SumIL3 3x 196 2 ULONG InL 16000
CBL State SumI^2t 1x 389 1 BIT 0=OFF, 1=ON
CBL SumIL1^2t 3x 198 2 ULONG InL^2s 250000
CBL SumIL2^2t 3x 200 2 ULONG InL^2s 250000
CBL SumIL3^2t 3x 202 2 ULONG InL^2s 250000
CBL State tbreak 1x 390 1 BIT 0=OFF, 1=ON
Monitoraggio interruttore lato T
CBT-State 3x 204 1 WORD 0="Open",1="Closed",2="?"
52Ta 1x 391 1 BIT 0=OFF, 1=ON
52Tb 1x 392 1 BIT 0=OFF, 1=ON
CB fail side T 1x 393 1 BIT 0=OFF, 1=ON
CBT Break time assigned relays state 1x 394 1 BIT 0=OFF, 1=ON
CBT State N.Open 1x 395 1 BIT 0=OFF, 1=ON
CBT State SumI 1x 396 1 BIT 0=OFF, 1=ON
CBT SumIL1 3x 205 2 ULONG InT 16000
CBT SumIL2 3x 207 2 ULONG InT 16000
CBT SumIL3 3x 209 2 ULONG InT 16000
CBT State SumI^2t 1x 397 1 BIT 0=OFF, 1=ON
CBT SumIL1^2t 3x 211 2 ULONG InT^2s 250000
CBT SumIL2^2t 3x 213 2 ULONG InT^2s 250000
CBT SumIL3^2t 3x 215 2 ULONG InT^2s 250000
CBT State tbreak 1x 398 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 47 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


PARTIAL COUNTERS
Overexcitation - 24
ParSt(U/f)ALcnt - Value 3x 217 1 WORD
ParTr(U/f)ALcnt - Value 3x 218 1 WORD
ParSt(U/f)>cnt - Value 3x 219 1 WORD
ParTr(U/f)>cnt - Value 3x 220 1 WORD
ParSt(U/f)>>cnt - Value 3x 221 1 WORD
ParTr(U/f)>>cnt - Value 3x 222 1 WORD
Thermal protection with RTD thermometric probes - 26
ParThAL1cnt - Value 3x 223 1 WORD
ParTh>1cnt - Value 3x 224 1 WORD
ParThAL2cnt - Value 3x 225 1 WORD
ParTh>2cnt - Value 3x 226 1 WORD
ParThAL3cnt - Value 3x 227 1 WORD
ParTh>3cnt - Value 3x 228 1 WORD
ParThAL4cnt - Value 3x 229 1 WORD
ParTh>4cnt - Value 3x 230 1 WORD
ParThAL5cnt - Value 3x 231 1 WORD
ParTh>5cnt - Value 3x 232 1 WORD
ParThAL6cnt - Value 3x 233 1 WORD
ParTh>6cnt - Value 3x 234 1 WORD
ParThAL7cnt - Value 3x 235 1 WORD
ParTh>7cnt - Value 3x 236 1 WORD
ParThAL8cnt - Value 3x 237 1 WORD
ParTh>8cnt - Value 3x 238 1 WORD
Undervoltage - 27
ParStU<cnt - Value 3x 239 1 WORD
ParTrU<cnt - Value 3x 240 1 WORD
ParStU<<cnt - Value 3x 241 1 WORD
ParTrU<<cnt - Value 3x 242 1 WORD
Minima corrente - 37 side H
ParStI(H)<cnt - Value 3x 243 1 WORD
ParTrI(H)<cnt - Value 3x 244 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 48 of 73
NVA100X-T-MB0
VAR REF IDX DIM TYPE Range Um Kv ENUM
Minima corrente - 37 side L
ParStI(L)<cnt - Value 3x 245 1 WORD
ParTrI(L)<cnt - Value 3x 246 1 WORD
Minima corrente - 37 side T
ParStI(T)<cnt - Value 3x 247 1 WORD
ParTrI(T)<cnt - Value 3x 248 1 WORD
Negative sequence overcurrent side H - 46 side H
ParStI2(H)>cnt - Value 3x 249 1 WORD
ParTrI2(H)>cnt - Value 3x 250 1 WORD
ParStI2(H)>>cnt - Value 3x 251 1 WORD
ParTrI2(H)>>cnt - Value 3x 252 1 WORD
Negative sequence overcurrent side L - 46 side L
ParStI2(L)>cnt - Value 3x 253 1 WORD
ParTrI2(L)>cnt - Value 3x 254 1 WORD
ParStI2(L)>>cnt - Value 3x 255 1 WORD
ParTrI2(L)>>cnt - Value 3x 256 1 WORD
Negative sequence overcurrent side T - 46 side T
ParStI2(T)>cnt - Value 3x 257 1 WORD
ParTrI2(T)>cnt - Value 3x 258 1 WORD
ParStI2(T)>>cnt - Value 3x 259 1 WORD
ParTrI2(T)>>cnt - Value 3x 260 1 WORD
Negative / Positive sequence current ratio side H - I2/I1 side
H

ParStI21(H)>cnt - Value 3x 261 1 WORD


ParTrI21(H)>cnt - Value 3x 262 1 WORD
Negative / Positive sequence current ratio side L - I2/I1 side L

ParStI21(L)>cnt - Value 3x 263 1 WORD


ParTrI21(L)>cnt - Value 3x 264 1 WORD
Negative / Positive sequence current ratio side T - I2/I1 side T

ParStI21(T)>cnt - Value 3x 265 1 WORD


ParTrI21(T)>cnt - Value 3x 266 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 49 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Thermal image side H - 49 side H
ParAlDthAL1Hcnt - Value 3x 267 1 WORD
ParAlDthAL2Hcnt - Value 3x 268 1 WORD
ParTrDthH>cnt - Value 3x 269 1 WORD
Thermal image side L - 49 side L
ParAlDthAL1Hcnt - Value 3x 270 1 WORD
ParAlDthAL2Hcnt - Value 3x 271 1 WORD
ParTrDthH>cnt - Value 3x 272 1 WORD
Thermal image side T - 49 side T
ParAlDthAL1Tcnt - Value 3x 273 1 WORD
ParAlDthAL2Tcnt - Value 3x 274 1 WORD
ParTrDthT>cnt - Value 3x 275 1 WORD
Phase overcurrent side H - 50/51 side H
ParStI(H)>cnt - Value 3x 276 1 WORD
ParTrI(H)>cnt - Value 3x 277 1 WORD
ParStI(H)>>cnt - Value 3x 278 1 WORD
ParTrI(H)>>cnt - Value 3x 279 1 WORD
ParStI(H)>>>cnt - Value 3x 280 1 WORD
ParTrI(H)>>>cnt - Value 3x 281 1 WORD
Phase overcurrent side L - 50/51 side L
ParStI(L)>cnt - Value 3x 282 1 WORD
ParTrI(L)>cnt - Value 3x 283 1 WORD
ParStI(L)>>cnt - Value 3x 284 1 WORD
ParTrI(L)>>cnt - Value 3x 285 1 WORD
ParStI(L)>>>cnt - Value 3x 286 1 WORD
ParTrI(L)>>>cnt - Value 3x 287 1 WORD
Phase overcurrent side T - 50/51 side T
ParStI(T)>cnt - Value 3x 288 1 WORD
ParTrI(T)>cnt - Value 3x 289 1 WORD
ParStI(T)>>cnt - Value 3x 290 1 WORD
ParTrI(T)>>cnt - Value 3x 291 1 WORD
ParStI(T)>>>cnt - Value 3x 292 1 WORD
ParTrI(T)>>>cnt - Value 3x 293 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 50 of 73
NVA100X-T-MB0
VAR REF IDX DIM TYPE Range Um Kv ENUM
Residual overcurrent - 50N.1/51N.1-87NHIZ.1
ParStIE1>cnt - Value 3x 294 1 WORD
ParTrIE1>cnt - Value 3x 295 1 WORD
ParStIE1>>cnt - Value 3x 296 1 WORD
ParTrIE1>>cnt - Value 3x 297 1 WORD
ParStIE1>>>cnt - Value 3x 298 1 WORD
ParTrIE1>>>cnt - Value 3x 299 1 WORD
Residual overcurrent - 50N.2/51N.2-87NHIZ.2
ParStIE2>cnt - Value 3x 300 1 WORD
ParTrIE2>cnt - Value 3x 301 1 WORD
ParStIE2>>cnt - Value 3x 302 1 WORD
ParTrIE2>>cnt - Value 3x 303 1 WORD
ParStIE2>>>cnt - Value 3x 304 1 WORD
ParTrIE2>>>cnt - Value 3x 305 1 WORD
Calculated residual overcurrent side H - 50N/51N side H
ParStIEC(H)>cnt - Value 3x 306 1 WORD
ParTrIEC(H)>cnt - Value 3x 307 1 WORD
ParStIEC(H)>>cnt - Value 3x 308 1 WORD
ParTrIEC(H)>>cnt - Value 3x 309 1 WORD
ParStIEC(H)>>>cnt - Value 3x 310 1 WORD
ParTrIEC(H)>>>cnt - Value 3x 311 1 WORD
Calculated residual overcurrent side L - 50N/51N side L
ParStIEC(L)>cnt - Value 3x 312 1 WORD
ParTrIEC(L)>cnt - Value 3x 313 1 WORD
ParStIEC(L)>>cnt - Value 3x 314 1 WORD
ParTrIEC(L)>>cnt - Value 3x 315 1 WORD
ParStIEC(L)>>>cnt - Value 3x 316 1 WORD
ParTrIEC(L)>>>cnt - Value 3x 317 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 51 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Calculated residual overcurrent side T - 50N/51N side T
ParStIEC(T)>cnt - Value 3x 318 1 WORD
ParTrIEC(T)>cnt - Value 3x 319 1 WORD
ParStIEC(T)>>cnt - Value 3x 320 1 WORD
ParTrIEC(T)>>cnt - Value 3x 321 1 WORD
ParStIEC(T)>>>cnt - Value 3x 322 1 WORD
ParTrIEC(T)>>>cnt - Value 3x 323 1 WORD
Overvoltage - 59
ParStU>cnt - Value 3x 324 1 WORD
ParTrU>cnt - Value 3x 325 1 WORD
ParStU>>cnt - Value 3x 326 1 WORD
ParTrU>>cnt - Value 3x 327 1 WORD
Residual overvoltage - 59N
ParStUE>cnt - Value 3x 328 1 WORD
ParTrUE>cnt - Value 3x 329 1 WORD
ParStUE>>cnt - Value 3x 330 1 WORD
ParTrUE>>cnt - Value 3x 331 1 WORD
Terra ristretta a bassa impedenza - 64RE1
ParSt-64REF1cnt - Value 3x 332 1 WORD
ParTr-64REF1cnt - Value 3x 333 1 WORD
Terra ristretta a bassa impedenza - 64REF2
ParSt-64REF2cnt - Value 3x 334 1 WORD
ParTr-64REF2cnt - Value 3x 335 1 WORD
Overfrequency - 81O
ParSt-f>cnt - Value 3x 336 1 WORD
ParTr-f>cnt - Value 3x 337 1 WORD
ParSt-f>>cnt - Value 3x 338 1 WORD
ParTr-f>>cnt - Value 3x 339 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 52 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Underfrequency - 81U
ParSt-f<cnt - Value 3x 340 1 WORD
ParTr-f<cnt - Value 3x 341 1 WORD
ParSt-f<<cnt - Value 3x 342 1 WORD
ParTr-f<<cnt - Value 3x 343 1 WORD
ParSt-f<<<cnt - Value 3x 344 1 WORD
ParTr-f<<<cnt - Value 3x 345 1 WORD
ParSt-f<<<<cnt - Value 3x 346 1 WORD
ParTr-f<<<<cnt - Value 3x 347 1 WORD
Differenziale - 87GMT
ParStId>cnt - Value 3x 348 1 WORD
ParTrId>cnt - Value 3x 349 1 WORD
ParStId>>cnt - Value 3x 350 1 WORD
ParTrId>>cnt - Value 3x 351 1 WORD
Trip circuit supervision side H - 74TCS side H
ParTr74TCSHcnt - Value 3x 352 1 WORD
Trip circuit supervision side L - 74TCS side L
ParTr74TCSLcnt - Value 3x 353 1 WORD
Trip circuit supervision side T - 74TCS side T
ParTr74TCSTcnt - Value 3x 354 1 WORD
Circuit Breaker supervision
CBH N.OpenCBcnt 3x 355 1 LONG 1
CBL N.OpenCBcnt 3x 356 1 LONG 1
CBT N.OpenCBcnt 3x 357 1 UWORD 1
CT supervision side H - 74CT side H
ParTr74CTHcnt - Value 3x 358 1 WORD
CT supervision side L - 74CT side L
ParTr74CTLcnt - Value 3x 359 1 WORD
CT supervision side T - 74CT side T
ParTr74CTTcnt - Value 3x 360 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 53 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Accessory counters
ParStBF(H)cnt - Value 3x 361 1 WORD
ParTrBF(H)cnt - Value 3x 362 1 WORD
ParStBF(L)cnt - Value 3x 363 1 WORD
ParTrBF(L)cnt - Value 3x 364 1 WORD
ParStBF(T)cnt - Value 3x 365 1 WORD
ParTrBF(T)cnt - Value 3x 366 1 WORD

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 54 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Delayed inputs
IN1-1 1x 399 1 BIT 0=OFF, 1=ON
IN1-2 1x 400 1 BIT 0=OFF, 1=ON
IN1-3 1x 401 1 BIT 0=OFF, 1=ON
IN1-4 1x 402 1 BIT 0=OFF, 1=ON
IN1-5 1x 403 1 BIT 0=OFF, 1=ON
IN1-6 1x 404 1 BIT 0=OFF, 1=ON
IN1-7 1x 405 1 BIT 0=OFF, 1=ON
IN1-8 1x 406 1 BIT 0=OFF, 1=ON
IN1-9 1x 407 1 BIT 0=OFF, 1=ON
IN1-10 1x 408 1 BIT 0=OFF, 1=ON
IN1-11 1x 409 1 BIT 0=OFF, 1=ON
IN1-12 1x 410 1 BIT 0=OFF, 1=ON
IN1-13 1x 411 1 BIT 0=OFF, 1=ON
IN1-14 1x 412 1 BIT 0=OFF, 1=ON
IN1-15 1x 413 1 BIT 0=OFF, 1=ON
IN1-16 1x 414 1 BIT 0=OFF, 1=ON
IN2-1 1x 415 1 BIT 0=OFF, 1=ON
IN2-2 1x 416 1 BIT 0=OFF, 1=ON
IN2-3 1x 417 1 BIT 0=OFF, 1=ON
IN2-4 1x 418 1 BIT 0=OFF, 1=ON
IN2-5 1x 419 1 BIT 0=OFF, 1=ON
IN2-6 1x 420 1 BIT 0=OFF, 1=ON
IN2-7 1x 421 1 BIT 0=OFF, 1=ON
IN2-8 1x 422 1 BIT 0=OFF, 1=ON
IN2-9 1x 423 1 BIT 0=OFF, 1=ON
IN2-10 1x 424 1 BIT 0=OFF, 1=ON
IN2-11 1x 425 1 BIT 0=OFF, 1=ON
IN2-12 1x 426 1 BIT 0=OFF, 1=ON
IN2-13 1x 427 1 BIT 0=OFF, 1=ON
IN2-14 1x 428 1 BIT 0=OFF, 1=ON
IN2-15 1x 429 1 BIT 0=OFF, 1=ON
IN2-16 1x 430 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 55 of 73
NVA100X-T-MB0
VAR REF IDX DIM TYPE Range Um Kv ENUM
Internal states
Reset LEDs 1x 431 1 BIT 0=OFF, 1=ON
Profile selection 1x 432 1 BIT 0=OFF, 1=ON
Fault trigger 1x 433 1 BIT 0=OFF, 1=ON
IE/IPh Block2 1x 434 1 BIT 0=OFF, 1=ON
IPh Block2 1x 435 1 BIT 0=OFF, 1=ON
IE Block2 1x 436 1 BIT 0=OFF, 1=ON
Block1 87GMT and sides H-L-T 1x 437 1 BIT 0=OFF, 1=ON
Block1 side H 1x 438 1 BIT 0=OFF, 1=ON
Block1 side L 1x 439 1 BIT 0=OFF, 1=ON
Block1 side T 1x 440 1 BIT 0=OFF, 1=ON
Block1 87GMT 1x 441 1 BIT 0=OFF, 1=ON
Tcs1 side H 1x 442 1 BIT 0=OFF, 1=ON
Tcs2 side H 1x 443 1 BIT 0=OFF, 1=ON
Tcs1 side L 1x 444 1 BIT 0=OFF, 1=ON
Tcs2 side L 1x 445 1 BIT 0=OFF, 1=ON
Tcs1 side T 1x 446 1 BIT 0=OFF, 1=ON
Tcs2 side T 1x 447 1 BIT 0=OFF, 1=ON
External trips sides H-L-T 1x 448 1 BIT 0=OFF, 1=ON
External trips side H 1x 449 1 BIT 0=OFF, 1=ON
External trips side L 1x 450 1 BIT 0=OFF, 1=ON
External trips side T 1x 451 1 BIT 0=OFF, 1=ON
Reset partial counters 1x 452 1 BIT 0=OFF, 1=ON
Reset CB monitoring data side H 1x 453 1 BIT 0=OFF, 1=ON
52a side H 1x 454 1 BIT 0=OFF, 1=ON
52b side H 1x 455 1 BIT 0=OFF, 1=ON
Open CB side H 1x 456 1 BIT 0=OFF, 1=ON
Close CB side H 1x 457 1 BIT 0=OFF, 1=ON
Reset CB monitoring data side L 1x 458 1 BIT 0=OFF, 1=ON
52a side L 1x 459 1 BIT 0=OFF, 1=ON
52b side L 1x 460 1 BIT 0=OFF, 1=ON
Open CB side L 1x 461 1 BIT 0=OFF, 1=ON
Close CB side L 1x 462 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 56 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Internal states
Reset CB monitoring data side T 1x 463 1 BIT 0=OFF, 1=ON
52a side T 1x 464 1 BIT 0=OFF, 1=ON
52b side T 1x 465 1 BIT 0=OFF, 1=ON
Open CB side T 1x 466 1 BIT 0=OFF, 1=ON
Close CB side T 1x 467 1 BIT 0=OFF, 1=ON
Thermal image presetting sides H-L-T 1x 468 1 BIT 0=OFF, 1=ON
Thermal image presetting side H 1x 469 1 BIT 0=OFF, 1=ON
Thermal image presetting side L 1x 470 1 BIT 0=OFF, 1=ON
Thermal image presetting side T 1x 471 1 BIT 0=OFF, 1=ON
Remote trip 1x 472 1 BIT 0=OFF, 1=ON
Reset on demand measures 1x 473 1 BIT 0=OFF, 1=ON
74VT ext. 1x 474 1 BIT 0=OFF, 1=ON
Block I(H)> 1x 475 1 BIT 0=OFF, 1=ON
Block I(H)>> 1x 476 1 BIT 0=OFF, 1=ON
Block I(H)>>> 1x 477 1 BIT 0=OFF, 1=ON
Block I(L)> 1x 478 1 BIT 0=OFF, 1=ON
Block I(L)>> 1x 479 1 BIT 0=OFF, 1=ON
Block I(L)>>> 1x 480 1 BIT 0=OFF, 1=ON
Block I(T)> 1x 481 1 BIT 0=OFF, 1=ON
Block I(T)>> 1x 482 1 BIT 0=OFF, 1=ON
Block I(T)>>> 1x 483 1 BIT 0=OFF, 1=ON
Block IE1> 1x 484 1 BIT 0=OFF, 1=ON
Block IE1>> 1x 485 1 BIT 0=OFF, 1=ON
Block IE1>>> 1x 486 1 BIT 0=OFF, 1=ON
Block IE2> 1x 487 1 BIT 0=OFF, 1=ON
Block IE2>> 1x 488 1 BIT 0=OFF, 1=ON
Block IE2>>> 1x 489 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 57 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Block2
BLK2IN-Iph 1x 490 1 BIT 0=OFF, 1=ON
BLK2IN-IE 1x 491 1 BIT 0=OFF, 1=ON
tB timeout 1x 492 1 BIT 0=OFF, 1=ON
ST-Iph-BLK2 1x 493 1 BIT 0=OFF, 1=ON
ST-IE-BLK2 1x 494 1 BIT 0=OFF, 1=ON
BLK2OUT-Iph 1x 495 1 BIT 0=OFF, 1=ON
BLK2OUT-IE 1x 496 1 BIT 0=OFF, 1=ON
BLK2OUT-Iph/IE 1x 497 1 BIT 0=OFF, 1=ON
Block4
ST-Iph-BLK4 1x 498 1 BIT 0=OFF, 1=ON
ST-IE-BLK4 1x 499 1 BIT 0=OFF, 1=ON
BLK4OUT 1x 500 1 BIT 0=OFF, 1=ON
Relays
KC1-1 1x 501 1 BIT 0=OFF, 1=ON
KC1-2 1x 502 1 BIT 0=OFF, 1=ON
KC1-3 1x 503 1 BIT 0=OFF, 1=ON
KC1-4 1x 504 1 BIT 0=OFF, 1=ON
KC1-5 1x 505 1 BIT 0=OFF, 1=ON
KC1-6 1x 506 1 BIT 0=OFF, 1=ON
KC1-7 1x 507 1 BIT 0=OFF, 1=ON
KC1-8 1x 508 1 BIT 0=OFF, 1=ON
KC2-1 1x 509 1 BIT 0=OFF, 1=ON
KC2-2 1x 510 1 BIT 0=OFF, 1=ON
KC2-3 1x 511 1 BIT 0=OFF, 1=ON
KC2-4 1x 512 1 BIT 0=OFF, 1=ON
KC2-5 1x 513 1 BIT 0=OFF, 1=ON
KC2-6 1x 514 1 BIT 0=OFF, 1=ON
KC2-7 1x 515 1 BIT 0=OFF, 1=ON
KC2-8 1x 516 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 58 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


MEASURES
Physical
fl - Value 3x 367 2 LONG Hz 1000
fU - Value 3x 369 2 LONG Hz 1000
IL1L - Value 3x 371 2 LONG InL 16000
IL2L - Value 3x 373 2 LONG InL 16000
IL3L - Value 3x 375 2 LONG InL 16000
IL1H - Value 3x 377 2 LONG InH 16000
IL2H - Value 3x 379 2 LONG InH 16000
IL3H - Value 3x 381 2 LONG InH 16000
IL1T - Value 3x 383 2 LONG InT 16000
IL2T - Value 3x 385 2 LONG InT 16000
IL3T - Value 3x 387 2 LONG InT 16000
IE1 - Value 3x 389 2 LONG IEn1 80000
IE2 - Value 3x 391 2 LONG IEn2 80000
UE - Value 3x 393 2 LONG UEn 160000
U - Value 3x 395 2 LONG Un 112000
Measure differential phase L1
IL1cH - Value 3x 397 2 LONG Inref 16000
IL1cL - Value 3x 399 2 LONG Inref 16000
IL1cT - Value 3x 401 2 LONG Inref 16000
ISL1 - Value 3x 403 2 LONG Inref 16000
IDL1 - Value 3x 405 2 LONG Inref 16000
IDL1-2nd - Value 3x 407 2 LONG Inref 16000
IDL1-5th - Value 3x 409 2 LONG Inref 16000
Measure differential phase L2
IL2cH - Value 3x 411 2 LONG Inref 16000
IL2cL - Value 3x 413 2 LONG Inref 16000
IL2cT - Value 3x 415 2 LONG Inref 16000
ISL2 - Value 3x 417 2 LONG Inref 16000
IDL2 - Value 3x 419 2 LONG Inref 16000
IDL2-2nd - Value 3x 421 2 LONG Inref 16000
IDL2-5th - Value 3x 423 2 LONG Inref 16000

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 59 of 73
NVA100X-T-MB0
VAR REF IDX DIM TYPE Range Um Kv ENUM
Measure differential phase L3
IL3cH - Value 3x 425 2 LONG Inref 16000
IL3cL - Value 3x 427 2 LONG Inref 16000
IL3cT - Value 3x 429 2 LONG Inref 16000
ISL3 - Value 3x 431 2 LONG Inref 16000
IDL3 - Value 3x 433 2 LONG Inref 16000
IDL3-2nd - Value 3x 435 2 LONG Inref 16000
IDL3-5th - Value 3x 437 2 LONG Inref 16000
Calculated
DThetaH - Value 3x 439 2 LONG DThB(H) 1000
DThetaL - Value 3x 441 2 LONG DThB(L) 1000
DThetaT - Value 3x 443 2 LONG DThB(T) 1000
U/f - Value 3x 445 2 LONG Un/fn 5600
IECH - Value 3x 447 2 LONG InH 16000
IECL - Value 3x 449 2 LONG InL 16000
IECT - Value 3x 451 2 LONG InT 16000
IE1S - Value 3x 453 2 LONG IEn1 80000
IE2S - Value 3x 455 2 LONG IEn2 80000
ILmaxH - Value 3x 457 2 LONG InH 16000
ILminH - Value 3x 459 2 LONG InH 16000
ILH - Value 3x 461 2 LONG InH 16000
ILmaxL - Value 3x 463 2 LONG InL 16000
ILminL - Value 3x 465 2 LONG InL 16000
ILL - Value 3x 467 2 LONG InL 16000
ILmaxT - Value 3x 469 2 LONG InT 16000
ILminT - Value 3x 471 2 LONG InT 16000
ILT - Value 3x 473 2 LONG InT 16000

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 60 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Sequence
I1H - Value 3x 475 2 LONG InH 16000
I2H - Value 3x 477 2 LONG InH 16000
I2H/I1H - Value 3x 479 2 LONG 8000
I1L - Value 3x 481 2 LONG InL 16000
I2L - Value 3x 483 2 LONG InL 16000
I2L/I1L - Value 3x 485 2 LONG 8000
I1T - Value 3x 487 2 LONG InT 16000
I2T - Value 3x 489 2 LONG InT 16000
I2T/I1T - Value 3x 491 2 LONG 8000
Misure mediate di fase lato L
IL1FIXL - Value 3x 493 2 LONG InL 16000
IL2FIXL - Value 3x 495 2 LONG InL 16000
IL3FIXL - Value 3x 497 2 LONG InL 16000
IL1ROLL - Value 3x 499 2 LONG InL 16000
IL2ROLL - Value 3x 501 2 LONG InL 16000
IL3ROLL - Value 3x 503 2 LONG InL 16000
IL1MAXL - Value 3x 505 2 LONG InL 16000
IL2MAXL - Value 3x 507 2 LONG InL 16000
IL3MAXL - Value 3x 509 2 LONG InL 16000
IL1MINL - Value 3x 511 2 LONG InL 16000
IL2MINL - Value 3x 513 2 LONG InL 16000
IL3MINL - Value 3x 515 2 LONG InL 16000

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 61 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Misure mediate di fase lato H
IL1FIXH - Value 3x 517 2 LONG InH 16000
IL2FIXH - Value 3x 519 2 LONG InH 16000
IL3FIXH - Value 3x 521 2 LONG InH 16000
IL1ROLH - Value 3x 523 2 LONG InH 16000
IL2ROLH - Value 3x 525 2 LONG InH 16000
IL3ROLH - Value 3x 527 2 LONG InH 16000
IL1MAXH - Value 3x 529 2 LONG InH 16000
IL2MAXH - Value 3x 531 2 LONG InH 16000
IL3MAXH - Value 3x 533 2 LONG InH 16000
IL1MINH - Value 3x 535 2 LONG InH 16000
IL2MINH - Value 3x 537 2 LONG InH 16000
IL3MINH - Value 3x 539 2 LONG InH 16000
Misure mediate di fase lato T
IL1FIXT - Value 3x 541 2 LONG InT 16000
IL2FIXT - Value 3x 543 2 LONG InT 16000
IL3FIXT - Value 3x 545 2 LONG InT 16000
IL1ROLT - Value 3x 547 2 LONG InT 16000
IL2ROLT - Value 3x 549 2 LONG InT 16000
IL3ROLT - Value 3x 551 2 LONG InT 16000
IL1MAXT - Value 3x 553 2 LONG InT 16000
IL2MAXT - Value 3x 555 2 LONG InT 16000
IL3MAXT - Value 3x 557 2 LONG InT 16000
IL1MINT - Value 3x 559 2 LONG InT 16000
IL2MINT - Value 3x 561 2 LONG InT 16000
IL3MINT - Value 3x 563 2 LONG InT 16000

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 62 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


PT100 Probes
PT1 3x 565 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T1 3x 566 2 LONG ^C 10
PT2 3x 568 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T2 3x 569 2 LONG ^C 10
PT3 3x 571 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T3 3x 572 2 LONG ^C 10
PT4 3x 574 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T4 3x 575 2 LONG ^C 10
PT5 3x 577 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T5 3x 578 2 LONG ^C 10
PT6 3x 580 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T6 3x 581 2 LONG ^C 10
PT7 3x 583 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T7 3x 584 2 LONG ^C 10
PT8 3x 586 1 WORD 0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
T8 3x 587 2 LONG ^C 10

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 63 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Fault 0
Fault n. 0 - Fault counter 3x 589 2 LONG 1
Fault n. 0 - Date 3x 591 6 STR
Fault n. 0 - Time 3x 597 6 STR
Fault n. 0 - Fault cause 3x 603 1 WORD 0="No faults",1="(U/f)AL
Start",2="(U/f)AL Trip",3="(U/f)>
Start",4="(U/f)> Trip",5="(U/f)>>
Start",6="(U/f)>> Trip",7="U<
Start",8="U< Trip",9="U<<
Start",10="U<< Trip",11="I(H)<
Start",12="I(H)< Trip",13="I(L)<
Start",14="I(L)< Trip",15="I(T)<
Start",16="I(T)< Trip",17="I2(H)>
Start",18="I2(H)>
Trip",19="I2(H)>>
Start",20="I2(H)>>
Trip",21="I2(L)> Start",22="I2(L)>
Trip",23="I2(L)>>
Start",24="I2(L)>>
Trip",25="I2(T)> Start",26="I2(T)>
Trip",27="I2(T)>>
Start",28="I2(T)>>
Trip",29="I21(H)>
Start",30="I21(H)>
Trip",31="I21(L)>
Start",32="I21(L)>
Trip",33="I21(T)>
Start",34="I21(T)>
Trip",35="DThetaAL1(H)
Alarm",36="DThetaAL2(H)
Alarm",37="DTheta(H)>
Trip",38="DThetaAL1(L)
Alarm",39="DThetaAL2(L)
Alarm",40="DTheta(L)>
Trip",41="DThetaAL1(T)
Alarm",42="DThetaAL2(T)
Alarm",43="DTheta(T)>
Trip",44="I(L)> Start",45="I(L)>
Trip",46="I(L)>> Start",47="I(L)>>
Trip",48="I(L)>>>
Start",49="I(L)>>> Trip",50="I(H)>
Start",51="I(H)> Trip",52="I(H)>>
Start",53="I(H)>>
Trip",54="I(H)>>>
Start",55="I(H)>>> Trip",56="I(T)>
Start",57="I(T)> Trip",58="I(T)>>
Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 64 of 73
NVA100X-T-MB0
Start",59="I(T)>>
Trip",60="I(T)>>>
Start",61="I(T)>>> Trip",62="IE1>
Start",63="IE1> Trip",64="IE1>>
Start",65="IE1>>
Trip",66="IE1>>>
Start",67="IE1>>> Trip",68="IE2>
Start",69="IE2> Trip",70="IE2>>
Start",71="IE2>>
Trip",72="IE2>>>
Start",73="IE2>>>
Trip",74="IEC(L)>
Start",75="IEC(L)>
Trip",76="IEC(L)>>
Start",77="IEC(L)>>
Trip",78="IEC(L)>>>
Start",79="IEC(L)>>>
Trip",80="IEC(H)>
Start",81="IEC(H)>
Trip",82="IEC(H)>>
Start",83="IEC(H)>>
Trip",84="IEC(H)>>>
Start",85="IEC(H)>>>
Trip",86="IEC(T)>
Start",87="IEC(T)>
Trip",88="IEC(T)>>
Start",89="IEC(T)>>
Trip",90="IEC(T)>>>
Start",91="IEC(T)>>>
Trip",92="U> Start",93="U>
Trip",94="U>> Start",95="U>>
Trip",96="UE> Start",97="UE>
Trip",98="UE>> Start",99="UE>>
Trip",100="f> Start",101="f>
Trip",102="f>> Start",103="f>>
Trip",104="f< Start",105="f<
Trip",106="f<< Start",107="f<<
Trip",108="f<<< Start",109="f<<<
Trip",110="f<<<<
Start",111="f<<<<
Trip",112="64REF1
Start",113="64REF1
Trip",114="64REF2
Start",115="64REF2
Trip",116="Id>-L1
Start",117="Id>-L2
Start",118="Id>-L3
Start",119="Id>-L1
Trip",120="Id>-L2 Trip",121="Id>-
L3 Trip",122="Id>>-L1

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 65 of 73
NVA100X-T-MB0
Start",123="Id>>-L2
Start",124="Id>>-L3
Start",125="Id>>-L1
Trip",126="Id>>-L2
Trip",127="Id>>-L3
Trip",128="PT1 Alarm",129="PT1
Trip",130="PT2 Alarm",131="PT2
Trip",132="PT3 Alarm",133="PT3
Trip",134="PT4 Alarm",135="PT4
Trip",136="PT5 Alarm",137="PT5
Trip",138="PT6 Alarm",139="PT6
Trip",140="PT7 Alarm",141="PT7
Trip",142="PT8 Alarm",143="PT8
Trip",144="74TCS(H)
Trip",145="74TCS(L)
Trip",146="74TCS(T)
Trip",147="74CT(H)
Trip",148="74CT(L)
Trip",149="74CT(T)
Trip",150="BF(H)
Start",151="BF(H)
Trip",152="BF(L)
Start",153="BF(L)
Trip",154="BF(T)
Start",155="BF(T)
Trip",156="Logic input"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 66 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Fault 0
Fault n. 0 - IL1Lr 3x 604 2 ULONG InL 16000
Fault n. 0 - IL2Lr 3x 606 2 ULONG InL 16000
Fault n. 0 - IL3Lr 3x 608 2 ULONG InL 16000
Fault n. 0 - I1Lr 3x 610 2 ULONG InL 16000
Fault n. 0 - I2Lr 3x 612 2 ULONG InL 16000
Fault n. 0 - I2L/I1Lr 3x 614 2 ULONG 8000
Fault n. 0 - IECLr 3x 616 2 ULONG InL 16000
Fault n. 0 - DThetaL-r 3x 618 2 ULONG DThB(L) 1000
Fault n. 0 - IL1Hr 3x 620 2 ULONG InH 16000
Fault n. 0 - IL2Hr 3x 622 2 ULONG InH 16000
Fault n. 0 - IL3Hr 3x 624 2 ULONG InH 16000
Fault n. 0 - I1Hr 3x 626 2 ULONG InH 16000
Fault n. 0 - I2Hr 3x 628 2 ULONG InH 16000
Fault n. 0 - I2H/I1Hr 3x 630 2 ULONG 8000
Fault n. 0 - IECHr 3x 632 2 ULONG InH 16000
Fault n. 0 - DThetaH-r 3x 634 2 ULONG DThB(H) 1000
Fault n. 0 - IL1Tr 3x 636 2 ULONG InT 16000
Fault n. 0 - IL2Tr 3x 638 2 ULONG InT 16000
Fault n. 0 - IL3Tr 3x 640 2 ULONG InT 16000
Fault n. 0 - I1Tr 3x 642 2 ULONG InT 16000
Fault n. 0 - I2Tr 3x 644 2 ULONG InT 16000
Fault n. 0 - I2T/I1Tr 3x 646 2 ULONG 8000
Fault n. 0 - IECTr 3x 648 2 ULONG InT 16000
Fault n. 0 - DThetaT-r 3x 650 2 ULONG DThB(T) 1000
Fault n. 0 - IE1r 3x 652 2 ULONG IEn1 80000
Fault n. 0 - IE2r 3x 654 2 ULONG IEn2 80000
Fault n. 0 - IE1Sr 3x 656 2 ULONG IEn1 80000
Fault n. 0 - IE2Sr 3x 658 2 ULONG IEn2 80000
Fault n. 0 - UEr 3x 660 2 ULONG UEn 160000
Fault n. 0 - Ur 3x 662 2 ULONG Un 112000
Fault n. 0 - flr 3x 664 2 ULONG Hz 1000
Fault n. 0 - fUr 3x 666 2 ULONG Hz 1000

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 67 of 73
NVA100X-T-MB0
VAR REF IDX DIM TYPE Range Um Kv ENUM
Fault 0
Fault n. 0 - U/fr 3x 668 2 ULONG Un/fn 5600
Fault n. 0 - IDL1r 3x 670 2 ULONG Inref 16000
Fault n. 0 - ISL1r 3x 672 2 ULONG Inref 16000
Fault n. 0 - IDL2r 3x 674 2 ULONG Inref 16000
Fault n. 0 - ISL2r 3x 676 2 ULONG Inref 16000
Fault n. 0 - IDL3r 3x 678 2 ULONG Inref 16000
Fault n. 0 - ISL3r 3x 680 2 ULONG Inref 16000
Fault n. 0 - T1r 3x 682 1 WORD ^C 10
Fault n. 0 - T2r 3x 683 1 WORD ^C 10
Fault n. 0 - T3r 3x 684 1 WORD ^C 10
Fault n. 0 - T4r 3x 685 1 WORD ^C 10
Fault n. 0 - T5r 3x 686 1 WORD ^C 10
Fault n. 0 - T6r 3x 687 1 WORD ^C 10
Fault n. 0 - T7r 3x 688 1 WORD ^C 10
Fault n. 0 - T8r 3x 689 1 WORD ^C 10
Fault n. 0 - Inputs IN1-1 IN1-16 3x 690 1 UWORD 1
Fault n. 0 - Inputs IN2-1 IN2-16 3x 691 1 UWORD 1
Fault n. 0 - Outputs KC1-1 KC1-8 3x 692 1 UWORD 1
Fault n. 0 - Outputs KC2-1 KC2-8 3x 693 1 UWORD 1
Fault n. 0 - Fault info 3x 694 2 ULONG 1

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 68 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Events
Event n. 0 - Event counter 3x 696 2 LONG 1
Event n. 0 - Date 3x 698 6 STR
Event n. 0 - Hour 3x 704 6 STR
Event n. 0 - Cause 3x 710 1 WORD SEE MANUAL END PAGE
Event n. 1 – Event counter 3x 711 2 LONG 1
Event n. 1 – Date 3x 713 6 STR
Event n. 1 – Hour 3x 719 6 STR
Event n. 1 – Cause 3x 725 1 WORD SEE MANUAL END PAGE
Event n. 2 – Event counter 3x 726 2 LONG 1
Event n. 2 – Date 3x 728 6 STR
Event n. 2 – Hour 3x 734 6 STR
Event n. 2 – Cause 3x 740 1 WORD SEE MANUAL END PAGE
Event n. 3 – Event counter 3x 741 2 LONG 1
Event n. 3 – Date 3x 743 6 STR
Event n. 3 – Hour 3x 749 6 STR
Event n. 3 – Cause 3x 755 1 WORD SEE MANUAL END PAGE
Event n. 4 – Event counter 3x 756 2 LONG 1
Event n. 4 – Date 3x 758 6 STR
Event n. 4 – Hour 3x 764 6 STR
Event n. 4 – Cause 3x 770 1 WORD SEE MANUAL END PAGE
Event n. 5 – Event counter 3x 771 2 LONG 1
Event n. 5 – Date 3x 773 6 STR
Event n. 5 – Hour 3x 779 6 STR
Event n. 5 – Cause 3x 785 1 WORD SEE MANUAL END PAGE
Event n. 6 – Event counter 3x 786 2 LONG 1
Event n. 6 – Date 3x 788 6 STR
Event n. 6 – Hour 3x 794 6 STR
Event n. 6 – Cause 3x 800 1 WORD SEE MANUAL END PAGE
Event n. 7 – Event counter 3x 801 2 LONG 1
Event n. 7 – Date 3x 803 6 STR
Event n. 7 – Hour 3x 809 6 STR
Event n. 7 – Cause 3x 815 1 WORD SEE MANUAL END PAGE

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 69 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Events
Event n. 8 – Event counter 3x 816 2 LONG 1
Event n. 8 – Date 3x 818 6 STR
Event n. 8 – Hour 3x 824 6 STR
Event n. 8 – Cause 3x 830 1 WORD SEE MANUAL END PAGE
Event n. 9 – Event counter 3x 831 2 LONG 1
Event n. 9 – Date 3x 833 6 STR
Event n. 9 – Hour 3x 839 6 STR
Event n. 9 – Cause 3x 845 1 WORD SEE MANUAL END PAGE
Event n. 10 – Event counter 3x 846 2 LONG 1
Event n. 10 – Date 3x 848 6 STR
Event n. 10 – Hour 3x 854 6 STR
Event n. 10 – Cause 3x 860 1 WORD SEE MANUAL END PAGE
Event n. 11 – Event counter 3x 861 2 LONG 1
Event n. 11 – Date 3x 863 6 STR
Event n. 11 – Hour 3x 869 6 STR
Event n. 11 – Cause 3x 875 1 WORD SEE MANUAL END PAGE
Event n. 12 – Event counter 3x 876 2 LONG 1
Event n. 12 – Date 3x 878 6 STR
Event n. 12 – Hour 3x 884 6 STR
Event n. 12 – Cause 3x 890 1 WORD SEE MANUAL END PAGE
Event n. 13 – Event counter 3x 891 2 LONG 1
Event n. 13 – Date 3x 893 6 STR
Event n. 13 – Hour 3x 899 6 STR
Event n. 13 – Cause 3x 905 1 WORD SEE MANUAL END PAGE
Event n. 14 – Event counter 3x 906 2 LONG 1
Event n. 14 – Date 3x 908 6 STR
Event n. 14 – Hour 3x 914 6 STR
Event n. 14 – Cause 3x 920 1 WORD SEE MANUAL END PAGE
Event n. 15 – Event counter 3x 921 2 LONG 1
Event n. 15 – Date 3x 923 6 STR
Event n. 15 – Hour 3x 929 6 STR
Event n. 15 – Cause 3x 935 1 WORD SEE MANUAL END PAGE

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 70 of 73
NVA100X-T-MB0

VAR REF IDX DIM TYPE Range Um Kv ENUM


Events
Event n. 16 – Event counter 3x 936 2 LONG 1
Event n. 16 – Date 3x 938 6 STR
Event n. 16 – Hour 3x 944 6 STR
Event n. 16 – Cause 3x 950 1 WORD SEE MANUAL END PAGE
Event n. 17 – Event counter 3x 951 2 LONG 1
Event n. 17 – Date 3x 953 6 STR
Event n. 17 – Hour 3x 959 6 STR
Event n. 17 – Cause 3x 965 1 WORD SEE MANUAL END PAGE
Event n. 18 – Event counter 3x 966 2 LONG 1
Event n. 18 – Date 3x 968 6 STR
Event n. 18 – Hour 3x 974 6 STR
Event n. 18 – Cause 3x 980 1 WORD SEE MANUAL END PAGE

VAR REF IDX DIM TYPE Range Um Kv ENUM


Test
TEST state 1x 517 1 BIT 0=OFF, 1=ON

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 71 of 73
NVA100X-T-MB0

Event n. x - Cause 0="No events",1="IN1-1 on",2="IN1-1 off",3="IN1-2 on",4="IN1-2 off",5="IN1-3 on",


6="IN1-3 off",7="IN1-4 on",8="IN1-4 off",9="IN1-5 on",10="IN1-5 off",11="IN1-6 on",
12="IN1-6 off",13="IN1-7 on",14="IN1-7 off",15="IN1-8 on",16="IN1-8 off",17="IN1-9 on",
18="IN1-9 off",19="IN1-10 on",20="IN1-10 off",21="IN1-11 on",22="IN1-11 off",
23="IN1-12 on",24="IN1-12 off",25="IN1-13 on",26="IN1-13 off",27="IN1-14 on",
28="IN1-14 off",29="IN1-15 on",30="IN1-15 off",31="IN1-16 on",32="IN1-16 off",
33="IN2-1 on",34="IN2-1 off",35="IN2-2 on",36="IN2-2 off",37="IN2-3 on",38="IN2-3 off",
39="IN2-4 on",40="IN2-4 off",41="IN2-5 on",42="IN2-5 off",43="IN2-6 on",44="IN2-6 off",
45="IN2-7 on",46="IN2-7 off",47="IN2-8 on",48="IN2-8 off",49="IN2-9 on",50="IN2-9 off",
51="IN2-10 on",52="IN2-10 off",53="IN2-11 on",54="IN2-11 off",55="IN2-12 on",
56="IN2-12 off",57="IN2-13 on",58="IN2-13 off",59="IN2-14 on",60="IN2-14 off",
61="IN2-15 on",62="IN2-15 off",63="IN2-16 on",64="IN2-16 off",65="(U/f)AL Start",
66="(U/f)AL Trip",67="(U/f)> Start",68="(U/f)> Trip",69="(U/f)>> Start",
70="(U/f)>> Trip",71="U< Start",72="U< Trip",73="U<< Start",74="U<< Trip",
75="I(H)< Start",76="I(H)< Trip",77="I(L)< Start",78="I(L)< Trip",79="I(T)< Start",
80="I(T)< Trip",81="I2(H)> Start",82="I2(H)> Trip",83="I2(H)>> Start",
84="I2(H)>> Trip",85="I2(L)> Start",86="I2(L)> Trip",87="I2(L)>> Start",
88="I2(L)>> Trip",89="I2(T)> Start",90="I2(T)> Trip",91="I2(T)>> Start",
92="I2(T)>> Trip",99="I21(H)> Start",100="I21(H)> Trip",101="I21(L)> Start",
102="I21(L)> Trip",103="I21(T)> Start",104="I21(T)> Trip",105="I(L)> Start",
106="I(L)> Trip",107="I(L)>> Start",108="I(L)>> Trip",109="I(L)>>> Start",
110="I(L)>>> Trip",111="I(H)> Start",112="I(H)> Trip",113="I(H)>> Start",
114="I(H)>> Trip",115="I(H)>>> Start",116="I(H)>>> Trip",117="I(T)> Start",
118="I(T)> Trip",119="I(T)>> Start",120="I(T)>> Trip",121="I(T)>>> Start",
122="I(T)>>> Trip",127="U> Start",128="U> Trip",129="U>> Start",130="U>> Trip",
131="UE> Start",132="UE> Trip",133="UE>> Start",134="UE>> Trip",153="f> Start",
154="f> Trip",155="f>> Start",156="f>> Trip",157="f< Start",158="f< Trip",
159="f<< Start",160="f<< Trip",161="f<<< Start",162="f<<< Trip",163="f<<<< Start",
164="f<<<< Trip",175="PT1 Alarm",176="PT1 Trip",177="PT2 Alarm",178="PT2 Trip",
179="PT3 Alarm",180="PT3 Trip",181="PT4 Alarm",182="PT4 Trip",183="PT5 Alarm",
184="PT5 Trip",185="PT6 Alarm",186="PT6 Trip",187="PT7 Alarm",188="PT7 Trip",
189="PT8 Alarm",190="PT8 Trip",193="Settings",194="Logic input",195="Power down",
196="Power up",200="VOut1 on",201="VOut1 off",202="VOut2 on",203="VOut2 off",
204="VOut3 on",205="VOut3 off",206="VOut4 on",207="VOut4 off",208="VOut5 on",
209="VOut5 off",210="VOut6 on",211="VOut6 off",212="VOut7 on",213="VOut7 off",
214="VOut8 on",215="VOut8 off",216="VOut9 on",217="VOut9 off",218="VOut10 on",
219="VOut10 off",220="VOut11 on",221="VOut11 off",222="VOut12 on",223="VOut12 off",
224="VOut13 on",225="VOut13 off",226="VOut14 on",227="VOut14 off",228="VOut15 on",
229="VOut15 off",230="VOut16 on",231="VOut16 off",232="VIn1 on",233="VIn1 off",
234="VIn2 on",235="VIn2 off",236="VIn3 on",237="VIn3 off",238="VIn4 on",239="VIn4 off",
240="VIn5 on",241="VIn5 off",242="VIn6 on",243="VIn6 off",244="VIn7 on",245="VIn7 off",
246="VIn8 on",247="VIn8 off",248="VIn9 on",249="VIn9 off",250="VIn10 on",
251="VIn10 off",252="VIn11 on",253="VIn11 off",254="VIn12 on",255="VIn12 off",
256="VIn13 on",257="VIn13 off",258="VIn14 on",259="VIn14 off",260="VIn15 on",
261="VIn15 off",262="VIn16 on",263="VIn16 off",264="VIn17 on",265="VIn17 off",
266="VIn18 on",267="VIn18 off",268="VIn19 on",269="VIn19 off",270="VIn20 on",
271="VIn20 off",272="VIn21 on",273="VIn21 off",274="VIn22 on",275="VIn22 off",
276="VIn23 on",277="VIn23 off",278="VIn24 on",279="VIn24 off",280="VIn25 on",
281="VIn25 off",282="VIn26 on",283="VIn26 off",284="VIn27 on",285="VIn27 off",
Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 72 of 73
NVA100X-T-MB0
286="VIn28 on",287="VIn28 off",288="VIn29 on",289="VIn29 off",290="VIn30 on",
291="VIn30 off",292="VIn31 on",293="VIn31 off",294="VIn32 on",295="VIn32 off",
296="Test General Start on",297="Test General Start off",298="Test General Trip on",
299="Test General Trip off",300="Test Quality on",301="Test Quality off",
302="VIN LinkLoss on",303="VIN LinkLoss off",304="VIN change settings on",
305="VIN change settings off",306="Block F51LS1 on",307="Block F51LS1 off",
308="Block F51LS2 on",309="Block F51LS2 off",310="Block F51LS3 on",
311="Block F51LS3 off",312="Block F51HS1 on",313="Block F51HS1 off",
314="Block F51HS2 on",315="Block F51HS2 off",316="Block F51HS3 on",
317="Block F51HS3 off",318="Block F51TS1 on",319="Block F51TS1 off",
320="Block F51TS2 on",321="Block F51TS2 off",322="Block F51TS3 on",
323="Block F51TS3 off",334="KC1-1 on",335="KC1-1 off",336="KC1-2 on",337="KC1-2 off",
338="KC1-3 on",339="KC1-3 off",340="KC1-4 on",341="KC1-4 off",342="KC1-5 on",
343="KC1-5 off",344="KC1-6 on",345="KC1-6 off",346="KC1-7 on",347="KC1-7 off",
348="KC1-8 on",349="KC1-8 off",350="KC2-1 on",351="KC2-1 off",352="KC2-2 on",
353="KC2-2 off",354="KC2-3 on",355="KC2-3 off",356="KC2-4 on",357="KC2-4 off",
358="KC2-5 on",359="KC2-5 off",360="KC2-6 on",361="KC2-6 off",362="KC2-7 on",
363="KC2-7 off",364="KC2-8 on",365="KC2-8 off",366="74TCS(H) Trip",367="74TCS(L) Trip",
368="74TCS(T) Trip",369="CBH State diag",370="CBL State diag",371="CBT State diag",
372="Remote trip",419="IEC(L)> Start",420="IEC(L)> Trip",421="IEC(L)>> Start",
422="IEC(L)>> Trip",423="IEC(L)>>> Start",424="IEC(L)>>> Trip",425="IEC(H)> Start",
426="IEC(H)> Trip",427="IEC(H)>> Start",428="IEC(H)>> Trip",429="IEC(H)>>> Start",
430="IEC(H)>>> Trip",431="IEC(T)> Start",432="IEC(T)> Trip",433="IEC(T)>> Start",
434="IEC(T)>> Trip",435="IEC(T)>>> Start",436="IEC(T)>>> Trip",437="64REF1 Start",
438="64REF1 Trip",439="64REF2 Start",440="64REF2 Trip",441="Id>-L1 Start",
442="Id>-L2 Start",443="Id>-L3 Start",444="Id>-L1 Trip",445="Id>-L2 Trip",
446="Id>-L3 Trip",447="Id>>-L1 Start",448="Id>>-L2 Start",449="Id>>-L3 Start",
450="Id>>-L1 Trip",451="Id>>-L2 Trip",452="Id>>-L3 Trip",453="IE1> Start",
454="IE1> Trip",455="IE1>> Start",456="IE1>> Trip",457="IE1>>> Start",
458="IE1>>> Trip",459="IE2> Start",460="IE2> Trip",461="IE2>> Start",462="IE2>> Trip",
463="IE2>>> Start",464="IE2>>> Trip",465="DThetaAL1(H) Alarm",466="DThetaAL2(H) Alarm",
467="DTheta(H)> Trip",468="DThetaAL1(L) Alarm",469="DThetaAL2(L) Alarm",
470="DTheta(L)> Trip",471="DThetaAL1(T) Alarm",472="DThetaAL2(T) Alarm",
473="DTheta(T)> Trip",474="BF(H) Start",475="BF(H) Trip",476="BF(L) Start",
477="BF(L) Trip",478="BF(T) Start",479="BF(T) Trip",500="Block F87N1S1 on",
501="Block F87N1S1 off",502="Block F87N1S2 on",503="Block F87N1S2 off",
504="Block F87N1S3 on",505="Block F87N1S3 off",506="Block F87N2S1 on",
507="Block F87N2S1 off",508="Block F87N2S2 on",509="Block F87N2S2 off",
510="Block F87N2S3 on",511="Block F87N2S3 off",512="Block F51NLS1 on",
513="Block F51NLS1 off",514="Block F51NLS2 on",515="Block F51NLS2 off",
516="Block F51NLS3 on",517="Block F51NLS3 off",518="Block F51NHS1 on",
519="Block F51NHS1 off",520="Block F51NHS2 on",521="Block F51NHS2 off",
522="Block F51NHS3 on",523="Block F51NHS3 off",524="Block F51NTS1 on",5
25="Block F51NTS1 off",526="Block F51NTS2 on",527="Block F51NTS2 off",5
28="Block F51NTS3 on",529="Block F51NTS3 off"

Version 1.40
NVA100X-T-MB0 Remote Setting Manual Page: 73 of 73

You might also like