Rio PDF
Rio PDF
2
RIO - Table of Contents
Table of Contents
Table of Contents ............................................................................................3
3
OMICRON Test Universe
DEGLITCHTIME ................................................................................................................................. 26
DEBOUNCETIME ............................................................................................................................... 26
ININOM ............................................................................................................................................ 26
VLNVN.............................................................................................................................................. 27
2.3.3 Example for the “Device” Block .........................................................................................27
4
RIO - Table of Contents
ITEST ................................................................................................................................................ 48
VTEST ............................................................................................................................................... 48
TPREFAULT ....................................................................................................................................... 49
TMAXFAULT ..................................................................................................................................... 49
TPOSTFAULT ..................................................................................................................................... 49
FAULTINCMODE ............................................................................................................................... 49
FAULTINCANGLE............................................................................................................................... 49
DCOFFSET......................................................................................................................................... 49
TREF ................................................................................................................................................. 50
ALLOWRED ....................................................................................................................................... 50
ZS..................................................................................................................................................... 50
KS..................................................................................................................................................... 50
KSISKL .............................................................................................................................................. 50
5
OMICRON Test Universe
NAME............................................................................................................................................... 74
INULL-ELIMINATION.......................................................................................................................... 74
CONNECTION ................................................................................................................................... 74
CONNECTIONNUMBER...................................................................................................................... 74
NOM-PD-PH ..................................................................................................................................... 74
NOM-CT-PH...................................................................................................................................... 75
GROUNDING-CT-PH .......................................................................................................................... 75
NOM-PD-N ....................................................................................................................................... 75
NOM-CT-N ....................................................................................................................................... 75
GROUNDING-CT-N............................................................................................................................ 75
VN.................................................................................................................................................... 75
SN .................................................................................................................................................... 76
GROUNDING-TRF .............................................................................................................................. 76
ACTIVE ............................................................................................................................................. 76
IDIFF>> ........................................................................................................................................... 76
TDIFF>> .......................................................................................................................................... 76
IDIFF> .............................................................................................................................................. 76
TDIFF> ............................................................................................................................................. 77
DEFBIAS............................................................................................................................................ 77
BIASDIVISOR..................................................................................................................................... 77
TOLHARM......................................................................................................................................... 77
ORDER-HARM................................................................................................................................... 77
DELAYHARM..................................................................................................................................... 78
START............................................................................................................................................... 78
LINE.................................................................................................................................................. 78
STOP ................................................................................................................................................ 78
ACTIVE ............................................................................................................................................. 79
METHOD .......................................................................................................................................... 79
I-PICKUP> ........................................................................................................................................ 79
D-PHI................................................................................................................................................ 79
TTRIP> ............................................................................................................................................. 79
6
RIO - Table of Contents
7
OMICRON Test Universe
8
RIO - Introduction to RIO
1 Introduction to RIO
The Relay Interface by OMICRON (RIO) was developed out of a need for a
uniform data format for the parameters and settings of protective relays
produced by different manufacturers. RIO provides a common structure to
allow functionally similar relays from diverse manufacturers to be tested with
similar test procedures. Moreover, RIO permits relay settings and
characteristics to be imported into the OMICRON Test Universe software from
external sources.
Since RIO’s inception, it has established itself as the quasi-standard for storing
relay data. Various manufacturers of protective relays have adopted RIO for
exporting relay data to support testing and, in some cases, configuration.
The RIO format is open and is not proprietary to a specific relay manufacturer
or limited to a specific relay type. Moreover, RIO can be extended to handle
future requirements for protective relay testing.
RIO files are ASCII text based. Hence, they can be read and modified by any text
editor, or can be output from software programs. RIO uses a structure
involving keywords, blocks, and nesting. Indentation aids in visualizing
hierarchy and grouping of entries. Much of its notation has been carried over
from modern programming languages, including the ability to add comments
to make the RIO file readable and understandable.
9
OMICRON Test Universe
10
RIO - Basic Elements of the RIO Format
2.1.1 Blocks
Every RIO file must contain at least one TESTOBJECT block. Moreover, the
TESTOBJECT block must contain a DEVICE block.
Multiple TESTOBJECT blocks are allowed at the outermost block-level. Outside
the outermost blocks, no data may appear excepted comments.
A block can have a minimal and maximal cardinality. The minimum cardinality
describes how often a block must appear when it is nested. The exception to
this is the TESTOBJECT block which is “nested” in the RIO file.
11
OMICRON Test Universe
In a similar manner, the maximum cardinality describes how often a block may
appear. The maximum must be greater or equal to the minimum cardinality.
Theoretically the maximum value for the maximum cardinality can be infinite.
Additionally a block can be related to other blocks or rows.
For detailed informations about these relationships, refer to Section 2.1.3
"Dependencies" on page 13.
2.1.2 Rows
A block also may contain rows. Similar to blocks, every row has a minimum
and maximum cardinality. Additionally a row can be related to other rows or
blocks. For detailed informations about these relationships see Section 2.1.3
"Dependencies" on page 13.
Every row has a name and a set of values. The name serves as a keyword for
that row. The set of values holds the data of that row. A value could be one of
the following types:
Integer
- freely defined.1
- freely defined.1
1
Means the value is not restricted in any way. TheoreticalIy it can have a range of -¥ ... +¥.
2
The value range is bounded by a minimum and a maximum. The bounds are included.
3
The allowed values are provided in an enumeration list.
12
RIO - Basic Elements of the RIO Format
For some value data, a default value may be defined. The parser uses the
default value if no value was set.
A value can be made optional. In such cases, if the value is missing, the parser
does not produce an error message and does not use the default value while
reading a RIO file.
2.1.3 Dependencies
Blocks and rows can be depended on each other in logical relationships such
as OR, AND, or XOR.
If blocks and rows are in an AND relationship, all of them must exist in the RIO
file at least once. In an OR relationship, one of them must exist. In an XOR
relationship, only one of them can exist in the RIO file.
If row X and row Y are in an AND relationship in a block Z, there is only
one correct RIO entry:
BEGIN Z
X value1, value2
Y value1, value2
END Z
If row X and row Y are in an OR relationship in a block Z, there are three
possibilities for describing the block Z in the RIO file:
a) BEGIN Z
X value1, value2
Y value1, value2
END Z
b) BEGIN Z
X value1, value2
END Z
c) BEGIN Z
Y value1, value2
END Z
If row X and row Y are in a XOR relationship, there are two ways to
describe the block Z including X and Y:
a) BEGIN Z
X value1, value2
END Z
b) BEGIN Z
Y value1, value2
END Z
13
OMICRON Test Universe
14
RIO - Basic Elements of the RIO Format
15
OMICRON Test Universe
2.2.1 Separators
A distinction is made between three kinds of separators: commas, spaces, and
tabs.
1. Commas are used to separate different values of a row. All types of
values, such as integers, doubles, and string values, can be separate
with a comma.
2. Tabs and spaces are used to separate non string values on the one hand
and keywords on the other hand. Every begin and end of a block must
be separate with tabs or spaces from the block name. The following
example shows a wrong setting of a block:
BEGINZ
ENDZ
These two lines will not be interpreted as a Z block. The parser reads
them as two separate lines with the names “BEGINZ” and “ENDZ”. To
declare a Z block, write the lines with spaces or tabs.
16
RIO - Basic Elements of the RIO Format
BEGIN Z
END Z.
Please note that spaces and tabs cannot separate values of type string.
To separate string values, use commas only. The reason is that it is
possible to write string values with or without quotes.
Suppose that a row X was specified with two string values. One way to
write it is with quotes like:
X “The first value”, “The second value”
On the other, it is also possible to write the row X without quotes like
X The first value, The second value.
The restriction is needed to separate strings with commas only.
Otherwise, there would be six unintended values in the example above.
2.2.2 Comment
In a RIO file, comments have the following forms.
REM comments. The keyword “REM” indicates the beginning of the
comment. It terminates at the end of the line. A separator is required
between the REM keyword and the beginning of the comment text. This
is similar to the “remark” comments used in batch files. For example:
REM This is a REM comment
C-line comments. The syntax “//” or “;” mark the begin of this kind of
comment. Like the REM comment, they terminate at the end of the line.
This is similar to the line comments used in the C programming
language. For example:
// This is a C-line comment
; This is another C-line comment
C-block comment. It is bounded with “/*” at the beginning and “*/” at
the end of the comment. The whole text between these delimiters is
part of the comment. This is similar to the block comments used in the C
programming language. For example:
/* This is a block comment
with multiple
lines */
17
OMICRON Test Universe
18
RIO - Basic Elements of the RIO Format
19
OMICRON Test Universe
2.2.7 Keywords
Keywords are names assigned to blocks and rows and also are used as part of
the delimiters for a block. The delimiters for a block are BEGIN and END
followed by a whitespace or tabulator and the name of the block. BEGIN shows
the beginning of the block and END the end. Keywords are not case-sensetive.
For example:
BEGIN my_Block1
Row1 value1, value2
Row2 value1
END my_Block1
Begin my_Block1
Row1 value1
Row2 value2
Begin my_Block2
Row1 value1
Row2 value2
End my_Block2
End my_Block1
20
RIO - Basic Elements of the RIO Format
21
OMICRON Test Universe
22
RIO - Basic Elements of the RIO Format
NAME
MANUFACTURER
SERIALNO
DEVICE-TYPE
DEVICE-ADDRESS
SUBSTATION
23
OMICRON Test Universe
SUBSTATION-ADDRESS
BAY
BAY-ADDRESS
PROTECTED-OBJECT-NAME
ADDITIONAL-INFO2
PHASES
VNOM
24
RIO - Basic Elements of the RIO Format
VMAX-LL
The maximum voltage in volts L-L that the test device should be able to output
(max. possible values are determined by the test hardware).
VPRIM-LL
INOM
IMAX
The maximal current in ampere that the test device should be able to output.
(max. possible values are determined by the test hardware).
IPRIM
FNOM
25
OMICRON Test Universe
DEGLITCHTIME
The deglitch time in seconds. This value is used where signal smoothing
algorithms are implemented.
Figure 2-1:
Deglitch time t
DEBOUNCETIME
The debounce time in seconds. This value is used where signal smoothing
algorithms are implemented.
Figure 2-2:
Debounce time t
ININOM
The ININOM parameter and the VLNVN parameter are only relevant if the relay
has separate potential/current transformers for the residual voltage/current (to
26
RIO - Basic Elements of the RIO Format
VLNVN
BEGIN DEVICE
NAME "Anlage ABB/Abzweig 2"
DEVICE-TYPE "ABB LZ95"
SUBSTATION "Anlage ABB"
BAY "Abzweig 2"
PHASES 3
VNOM 5.77350269189626E+0001
VMAX-LL 2.16506350946110E+0002
VPRIM-LL 1.00000000000000E+0005
INOM 1.00000000000000E+0000
IMAX 1.25000000000000E+0001
IPrim 1.00000000000000E+0003
FNOM 5.00000000000000E+0001
DEBOUNCETIME 5.00000000000000E-0003
END DEVICE
27
OMICRON Test Universe
Figure 2-3:
Device settings dialog.
Figure 2-3 shows you the corresponding test object dialog after import a RIO
file with a device block shown above.
28
RIO - Distance and Advanced Distance Test Modules
Z
max DZ% × Z , DZ abs.
jL
R
29
OMICRON Test Universe
The grounding factor can be set either with kL, RE/RL, and XE/XL or Z0/Z1. Only
one of these settings is allowed to determine the grounding factor mode. To
express these requirement with the RIO format, all three rows (KL, RERL_XEXL,
Z0Z1) are together in a XOR relation. This means that only one of these rows
can be set in the RIO description (please refer to KL on page 40, RERL_XEXL on
page 40 and Z0Z1 on page 41).
Also the mutual coupling factor could be describe in three different ways. It
can be set either with kM, RM/RL, and XM/XL or Z0M/Z1. Because only one of
these settings is allowed, the rows are described with a XOR relationship
(please refer to KM on page 41, RMRL_XMXL on page 41 and Z0MZ1 on page
42).
TCBTRIP, TCBCLOSE, PERC52A and PERC52B together determine the times for
the circuit breaker simulation. The CB trip time is used to delay the transition
into the post-fault stage after trip. It is applied whether CB simulation is turned
on or off. The CB close time is used to delay the transition into the pre-fault
stage. It is applied whether CB simulation is turned on or off. The value of
52a% (52b%) determines the delay of the 52a (52b%) contact relative to the
CB trip time on breaker opening or relative to the CB close time on breaker
closing. See the following figures for the timing.
Figure 3-2:
Circuit breaker simulation
30
RIO - Distance and Advanced Distance Test Modules
There are three different types of shapes for a zone: a general shape defined by
individual lines and arcs, mho shape, and lens/tomato shape. This is
determined by the SHAPE, MHOSHAPE, and LENSTOMATOSHAPE block. They
are in a XOR relationship because only one of these blocks per zone is allowed.
A general SHAPE is constructed from multiple individual border elements,
which can be lines and arcs.
The following border elements with its parameters are possible for a shape:
LINE Defined by its start point with R and X in Cartesian
coordinates and the line angle in degrees.
LINEP Defined by its start point with Z and Phi in polar
coordinates and a line angle.
ARC Defined by its center point with R and X in Cartesian
coordinates, the radius of the arc, the starting angle in
degrees, the end angle in degrees, and the direction of
the arc (clockwise or counter-clockwise).
ARCP Defined by its center point with Z and Phi in polar
coordinates, the radius of the arc, the starting angle in
degrees, the end angle in degrees, and the direction of
the arc (clockwise or counter-clockwise).
The border elements are kept in an ordered list to form the overall border of
the shape. It is recommended to specify the border elements in counter-
clockwise direction.
It is assumed that a shape is only a "single" shape, which means that there is
only one single connected area where all points are considered "inside" of the
shape and only one additional area (the inversion in relationship to the whole
Cartesian space) where all points are considered "outside".
A shape does not necessarily have to be "closed". An "open" shape divides the
Cartesian space into two areas (half-spaces) which both extend to infinity. A
"closed" shape defines a finite area for "inside" and an infinite area for "outside".
Because each characteristic shape is considered to be a "single" shape, there are
a few constraints for the elements which are checked to get a valid
characteristic:
Two adjacent elements in the ordered list of elements must have at least
one intersection point. Thus, two adjacent lines are not allowed to be
parallel and the radius of an arc must allow intersection.
31
OMICRON Test Universe
32
RIO - Distance and Advanced Distance Test Modules
There are cases where the figures can fall apart into separate shapes.
Additionally, not all border elements from the nominal shape need to be part
of the tolerance figures (such as whenever their "size" is smaller than the
tolerance value).
Figure 3-4 illustrates a tolerance diagram with a few cases that have to be
addressed. It has two separate inner tolerance shapes, and not all border
elements are used as border elements for the tolerance shapes.
Figure 3-4:
Shape tolerances
33
OMICRON Test Universe
Figure 3-5:
MHO shape
34
RIO - Distance and Advanced Distance Test Modules
Figure 3-6:
Lens tomato shape
For A < B, the shape is a lens. For A > B the shape is a tomato. The valid part
is just the outer arcs of the two circles in the figure. For A = B, the lens/tomato
is a circle which can more easily be modeled with a mho shape.
Table 3-1:
Distance structure
Keyword Min Max XOR Relation Refer to
BEGIN DISTANCE 0 1
ACTIVE 0 1 page 37
LINEANGLE 0 1 page 37
PTCONN 0 1 page 38
CTSTARPOINT 0 1 page 38
IMPCORR 0 1 page 38
IMPPRIM 0 1 page 39
ARCRES 0 1 page 39
TTOLPLUS 0 1 page 39
TTOLMINUS 0 1 page 39
TTOLREL 0 1 page 39
ZTOLREL 0 1 page 40
ZTOLABS 0 1 page 40
KL 0 1 RERL_XEXL page 40
Z0Z1
RERL_XEXL 0 1 KL page 40
Z0Z1
Z0Z1 0 1 RERL_XEXL page 41
KL
KM 0 1 RMRL_XMXL page 41
Z0MZ1
RMRL_XMXL 0 1 Z0MZ1 page 41
KM
35
OMICRON Test Universe
36
RIO - Distance and Advanced Distance Test Modules
ACTIVE
LINEANGLE
37
OMICRON Test Universe
PTCONN
Relay
Right-hand side: PT
PT
Potential transformer on Relay
bus side
CTSTARPOINT
Right-hand side:
Current transformer
grounded on bus side
IMPCORR
38
RIO - Distance and Advanced Distance Test Modules
IMPPRIM
ARCRES
TTOLPLUS
Tolerances can be specified on a global basis or on a per zone basis. Per zones
values overwrite the global settings if they exist. This row determines the global
or local time tolerance in positive direction.
TTOLMINUS
TTOLREL
39
OMICRON Test Universe
ZTOLREL
ZTOLABS
Tolerance of Z in Ohms.
KL
RERL_XEXL
This is the second option for describing the complex grounding factor. The first
value RE/RL and the second value XE/XL are calculated into kL according to the
following equations for each individual ZL.
R
fR = -----E-
RL
X
fX = -----E-
XL
Z R E + jX E
k L = -----E- = ---------------------
ZL R L + jX L
f R × R L + jf X × XL
k L = ---------------------------------------
R L + jX L
40
RIO - Distance and Advanced Distance Test Modules
Z0Z1
KM
RMRL_XMXL
The second way to describe the mutual coupling factor via the values RM/RL
and XM/XL. Both are calculated into kM according to the following equations
for each individual ZL.
RM
f R = ------
-
RL
XM
f X = ------
-
XL
ZM RM + jXM
k M = ------
- = -----------------------
ZL R L + jXL
f R × R L + jf X × XL
k M = ---------------------------------------
R L + jX L
41
OMICRON Test Universe
Z0MZ1
TCBTRIP
TCBCLOSE
PERC52A
PERC52B
42
RIO - Distance and Advanced Distance Test Modules
LINELENGTH
Defines the length of the line in Ohms. If it is not set the length is undefined.
TYPE
43
OMICRON Test Universe
FAULTLOOP
The characteristic that is be applied for a specific fault type in the test is
determined in a bottom up manner. The most specific fault loop is used. It is
possible to have characteristics defined at different levels in the hierarchy. The
more specific ones “override” the more general ones.
LABEL
TRIPTIME
ACTIVE
44
RIO - Distance and Advanced Distance Test Modules
INDEX
INDEX sets a unique index for all zones with the same type and fault loop. This
is necessary to reassign relative shots to the different zones of different relays.
It is recommended to number the zones from inside to outside as usual (first
zones number 1, second zone number 2,...).
LINE
A LINE statement can exist only in a general shape. A line is defined by its
starting point with R and X in cartesian coordinates and a line angle (the third
value in the table). The last value sets a direction and is optional.
LINEP
A LINEP statement can also exist only in a general shape. A line is defined by its
starting point with Z and phi in polar coordinates and a line angle (the third
value in the table) in degrees. With the last value a direction can be set. This is
an optional value.
45
OMICRON Test Universe
ARC
ARCP
INVERT
46
RIO - Distance and Advanced Distance Test Modules
AUTOCLOSE
ANGLE
This row can be set in the mho or the lens tomato shape. It describes the angle
of the shape in degrees.
REACH
The reach of the mho or lens tomato shape in forward direction in Ohms.
47
OMICRON Test Universe
OFFSET
The offset of the mho or lens tomato shape in backward direction in Ohms.
WIDTH
The width of the lens tomato shape in Ohms. Can only be set if the AB row
was not set.
AB
The ratio A/B of the lens tomato shape. Can only be set if the row width was
not set.
TESTMODE
ITEST
VTEST
48
RIO - Distance and Advanced Distance Test Modules
TPREFAULT
TMAXFAULT
TPOSTFAULT
FAULTINCMODE
FAULTINCANGLE
DCOFFSET
49
OMICRON Test Universe
TREF
ALLOWRED
ZS
KS
KSISKL
50
RIO - Distance and Advanced Distance Test Modules
51
OMICRON Test Universe
BEGIN ZONE
INDEX 2
LABEL “Z2”
TYPE TRIPPING
FAULTLOOP LL
TRIPTIME 0.32
BEGIN SHAPE
ARCP 2.25, 75.0, 2.25, 0.0, 360.0, ,
AUTOCLOSE YES
END SHAPE
END ZONE
BEGIN ZONE
INDEX 2
LABEL “Z2”
TYPE TRIPPING
FAULTLOOP LN
TRIPTIME 0.32
BEGIN SHAPE
LINE 0.0, 0.0, -15.0,
LINE 3.11132, 0.0, 74.6227,
LINE 0.0, 4.40759, 176.997,
LINE -3.09847, 0.0, -104.492,
AUTOCLOSE YES
END SHAPE
END ZONE
BEGIN ZONE
INDEX 3
LABEL “Z3”
TYPE TRIPPING
FAULTLOOP LL
TRIPTIME 0.62
BEGIN SHAPE
ARCP 3.0, 75.0, 3.0, 0.0, 360.0, ,
AUTOCLOSE YES
END SHAPE
END ZONE
BEGIN ZONE
INDEX 3
LABEL TRIPPING
FAULTLOOP LN
TRIPTIME 0.62
52
RIO - Distance and Advanced Distance Test Modules
BEGIN SHAPE
LINE 0.0, 0.0, -15.0,
LINE 3.11017, 0.0, 74.7017,
LINE 0.0, 5.87696, 176.997,
LINE -3.10049, 0.0, -104.632,
AUTOCLOSE YES
END SHAPE
END ZONE
BEGIN DEFAULTS
ITEST 2.0
TREF FAULT
END DEFAULTS
END DISTANCE
Figure 3-10:
Distance system settings.
General settings in the
distance block of the
example.
Figure 3-10 shows the general settings of the distance example. These settings
are between the BEGIN DISTANCE and BEGIN ZONE delimiters.
53
OMICRON Test Universe
Figure 3-11:
Distance zone settings of
the first zone block in the
above example.
Figure 3-11 shows the zones settings of the first zone block. You can find the
corresponding settings in the example above where the zone blocks are
defined. The current selected zone-graphic in the figure is marked as yellow.
54
RIO - Distance and Advanced Distance Test Modules
Figure 3-12:
Distance default block
settings
Figure 3-12 is the corresponding dialog box of the DEFAULT block in the
distance RIO example above. Because only two settings are explicitly set in the
example, most of the values are set by default as shown in the specification of
the distance settings.
55
OMICRON Test Universe
56
RIO - Overcurrent Test Module
57
OMICRON Test Universe
The load current is entered in times the device’s nominal current, and must be
smaller than the smallest Ipickup of all active units. This current is output during
the Pre-Fault and Fault stages of the shot sequence.
The fault groups presently are Line-To-Ground, Line-To-Line, Negative Sequence
and Zero Sequence. The Line-To-Ground group includes L1-N, L2-N and L3-N
faults; the Line-To-Line group includes L1-L2, L2-L3, L3-L1 and L1-L2-L3 faults.
Line-line-ground faults are not permitted. The test module permits testing of
only one fault type at a time. If another fault type is desired, a new instance of
the test module must be used and the test points entered again.
The Negative Sequence and Zero Sequence groups expand the module to
allow testing of non-differential generator and motor protective units.
For each test point, a full shot sequence is executed, involving up to two
triples: one current triple and one voltage triple. The current triple is divided in
individual current signals which can be freely assigned as long as they all are
assigned to the same triple. The software checks only for the assigned current
signals, thus allowing the use of single-phase amplifiers. The voltage triple is
required only if the relay is defined as "Directional", and in this case a full triple
is required.
Alternatively, it is possible to test a point directly from the diagram. The point
and the results of the shot is just be displayed, and is not be entered in the
table or reported.
Both modes of testing are allowed only when the user has permission to test,
according to the defined protection levels.
The test module incorporates a “Static Output” feature. When selected, a
dialog opens in which the user is able to enter the fault type and the test
current. The test module then calculates the output values which are under the
control of an ON/OFF button. The dialog box provides a vector diagram of the
output magnitudes, plus a textual representation of the values output,
including angles. The values are not output if they exceed the maximum values
for the test object or the test equipment. This feature is available only in on-line
mode (CMC connected) and when the user has permission to test.
58
RIO - Overcurrent Test Module
Table 4-1:
Overcurrent structure
Keyword Min Max XOR-Relation Refer to
BEGIN OVERCURRENT 0 1
ACTIVE 1 1 page 60
DISPLAY_ABSOLUTE 0 1 page 60
ITOL 0 1 page 60
TTOL 0 1 page 60
PTCONN 0 1 page 60
CTSTARPOINT 0 1 page 61
DIRECTIONAL 0 1 page 61
BEGIN GROUP 0 no
limit
NAME 1 1 page 61
BEGIN UNIT 0 no
limit
NAME 1 1 page 61
ACTIVE 1 1 page 62
IPICKUP 1 1 page 62
TINDEX 1 1 page 62
PREDEFCHAR 0 1 CHAR page 62
CHARI2T
TABLE
CHAR 0 1 PREDEFCHAR page 63
CHARI2T
TABLE
CHARI2T 0 1 PREDEFCHAR page 63
CHAR
TABLE
BEGIN TABLE 0 1 PREDEFCHAR
CHAR
CHARI2T
NAME 1 1 page 64
POINT 1 no page 64
limit
END TABLE
END UNIT
END GROUP
END OVERCURRENT
59
OMICRON Test Universe
DISPLAY_ABSOLUTE
ITOL
The current tolerance of the test module. The first value is relative in percent;
the second absolute in l/ln.
TTOL
The tolerance of the time of the device. The first value is relative in percent the
second absolute in seconds.
PTCONN
60
RIO - Overcurrent Test Module
CTSTARPOINT
DIRECTIONAL
61
OMICRON Test Universe
IPICKUP
TINDEX
PREDEFCHAR
62
RIO - Overcurrent Test Module
CHAR
The definition for a characteristic based on the IEEE standard equation. The
order of parameters is: Name, A, B, P, Q, K1, K2. There are no default values;
each parameter must be specified. The IEEE standard equation is defined as
followed:
A × D + K1 - + B × D + K2
t(IT) = -------------------------------
IT ö P
æ ------------ - –A
è I S × I nø
CHARI2T
The definition for a characteristic based on the I2T equation. The order of
parameters is: Name, A, P, Q,. There are no default values; each parameter
must be specified. The I2T equation is defined as:
IT ö P
æ ------------ -
è I S × I nø
t(IT) = A × D × ln --------------------------------
IT ö P
æ ------------- –Q
è I S × I nø
63
OMICRON Test Universe
POINT
These are the coordinates of one point in the current/time plane if the
definition of I/t characteristics may be made in tabular form. For this purpose,
the factors I/(In * Is) and the corresponding tripping times (t) are entered, and
stored as a table. The points are therefore be defined in times the Ipickup
value, which gives the user defined characteristic the same behavior as the
others.
Linear interpolation is carried out between the values given.
For those points of the characteristic which are smaller than the first value
given, it is considered that the first segment stretches to the left until it reaches
the desired point.
For points of the characteristic that are greater than the highest value given, it
is considered that the last segment stretches to the right until it reaches the
desired point.
The coordinates of one point in the current/time plane.
64
RIO - Overcurrent Test Module
65
OMICRON Test Universe
BEGIN UNIT
NAME I>
ACTIVE YES
IPICKUP 1
TINDEX 1
PREDEFCHAR INVERSE
END UNIT
BEGIN UNIT
NAME I>>
ACTIVE YES
IPICKUP 4
TINDEX 0.1
PREDEFCHAR DEFTIME
END UNIT
BEGIN UNIT
NAME I>>>
ACTIVE NO
IPICKUP 10
TINDEX 0.05
PREDEFCHAR DEFTIME
END UNIT
END GROUP
BEGIN GROUP
NAME I2
BEGIN UNIT
NAME I>
ACTIVE YES
IPICKUP 1
TINDEX 1
PREDEFCHAR INVERSE
END UNIT
BEGIN UNIT
NAME I>>
ACTIVE YES
IPICKUP 4
TINDEX 0.1
PREDEFCHAR DEFTIME
END UNIT
BEGIN UNIT
NAME I>>>
ACTIVE NO
IPICKUP 10
TINDEX 0.05
PREDEFCHAR DEFTIME
END UNIT
66
RIO - Overcurrent Test Module
END GROUP
BEGIN GROUP
NAME I0
BEGIN UNIT
NAME I>
ACTIVE YES
IPICKUP 1
TINDEX 1
PREDEFCHAR INVERSE
END UNIT
BEGIN UNIT
NAME I>>
ACTIVE YES
IPICKUP 4
TINDEX 0.1
PREDEFCHAR DEFTIME
END UNIT
BEGIN UNIT
NAME I>>>
ACTIVE NO
IPICKUP 10
TINDEX 0.05
PREDEFCHAR DEFTIME
END UNIT
END GROUP
END OVERCURRENT
67
OMICRON Test Universe
Figure 4-1:
Overcurrent general settings
Figure 4-1 shows the general settings and the settings for the Line-Neutral
group in the RIO file example. This group is described in the group block with
the row “NAME LN”.
68
RIO - Basic and Advanced Differential Test Modules
69
OMICRON Test Universe
If each line segment is defined with its starting point and its slope, no START or
STOP commands are needed. This definition cannot be mixed with the
definition with START and STOP.
Example: LINESLOPE 1.0,0.2, 1.0
First Parameter: IBias /INPO Ref of the starting point
Second Parameter: IDiff/INPO Ref of the starting point
Third Parameter: Slope of the line segment
For steps, the starting point of the second line is defined lying above or below
the previous line. The last line segment can be defined with slope 0.0 for
characteristics which are limited at the top.
The winding block can appear multiple times and has a basic structure. No
other subblocks are used within the WINDING block. Please note that every
row of this block must appear once.
The LINEDIFF subblock has a simple structure. The block and its rows have a
minimum and maximum cardinality of one. This means they must appear once
in the RIO definition of differential device.
Table 5-1:
Differential structure
Keyword Min Max Refer to
BEGIN DIFFERENTIAL 0 1
ACTIVE 1 1 page 72
WINDING-COUNT 0 1 page 72
REF-WINDING 0 1 page 72
OBJECT-TYPE 0 1 page 72
ITOL 0 1 page 72
TTOL 0 1 page 73
TREF 0 1 page 73
TRET 0 1 page 73
TMAX 0 1 page 73
IREF 0 1 page 73
USECT 0 1 page 73
CONVRELAY 0 1 page 74
BEGIN WINDING 0 no
limit
NAME 1 1 page 74
INULL_ELIMINATION 1 1 page 74
CONNECTION 1 1 page 74
CONNECTIONNUMBER 1 1 page 74
NOM-PD-PH 1 1 page 74
NOM-CT-PH 1 1 page 75
GROUNDING-CT-PH 1 1 page 75
70
RIO - Basic and Advanced Differential Test Modules
71
OMICRON Test Universe
WINDING-COUNT
REF-WINDING
OBJECT-TYPE
ITOL
The tolerance of the current of the device. It can be set in relative in percent or
absolute.
72
RIO - Basic and Advanced Differential Test Modules
TTOL
The time tolerance of the device. It can be set relative in percent or absolute in
seconds.
TREF
TRET
TMAX
IREF
USECT
73
OMICRON Test Universe
CONVRELAY
NAME
INULL-ELIMINATION
CONNECTION
CONNECTIONNUMBER
NOM-PD-PH
74
RIO - Basic and Advanced Differential Test Modules
NOM-CT-PH
GROUNDING-CT-PH
NOM-PD-N
NOM-CT-N
GROUNDING-CT-N
VN
75
OMICRON Test Universe
SN
GROUNDING-TRF
ACTIVE
IDIFF>>
TDIFF>>
IDIFF>
76
RIO - Basic and Advanced Differential Test Modules
TDIFF>
DEFBIAS
BIASDIVISOR
TOLHARM
ORDER-HARM
77
OMICRON Test Universe
DELAYHARM
START
The first point of the harmonic or the tripping characteristic. The START
statement is required in the characteristic in any case. In a tripping
characteristic, the (double) parameters d1, d2 specify the START point, where
d1 is the IBias /INPO and d2 the IDiff/INPO reference value.
LINE
STOP
78
RIO - Basic and Advanced Differential Test Modules
ACTIVE
METHOD
I-PICKUP>
D-PHI
TTRIP>
79
OMICRON Test Universe
80
RIO - Basic and Advanced Differential Test Modules
BEGIN DIFFBIAS
ACTIVE YES
BEGIN DIFF
IDIFF>> 2
TDIFF>> 0.023
IDIFF> 0.5
TDIFF> 0.03
END DIFF
BEGIN BIAS
DEFBIAS 1
BIASDIVISOR 1
TOLHARM 0.1, 3
BEGIN CHARHARM
ORDER-HARM 2
DELAYHARM 0.1
START 20, 0.5
STOP 20, 2
END CHARHARM
BEGIN CHARHARM
ORDER-HARM 5
DELAYHARM 0.15
START 45, 0.5
STOP 45, 2
END CHARHARM
END BIAS
BEGIN TRIPCHAR
START 0, 0.4
LINE 5, 1
STOP 9, 2.2
END TRIPCHAR
END DIFFBIAS
BEGIN LINEDIFF
ACTIVE NO
METHOD CURRENT
I-PICKUP> 0
D-PHI 0
TTRIP> 0
END LINEDIFF
END DIFFERENTIAL
81
OMICRON Test Universe
Figure 5-1 shows the settings for the two defined windings in the RIO file
example.
Figure 5-1:
First differential winding
settings.
82
RIO - Basic and Advanced Differential Test Modules
Figure 5-2 shows the CT-parameters in the primary and secondary winding
block. The USECT settings are mapped to the “Use Ground Current
Measurement Inputs (CT) checkbox.
Figure 5-2:
Second differential winding
settings
83
OMICRON Test Universe
Figure 5-3 shows the general settings. They are set between the BEGIN
DIFFERENTIAL and BEGIN WINDING delimiters. The CONRELAY settings are
shown in the “no Transformer Model(deactivated)” checkbox.
Figure 5-3:
Differential general settings
84
RIO - Basic and Advanced Differential Test Modules
Figure 5-4 shows the corresponding dialog box for the TRIPCHAR block.
Figure 5-4:
Differential bias
characteristic
85
OMICRON Test Universe
Figure 5-5 shows the harmonic settings as defined in the BIAS block, as well as
the second harmonic. It is defined in the CHARHARM block which is a subblock
of the BIAS block.
Figure 5-5:
Differential harmonic
restraint settings.
86
RIO - Meter Test Module
ACTIVE
87
OMICRON Test Universe
TYPE
DIRECTION
QUADRANT
PULSE_TYPE
high-active:
low-active:
88
RIO - Meter Test Module
CERTIFIED
CLASS
Specifies the meter class (serves as default value for the tolerance).
PULSES_PER_REV
Specifies the number of pulses that are emitted during one full revolution of
the disk.
SETTLING
The settling time is the time to allow the meter to establish a stable operating
state. Enter the settling time as stated in the meter’s data sheet. Pre-defined
default value: 5 seconds. If there is no data sheet available, leave the default
value.
CONSTANT
89
OMICRON Test Universe
V_PRIM
V_SEC
I_PRIM
I_SEC
90
RIO - Meter Test Module
91
OMICRON Test Universe
Figure 6-2:
Meter settings
92
RIO - Synchronizer Test Module
93
OMICRON Test Universe
ACTIVE
TCBCLOSE
This is the elapsed time between output of the CB close command and the
actual closing of the circuit breaker. This is used to calculate the expected
phase angle difference between the two systems at the time of the CB closure.
TG_PHASE_SHIFT
94
RIO - Synchronizer Test Module
STARTING
PHASE-SEQUENCE1
PHASE-SYSTEM1
PHASE-SEQUENCE2
95
OMICRON Test Universe
PHASE-SYSTEM2
D-VMAX
System 1 and System 2 are required to have approximately the same voltage at
the moment of synchronism and actual CB closure.
A maximum overvoltage (D-VMAX) and undervoltage (D-VMIN Section )) can
be entered for the difference in System 1 and System 2 voltages. In addition,
the over- and undervoltages can have a tolerance . The tolerances can be
entered as either an absolute value ( Section ) in volts or as a percentage of the
(DV) value ( Section ). If both an absolute and relative tolerance is specified, the
larger of the two is used.
D-VMIN
Section
VTOLABS
Section
VTOLREL
Section
96
RIO - Synchronizer Test Module
D-FMAX
System 1 and System 2 are required to have the same frequency at the
moment of synchronism and actual CB closure.
A maximum above synchronous (D-FMAX) and subsynchronous (D-FMIN
(Section )) value can be entered for the difference in System 1 and System 2
frequencies. In addition, these frequencies can have a tolerance. The tolerances
can be entered as either an absolute value ( Section ) in volts or as a percentage
of the (DF) value ( Section ). If both an absolute and relative tolerance is
specified, the larger of the two is used.
D-FMIN
Section
FTOLABS
Section
FTOLREL
Section
D-PHASEANGLE
97
OMICRON Test Universe
In addition, the phase difference can have a tolerance. The tolerances can be
entered as either an absolute value in degrees ( Section )or as a percentage of
the value ( Section ) . If both an absolute and relative tolerance is specified, the
larger of the two is used.
PHASEANGLE-TOLABS
Section
PHASEANGLE-TOLREL
Section
INNER_LIMIT
OUTER_LIMIT
Section
98
RIO - Synchronizer Test Module
99
OMICRON Test Universe
Figure 7-1:
Synchro settings System
Parameters
100
RIO - Synchronizer Test Module
Figure 7-2:
Synchro settings
Synchronizing Window
101
OMICRON Test Universe
102
RIO - Transducer Test Module
103
OMICRON Test Universe
TRDCR_OUT
ANGLE_REF
ERROR_REF
104
RIO - Transducer Test Module
SETTLING
The settling time elapses before a test point is executed. In test mode "Auto
Stepping", this parameter determines the time per step for each sweep.
TYPE
TOLERANCE
Defines the maximum full scale error for the respective specific quantity. If a
multifunctional transducer was chosen, it is possible to define a specific
tolerance for each of the functions.
With the exception of the Frequency tab (value in mHz), the tolerance is
defined in %.
PHASES
Specify whether your transducer operates with one phase or three phases.
105
OMICRON Test Universe
TYPE
SYMMETRICAL
MIN_INP
Enter the transducer's minimum input value (e.g. 0.000var input corresponds
to 0.00mA output).
MIN_OUT
106
RIO - Transducer Test Module
KNEE_INP
KNEE_OUT
MAX_INP
MAX_OUT
SAT_OUT
107
OMICRON Test Universe
108
RIO - Transducer Test Module
Figure 8-1:
Transducer settings
109
OMICRON Test Universe
110
RIO - VI-Starting Test Module
1 BEGIN CHARVIS and END CHARVIS denote begin and end of the block for the VI characteristics.
ACTIVE
ITOL
111
OMICRON Test Universe
VTOL
I>
I>>
VLN(I>)
Specifies the voltage threshold of the I> stage for line-neutral faults.
VLN(I>>)
Specifies the voltage threshold of the I>> stage for line-neutral faults.
VLL(I>)
Specifies the voltage threshold of the I> stage for line-line faults.
112
RIO - VI-Starting Test Module
VLL(I>>)
Specifies the voltage threshold of the I>> stage for line-line faults.
113
OMICRON Test Universe
Figure 9-1:
VI-Starting settings
114
RIO - Revision History
10 Revision History
115
OMICRON Test Universe
116
Manufacturer Contact Information
117
OMICRON Contact Addresses
118
Index
Index
B
BAY
DEVICE block . . . . . . . . . . . . . . . . . . . . . 24
A BAY-ADDRESS
DEVICE block . . . . . . . . . . . . . . . . . . . . . 24
AB BIAS block
DISTANCE block . . . . . . . . . . . . . . . . . . . 48 BIASDIVISOR . . . . . . . . . . . . . . . . . . . . . 77
ACTIVE DEFBIAS . . . . . . . . . . . . . . . . . . . . . . . . . 77
DIFFBIAS block . . . . . . . . . . . . . . . . . . . . 76 TOLHARM . . . . . . . . . . . . . . . . . . . . . . . . 77
DIFFERENTIAL block . . . . . . . . . . . . . . . 72 BIASDIVISOR
DISTANCE block . . . . . . . . . . . . . . . . 37, 44 BIAS block . . . . . . . . . . . . . . . . . . . . . . . . 77
LINEDEF block . . . . . . . . . . . . . . . . . . . . 79 block
METER block . . . . . . . . . . . . . . . . . . 87, 106 DEVICE . . . . . . . . . . . . . . . . . . . . . . . . . . 21
OVERCURRENT block . . . . . . . . . . . . . . 60 keyword . . . . . . . . . . . . . . . . . . . . . . . . . . 20
SYNCHRO block . . . . . . . . . . . . . . . . . . . 94 row . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
TRANSDUCER block . . . . . . . . . . . . . . 104 TESTOBJECT . . . . . . . . . . . . . . . . . . . . . 11
UNIT block . . . . . . . . . . . . . . . . . . . . . . . . 62 block structure
VI-STARTING block . . . . . . . . . . . . . . . . 111 invalid . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
ADDITIONAL-INFO 2 Boolean
DEVICE block . . . . . . . . . . . . . . . . . . . . . 24 FALSE . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
address of manufacturer . . . . . . . . . . . . . . . 117 NO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Advanced Differential test module . . . . . . . . 69 TRUE . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Advanced Distance test module . . . . . . . . . . 29 YES . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
ALLOWRED boolean constant . . . . . . . . . . . . . . . . . . . . . 20
DISTANCE block . . . . . . . . . . . . . . . . . . . 50
AND . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
ANGLE
DISTANCE block . . . . . . . . . . . . . . . . . . . 47
ANGLE_REF
C
TRANSDUCER block . . . . . . . . . . . . . . 104 cardinality . . . . . . . . . . . . . . . . . . . . . 11, 14, 16
ARC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 CB trip time . . . . . . . . . . . . . . . . . . . . . . . . . 30
DISTANCE block . . . . . . . . . . . . . . . . . . . 46 C-block comment . . . . . . . . . . . . . . . . . . . . . 17
ARCP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 CERTIFIED
DISTANCE block . . . . . . . . . . . . . . . . . . . 46 METER block . . . . . . . . . . . . . . . . . . . . . 89
ARCRES CHAR
DISTANCE block . . . . . . . . . . . . . . . . . . . 39 UNIT block . . . . . . . . . . . . . . . . . . . . . . . 63
AUTOCLOSE CHARHARM block
DISTANCE block . . . . . . . . . . . . . . . . . . . 47 DELAYHARM . . . . . . . . . . . . . . . . . . . . . 78
ORDER-HARM . . . . . . . . . . . . . . . . . . . . 77
CHARI2T
UNIT block . . . . . . . . . . . . . . . . . . . . . . . 63
CLASS
METER block . . . . . . . . . . . . . . . . . . . . . 89
119
OMICRON Test Universe
120
Index
REF-WINDING . . . . . . . . . . . . . . . . . . . . 72 LINEP . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
structure . . . . . . . . . . . . . . . . . . . . . . . . . . 69 OFFSET . . . . . . . . . . . . . . . . . . . . . . . . . 48
TMAX . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 PERC52A . . . . . . . . . . . . . . . . . . . . . . . . 42
TREF . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 PERC52B . . . . . . . . . . . . . . . . . . . . . 42, 43
TRET . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 PTCONN . . . . . . . . . . . . . . . . . . . . . . . . . 38
TTOL . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 REACH . . . . . . . . . . . . . . . . . . . . . . . . . . 47
TTRIP> . . . . . . . . . . . . . . . . . . . . . . . . . . 79 RERL_XEXL . . . . . . . . . . . . . . . . . . . . . . 40
USECT . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 RMRL_XMXL . . . . . . . . . . . . . . . . . . . . . 41
WINDING-COUNT . . . . . . . . . . . . . . . . . . 72 structure . . . . . . . . . . . . . . . . . . . . . . . . . 29
Differential test module . . . . . . . . . . . . . . . . . 69 TCBCLOSE . . . . . . . . . . . . . . . . . . . . . . . 42
DIRECTION TCBTRIP . . . . . . . . . . . . . . . . . . . . . . . . . 42
METER block . . . . . . . . . . . . . . 88, 105, 106 TESTMODE . . . . . . . . . . . . . . . . . . . . . . 48
DIRECTIONAL TMAXFAULT . . . . . . . . . . . . . . . . . . . . . . 49
OVERCURRENT block . . . . . . . . . . . . . . 61 TPOSTFAULT . . . . . . . . . . . . . . . . . . . . . 49
DISPLAY_ABSOLUTE TPREFAULT . . . . . . . . . . . . . . . . . . . . . . 49
OVERCURRENT block . . . . . . . . . . . . . . 60 TREF . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
DISTANCE block TRIPTIME . . . . . . . . . . . . . . . . . . . . . . . . 44
AB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 TYPE . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
ACTIVE . . . . . . . . . . . . . . . . . . . . . . . 37, 44 VTEST . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
ALLOWRED . . . . . . . . . . . . . . . . . . . . . . . 50 WIDTH . . . . . . . . . . . . . . . . . . . . . . . . . . 48
ANGLE . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 Z0MZ1 . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
ARC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 Z0Z1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
ARCP . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 ZS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
ARCRES . . . . . . . . . . . . . . . . . . . . . . . . . 39 ZTOLABS . . . . . . . . . . . . . . . . . . . . . . . . 40
AUTOCLOSE . . . . . . . . . . . . . . . . . . . . . . 47 ZTOLREL . . . . . . . . . . . . . . . . . . . . . . . . 40
CTSTARPOINT . . . . . . . . . . . . . . . . . . . . 38 Distance test module . . . . . . . . . . . . . . . . . . 29
DCOFFSET . . . . . . . . . . . . . . . . . . . . . . . 49 double . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
FALTLOOP . . . . . . . . . . . . . . . . . . . . . . . 44 D-PHASEANGLE
FAULTINCANGLE . . . . . . . . . . . . . . . . . . 49 SYNCHRO block . . . . . . . . . . . . . . . . . . . 97
FAULTINCMODE . . . . . . . . . . . . . . . . . . 49 D-PHI
IMPCORR . . . . . . . . . . . . . . . . . . . . . . . . 38 LINEDEF block . . . . . . . . . . . . . . . . . . . . 79
IMPPRIM . . . . . . . . . . . . . . . . . . . . . . . . . 39
INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
INVERT . . . . . . . . . . . . . . . . . . . . . . . . . . 46
ITEST . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
ITOLMINUS . . . . . . . . . . . . . . . . . . . . . . . 39
E
ITOLPLUS . . . . . . . . . . . . . . . . . . . . . . . . 39 enumeration
ITOLREL . . . . . . . . . . . . . . . . . . . . . . . . . 39 double . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
KL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 integer . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
KM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 error message . . . . . . . . . . . . . . . . . . . . . . . 14
KS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 Block invalid name of RIO data . . . . . . . . 15
KSISKL . . . . . . . . . . . . . . . . . . . . . . . . . . 50 Block name is missing . . . . . . . . . . . . . . . 14
LABEL . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 invalid value index . . . . . . . . . . . . . . . . . . 16
LINE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 invalid value type . . . . . . . . . . . . . . . . . . . 15
LINEANGLE . . . . . . . . . . . . . . . . . . . . . . . 37 RIO data in XOR conflict . . . . . . . . . . . . . 15
121
OMICRON Test Universe
122
Index
INNER_LIMIT KNEE_OUT
SYNCHRO block . . . . . . . . . . . . . . . . . . . 98 TRANSDUCER block . . . . . . . . . . . . . . 107
INOM KS
DEVICE block . . . . . . . . . . . . . . . . . . . . . 25 DISTANCE block . . . . . . . . . . . . . . . . . . . 50
instantaneous pick-up current . . . . . . . . . . . . 57 KSISKL
integer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 DISTANCE block . . . . . . . . . . . . . . . . . . . 50
integer constant . . . . . . . . . . . . . . . . . . . . . . 18
INULL-ELIMINATION
WINDINGS block . . . . . . . . . . . . . . . . . . . 74
INVERT
DISTANCE block . . . . . . . . . . . . . . . . . . . 46
L
IPICKUP LABEL
UNIT block . . . . . . . . . . . . . . . . . . . . . . . . 62 DISTANCE block . . . . . . . . . . . . . . . . . . . 44
I-PICKUP> LENSTOMATOSHAPE block . . . . . . . . . . . . 29
LINEDEF block . . . . . . . . . . . . . . . . . . . . 79 LINE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
IPRIM DISTANCE block . . . . . . . . . . . . . . . . . . . 45
DEVICE block . . . . . . . . . . . . . . . . . . . . . 25 TRIPCHAR block . . . . . . . . . . . . . . . . . . 78
IREF LINEANGLE
DIFFERENTIAL block . . . . . . . . . . . . . . . 73 DISTANCE block . . . . . . . . . . . . . . . . . . . 37
ITEST LINEDEF block
DISTANCE block . . . . . . . . . . . . . . . . . . . 48 ACTIVE . . . . . . . . . . . . . . . . . . . . . . . . . . 79
ITOL D-PHI . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
DIFFERENTIAL block . . . . . . . . . . . . . . . 72 I-PICKUP> . . . . . . . . . . . . . . . . . . . . . . . 79
OVERCURRENT block . . . . . . . . . . . . . . 60 METHOD . . . . . . . . . . . . . . . . . . . . . . . . . 79
VI-STARTING block . . . . . . . . . . . . . . . . 111 LINEDIFF . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
ITOLMINUS LINEP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
DISTANCE block . . . . . . . . . . . . . . . . . . . 39 DISTANCE block . . . . . . . . . . . . . . . . . . . 45
ITOLPLUS
DISTANCE block . . . . . . . . . . . . . . . . . . . 39
ITOLREL
DISTANCE block . . . . . . . . . . . . . . . . . . . 39 M
MANUFACTURER
DEVICE block . . . . . . . . . . . . . . . . . . . . . 23
manufacturer address . . . . . . . . . . . . . . . . 117
K MAX_INP
keyword . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 TRANSDUCER block . . . . . . . . . . . . . . 107
KL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 MAX_OUT
DISTANCE block . . . . . . . . . . . . . . . . . . . 40 TRANSDUCER block . . . . . . . . . . . . . . 107
kL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 METER
KM example . . . . . . . . . . . . . . . . . . . . . . . . . . 91
DISTANCE block . . . . . . . . . . . . . . . . . . . 41 METER block
kM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 ACTIVE . . . . . . . . . . . . . . . . . . . . . . 87, 106
KNEE_INP CERTIFIED . . . . . . . . . . . . . . . . . . . . . . . 89
TRANSDUCER block . . . . . . . . . . . . . . 107 CLASS . . . . . . . . . . . . . . . . . . . . . . . . . . 89
123
OMICRON Test Universe
CONSTANT . . . . . . . . . . . . . . . . . . . . . . . 89
DIRECTION . . . . . . . . . . . . . . . 88, 105, 106
I_PRIM . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
O
I_SEC . . . . . . . . . . . . . . . . . . . . . . . . . . . 90 OBJECT-TYPE
PULSE_TYPE . . . . . . . . . . . . . . 88, 95, 105 DIFFERENTIAL block . . . . . . . . . . . . . . . 72
PULSES_PER_REV . . . . . . . . . . . . . 89, 98 OFFSET
QUADRANT . . . . . . . . . . . . . . . . 88, 95, 105 DISTANCE block . . . . . . . . . . . . . . . . . . . 48
SETTLING . . . . . . . . . . . . . . . . . . . . . . . . 89 OMICRON addresses . . . . . . . . . . . . . . . . 117
structure . . . . . . . . . . . . . . . . . . . . . . 87, 111 OMURP . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
TYPE . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88 OR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
V_PRIM . . . . . . . . . . . . . . . . . . . . . . 90, 107 ORDER-HARM
V_SEC . . . . . . . . . . . . . . . . . . . . . . . . . . . 90 CHARHARM block . . . . . . . . . . . . . . . . . 77
Meter test module . . . . . . . . . . . . . . . . . . . . . 87 OUTER_LIMIT
METHOD SYNCHRO block . . . . . . . . . . . . . . . . . . . 98
LINEDEF block . . . . . . . . . . . . . . . . . . . . 79 OVERCURRENT block
MHOSHAPE block . . . . . . . . . . . . . . . . . . . . 29 ACTIVE . . . . . . . . . . . . . . . . . . . . . . . . . . 60
MIN_INP CTSTARPOINT . . . . . . . . . . . . . . . . . . . . 61
TRANSDUCER block . . . . . . . . . . . . . . 106 DIRECTIONAL . . . . . . . . . . . . . . . . . . . . 61
MIN_OUT DISPLAY_ABSOLUTE . . . . . . . . . . . . . . 60
TRANSDUCER block . . . . . . . . . . . . . . 106 GROUP subblock . . . . . . . . . . . . . . . . . . 61
ITOL . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
PTCONN . . . . . . . . . . . . . . . . . . . . . . . . . 60
structure . . . . . . . . . . . . . . . . . . . . . . . . . 57
N TTOL . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
Overcurrent test module . . . . . . . . . . . . . . . . 57
NAME . . . . . . . . . . . . . . . . . . . . . . . . . . . 61, 64
DEVICE block . . . . . . . . . . . . . . . . . . . . . 23
GROUP block . . . . . . . . . . . . . . . . . . . . . 61
TABLE . . . . . . . . . . . . . . . . . . . . . . . . . . . 64
UNIT block . . . . . . . . . . . . . . . . . . . . . . . . 61
P
WINDINGS block . . . . . . . . . . . . . . . . . . . 74 parser . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
NO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12, 20 correction . . . . . . . . . . . . . . . . . . . . . . . . 16
NOM-CT-N error messages . . . . . . . . . . . . . . . . . . . . 14
WINDINGS block . . . . . . . . . . . . . . . . . . . 75 unknown data . . . . . . . . . . . . . . . . . . . . . 14
NOM-CT-PH PERC52A . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
WINDINGS block . . . . . . . . . . . . . . . . . . . 75 DISTANCE block . . . . . . . . . . . . . . . . . . . 42
NOM-PD-N PERC52B . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
WINDINGS block . . . . . . . . . . . . . . . . . . . 75 DISTANCE block . . . . . . . . . . . . . . . . 42, 43
NOM-PD-PH PHASE
WINDINGS block . . . . . . . . . . . . . . . . . . . 74 DEVICE block . . . . . . . . . . . . . . . . . . . . . 24
PHASEANGLE-TOLABS
SYNCHRO block . . . . . . . . . . . . . . . . . . . 98
PHASEANGLE-TOLREL
SYNCHRO block . . . . . . . . . . . . . . . . . . . 98
PHASES
124
Index
125
OMICRON Test Universe
126
Index
127
OMICRON Test Universe
WINDINGS block . . . . . . . . . . . . . . . . . . . 75
VNOM
DEVICE block . . . . . . . . . . . . . . . . . . . . . 24
Y
VPRIM-LL YES . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12, 20
DEVICE block . . . . . . . . . . . . . . . . . . . . . 25
VTEST
DISTANCE block . . . . . . . . . . . . . . . . . . . 48
VTOL
VI-STARTING block . . . . . . . . . . . . . . . . 112
Z
VTOLABS Z0MZ1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
SYNCHRO block . . . . . . . . . . . . . . . . . . . 96 DISTANCE block . . . . . . . . . . . . . . . . . . . 42
VTOLREL Z0Z1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29, 30
SYNCHRO block . . . . . . . . . . . . . . . . . . . 96 DISTANCE block . . . . . . . . . . . . . . . . . . . 41
ZS
DISTANCE block . . . . . . . . . . . . . . . . . . . 50
ZTOLABS . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
DISTANCE block . . . . . . . . . . . . . . . . . . . 40
W ZTOLREL . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
WIDTH DISTANCE block . . . . . . . . . . . . . . . . . . . 40
DISTANCE block . . . . . . . . . . . . . . . . . . . 48
WINDING . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
WINDING-COUNT
DIFFERENTIAL block . . . . . . . . . . . . . . . 72
WINDINGS block
CONNECTION . . . . . . . . . . . . . . . . . . . . . 74
CONNECTIONNUMBER . . . . . . . . . . . . . 74
GROUNDING-CT-N . . . . . . . . . . . . . . . . . 75
GROUNDING-CT-PH . . . . . . . . . . . . . . . 75
GROUNDING-TRF . . . . . . . . . . . . . . . . . 76
INULL-ELIMINATION . . . . . . . . . . . . . . . 74
NAME . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
NOM-CT-N . . . . . . . . . . . . . . . . . . . . . . . . 75
NOM-CT-PH . . . . . . . . . . . . . . . . . . . . . . 75
NOM-PD-N . . . . . . . . . . . . . . . . . . . . . . . 75
NOM-PD-PH . . . . . . . . . . . . . . . . . . . . . . 74
SN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
VN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
X
XE/XL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
XM/XL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
XOR . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13, 29
128