Вы находитесь на странице: 1из 63

PRON NVA100-MB0

MODBUS PROTOCOL USER GUIDE 3.00

Modbus Communication Protocol User Guide

PRON NVA100-MB0

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 1 of 63

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 2 of 63

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

1 Modbus RTU communication


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

The MODBUS protocol documentation can be found online at www.modicon.com or www.modbus.org


(document PDI-MBUS-300 REV J).

1.1 Serial port settings


To communicate with a TPR, the serial port of the Master has to be configured with the following settings:
Address
1

Baud Rate
19200

Parity
No
Table 1 Serial port settings

Stop bits
1

Data bits
8

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

1.2 Transmission mode


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

1.3 Data Types


A TPR has 4 data table, each of which corresponds to one of the 4 basic Modbus data type. Each table contains up
to 1024 data that can be accessed with the proper function as described in the following table.
table/data type

reference

information

Access

Coils
Discrete Inputs
Input Registers
Holding Registers

0X
1X
3X
4X

1 bit
1 bit
16 bit Word
16 bit Word

Read/Write
Read only
Read only
Read/Write

Function Code for


Reading
0x01
0x02
0x04
0x03

Function Code for


Writing
0x05
0x06, 0x10

Table 2. Modbus Data Type

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 3 of 63

PRON NVA100-MB0
1.4 Supported functions
TPR supports the following Modbus functions:
Code
0x01
0x02
0x03
0x04
0x05
0x06
0x0F
0x10

Name
Read Coil Status
Read Input Status
Read Holding Registers
Read Input Registers
Force Single Coil
Preset Single Register
Force Multiple Coil
Preset Multiple Registers
Table 3 Supported Modbus functions

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

BH

BL

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

Function Code field: in case of exception, the msb is set to 1.


Data field: this field contains a value related to the kind of error generated by the request.

An example of request with exception response could be the following:


TX

04
S
RX

07
F
04
S

A5 50
ADR
87
F

00 02
DIM

01
DATA

- CRC

- 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 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 4 of 63

PRON NVA100-MB0
The next table describes all the exceptions handled by the TPRs.
Code

Name

01

ILLEGAL FUNCTION

02

ILLEGAL DATA ADDRESS

03

ILLEGAL DATA VALUE

04

SLAVE DEVICE FAILURE

05

ACKNOWLEDGE

06

SLAVE DEVICE BUSY

Description
The function code received in the query is not an allowable action for
the slave.
The data address received in the query is not an allowable address for
the slave
A value contained in the query data field is not an allowable value for
the slave
An unrecoverable error occurred while the slave was attempting to
perform the requested action.
The slave has accepted the request and is processing it, but a long
duration of time will be required to do so. This response is returned to
prevent a timeout error from occurring in the master.
The slave is engaged in processing a long-duration program command.
The master should retransmit the message later when the slave is free.

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

Transaction
Identifier

Protocol
Identifier

Length Field

MODBUS FRAME

Modbus Frame

CHECKSUM

TCP FRAME

DATA

1.7 Network setting


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

1.8 NTP synchronization


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

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

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 5 of 63

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

1x, Discrete Input


n
var
6
I> Start
7
I> Trip
8
I> Block1

n
157
158
159
160
161

3x, Input Registers


var
Power frequeny
Phase current IL1 value Word L
Phase current IL1 value Word H
Phase current IL2 value Word L
Phase current IL2 value Word H

Table 4. Example of data structures

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

01
S

02
F

00 05
ADR

00 01
DIM

- CRC

2.1 Basic Data Type


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

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 6 of 63

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

+127

Relationship with Modbus:


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

00
B
Modbus
Register

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

00 0D
Modbus
Register

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

+255

Relationship with Modbus:


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

B
UByte

00
B
Modbus
Register

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

00 0D
Modbus
Register

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 7 of 63

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

+32.767

Relationship with Modbus:


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

BH

BL

Word

BH BL
Modbus
Register

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

0C

01

Word

0C 01
Modbus
Register

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

+65.535

Relationship with Modbus:


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

BL

UWord

BH BL
Modbus
Register

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

01

UWord

0C 01
Modbus
Register

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 8 of 63

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

+2.147.483.647

Relationship with Modbus:


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

BLH BLL BHH BHL


WL
WH
Modbus Registers

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

01
03
Long

E8

03
E8
00
01
Modbus Registers

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

+4.294.967.295

Relationship with Modbus:


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

LLH

LLL LHH LHL


WL
WH
Modbus Registers

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

01
03
ULong

E8

03
E8
00
01
Modbus Registers

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 9 of 63

PRON NVA100-MB0
2.1.8 ARR
Description:
Array of BYTE.
Relationship with Modbus:

An ARR data type of length n is placed in N Modbus Registers (N= ceil(n/2) ) keeping the byte ordering. If odd n,
the last byte of ARR is placed in the MSB of the last Modbus register, while the LSB is set to 0
If even n:
B1
1

B2
2
Array[n]

Bn
n

B1

B2
1

Bn-1

Bn

N
Modbus Registers
N = ceil(n/2)

If odd n:
B1
1

B2
2
Array[n]

Bn
n

B1

B2
1

Bn

N
Modbus Registers

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

3A
1F
2
3
Array[3]

01

3A
1F
00
1
2
Modbus Registers

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 10 of 63

PRON NVA100-MB0
2.1.9 STR
Description:
String data type. Its represented by an array of BYTE. Every byte represents the hexadecimal ASCII code
associated with the character of the string
Relationship with Modbus:

An STR data type of length n is placed in N Modbus Registers (N= ceil(n/2) ) keeping the byte ordering. If odd n,
the last byte is placed in the MSB of the last Modbus register. A zero padding operation (with char \0) is necessary
for every writing operation where the length of the string is lower than the number of bytes contained in the Modbus
registers.
If even n:
C1
1

C2
2
String[n]

Cn
n

C1

C2
1

Cn-1

Cn

N
Modbus Registers
N = ceil(n/2)

If odd n:
C1
1

C2
2
String[n]

Cn
n

C1

C2
1

Cn

\0

N
Modbus Registers

Example:
Lets assume Relay reference name is a STRING variable whose length is 8 characters, its Modbus address is
0x0029 and its dimension is 4 Modbus registers. Lets set its value to NAxx.
First of all the ASCII code in hexadecimal notation for each character of the string NA10 is equal to 0x4E417878
An example of write request could be the following:
TX

01
S

10
F

00 29
ADR

00 05
DIM

10
B

4E 41
DATA1
N A

78 78
DATA2
x x

00 00
DATA3
\0 \0

00 00
DATA4
\0 \0

- CRC

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

2.1.10

CMD

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

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 11 of 63

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

3.1 Address Data Table


Now a description of all the Address Data Tables fields is given:
VAR

REF

IDX

DIM

TYPE

UM

KV

ENUM

Table 5. Address Data Tables field

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

3.1.2 REF
The REF field tells which data table the variable is stored in.
The REF field can assume one of the following values:

0x:
1x:
3x:
4x:

data stored in the COIL table


data stored in the DISCRETE INPUT table
data stored in the INPUT REGISTER table
data stored in the HOLDING REGISTER table

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

Example: lets consider the following Address Data Table


VAR
Relay phase nominal current - In
Relay reference name
I> Trip

REF
3x
3x
1x

IDX
50
42
7

DIM
1
8
1

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 12 of 63

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

01
S

03
F

00 31
ADR

00 01
DIM

- CRC

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

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

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

REF

IDX

DIM

TYPE

UM

KV

3x

159

LONG

In

16000

Phase current IL1 - Value

ENUM

Lets read the Phase current IL1 - Value from the Slave address 1.
TX

01
S

01
S

04
F

04
F

00 9E
ADR

00 02
DIM

- CRC

Lets assume the following response:


RX

04
B

A9
80
00
03
DATA1
DATA2
LONG
VALL
VALH

CRC

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 13 of 63

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

3.2 Common properties


Some common properties are now described for a better understanding.

3.2.1 Input state

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

3.2.2 Output state

State

Fail

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

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 14 of 63

PRON NVA100-MB0
4 Examples
For all the examples, the following symbols are assumed:
S
F
B
ADR
DIM
CRC
DATAx
VALx

= Slave Modbus address (1-247)


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

4.1 Example 1. How to read a variable


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

REF

IDX

DIM

TYPE

UM

Kv

Relay phase nominal current - In

3x

50

UWORD

ENUM

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

01
S
01
S

04
F
04
F

00 3E
ADR
04
B

00 02
DIM

00
05
DATA

- CRC

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 doesnt need to be
scaled. The Relay phase nominal current In is equal to 5A.

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 15 of 63

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

I> Trip

REF

IDX

DIM

TYPE

1x

BIT

UM

Kv

ENUM

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
S

TX

01
S

RX

02
F
02
F

00 06
ADR
01
B

00 01
DIM

00
01
VAL

- CRC

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


Lets execute the command Reset events on the Slave address 1.
From the Address Data Table (Appendix A) we find out the following information;
VAR

Reset LEDs

REF

IDX

DIM

TYPE

0x

CMD

UM

Kv

ENUM

0=OFF, 1=ON

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

TX

01
S

05
F

00 01
ADR

FF 00
DATA

- CRC

RX

01
S

05
F

00 01
ADR

FF 00
DATA

- CRC

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 16 of 63

PRON NVA100-MB0

5 Glossary
BH
BL
LSB
lsb
MSB
msb
NTP
RTU
TPR
WH
WL

Most significative Byte of a Word data (Higher byte)


Least significative Byte of a Word data (Lower byte)
Least Significative Byte
least significative bit
Most Significative Byte
Most significative bit
Network Time Protocol
Remote Terminal Unit
Thytronic Protective Relay
Most significative Word of a Long data (Higher word)
Least significative Word of a Long data (Lower word)

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 17 of 63

PRON NVA100-MB0
6 Appendix A. Address Data Table
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Set RTC

0x

CMD

0=OFF, 1=ON

Reset CB Open counter

0x

CMD

0=OFF, 1=ON

Reset LEDs

0x

CMD

0=OFF, 1=ON

Reset CB time action

0x

CMD

0=OFF, 1=ON

Reset MTV

0x

CMD

0=OFF, 1=ON

Reset Breaking currents SumI2t

0x

CMD

0=OFF, 1=ON

Reset Breaking currents SumI

0x

CMD

0=OFF, 1=ON

Reset partial counters

0x

CMD

0=OFF, 1=ON

Thermal image presetting

0x

CMD

0=OFF, 1=ON

Fault reading

0x

10

CMD

0=OFF, 1=ON

Reset faults

0x

11

CMD

0=OFF, 1=ON

Reset faults identifier

0x

12

CMD

0=OFF, 1=ON

Events reading

0x

13

CMD

0=OFF, 1=ON

Reset events

0x

14

CMD

0=OFF, 1=ON

Reset event identifier

0x

15

CMD

0=OFF, 1=ON

Open CB

0x

16

CMD

0=OFF, 1=ON

Close CB

0x

17

CMD

0=OFF, 1=ON

Test-off

0x

18

CMD

0=OFF, 1=ON

Test-on

0x

19

CMD

0=OFF, 1=ON

Reset on demand measures

0x

20

CMD

0=OFF, 1=ON

Reset on energy measures

0x

21

CMD

0=OFF, 1=ON

Enable reclose

0x

22

CMD

0=OFF, 1=ON

Disable reclose

0x

23

CMD

0=OFF, 1=ON

Commands

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 18 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Day

4x

UWORD

1,31,1

Month

4x

UWORD

1,12,1

Year

4x

UWORD

2000,2099,1

Hour

4x

UWORD

0,23,1

Minute

4x

UWORD

0,59,1

Second

4x

UWORD

0,59,1

Testing rele

4x

WORD

Code

3x

STR

Serial number -

3x

LONG

Application sw release

3x

STR

Base sw release

3x

15

STR

DSP fw identifier

3x

21

UWORD

DSP fw release

3x

22

STR

Address

3x

28

UBYTE

IP host address

3x

29

STR

IP net mask

3x

37

STR

Autonegotiation

1x

BIT

0=OFF, 1=ON

Enable

1x

BIT

0=OFF, 1=ON

Commands

0="K1",1="K2",2="K3",3="K4",4="
K5",5="K6",6="K7",7="K8",8="K9"
,9="K10"

Info
1

Communication
1

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 19 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Relay reference name

3x

45

STR

Relay phase nominal current - In

3x

53

Relay residual nominal current - IEn

3x

55

Phase CT primary nominal current - Inp

3x

57

Residual CT primary nominal current - IEnp

3x

Relay nominal voltage ( phase to phase ) - Un


Line VT primary nominal voltage ( phase to phase ) - Unp

Range

Um

Kv

ENUM

ULONG

ULONG

ULONG

59

ULONG

3x

61

ULONG

3x

63

ULONG

Relay residual nominal voltage ( direct measurement ) - UEn

3x

65

ULONG

Residual primary nominal voltage ( phase to phase ) * 1.73 UEnp

3x

67

ULONG

Relay nominal frequency - fn

3x

69

ULONG

Hz

Measurements reading mode

3x

71

WORD

0="RELATIVE",1="PRIMARY"

3x

72

WORD

0="A",1="B"

Day

3x

73

UWORD

Month

3x

74

UWORD

Year

3x

75

UWORD

Hour

3x

76

UWORD

Minute

3x

77

UWORD

Second

3x

78

UWORD

Rated nominal values

Profile selection
Profile
Clock

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 20 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

MINOR Fail alarm

1x

BIT

0=NO, 1=YES

Protection and controls

1x

BIT

System diagnostic

3x

79

WORD

Device diagnostic

1x

BIT

0=OUT OF SERVICE, 1=ON


SERVICE
0="OK",1="FATAL",2="MAJOR",3
="MINOR"
0=OK, 1=NOT OK

Program diagnostic

3x

80

WORD

Data-base boot

3x

81

WORD

Data-base run-time

3x

82

WORD

DSP boot

3x

83

WORD

DSP run-time

3x

84

WORD

Memory boot

3x

85

WORD

Memory run-time

3x

86

WORD

Serial flash startup

3x

87

STR

Serial flash run-time

3x

90

STR

Data Bus heavy

3x

93

WORD

Data Bus minor

3x

94

WORD

Protection I/O assigned verify startup

3x

95

WORD

Protection I/O assigned verify run-time major

3x

96

WORD

Protection I/O assigned verify run-time minor

3x

97

WORD

PLC I/O assigned verify startup

3x

98

WORD

PLC I/O assigned verify run-time major

3x

99

WORD

PLC I/O assigned verify run-time minor

3x

100

WORD

READINGS
Diagnostic

0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"

0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"
0="OK",1="NOT
OK",2="Disappeared"

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 21 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

MMI module - Boot

3x

101

WORD

MMI module - Run-time

3x

102

WORD

MRI module - Boot

3x

103

WORD

MRI module - Run-time

3x

104

WORD

MID16-1 module - Boot

3x

105

WORD

MID16-1 module - Run-time

3x

106

WORD

Range

Um

Kv

ENUM

Diagnostic
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
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 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 22 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

MID16-2 module - Boot

3x

107

WORD

MID16-2 module - Run-time

3x

108

WORD

PT100 module - Boot

3x

109

WORD

PT100 module - Run-time

3x

110

WORD

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

3x

111

WORD

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

3x

112

WORD

Range

Um

Kv

ENUM

Diagnostic
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
0="NOT OK: Undefined
module",1="OK",2="NOT OK:
missing module",3="NOT OK:
incompatible
module",4="OK",5="NOT
OK",6="OFF",7="OFF: Remove
module"
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 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 23 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

ActiveMode 79

3x

113

WORD

Run 79

1x

BIT

LastEvent 79

3x

114

WORD

CycleState 79

3x

115

WORD

Residual-time 79

3x

116

ULONG

EnableState 79

1x

BIT

Range

Um

Kv

ENUM

PROTECTIONS
Auto-reclose - 79
0="OFF",1="Rapid",2="Rapid+Slo
w"
0=OFF, 1=ON
0="No events",1="Rapid
reclosure OK",2="Slow reclosure
OK",3="Delayed reclosure
OK",4="Fail reclosure
phase",5="Fail reclosure
earth",6="Manual close",7="Cycle
interrupted",8="Cycle in progress"
0="Rest",1="Rapid reclosure
time",2="Slow reclosure
time",3="Fault discrimination
time",4="Reclaim
time",5="Delayed reclosure
time",6="Reclaim final time"
s

0=OFF, 1=ON

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

1000

Page: 24 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Alarm ThAL1

1x

BIT

0=OFF, 1=ON

Trip Th>1

1x

BIT

0=OFF, 1=ON

Alarm ThAL2

1x

10

BIT

0=OFF, 1=ON

Trip Th>2

1x

11

BIT

0=OFF, 1=ON

Alarm ThAL3

1x

12

BIT

0=OFF, 1=ON

Trip Th>3

1x

13

BIT

0=OFF, 1=ON

Alarm ThAL4

1x

14

BIT

0=OFF, 1=ON

Trip Th>4

1x

15

BIT

0=OFF, 1=ON

Alarm ThAL5

1x

16

BIT

0=OFF, 1=ON

Trip Th>5

1x

17

BIT

0=OFF, 1=ON

Alarm ThAL6

1x

18

BIT

0=OFF, 1=ON

Trip Th>6

1x

19

BIT

0=OFF, 1=ON

Alarm ThAL7

1x

20

BIT

0=OFF, 1=ON

Trip Th>7

1x

21

BIT

0=OFF, 1=ON

Alarm ThAL8

1x

22

BIT

0=OFF, 1=ON

Trip Th>8

1x

23

BIT

0=OFF, 1=ON

Diag PT100

1x

24

BIT

0=OFF, 1=ON

Start (U/f)AL

1x

25

BIT

0=OFF, 1=ON

Trip (U/f)AL

1x

26

BIT

0=OFF, 1=ON

BLK1 (U/f)AL

1x

27

BIT

0=OFF, 1=ON

Start (U/f)>

1x

28

BIT

0=OFF, 1=ON

Trip (U/f)>

1x

29

BIT

0=OFF, 1=ON

BLK1 (U/f)>

1x

30

BIT

0=OFF, 1=ON

Start (U/f)>>

1x

31

BIT

0=OFF, 1=ON

Trip (U/f)>>

1x

32

BIT

0=OFF, 1=ON

BLK1 (U/f)>>

1x

33

BIT

0=OFF, 1=ON

Thermal protection with RTD thermometric probes - 26

Overexcitation - 24

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 25 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Start U<

1x

34

BIT

0=OFF, 1=ON

Trip U<

1x

35

BIT

0=OFF, 1=ON

BLK1 U<

1x

36

BIT

0=OFF, 1=ON

Start U<<

1x

37

BIT

0=OFF, 1=ON

Trip U<<

1x

38

BIT

0=OFF, 1=ON

BLK1 U<<

1x

39

BIT

0=OFF, 1=ON

Start U1<

1x

40

BIT

0=OFF, 1=ON

Trip U1<

1x

41

BIT

0=OFF, 1=ON

BLK1 U1<

1x

42

BIT

0=OFF, 1=ON

Start P1>

1x

43

BIT

0=OFF, 1=ON

Trip P1>

1x

44

BIT

0=OFF, 1=ON

BLK1 P1>

1x

45

BIT

0=OFF, 1=ON

Start P2>

1x

46

BIT

0=OFF, 1=ON

Trip P2>

1x

47

BIT

0=OFF, 1=ON

BLK1 P2>

1x

48

BIT

0=OFF, 1=ON

Start Q1>

1x

49

BIT

0=OFF, 1=ON

Trip Q1>

1x

50

BIT

0=OFF, 1=ON

BLK1 Q1>

1x

51

BIT

0=OFF, 1=ON

Start Q2>

1x

52

BIT

0=OFF, 1=ON

Trip Q2>

1x

53

BIT

0=OFF, 1=ON

BLK1 Q2>

1x

54

BIT

0=OFF, 1=ON

Start P1<

1x

55

BIT

0=OFF, 1=ON

Trip P1<

1x

56

BIT

0=OFF, 1=ON

BLK1 P1<

1x

57

BIT

0=OFF, 1=ON

Start P2<

1x

58

BIT

0=OFF, 1=ON

Trip P2<

1x

59

BIT

0=OFF, 1=ON

BLK1 P2<

1x

60

BIT

0=OFF, 1=ON

Undervoltage - 27

Positive sequence undervoltage - 27V1

Directional active overpower - 32P

Directional reactive overpower - 32Q

Directional active underpower - 37P

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 26 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Start Q1<

1x

61

BIT

0=OFF, 1=ON

Trip Q1<

1x

62

BIT

0=OFF, 1=ON

BLK1 Q1<

1x

63

BIT

0=OFF, 1=ON

Start Q2<

1x

64

BIT

0=OFF, 1=ON

Trip Q2<

1x

65

BIT

0=OFF, 1=ON

BLK1 Q2<

1x

66

BIT

0=OFF, 1=ON

Start I2>

1x

67

BIT

0=OFF, 1=ON

Trip I2>

1x

68

BIT

0=OFF, 1=ON

BLK1 I2>

1x

69

BIT

0=OFF, 1=ON

BLK2IN I2>

1x

70

BIT

0=OFF, 1=ON

CLP I2>

1x

71

BIT

0=OFF, 1=ON

Start I2>>

1x

72

BIT

0=OFF, 1=ON

Trip I2>>

1x

73

BIT

0=OFF, 1=ON

BLK1 I2>>

1x

74

BIT

0=OFF, 1=ON

BLK2IN I2>>

1x

75

BIT

0=OFF, 1=ON

CLP I2>>

1x

76

BIT

0=OFF, 1=ON

Start I21>

1x

77

BIT

0=OFF, 1=ON

Trip I21>

1x

78

BIT

0=OFF, 1=ON

BLK1 I21>

1x

79

BIT

0=OFF, 1=ON

Directional reactive underpower - 37Q

Negative sequence overcurrent - 46

Negative sequence current / positive sequence current ratio I2/I1

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 27 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Alarm DthAL1

1x

80

BIT

0=OFF, 1=ON

BLK1 DthAL1

1x

81

BIT

0=OFF, 1=ON

BLK2IN DthAL1

1x

82

BIT

0=OFF, 1=ON

BLK4IN DthAL1

1x

83

BIT

0=OFF, 1=ON

Alarm DthAL2

1x

84

BIT

0=OFF, 1=ON

BLK1 DthAL2

1x

85

BIT

0=OFF, 1=ON

BLK2IN DthAL2

1x

86

BIT

0=OFF, 1=ON

BLK4IN DthAL2

1x

87

BIT

0=OFF, 1=ON

Trip Dth>

1x

88

BIT

0=OFF, 1=ON

BLK1 Dth>

1x

89

BIT

0=OFF, 1=ON

BLK2IN Dth>

1x

90

BIT

0=OFF, 1=ON

BLK4IN Dth>

1x

91

BIT

0=OFF, 1=ON

CLP Dth

1x

92

BIT

0=OFF, 1=ON

Start I>

1x

93

BIT

0=OFF, 1=ON

Trip I>

1x

94

BIT

0=OFF, 1=ON

BLK1 I>

1x

95

BIT

0=OFF, 1=ON

BLK2IN I>

1x

96

BIT

0=OFF, 1=ON

BLK4IN I>

1x

97

BIT

0=OFF, 1=ON

CLP I>

1x

98

BIT

0=OFF, 1=ON

Start I>>

1x

99

BIT

0=OFF, 1=ON

Trip I>>

1x

100

BIT

0=OFF, 1=ON

BLK1 I>>

1x

101

BIT

0=OFF, 1=ON

BLK2IN I>>

1x

102

BIT

0=OFF, 1=ON

BLK4IN I>>

1x

103

BIT

0=OFF, 1=ON

CLP I>>

1x

104

BIT

0=OFF, 1=ON

Start I>>>

1x

105

BIT

0=OFF, 1=ON

Trip I>>>

1x

106

BIT

0=OFF, 1=ON

BLK1 I>>>

1x

107

BIT

0=OFF, 1=ON

BLK2IN I>>>

1x

108

BIT

0=OFF, 1=ON

BLK4IN I>>>

1x

109

BIT

0=OFF, 1=ON

CLP I>>>

1x

110

BIT

0=OFF, 1=ON

Thermal image - 49

Phase overcurrent - 50/51

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 28 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Start IE>

1x

111

BIT

0=OFF, 1=ON

Trip IE>

1x

112

BIT

0=OFF, 1=ON

BLK1 IE>

1x

113

BIT

0=OFF, 1=ON

BLK2IN IE>

1x

114

BIT

0=OFF, 1=ON

BLK4IN IE>

1x

115

BIT

0=OFF, 1=ON

CLP IE>

1x

116

BIT

0=OFF, 1=ON

Start IE>>

1x

117

BIT

0=OFF, 1=ON

Trip IE>>

1x

118

BIT

0=OFF, 1=ON

BLK1 IE>>

1x

119

BIT

0=OFF, 1=ON

BLK2IN IE>>

1x

120

BIT

0=OFF, 1=ON

BLK4IN IE>>

1x

121

BIT

0=OFF, 1=ON

CLP IE>>

1x

122

BIT

0=OFF, 1=ON

Start IE>>>

1x

123

BIT

0=OFF, 1=ON

Trip IE>>>

1x

124

BIT

0=OFF, 1=ON

BLK1 IE>>>

1x

125

BIT

0=OFF, 1=ON

BLK2IN IE>>>

1x

126

BIT

0=OFF, 1=ON

BLK4IN IE>>>

1x

127

BIT

0=OFF, 1=ON

CLP IE>>>

1x

128

BIT

0=OFF, 1=ON

Start CPhi1<

1x

129

BIT

0=OFF, 1=ON

Trip CPhi1<

1x

130

BIT

0=OFF, 1=ON

BLK1 CPhi1<

1x

131

BIT

0=OFF, 1=ON

Start CPhi2<

1x

132

BIT

0=OFF, 1=ON

Trip CPhi2<

1x

133

BIT

0=OFF, 1=ON

BLK1 CPhi2<

1x

134

BIT

0=OFF, 1=ON

Start U>

1x

135

BIT

0=OFF, 1=ON

Trip U>

1x

136

BIT

0=OFF, 1=ON

BLK1 U>

1x

137

BIT

0=OFF, 1=ON

Start U>>

1x

138

BIT

0=OFF, 1=ON

Trip U>>

1x

139

BIT

0=OFF, 1=ON

BLK1 U>>

1x

140

BIT

0=OFF, 1=ON

Residual overcurrent - 50N/51N

Minimum power factor - 55

Overvoltage - 59

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 29 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Start UE>

1x

141

BIT

0=OFF, 1=ON

Trip UE>

1x

142

BIT

0=OFF, 1=ON

BLK1 UE>

1x

143

BIT

0=OFF, 1=ON

Start UE>>

1x

144

BIT

0=OFF, 1=ON

Trip UE>>

1x

145

BIT

0=OFF, 1=ON

BLK1 UE>>

1x

146

BIT

0=OFF, 1=ON

Start U2>

1x

147

BIT

0=OFF, 1=ON

Trip U2>

1x

148

BIT

0=OFF, 1=ON

BLK1 U2>

1x

149

BIT

0=OFF, 1=ON

Start IPD>

1x

150

BIT

0=OFF, 1=ON

Trip IPD>

1x

151

BIT

0=OFF, 1=ON

BLK1 IPD>

1x

152

BIT

0=OFF, 1=ON

BLK2IN IPD>

1x

153

BIT

0=OFF, 1=ON

BLK4IN IPD>

1x

154

BIT

0=OFF, 1=ON

CLP IPD>

1x

155

BIT

0=OFF, 1=ON

Start IPD>>

1x

156

BIT

0=OFF, 1=ON

Trip IPD>>

1x

157

BIT

0=OFF, 1=ON

BLK1 IPD>>

1x

158

BIT

0=OFF, 1=ON

BLK2IN IPD>>

1x

159

BIT

0=OFF, 1=ON

BLK4IN IPD>>

1x

160

BIT

0=OFF, 1=ON

CLP IPD>>

1x

161

BIT

0=OFF, 1=ON

Start IPD>>>

1x

162

BIT

0=OFF, 1=ON

Trip IPD>>>

1x

163

BIT

0=OFF, 1=ON

BLK1 IPD>>>

1x

164

BIT

0=OFF, 1=ON

BK2IN IPD>>>

1x

165

BIT

0=OFF, 1=ON

BK4IN IPD>>>

1x

166

BIT

0=OFF, 1=ON

CLP IPD>>>

1x

167

BIT

0=OFF, 1=ON

Start IPD>>>>

1x

168

BIT

0=OFF, 1=ON

Trip IPD>>>>

1x

169

BIT

0=OFF, 1=ON

Residual overvoltage - 59N

Negative sequence overvoltage - 59V2

Directional phase overcurrent - 67

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 30 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

BLK1 IPD>>>>

1x

170

BIT

0=OFF, 1=ON

BK2IN IPD>>>>

1x

171

BIT

0=OFF, 1=ON

BK4IN IPD>>>>

1x

172

BIT

0=OFF, 1=ON

CLP IPD>>>>

1x

173

BIT

0=OFF, 1=ON

Start IED>

1x

174

BIT

0=OFF, 1=ON

Trip IED>

1x

175

BIT

0=OFF, 1=ON

BLK1 IED>

1x

176

BIT

0=OFF, 1=ON

BLK2IN IED>

1x

177

BIT

0=OFF, 1=ON

BLK4IN IED>

1x

178

BIT

0=OFF, 1=ON

CLP IED>

1x

179

BIT

0=OFF, 1=ON

Start IED>>

1x

180

BIT

0=OFF, 1=ON

Trip IED>>

1x

181

BIT

0=OFF, 1=ON

BLK1 IED>>

1x

182

BIT

0=OFF, 1=ON

BLK2IN IED>>

1x

183

BIT

0=OFF, 1=ON

BLK4IN IED>>

1x

184

BIT

0=OFF, 1=ON

CLP IED>>

1x

185

BIT

0=OFF, 1=ON

Start IED>>>

1x

186

BIT

0=OFF, 1=ON

Trip IED>>>

1x

187

BIT

0=OFF, 1=ON

BLK1 IED>>>

1x

188

BIT

0=OFF, 1=ON

BK2IN IED>>>

1x

189

BIT

0=OFF, 1=ON

BK4IN IED>>>

1x

190

BIT

0=OFF, 1=ON

CLP IED>>>

1x

191

BIT

0=OFF, 1=ON

Start IED>>>>

1x

192

BIT

0=OFF, 1=ON

Trip IED>>>>

1x

193

BIT

0=OFF, 1=ON

BLK1 IED>>>>

1x

194

BIT

0=OFF, 1=ON

BK2IN IED>>>>

1x

195

BIT

0=OFF, 1=ON

BK4IN IED>>>>

1x

196

BIT

0=OFF, 1=ON

CLP IED>>>>

1x

197

BIT

0=OFF, 1=ON

Directional phase overcurrent - 67

Directional earth fault overcurrent - 67N

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 31 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Start f>

1x

198

BIT

0=OFF, 1=ON

Trip f>

1x

199

BIT

0=OFF, 1=ON

BLK1 f>

1x

200

BIT

0=OFF, 1=ON

Start f>>

1x

201

BIT

0=OFF, 1=ON

Trip f>>

1x

202

BIT

0=OFF, 1=ON

BLK1 f>>

1x

203

BIT

0=OFF, 1=ON

Start f<

1x

204

BIT

0=OFF, 1=ON

Trip f<

1x

205

BIT

0=OFF, 1=ON

BLK1 f<

1x

206

BIT

0=OFF, 1=ON

Start f<<

1x

207

BIT

0=OFF, 1=ON

Trip f<<

1x

208

BIT

0=OFF, 1=ON

BLK1 f<<

1x

209

BIT

0=OFF, 1=ON

Start f<<<

1x

210

BIT

0=OFF, 1=ON

Trip f<<<

1x

211

BIT

0=OFF, 1=ON

BLK1 f<<<

1x

212

BIT

0=OFF, 1=ON

Start f<<<<

1x

213

BIT

0=OFF, 1=ON

Trip f<<<<

1x

214

BIT

0=OFF, 1=ON

BLK1 f<<<<

1x

215

BIT

0=OFF, 1=ON

Start df>

1x

216

BIT

0=OFF, 1=ON

Trip df>

1x

217

BIT

0=OFF, 1=ON

BLK1 df>

1x

218

BIT

0=OFF, 1=ON

Start df>>

1x

219

BIT

0=OFF, 1=ON

Trip df>>

1x

220

BIT

0=OFF, 1=ON

BLK1 df>>

1x

221

BIT

0=OFF, 1=ON

Start df>>>

1x

222

BIT

0=OFF, 1=ON

Trip df>>>

1x

223

BIT

0=OFF, 1=ON

BLK1 df>>>

1x

224

BIT

0=OFF, 1=ON

Start df>>>>

1x

225

BIT

0=OFF, 1=ON

Trip df>>>>

1x

226

BIT

0=OFF, 1=ON

BLK1 df>>>>

1x

227

BIT

0=OFF, 1=ON

Overfrequency - 81O

Underfrequency - 81U

Frequency rate of change - 81R

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 32 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Start dphi>

1x

228

BIT

0=OFF, 1=ON

Trip dphi>

1x

229

BIT

0=OFF, 1=ON

BLK1 dphi>

1x

230

BIT

0=OFF, 1=ON

1x

231

BIT

0=OFF, 1=ON

Start 74TCS

1x

232

BIT

0=OFF, 1=ON

Trip 74TCS

1x

233

BIT

0=OFF, 1=ON

BLK1 74TCS

1x

234

BIT

0=OFF, 1=ON

Trip Int/Ext

1x

235

BIT

0=OFF, 1=ON

Start IBF>

1x

236

BIT

0=OFF, 1=ON

Start IEBF>

1x

237

BIT

0=OFF, 1=ON

Start BF

1x

238

BIT

0=OFF, 1=ON

Trip BF

1x

239

BIT

0=OFF, 1=ON

BLK1 BF

1x

240

BIT

0=OFF, 1=ON

Block 74VT

1x

241

BIT

0=OFF, 1=ON

Alarm 74VT

1x

242

BIT

0=OFF, 1=ON

BLK1 74VT

1x

243

BIT

0=OFF, 1=ON

Start I*

1x

244

BIT

0=OFF, 1=ON

Trip S<

1x

245

BIT

0=OFF, 1=ON

BLK1 S<

1x

246

BIT

0=OFF, 1=ON

Vector jump - dphi

Second Harmonic Restraint


Start I2ndh>
Trip circuit supervision - 74TCS

Breaker Failure - BF

VT supervision - 74VT

CT supervision - 74CT

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 33 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

State 1

3x

118

WORD

0="0",1="1"

State 2

3x

119

WORD

0="0",1="1"

State 3

3x

120

WORD

0="0",1="1"

State 4

3x

121

WORD

0="0",1="1"

State 5

3x

122

WORD

0="0",1="1"

State 6

3x

123

WORD

0="0",1="1"

State 7

3x

124

WORD

0="0",1="1"

State 8

3x

125

WORD

0="0",1="1"

State 9

3x

126

WORD

0="0",1="1"

State 10

3x

127

WORD

0="0",1="1"

State 11

3x

128

WORD

0="0",1="1"

State 12

3x

129

WORD

0="0",1="1"

State 13

3x

130

WORD

0="0",1="1"

State 14

3x

131

WORD

0="0",1="1"

State 15

3x

132

WORD

0="0",1="1"

State 16

3x

133

WORD

0="0",1="1"

State 17

3x

134

WORD

0="0",1="1"

State 18

3x

135

WORD

0="0",1="1"

State 19

3x

136

WORD

0="0",1="1"

State 20

3x

137

WORD

0="0",1="1"

State 21

3x

138

WORD

0="0",1="1"

State 22

3x

139

WORD

0="0",1="1"

State 23

3x

140

WORD

0="0",1="1"

State 24

3x

141

WORD

0="0",1="1"

State 25

3x

142

WORD

0="0",1="1"

State 26

3x

143

WORD

0="0",1="1"

State 27

3x

144

WORD

0="0",1="1"

State 28

3x

145

WORD

0="0",1="1"

State 29

3x

146

WORD

0="0",1="1"

State 30

3x

147

WORD

0="0",1="1"

State 31

3x

148

WORD

0="0",1="1"

State 32

3x

149

WORD

0="0",1="1"

PLC

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 34 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

CB-State

3x

150

WORD

52a

1x

247

BIT

0=OFF, 1=ON

52b

1x

248

BIT

0=OFF, 1=ON

CB fail

1x

249

BIT

0=OFF, 1=ON

Break time assigned relays state

1x

250

BIT

0=OFF, 1=ON

State N.Open

1x

251

BIT

0=OFF, 1=ON

State SumI

1x

252

BIT

SumIL1

3x

151

ULONG

In

16000

SumIL2

3x

153

ULONG

In

16000

SumIL3

3x

155

ULONG

In

16000

State SumI^2t

1x

253

BIT

SumIL1^2t

3x

157

ULONG

In^2s

250000

SumIL2^2t

3x

159

ULONG

In^2s

250000

SumIL3^2t

3x

161

ULONG

In^2s

250000

State tbreak

1x

254

BIT

ParRR79cnt - Value

3x

163

WORD

ParSR79cnt - Value

3x

164

WORD

ParDR79cnt - Value

3x

165

WORD

ParFR79Pcnt - Value

3x

166

WORD

ParFR79Ecnt - Value

3x

167

WORD

Circuit Breaker supervision


0="Open",1="Closed",2="?"

0=OFF, 1=ON

0=OFF, 1=ON

0=OFF, 1=ON

PARTIAL COUNTERS
Auto-reclose - 79

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 35 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

ParThAL1cnt - Value

3x

168

WORD

ParTh>1cnt - Value

3x

169

WORD

ParThAL2cnt - Value

3x

170

WORD

ParTh>2cnt - Value

3x

171

WORD

ParThAL3cnt - Value

3x

172

WORD

ParTh>3cnt - Value

3x

173

WORD

ParThAL4cnt - Value

3x

174

WORD

ParTh>4cnt - Value

3x

175

WORD

ParThAL5cnt - Value

3x

176

WORD

ParTh>5cnt - Value

3x

177

WORD

ParThAL6cnt - Value

3x

178

WORD

ParTh>6cnt - Value

3x

179

WORD

ParThAL7cnt - Value

3x

180

WORD

ParTh>7cnt - Value

3x

181

WORD

ParThAL8cnt - Value

3x

182

WORD

ParTh>8cnt - Value

3x

183

WORD

ParSt(U/f)ALcnt - Value

3x

184

WORD

ParTr(U/f)ALcnt - Value

3x

185

WORD

ParSt(U/f)>cnt - Value

3x

186

WORD

ParTr(U/f)>cnt - Value

3x

187

WORD

ParSt(U/f)>>cnt - Value

3x

188

WORD

ParTr(U/f)>>cnt - Value

3x

189

WORD

ParStU<cnt - Value

3x

190

WORD

ParTrU<cnt - Value

3x

191

WORD

ParStU<<cnt - Value

3x

192

WORD

ParTrU<<cnt - Value

3x

193

WORD

ParStU1<cnt - Value

3x

194

WORD

ParTrU1<cnt - Value

3x

195

WORD

Range

Thermal protection with RTD thermometric probes - 26

Overexcitation - 24

Undervoltage - 27

Positive sequence undervoltage - 27V1

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 36 of 63

Um

Kv

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

ParSt-P1>cnt - Value

3x

196

WORD

ParTr-P1>cnt - Value

3x

197

WORD

ParSt-P2>cnt - Value

3x

198

WORD

ParTr-P2>cnt - Value

3x

199

WORD

ParSt-Q1>cnt - Value

3x

200

WORD

ParTr-Q1>cnt - Value

3x

201

WORD

ParSt-Q2>cnt - Value

3x

202

WORD

ParTr-Q2>cnt - Value

3x

203

WORD

ParSt-P1<cnt - Value

3x

204

WORD

ParTr-P1<cnt - Value

3x

205

WORD

ParSt-P2<cnt - Value

3x

206

WORD

ParTr-P2<cnt - Value

3x

207

WORD

ParSt-Q1<cnt - Value

3x

208

WORD

ParTr-Q1<cnt - Value

3x

209

WORD

ParSt-Q2<cnt - Value

3x

210

WORD

ParTr-Q2<cnt - Value

3x

211

WORD

ParStI2>cnt - Value

3x

212

WORD

ParTrI2>cnt - Value

3x

213

WORD

ParStI2>>cnt - Value

3x

214

WORD

ParTrI2>>cnt - Value

3x

215

WORD

ParStI21>cnt - Value

3x

216

WORD

ParTrI21>cnt - Value

3x

217

WORD

Range

Directional active overpower - 32P

Directional reactive overpower - 32Q

Directional active underpower - 37P

Directional reactive underpower - 37Q

Negative sequence overcurrent - 46

Negative sequence current / positive sequence current ratio I2/I1

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 37 of 63

Um

Kv

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

ParAlDthAL1cnt - Value

3x

218

WORD

ParAlDthAL2cnt - Value

3x

219

WORD

ParTrDth>cnt - Value

3x

220

WORD

ParStI>cnt - Value

3x

221

WORD

ParTrI>cnt - Value

3x

222

WORD

ParStI>>cnt - Value

3x

223

WORD

ParTrI>>cnt - Value

3x

224

WORD

ParStI>>>cnt - Value

3x

225

WORD

ParTrI>>>cnt - Value

3x

226

WORD

ParStIE>cnt - Value

3x

227

WORD

ParTrIE>cnt - Value

3x

228

WORD

ParStIE>>cnt - Value

3x

229

WORD

ParTrIE>>cnt - Value

3x

230

WORD

ParStIE>>>cnt - Value

3x

231

WORD

ParTrIE>>>cnt - Value

3x

232

WORD

ParSt-CPhi1<cnt - Value

3x

233

WORD

ParTr-CPhi1<cnt - Value

3x

234

WORD

ParSt-CPhi2<cnt - Value

3x

235

WORD

ParTr-CPhi2<cnt - Value

3x

236

WORD

ParStU>cnt - Value

3x

237

WORD

ParTrU>cnt - Value

3x

238

WORD

ParStU>>cnt - Value

3x

239

WORD

ParTrU>>cnt - Value

3x

240

WORD

ParStUE>cnt - Value

3x

241

WORD

ParTrUE>cnt - Value

3x

242

WORD

ParStUE>>cnt - Value

3x

243

WORD

ParTrUE>>cnt - Value

3x

244

WORD

Range

Thermal image - 49

Phase overcurrent - 50/51

Residual overcurrent - 50N/51N

Minimum power factor - 55

Overvoltage - 59

Residual overvoltage - 59N

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 38 of 63

Um

Kv

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

ParStU2>cnt - Value

3x

245

WORD

ParTrU2>cnt - Value

3x

246

WORD

ParStIPD>cnt - Value

3x

247

WORD

ParTrIPD>cnt - Value

3x

248

WORD

ParStIPD>>cnt - Value

3x

249

WORD

ParTrIPD>>cnt - Value

3x

250

WORD

ParStIPD>>>cnt - Value

3x

251

WORD

ParTrIPD>>>cnt - Value

3x

252

WORD

ParStIPD>>>>cnt - Value

3x

253

WORD

ParTrIPD>>>>cnt - Value

3x

254

WORD

ParStIED>cnt - Value

3x

255

WORD

ParTrIED>cnt - Value

3x

256

WORD

ParStIED>>cnt - Value

3x

257

WORD

ParTrIED>>cnt - Value

3x

258

WORD

ParStIED>>>cnt - Value

3x

259

WORD

ParTrIED>>>cnt - Value

3x

260

WORD

ParStIED>>>>cnt - Value

3x

261

WORD

ParTrIED>>>>cnt - Value

3x

262

WORD

ParSt-f>cnt - Value

3x

263

WORD

ParTr-f>cnt - Value

3x

264

WORD

ParSt-f>>cnt - Value

3x

265

WORD

ParTr-f>>cnt - Value

3x

266

WORD

Range

Negative sequence overvoltage - 59V2

Directional phase overcurrent - 67

Directional earth fault overcurrent - 67N

Overfrequency - 81O

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 39 of 63

Um

Kv

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

ParSt-f<cnt - Value

3x

267

WORD

ParTr-f<cnt - Value

3x

268

WORD

ParSt-f<<cnt - Value

3x

269

WORD

ParTr-f<<cnt - Value

3x

270

WORD

ParSt-f<<<cnt - Value

3x

271

WORD

ParTr-f<<<cnt - Value

3x

272

WORD

ParSt-f<<<<cnt - Value

3x

273

WORD

ParTr-f<<<<cnt - Value

3x

274

WORD

ParSt-df>cnt - Value

3x

275

WORD

ParTr-df>cnt - Value

3x

276

WORD

ParSt-df>>cnt - Value

3x

277

WORD

ParTr-df>>cnt - Value

3x

278

WORD

ParSt-df>>>cnt - Value

3x

279

WORD

ParTr-df>>>cnt - Value

3x

280

WORD

ParSt-df>>>>cnt - Value

3x

281

WORD

ParTr-df>>>>cnt - Value

3x

282

WORD

ParSt-DPhi>cnt - Value

3x

283

WORD

ParTr-DPhi>cnt - Value

3x

284

WORD

3x

285

WORD

3x

286

WORD

3x

287

LONG

3x

288

WORD

3x

289

WORD

Range

Um

Kv

Underfrequency - 81U

Frequency rate of change - 81R

Vector jump - dphi

Second Harmonic Restraint


ParStI2ndh>cnt - Value
Trip circuit supervision - 74TCS
ParTr74TCScnt - Value
Circuit Breaker supervision
N.OpenCBcnt

VT supervision - 74VT
ParBk74VTcnt - Value
CT supervision - 74CT
ParTr74CTcnt - Value

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 40 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

ParStBFcnt - Value

3x

290

WORD

ParTrBFcnt - Value

3x

291

WORD

IN1

1x

255

BIT

0=OFF, 1=ON

IN2

1x

256

BIT

0=OFF, 1=ON

IN3

1x

257

BIT

0=OFF, 1=ON

IN4

1x

258

BIT

0=OFF, 1=ON

IN5

1x

259

BIT

0=OFF, 1=ON

IN6

1x

260

BIT

0=OFF, 1=ON

IN7

1x

261

BIT

0=OFF, 1=ON

IN8

1x

262

BIT

0=OFF, 1=ON

IN9

1x

263

BIT

0=OFF, 1=ON

IN10

1x

264

BIT

0=OFF, 1=ON

IN11

1x

265

BIT

0=OFF, 1=ON

IN12

1x

266

BIT

0=OFF, 1=ON

IN13

1x

267

BIT

0=OFF, 1=ON

IN14

1x

268

BIT

0=OFF, 1=ON

IN15

1x

269

BIT

0=OFF, 1=ON

IN16

1x

270

BIT

0=OFF, 1=ON

IN17

1x

271

BIT

0=OFF, 1=ON

IN18

1x

272

BIT

0=OFF, 1=ON

IN19

1x

273

BIT

0=OFF, 1=ON

IN20

1x

274

BIT

0=OFF, 1=ON

IN21

1x

275

BIT

0=OFF, 1=ON

IN22

1x

276

BIT

0=OFF, 1=ON

IN23

1x

277

BIT

0=OFF, 1=ON

IN24

1x

278

BIT

0=OFF, 1=ON

IN25

1x

279

BIT

0=OFF, 1=ON

IN26

1x

280

BIT

0=OFF, 1=ON

IN27

1x

281

BIT

0=OFF, 1=ON

IN28

1x

282

BIT

0=OFF, 1=ON

Accessory counters

Delayed inputs

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 41 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

IN29

1x

283

BIT

0=OFF, 1=ON

IN30

1x

284

BIT

0=OFF, 1=ON

IN31

1x

285

BIT

0=OFF, 1=ON

IN32

1x

286

BIT

0=OFF, 1=ON

IN33

1x

287

BIT

0=OFF, 1=ON

IN34

1x

288

BIT

0=OFF, 1=ON

IN35

1x

289

BIT

0=OFF, 1=ON

IN36

1x

290

BIT

0=OFF, 1=ON

IN37

1x

291

BIT

0=OFF, 1=ON

IN38

1x

292

BIT

0=OFF, 1=ON

IN39

1x

293

BIT

0=OFF, 1=ON

IN40

1x

294

BIT

0=OFF, 1=ON

IN41

1x

295

BIT

0=OFF, 1=ON

IN42

1x

296

BIT

0=OFF, 1=ON

Delayed inputs

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 42 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

Reset LEDs

1x

297

BIT

0=OFF, 1=ON

Profile selection

1x

298

BIT

0=OFF, 1=ON

Fault trigger

1x

299

BIT

0=OFF, 1=ON

IE/IPh Block2

1x

300

BIT

0=OFF, 1=ON

IPh Block2

1x

301

BIT

0=OFF, 1=ON

IE Block2

1x

302

BIT

0=OFF, 1=ON

Block1

1x

303

BIT

0=OFF, 1=ON

Tcs1

1x

304

BIT

0=OFF, 1=ON

Tcs2

1x

305

BIT

0=OFF, 1=ON

Trip External protections

1x

306

BIT

0=OFF, 1=ON

Reset partial counters

1x

307

BIT

0=OFF, 1=ON

Reset CB monitoring data

1x

308

BIT

0=OFF, 1=ON

52a

1x

309

BIT

0=OFF, 1=ON

52b

1x

310

BIT

0=OFF, 1=ON

Open CB

1x

311

BIT

0=OFF, 1=ON

Close CB

1x

312

BIT

0=OFF, 1=ON

Thermal image presetting

1x

313

BIT

0=OFF, 1=ON

Remote trip

1x

314

BIT

0=OFF, 1=ON

MCB VT OPEN

1x

315

BIT

0=OFF, 1=ON

Reset on demand measures

1x

316

BIT

0=OFF, 1=ON

Reset on energy measures

1x

317

BIT

0=OFF, 1=ON

74VT ext.

1x

318

BIT

0=OFF, 1=ON

Auto-reclose enable

1x

319

BIT

0=OFF, 1=ON

Block auto-reclose

1x

320

BIT

0=OFF, 1=ON

Auto-reclose from external

1x

321

BIT

0=OFF, 1=ON

Internal states

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 43 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

BLK2IN-Iph

1x

322

BIT

0=OFF, 1=ON

BLK2IN-IE

1x

323

BIT

0=OFF, 1=ON

tB timeout

1x

324

BIT

0=OFF, 1=ON

ST-Iph-BLK2

1x

325

BIT

0=OFF, 1=ON

ST-IE-BLK2

1x

326

BIT

0=OFF, 1=ON

BLK2OUT-Iph

1x

327

BIT

0=OFF, 1=ON

BLK2OUT-IE

1x

328

BIT

0=OFF, 1=ON

BLK2OUT-Iph/IE

1x

329

BIT

0=OFF, 1=ON

ST-Iph-BLK4

1x

330

BIT

0=OFF, 1=ON

ST-IE-BLK4

1x

331

BIT

0=OFF, 1=ON

BLK4OUT

1x

332

BIT

0=OFF, 1=ON

Block2

Block4

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 44 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

ENUM

K1 - State

1x

333

BIT

0=OFF, 1=ON

K1 - Diagnostic

1x

334

BIT

0=OFF, 1=ON

K2 - State

1x

335

BIT

0=OFF, 1=ON

K2 - Diagnostic

1x

336

BIT

0=OFF, 1=ON

K3 - State

1x

337

BIT

0=OFF, 1=ON

K3 - Diagnostic

1x

338

BIT

0=OFF, 1=ON

K4 - State

1x

339

BIT

0=OFF, 1=ON

K4 - Diagnostic

1x

340

BIT

0=OFF, 1=ON

K5 - State

1x

341

BIT

0=OFF, 1=ON

K5 - Diagnostic

1x

342

BIT

0=OFF, 1=ON

K6 - State

1x

343

BIT

0=OFF, 1=ON

K6 - Diagnostic

1x

344

BIT

0=OFF, 1=ON

K7 - State

1x

345

BIT

0=OFF, 1=ON

K7 - Diagnostic

1x

346

BIT

0=OFF, 1=ON

K8 - State

1x

347

BIT

0=OFF, 1=ON

K8 - Diagnostic

1x

348

BIT

0=OFF, 1=ON

K9 - State

1x

349

BIT

0=OFF, 1=ON

K9 - Diagnostic

1x

350

BIT

0=OFF, 1=ON

K10 - State

1x

351

BIT

0=OFF, 1=ON

K10 - Diagnostic

1x

352

BIT

0=OFF, 1=ON

Relays

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 45 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

f - Value

3x

292

IL1 - Value

3x

294

IL2 - Value

3x

296

IL3 - Value

3x

IE - Value
UL1 - Value

Range

Um

Kv

LONG

Hz

1000

LONG

In

16000

LONG

In

16000

298

LONG

In

16000

3x

300

LONG

IEn

80000

3x

302

LONG

En

112000

UL2 - Value

3x

304

LONG

En

112000

UL3 - Value

3x

306

LONG

En

112000

UE - Value

3x

308

LONG

UEn

160000

DTheta - Value

3x

310

LONG

DThetaB

1000

U12 - Value

3x

312

LONG

Un

112000

U23 - Value

3x

314

LONG

Un

112000

U31 - Value

3x

316

LONG

Un

112000

UEC - Value

3x

318

LONG

UECn

160000

ILmax - Value

3x

320

LONG

In

16000

ILmin - Value

3x

322

LONG

In

16000

IL - Value

3x

324

LONG

In

16000

ULmax - Value

3x

326

LONG

En

112000

UL - Value

3x

328

LONG

En

112000

Umax - Value

3x

330

LONG

Un

112000

U - Value

3x

332

LONG

Un

112000

df/dt - Value

3x

334

LONG

Hz/s

1000

MEASURES
Physical

Calculated

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 46 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

PhiL1 - Value

3x

336

PhiL2 - Value

3x

338

PhiL3 - Value

3x

340

Alpha1 - Value

3x

342

Alpha2 - Value

3x

Alpha3 - Value
PhiE - Value
PhiEC - Value

Range

Um

Kv

LONG

deg

40

LONG

deg

40

LONG

deg

40

LONG

deg

40

344

LONG

deg

40

3x

346

LONG

deg

40

3x

348

LONG

deg

40

3x

350

LONG

deg

40

I1 - Value

3x

352

LONG

In

16000

I2 - Value

3x

354

LONG

In

16000

I2/I1 - Value

3x

356

LONG

U1 - Value

3x

358

LONG

En

112000

U2 - Value

3x

360

LONG

En

112000

P - Value

3x

362

LONG

Pn

172800

Q - Value

3x

364

LONG

Qn

172800

S - Value

3x

366

LONG

An

172800

CosPhi - Value

3x

368

LONG

PL1 - Value

3x

370

LONG

Pn

172800

QL1 - Value

3x

372

LONG

Qn

172800

SL1 - Value

3x

374

LONG

An

172800

CosPhiL1 - Value

3x

376

LONG

PL2 - Value

3x

378

LONG

Pn

172800

QL2 - Value

3x

380

LONG

Qn

172800

SL2 - Value

3x

382

LONG

An

172800

CosPhiL2 - Value

3x

384

LONG

PL3 - Value

3x

386

LONG

Pn

172800

QL3 - Value

3x

388

LONG

Qn

172800

SL3 - Value

3x

390

LONG

An

172800

CosPhiL3 - Value

3x

392

LONG

Displacement

Sequence

8000

Power

1000

10000

10000

10000

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 47 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

IL1-2nd - Value

3x

394

IL2-2nd - Value

3x

396

IL3-2nd - Value

3x

398

I-2nd/IL - Value

3x

400

IL1-3rd - Value

3x

402

IL2-3rd - Value

3x

404

IL3-3rd - Value

3x

IE-3rd - Value
UE-3rd - Value

Range

Um

Kv

LONG

In

16000

LONG

In

16000

LONG

In

16000

LONG

20

LONG

In

16000

LONG

In

16000

406

LONG

In

16000

3x

408

LONG

IEn

80000

3x

410

LONG

UEn

160000

IL1-4th - Value

3x

412

LONG

In

16000

IL2-4th - Value

3x

414

LONG

In

16000

IL3-4th - Value

3x

416

LONG

In

16000

IL1-5th - Value

3x

418

LONG

In

16000

IL2-5th - Value

3x

420

LONG

In

16000

IL3-5th - Value

3x

422

LONG

In

16000

IL1FIX - Value

3x

424

LONG

In

16000

IL2FIX - Value

3x

426

LONG

In

16000

IL3FIX - Value

3x

428

LONG

In

16000

IL1ROL - Value

3x

430

LONG

In

16000

IL2ROL - Value

3x

432

LONG

In

16000

IL3ROL - Value

3x

434

LONG

In

16000

IL1MAX - Value

3x

436

LONG

In

16000

IL2MAX - Value

3x

438

LONG

In

16000

IL3MAX - Value

3x

440

LONG

In

16000

IL1MIN - Value

3x

442

LONG

In

16000

IL2MIN - Value

3x

444

LONG

In

16000

IL3MIN - Value

3x

446

LONG

In

16000

2nd harmonic

3rd harmonic

4th harmonic

5th harmonic

Phase demands

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 48 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

PFIX - Value

3x

448

QFIX - Value

3x

450

PROL - Value

3x

452

QROL - Value

3x

454

PMAX - Value

3x

456

QMAX - Value

3x

PMIN - Value

3x

QMIN - Value

Range

Um

Kv

LONG

Pn

172800

LONG

Qn

172800

LONG

Pn

172800

LONG

Qn

172800

LONG

Pn

172800

458

LONG

Qn

172800

460

LONG

Pn

172800

3x

462

LONG

Qn

172800

EA+ - Value

3x

464

LONG

kWh

EA- - Value

3x

466

LONG

kWh

EA - Value

3x

468

LONG

kWh

EQ+ - Value

3x

470

LONG

kvarh

EQ- - Value

3x

472

LONG

kvarh

EQ - Value

3x

474

LONG

kvarh

Power demands

Energy measures

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 49 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

PT1

3x

476

WORD

T1

3x

477

LONG

PT2

3x

479

WORD

T2

3x

480

LONG

PT3

3x

482

WORD

T3

3x

483

LONG

PT4

3x

485

WORD

T4

3x

486

LONG

PT5

3x

488

WORD

T5

3x

489

LONG

PT6

3x

491

WORD

T6

3x

492

LONG

PT7

3x

494

WORD

T7

3x

495

LONG

PT8

3x

497

WORD

T8

3x

498

LONG

Range

Um

Kv

ENUM

PT100 Probes
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
^C

0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"
^C

10
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"

^C

10
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"

^C

10
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"

^C

10
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"

^C

10
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"

^C

10
0="ON",1="WAIT",2="LOW",3="H
IGH",4="FAIL"

^C

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

10

Page: 50 of 63

10

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Fault n. 0 - Fault counter

3x

500

LONG

Fault n. 0 - Date

3x

502

STR

Fault n. 0 - Time

3x

508

STR

Fault n. 0 - Fault cause

3x

514

WORD

Range

Um

Kv

ENUM

Fault 0
1

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="U1<
Start",12="U1< Trip",13="P1>
Start",14="P1> Trip",15="P2>
Start",16="P2> Trip",17="Q1>
Start",18="Q1> Trip",19="Q2>
Start",20="Q2> Trip",21="P1<
Start",22="P1< Trip",23="P2<
Start",24="P2< Trip",25="Q1<
Start",26="Q1< Trip",27="Q2<
Start",28="Q2< Trip",29="I2>
Start",30="I2> Trip",31="I2>>
Start",32="I2>> Trip",33="I21>
Start",34="I21>
Trip",35="DThetaAL1
Alarm",36="DThetaAL2
Alarm",37="DTheta> Trip",38="I>
Start",39="I> Trip",40="I>>
Start",41="I>> Trip",42="I>>>
Start",43="I>>> Trip",44="IE>
Start",45="IE> Trip",46="IE>>
Start",47="IE>> Trip",48="IE>>>
Start",49="IE>>>
Trip",50="CPhi1<
Start",51="CPhi1<
Trip",52="CPhi2<
Start",53="CPhi2< Trip",54="U>
Start",55="U> Trip",56="U>>
Start",57="U>> Trip",58="UE>
Start",59="UE> Trip",60="UE>>
Start",61="UE>> Trip",62="U2>
Start",63="U2> Trip",64="IPD>
Start",65="IPD> Trip",66="IPD>>
Start",67="IPD>>
Trip",68="IPD>>>
Start",69="IPD>>>
Trip",70="IPD>>>>
Start",71="IPD>>>>

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 51 of 63

PRON NVA100-MB0
Trip",72="IED> Start",73="IED>
Trip",74="IED>>
Start",75="IED>>
Trip",76="IED>>>
Start",77="IED>>>
Trip",78="IED>>>>
Start",79="IED>>>> Trip",80="f>
Start",81="f> Trip",82="f>>
Start",83="f>> Trip",84="f<
Start",85="f< Trip",86="f<<
Start",87="f<< Trip",88="f<<<
Start",89="f<<< Trip",90="f<<<<
Start",91="f<<<< Trip",92="df>
Start",93="df> Trip",94="df>>
Start",95="df>> Trip",96="df>>>
Start",97="df>>>
Trip",98="df>>>>
Start",99="df>>>>
Trip",100="dphi>
Start",101="dphi> Trip",102="PT1
Alarm",103="PT1 Trip",104="PT2
Alarm",105="PT2 Trip",106="PT3
Alarm",107="PT3 Trip",108="PT4
Alarm",109="PT4 Trip",110="PT5
Alarm",111="PT5 Trip",112="PT6
Alarm",113="PT6 Trip",114="PT7
Alarm",115="PT7 Trip",116="PT8
Alarm",117="PT8
Trip",118="74TCS
Trip",119="74CT Trip",120="BF
Start",121="BF Trip",122="Logic
input"

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 52 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

Fault n. 0 - IL1r

3x

515

Fault n. 0 - IL2r

3x

517

ULONG

In

16000

ULONG

In

16000

Fault n. 0 - IL3r

3x

519

ULONG

In

16000

Fault n. 0 - UL1r

3x

521

ULONG

En

112000

Fault n. 0 - UL2r

3x

523

ULONG

En

112000

Fault n. 0 - UL3r

3x

525

ULONG

En

112000

Fault n. 0 - U12r

3x

527

ULONG

Un

112000

Fault n. 0 - U23r

3x

529

ULONG

Un

112000

Fault n. 0 - U31r

3x

531

ULONG

Un

112000

Fault n. 0 - IEr

3x

533

ULONG

IEn

80000

Fault n. 0 - UEr

3x

535

ULONG

UEn

160000

Fault n. 0 - UECr

3x

537

ULONG

UECn

160000

Fault n. 0 - PhiL1r

3x

539

LONG

deg

40

Fault n. 0 - PhiL2r

3x

541

LONG

deg

40

Fault n. 0 - PhiL3r

3x

543

LONG

deg

40

Fault n. 0 - Alpha1r

3x

545

LONG

deg

40

Fault n. 0 - Alpha2r

3x

547

LONG

deg

40

Fault n. 0 - Alpha3r

3x

549

LONG

deg

40

Fault n. 0 - PhiEr

3x

551

LONG

deg

40

Fault n. 0 - PhiECr

3x

553

LONG

deg

40

Fault n. 0 - I2r

3x

555

ULONG

In

16000

Fault n. 0 - (I2/I1)r

3x

557

ULONG

Fault n. 0 - U1r

3x

559

ULONG

En

112000

Fault n. 0 - U2r

3x

561

ULONG

En

112000

Fault n. 0 - DTheta-r

3x

563

ULONG

DThetaB

1000

Fault n. 0 - U/fr

3x

565

ULONG

Un/fn

5600

Fault n. 0 - Pr

3x

567

LONG

Pn

172800

Fault n. 0 - Qr

3x

569

LONG

Qn

172800

Fault n. 0 - CosPhir

3x

571

LONG

Fault n. 0 - fr

3x

573

ULONG

fn

50000

Fault n. 0 - dfr

3x

575

LONG

Hz/s

1000

Fault n. 0 - dphir

3x

577

LONG

deg

40

Fault 0

8000

1000

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 53 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Fault n. 0 - T1r

3x

579

Fault n. 0 - T2r

3x

581

Fault n. 0 - T3r

3x

583

Fault n. 0 - T4r

3x

585

Fault n. 0 - T5r

3x

Fault n. 0 - T6r
Fault n. 0 - T7r

Range

Um

Kv

LONG

^C

10

LONG

^C

10

LONG

^C

10

LONG

^C

10

587

LONG

^C

10

3x

589

LONG

^C

10

3x

591

LONG

^C

10

Fault n. 0 - T8r

3x

593

LONG

^C

10

Fault n. 0 - Inputs IN1-IN2

3x

595

UWORD

Fault n. 0 - Inputs IN3-IN10

3x

596

UWORD

Fault n. 0 - Inputs IN11-IN26

3x

597

UWORD

Fault n. 0 - Inputs IN27-IN42

3x

598

UWORD

Fault n. 0 - Outputs K1-K6

3x

599

UWORD

Fault n. 0 - Outputs K7-K10

3x

600

UWORD

Fault n. 0 - Fault cause info

3x

601

STR

Fault 0

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 54 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Fault n. 1 - Fault counter

3x

609

LONG

Fault n. 1 - Date

3x

611

STR

Fault n. 1 - Time

3x

617

STR

Fault n. 1 - Fault cause

3x

623

WORD

Range

Um

Kv

ENUM

Fault 1
1

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="U1<
Start",12="U1< Trip",13="P1>
Start",14="P1> Trip",15="P2>
Start",16="P2> Trip",17="Q1>
Start",18="Q1> Trip",19="Q2>
Start",20="Q2> Trip",21="P1<
Start",22="P1< Trip",23="P2<
Start",24="P2< Trip",25="Q1<
Start",26="Q1< Trip",27="Q2<
Start",28="Q2< Trip",29="I2>
Start",30="I2> Trip",31="I2>>
Start",32="I2>> Trip",33="I21>
Start",34="I21>
Trip",35="DThetaAL1
Alarm",36="DThetaAL2
Alarm",37="DTheta> Trip",38="I>
Start",39="I> Trip",40="I>>
Start",41="I>> Trip",42="I>>>
Start",43="I>>> Trip",44="IE>
Start",45="IE> Trip",46="IE>>
Start",47="IE>> Trip",48="IE>>>
Start",49="IE>>>
Trip",50="CPhi1<
Start",51="CPhi1<
Trip",52="CPhi2<
Start",53="CPhi2< Trip",54="U>
Start",55="U> Trip",56="U>>
Start",57="U>> Trip",58="UE>
Start",59="UE> Trip",60="UE>>
Start",61="UE>> Trip",62="U2>
Start",63="U2> Trip",64="IPD>
Start",65="IPD> Trip",66="IPD>>
Start",67="IPD>>
Trip",68="IPD>>>
Start",69="IPD>>>
Trip",70="IPD>>>>
Start",71="IPD>>>>

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 55 of 63

PRON NVA100-MB0
Trip",72="IED> Start",73="IED>
Trip",74="IED>>
Start",75="IED>>
Trip",76="IED>>>
Start",77="IED>>>
Trip",78="IED>>>>
Start",79="IED>>>> Trip",80="f>
Start",81="f> Trip",82="f>>
Start",83="f>> Trip",84="f<
Start",85="f< Trip",86="f<<
Start",87="f<< Trip",88="f<<<
Start",89="f<<< Trip",90="f<<<<
Start",91="f<<<< Trip",92="df>
Start",93="df> Trip",94="df>>
Start",95="df>> Trip",96="df>>>
Start",97="df>>>
Trip",98="df>>>>
Start",99="df>>>>
Trip",100="dphi>
Start",101="dphi> Trip",102="PT1
Alarm",103="PT1 Trip",104="PT2
Alarm",105="PT2 Trip",106="PT3
Alarm",107="PT3 Trip",108="PT4
Alarm",109="PT4 Trip",110="PT5
Alarm",111="PT5 Trip",112="PT6
Alarm",113="PT6 Trip",114="PT7
Alarm",115="PT7 Trip",116="PT8
Alarm",117="PT8
Trip",118="74TCS
Trip",119="74CT Trip",120="BF
Start",121="BF Trip",122="Logic
input"

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 56 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Range

Um

Kv

Fault n. 1 - IL1r

3x

624

Fault n. 1 - IL2r

3x

626

ULONG

In

16000

ULONG

In

16000

Fault n. 1 - IL3r

3x

628

ULONG

In

16000

Fault n. 1 - UL1r

3x

630

ULONG

En

112000

Fault n. 1 - UL2r

3x

632

ULONG

En

112000

Fault n. 1 - UL3r

3x

634

ULONG

En

112000

Fault n. 1 - U12r

3x

636

ULONG

Un

112000

Fault n. 1 - U23r

3x

638

ULONG

Un

112000

Fault n. 1 - U31r

3x

640

ULONG

Un

112000

Fault n. 1 - IEr

3x

642

ULONG

IEn

80000

Fault n. 1 - UEr

3x

644

ULONG

UEn

160000

Fault n. 1 - UECr

3x

646

ULONG

UECn

160000

Fault n. 1 - PhiL1r

3x

648

LONG

deg

40

Fault n. 1 - PhiL2r

3x

650

LONG

deg

40

Fault n. 1 - PhiL3r

3x

652

LONG

deg

40

Fault n. 1 - Alpha1r

3x

654

LONG

deg

40

Fault n. 1 - Alpha2r

3x

656

LONG

deg

40

Fault n. 1 - Alpha3r

3x

658

LONG

deg

40

Fault n. 1 - PhiEr

3x

660

LONG

deg

40

Fault n. 1 - PhiECr

3x

662

LONG

deg

40

Fault n. 1 - I2r

3x

664

ULONG

In

16000

Fault n. 1 - (I2/I1)r

3x

666

ULONG

Fault n. 1 - U1r

3x

668

ULONG

En

112000

Fault n. 1 - U2r

3x

670

ULONG

En

112000

Fault n. 1 - DTheta-r

3x

672

ULONG

DThetaB

1000

Fault n. 1 - U/fr

3x

674

ULONG

Un/fn

5600

Fault n. 1 - Pr

3x

676

LONG

Pn

172800

Fault n. 1 - Qr

3x

678

LONG

Qn

172800

Fault n. 1 - CosPhir

3x

680

LONG

Fault n. 1 - fr

3x

682

ULONG

fn

50000

Fault n. 1 - dfr

3x

684

LONG

Hz/s

1000

Fault n. 1 - dphir

3x

686

LONG

deg

40

Fault 1

8000

1000

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 57 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Fault n. 1 T1r

3x

688

Fault n. 1 T2r

3x

690

Fault n. 1 T3r

3x

692

Fault n. 1 T4r

3x

694

Fault n. 1 T5r

3x

Fault n. 1 T6r
Fault n. 1 T7r

Range

Um

Kv

LONG

^C

10

LONG

^C

10

LONG

^C

10

LONG

^C

10

696

LONG

^C

10

3x

698

LONG

^C

10

3x

700

LONG

^C

10

Fault n. 1 T8r

3x

702

LONG

^C

10

Fault n. 1 Inputs IN1-IN2

3x

704

UWORD

Fault n. 1 Inputs IN3-IN10

3x

705

UWORD

Fault n. 1 Inputs IN11-IN26

3x

706

UWORD

Fault n. 1 Inputs IN27-IN42

3x

707

UWORD

Fault n. 1 Outputs K1-K6

3x

708

UWORD

Fault n. 1 Outputs K7-K10

3x

709

UWORD

Fault n. 1 Fault cause info

3x

710

STR

Fault 1

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 58 of 63

ENUM

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Event n. 0 Event counter

3x

718

LONG

Event n. 0 Date

3x

720

STR

Event n. 0 Hour

3x

726

STR

Event n. 0 Cause
Event n. 1 Event counter

3x
3x

732
733

1
2

WORD
LONG

Event n. 1 Date

3x

735

STR

Event n. 1 Hour

3x

741

STR

Event n. 1 Cause
Event n. 2 Event counter

3x
3x

747
748

1
2

WORD
LONG

Event n. 2 Date

3x

750

STR

Event n. 2 Hour

3x

756

STR

Event n. 2 Cause
Event n. 3 Event counter

3x
3x

762
763

1
2

WORD
LONG

Event n. 3 Date

3x

765

STR

Event n. 3 Hour

3x

771

STR

Event n. 3 Cause
Event n. 4 Event counter

3x
3x

777
778

1
2

WORD
LONG

Event n. 4 Date

3x

780

STR

Event n. 4 Hour

3x

786

STR

Event n. 4 Cause
Event n. 5 Event counter

3x
3x

792
793

1
2

WORD
LONG

Event n. 5 Date

3x

795

STR

Event n. 5 Hour

3x

801

STR

Event n. 5 Cause
Event n. 6 Event counter

3x
3x

807
808

1
2

WORD
LONG

Event n. 6 Date

3x

810

STR

Event n. 6 Hour

3x

816

STR

Event n. 6 Cause
Event n. 7 Event counter

3x
3x

822
823

1
2

WORD
LONG

Event n. 7 Date

3x

825

STR

Event n. 7 Hour

3x

831

STR

Event n. 7 Cause

3x

837

WORD

Range

Um

Kv

ENUM

Events
1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 59 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Event n. 8 Event counter

3x

838

LONG

Event n. 8 Date

3x

840

STR

Event n. 8 Hour

3x

846

STR

Event n. 8 Cause
Event n. 9 Event counter

3x
3x

852
853

1
2

WORD
LONG

Event n. 9 Date

3x

855

STR

Event n. 9 Hour

3x

861

STR

Event n. 9 Cause
Event n. 10 Event counter

3x
3x

867
868

1
2

WORD
LONG

Event n. 10 Date

3x

870

STR

Event n. 10 Hour

3x

876

STR

Event n. 10 Cause
Event n. 11 Event counter

3x
3x

882
883

1
2

WORD
LONG

Event n. 11 Date

3x

885

STR

Event n. 11 Hour

3x

891

STR

Event n. 11 Cause
Event n. 12 Event counter

3x
3x

897
898

1
2

WORD
LONG

Event n. 12 Date

3x

900

STR

Event n. 12 Hour

3x

906

STR

Event n. 12 Cause
Event n. 13 Event counter

3x
3x

912
913

1
2

WORD
LONG

Event n. 13 Date

3x

915

STR

Event n. 13 Hour

3x

921

STR

Event n. 13 Cause
Event n. 14 Event counter

3x
3x

927
928

1
2

WORD
LONG

Event n. 14 Date

3x

930

STR

Event n. 14 Hour

3x

936

STR

Event n. 14 Cause
Event n. 15 Event counter

3x
3x

942
943

1
2

WORD
LONG

Event n. 15 Date

3x

945

STR

Event n. 15 Hour

3x

951

STR

Event n. 15 Cause

3x

957

WORD

Range

Um

Kv

ENUM

Events
1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 60 of 63

PRON NVA100-MB0
VAR

REF

IDX

DIM

TYPE

Event n. 16 Event counter

3x

958

LONG

Event n. 16 Date

3x

960

STR

Event n. 16 Hour

3x

966

STR

Event n. 16 Cause
Event n. 17 Event counter

3x
3x

972
973

1
2

WORD
LONG

Event n. 17 Date

3x

975

STR

Event n. 17 Hour

3x

981

STR

Event n. 17 Cause
Event n. 18 Event counter

3x
3x

987
988

1
2

WORD
LONG

Event n. 18 Date

3x

990

STR

Event n. 18 Hour

3x

996

STR

Event n. 18 Cause
Event n. 19 Event counter

3x
3x

1002
1003

1
2

WORD
LONG

Event n. 19 Date

3x

1005

STR

Event n. 19 Hour

3x

1011

STR

Event n. 19 Cause

3x

1017

WORD

REF

IDX

DIM

TYPE

1x

353

BIT

Range

Um

Kv

ENUM

Events

VAR

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE


1

SEE MANUAL END PAGE

Range

Um

Kv

ENUM

Test
TEST state

0=OFF, 1=ON

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 61 of 63

PRON NVA100-MB0
Event n. x - Cause

0="No events",1="IN1 on",2="IN1 off",3="IN2 on",4="IN2 off",5="IN3 on",6="IN3 off",


7="IN4 on",8="IN4 off",9="IN5 on",10="IN5 off",11="IN6 on",12="IN6 off",13="IN7 on",
14="IN7 off",15="IN8 on",16="IN8 off",17="IN9 on",18="IN9 off",19="IN10 on",
20="IN10 off",21="IN11 on",22="IN11 off",23="IN12 on",24="IN12 off",25="IN13 on",
26="IN13 off",27="IN14 on",28="IN14 off",29="IN15 on",30="IN15 off",31="IN16 on",
32="IN16 off",33="IN17 on",34="IN17 off",35="IN18 on",36="IN18 off",37="IN19 on",
38="IN19 off",39="IN20 on",40="IN20 off",41="IN21 on",42="IN21 off",43="IN22 on",
44="IN22 off",45="IN23 on",46="IN23 off",47="IN24 on",48="IN24 off",49="IN25 on",
50="IN25 off",51="IN26 on",52="IN26 off",53="IN27 on",54="IN27 off",55="IN28 on",
56="IN28 off",57="IN29 on",58="IN29 off",59="IN30 on",60="IN30 off",61="IN31 on",
62="IN31 off",63="IN32 on",64="IN32 off",65="IN33 on",66="IN33 off",67="IN34 on",
68="IN34 off",69="IN35 on",70="IN35 off",71="IN36 on",72="IN36 off",73="IN37 on",
74="IN37 off",75="IN38 on",76="IN38 off",77="IN39 on",78="IN39 off",79="IN40 on",
80="IN40 off",81="IN41 on",82="IN41 off",83="IN42 on",84="IN42 off",85="(U/f)AL Start",
86="(U/f)AL Trip",87="(U/f)> Start",88="(U/f)> Trip",89="(U/f)>> Start",
90="(U/f)>> Trip",91="U< Start",92="U< Trip",93="U<< Start",94="U<< Trip",
95="U1< Start",96="U1< Trip",97="P1> Start",98="P1> Trip",99="P2> Start",
100="P2> Trip",101="Q1> Start",102="Q1> Trip",103="Q2> Start",104="Q2> Trip",
105="P1< Start",106="P1< Trip",107="P2< Start",108="P2< Trip",109="Q1< Start",
110="Q1< Trip",111="Q2< Start",112="Q2< Trip",113="I2> Start",114="I2> Trip",
115="I2>> Start",116="I2>> Trip",117="I21> Start",118="I21> Trip",
119="DThetaAL1 Alarm",120="DThetaAL2 Alarm",121="DTheta> Trip",122="I> Start",
123="I> Trip",124="I>> Start",125="I>> Trip",126="I>>> Start",127="I>>> Trip",
128="IE> Start",129="IE> Trip",130="IE>> Start",131="IE>> Trip",132="IE>>> Start",
133="IE>>> Trip",134="CPhi1< Start",135="CPhi1< Trip",136="CPhi2< Start",
137="CPhi2< Trip",138="U> Start",139="U> Trip",140="U>> Start",141="U>> Trip",
142="UE> Start",143="UE> Trip",144="UE>> Start",145="UE>> Trip",146="U2> Start",
147="U2> Trip",148="IPD> Start",149="IPD> Trip",150="IPD>> Start",151="IPD>> Trip",
152="IPD>>> Start",153="IPD>>> Trip",154="IPD>>>> Start",155="IPD>>>> Trip",
156="IED> Start",157="IED> Trip",158="IED>> Start",159="IED>> Trip",160="IED>>> Start",
161="IED>>> Trip",162="IED>>>> Start",163="IED>>>> Trip",164="f> Start",165="f> Trip",
166="f>> Start",167="f>> Trip",168="f< Start",169="f< Trip",170="f<< Start",
171="f<< Trip",172="f<<< Start",173="f<<< Trip",174="f<<<< Start",175="f<<<< Trip",
176="df> Start",177="df> Trip",178="df>> Start",179="df>> Trip",180="df>>> Start",
181="df>>> Trip",182="df>>>> Start",183="df>>>> Trip",184="PT1 Alarm",185="PT1 Trip",
186="PT2 Alarm",187="PT2 Trip",188="PT3 Alarm",189="PT3 Trip",190="PT4 Alarm",
191="PT4 Trip",192="PT5 Alarm",193="PT5 Trip",194="PT6 Alarm",195="PT6 Trip",
196="PT7 Alarm",197="PT7 Trip",198="PT8 Alarm",199="PT8 Trip",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",

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 62 of 63

PRON NVA100-MB0
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",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 F51S1 on",307="Block F51S1 off",
308="Block F51S2 on",309="Block F51S2 off",310="Block F51S3 on",311="Block F51S3 off",
312="Block F51NS1 on",313="Block F51NS1 off",314="Block F51NS2 on",
315="Block F51NS2 off",316="Block F51NS3 on",317="Block F51NS3 off",
318="Block F67S1 on",319="Block F67S1 off",320="Block F67S2 on",
321="Block F67S2 off",322="Block F67S3 on",323="Block F67S3 off",
324="Block F67S4 on",325="Block F67S4 off",326="Block F67NS1 on",
327="Block F67NS1 off",328="Block F67NS2 on",329="Block F67NS2 off",
330="Block F67NS3 on",331="Block F67NS3 off",332="Block F67NS4 on",
333="Block F67NS4 off",334="K1 on",335="K1 off",336="K2 on",337="K2 off",338="K3 on",
339="K3 off",340="K4 on",341="K4 off",342="K5 on",343="K5 off",344="K6 on",
345="K6 off",346="K7 on",347="K7 off",348="K8 on",349="K8 off",350="K9 on",
351="K9 off",352="K10 on",353="K10 off",400="dphi> Start",401="dphi> Trip",
402="74TCS Trip",403="BF Start",404="BF Trip",405="CB State diag",406="Remote trip",
407="79-X Reclosure",408="79-FR Phase",409="79-FR Earth",410="Settings",
411="Logic input",412="Power down",413="Power up"

Version 3.00
PRON NVA100-MB0 Remote Setting Manual

Page: 63 of 63

Вам также может понравиться