EVAR Communication Protocol GB V1.06
EVAR Communication Protocol GB V1.06
The ORION ITALIA SERIES implement a subset of the AEG Modicon Modbus serial communication standard.
Many devices support this protocol directly with suitable interface card, allowing direct connection of relays.
The Modbus protocol is hardware-independent; that is, the physical layer can be any of variety of standard
hardware configurations, this includes RS232, RS422, RS485, fibber optics, etc. The ORION ITALIA RELAYS
include rear terminals one RS232 and two RS485 ports. Modbus is a single master multiple slave protocol
suitable for a multi-drop configuration as provided by RS485 hardware. In this configuration up to 32 slaves
can be daisy-chained together on a single communication channel.
The ORION ITALIA SERIES is always a Modbus slave. It cannot be programmed as a Modbus master. The
Modbus protocol exists in two versions: Remote Terminal Unit (RTU, binary) and ASCII. Only the RTU version
is supported by the Orion Italia Relay. Monitoring, programming and control functions are possible using read
and write register commands.
2 ELECTRICAL INTERFACE.
In a two-wire RS485 link, data flow is bi-directional. RS232 port uses 3-pin Rx for receive data, Tx for Transmit
data and signal ground. Different ports Com1, Com2 and Com3 can be used at the same time. Data flow is half
duplex. That is, data is never transmitted and received at the same time.
In RS485 lines should be connected in a daisy chain configuration (avoid star connections) with terminating
resistors and capacitors installed each end of the link, i.e. at the master end and the slave farthest from the
master. That value of the terminating resistors should be equal to the characteristic impedance of the line. This
is approximately 120 Ohms for standard 24 AWG twisted pair wire. The value of the capacitors should be 1
nF. Shielded wire should always be used to minimize noise. Polarity is important in RS485 communications.
See figure below for more details.
One data frame of an asynchronous transmission to or from a Orion Italia Relay consists of 1 start bit, 8 data
bits, not parity and 1 stop bit. This produces a 10 bit frame. This is important for transmission throught modems
at high bit rates (11 bit data frames are not supported by hayes modems at bit rates of greater than 300 bps).
The rear RS485 and RS232 external communication ports of the Orion Italia Relay supports operation at
1200,2400,4800, 9600, 19200, 38400 and 57600 baud.
COMMUNICATION 1
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
A complete request/response consists of the following bytes transmitted as separate data frames:
A message is terminated when no data is received for a period of 3 1/2 character transmission times.
Consequently, the transmitting device must not allow gaps between bytes larger than this interval (about 3ms
at 9600 baud).
SLAVE ADDRESS: This is the first byte of every message. This byte represents the user-assigned address of
the slave device that is to receive the message sent by the master. Each slave device must be assigned a
unique address, and only the addressed slave will respond to a message that starts with its address. In a
master query message the SLAVE ADDRESS represents the address of the slave to which the request is
being sent. In a slave response message the SLAVE ADDRESS is a confirmation representing the address of
the slave that is sending the response. A master query message with a SLAVE ADDRESS of 0 indicates a
broadcast command. All slaves on the communication link will take action based on the message, but none will
respond to the master.
FUNCTION CODE: This is the second byte of every message. Modbus defines function codes of 1 to 127. The
Orion Italia Relay implements some of this functions. See section 7 for details of the function codes supported
by the Orion Italia Relay Series Modbus Protocol. In a master query message the FUNCTIONS CODE tells the
slave what action to perform. In a slave response message, if the FUNCTION CODE sent from the slave is the
same as the FUNCTION CODE sent from the master then the slave performed the function as requested.
DATA: This will be a variable number of bytes on the FUNCTION CODE. This may include actual values,
setpoints or addresses sent by the master to the slave or by the slave to the master. See section 7 for a
description of the Orion-supported functions and the data required for each.
CRC: This is a two byte error checking code. CRC is sent LSByte first followed by the MSByte. The RTU
version of Modbus includes a two byte CRC-16 (16 bit cyclic redundancy check) with every message. The
CRC-16 algorithm essentially treats the entire data stream (data bits only; start, stop and parity ignored) as one
continuous binary number. This number is first shifted left 16 bits and then divided by a characteristic
polynomial (11000000000000101B). The 16 bit remainder of the division is appended to the end of the
message, MSByte first. The resulting message including CRC, when divided by the same polynomial at the
receiver will give a zero remainder if no transmission errors have occurred. If a Orion Modbus slave device
receives a message in which an error is indicated by the CRC-16 calculation, the slave device will not respond
to the message. A CRC-16 error indicates that one or more bytes of the message were received incorrectly
and thus the entire message should be ignored in order to avoid the slave device performing any incorrect
operation. The CRC-16 calculation is an industry standard method used for error detection. An algorithm is
included in section 5 CRC-16 algorithm to assist programmers in situations where no standard CRC-16
calculation routines are available.
2 COMMUNICATION
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
5 CRC-16 ALGORITHM
Once the following algorithm is completed, the working register "A" will contain the CRC value to be
transmitted. Note that this algorithm requires the characteristic polynomial to be reverse bit ordered. The most
significant bit of the characteristic polynomial is dropped, since it does not affect the value of the remainder.
The following symbols are used in the algorithm:
Symbols:
--> data transfer
A 16 bit working register
Alow low order byte of A
Ahigh high order byte of A
CRC 16 bit CRC-16 value
i,j loop counter
(+) logical EXCLUSIVE-OR operator
N total number of data bytes
Di i-th data byte (i=0 to N-1)
G 16 bit characteristic polynomial =1010000000000001(binary) with MSbit dropped and bit
order reversed
shr(x) right shit operator (the LSbit of x is shifted into a carry lag, a '0' is shifted into the MSbit of x,
all other bits are shifted right one location)
Algorithm:
1. FFFF(hex) --> A
2. O --> i
3. O --> j
4. Di (+) Alow --> Alow
5. j + 1 --> j
6. shr (A)
7. Is there a carry ? No: go to step 8
Yes: G (+) A --> A and continue
8. Is j = 8 ? No: go to 5
Yes: continue
9. i + 1 --> i
10. Is i = N ? No: go to 3
Yes: continue
11. A ----> CRC
6 MESSAGE TIMING
Communication message synchronization is maintained by timing constraints. The receiving device must
measure the time between the reception of characters. If three and one half character times elapse without a
new character or completion of the message, then the communication link must be reset (i.e. all slaves start
listening for a new query message from the master). Thus at 1200 baud a delay of greater than 3.5 x 1/1200 x
10 = 29.2 msec cause the communication link to be reset. At 9600 baud a delay of greater than 3.5 x 1/9600
x 10 = 3.6 ms will cause the communication link to be reset. Most master query messages will be responded to
in less than 50 ms. The maximum time for the Orion Italia Relay to return a slave response message for any
function code will never exceed 1 second.
COMMUNICATION 3
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
The second byte of every message is the function code. Modbus defines function codes of 01h to 7Fh. The
Orion Italia Relay Modbus protocol supports some of these functions, as summarized in Table No. 1
TABLE No. 1
Since some programmable logic controllers only support function codes 03h (or 04h) and 10h, most of the
above Modbus commands can be performed by reading from or writing to special addresses in the Orion Italia
Relay memory map using these function codes.
The Orion Italia Relay implementation of Modbus views "holding registers" as any setpoint or actual values
register in the Orion Italia Relay memory map. Registers are 16 (two byte) values transmitted high order byte
first. Thus all Orion Italia Relay setpoints and actual values in the memory map are sent as two byte registers.
This function code allows the master to read one or more consecutive setpoints or actual values from
addressed slave device.
The slave response to these function codes is the slave address, function code, a count of the number of data
bytes to follow, the data itself and the CRC. Each data item is sent as a two byte number with the high order
byte sent first. The CRC is sent as a two byte number with the low order byte sent first.
The maximum number of values of Setpoints that can be read in a single message is 97 word (194 bytes).
The EVAR Setpoint data starts at address 0100h.
4 COMMUNICATION
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
If the function code or the address of any of the requested data is illegal, the slave will not respond the
message. Otherwise, the slave will respond as follows:
This function code allows the master to request EVAR to perform specific command operations. The
commands Number Listed in the table 2: Commands; correspond to operations codes for function code 05h.
The Slave Response to this function is to echo the entire master transmission.
COMMUNICATION 5
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
TABLE 2. COMMANDS
6 COMMUNICATION
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
This function code allows the master to store single setpoints into the memory map of the EVAR.
The Slave Response to this function is to echo the entire master transmission.
This function code allows the master to modify the contest of a one or more consecutive setpoint in the
addressed slave device. Setpoint registers are 16 bit (two byte) values transmitted high order byte first.
The maximum number of register values (setpoints) that can be stored in a single message is 97 word (194
bytes). The EVAR Setpoint data starts at address 0100h.
To store the value of one or more setpoints in the internal memory of the EVAR, the following steps shall be
realized:
COMMUNICATION 7
ELECTRICAL VARIABLE ANALYZER RELAY EVAR
a) First shall be read setpoint group to modify with function 03h or 04h.
b) Then, modify the values of setpoints according to memory map.
c) Send setpoint group back to relay with function 10h.
The EVAR response to this function code is to echo the slave address, function code, starting address, the
number of setpoints stored, and the CRC.
Request slave device 11h to write the value 0190h at setpoint address 0102h, and the value 012Ch at setpoint
address 0103h.
If the function code or the address or value of any of the data, is illegal, the slave will not respond to the
message. Otherwise, the slave will respond as follows:
The data stored in the EVAR is grouped as Setpoints, Actual Values and Product ID. Setpoints can be read
and written by a master computer. Actual Values & Product ID are read only. All setpoints and Actual Values
are stored as two bytes values. Addresses are listed in hexadecimal. Data values (Setpoint ranges,
increments, factory value) are in decimal.
8 COMMUNICATION
EVAR Relay - Software Versions (1.00~1.06)
Read/
Add (Hex) Type Size Description Unit Range Step Initial Value Format
Write
0000 Product ID 1W Product Code --- --- --- 4 F2 R
0001 1W Product Model --- --- --- 1 F2 R
0002 1W Version Number --- --- --- 1.00 F6 R
0090 TimeSet 3W Date & Time Preset Data --- --- --- --- F8 R/W
Read/
Add (Hex) Type Size Description Unit Range Step Initial Value Format
Write
0138 2W Negative KVAR Level KVAR 10~650000 --- 10000 F2 R/W
013A 1W Negative KVAR Delay Sec 0.5~600.0 0.5 10.0 F4 R/W
013B 1B P.F. Leading 1 Relay Upper Byte --- 0~3 1 0 F13 R/W
1B P.F. Leading 2 Relay Lower Byte --- 0~3 1 0 F13 R/W
013C 1B P.F. Leading 1 Level Upper Byte --- 0.05~1.00 0.01 0.92 F6 R/W
1B P.F. Leading 1 Dropout Lower Byte --- 0.01~1.00 0.01 0.02 F6 R/W
013D 1B P.F. Leading 2 Level Upper Byte --- 0.05~1.00 0.01 0.96 F6 R/W
1B P.F. Leading 2 Dropout Lower Byte --- 0.01~1.00 0.01 0.02 F6 R/W
013E 1W P.F. Leading 1 Delay Sec 0.5~600.0 0.5 10.0 F4 R/W
013F 1W P.F. Leading 2 Delay Sec 0.5~600.0 0.5 10.0 F4 R/W
0140 1B P.F. Lagging 1 Relay Upper Byte --- 0~3 1 0 F13 R/W
1B P.F. Lagging 2 Relay Lower Byte --- 0~3 1 0 F13 R/W
0141 1B P.F. Lagging 1 Level Upper Byte --- 0.05~1.00 0.01 0.92 F6 R/W
1B P.F Lagging 1 Dropout Lower Byte --- 0.01~1.00 0.01 0.02 F6 R/W
0142 1B P.F. Lagging 2 Level Upper Byte --- 0.05~1.00 0.01 0.96 F6 R/W
1B P.F Lagging 2 Dropout Lower Byte --- 0.01~1.00 0.01 0.02 F6 R/W
0143 1W P.F. Lagging 1 Delay Sec 0.5~600.0 0.5 10.0 F4 R/W
0144 1W P.F. Lagging 2 Delay Sec 0.5~600.0 0.5 10.0 F4 R/W
0145 1W Current Demand Time Period Min 5~60 1 5 F2 R/W
0146 1B Phase A Amps Demand Relay Upper Byte --- 0~3 1 0 F13 R/W
1B Phase B Amps Demand Relay Lower Byte --- 0~3 1 0 F13 R/W
0147 1B Phase C Amps Demand Relay Upper Byte --- 0~3 1 0 F13 R/W
1B Gnd Amps Demand Relay Lower Byte --- 0~3 1 0 F13 R/W
0148 1W Phase A Amps Demand Level %CT 2~500 1 110 F2 R/W
0149 1W Phase B Amps Demand Level %CT 2~500 1 110 F2 R/W
014A 1W Phase C Amps Demand Level %CT 2~500 1 110 F2 R/W
014B 1W Gnd Amps Demand Level %CT 2~500 1 20 F2 R/W
014C 1W Power Demand Time Period Min 5~60 1 5 F2 R/W
014D 1W KW Demand Relay --- 0~3 1 0 F13 R/W
014E 1B KVAR Demand Relay Upper Byte --- 0~3 1 0 F13 R/W
1B KVA Demand Relay Lower Byte --- 0~3 1 0 F13 R/W
014F 2W KW Demand Level kW 10~650000 --- 10000 F2 R/W
0151 2W KVAR Demand Level KVAR 10~650000 --- 10000 F2 R/W
0153 2W KVA Demand Level KVA 10~650000 --- 10000 F2 R/W
0155 1B Avg Current THD Relay --- 0~3 1 0 F13 R/W
1B Avg Voltage THD Relay --- 0~3 1 0 F13 R/W
0156 1W Avg Current THD Level % 0.5~100.0 0.5 2.0 F4 R/W
0157 1W Avg Current THD Delay Sec 0.5~600.0 0.5 20.0 F4 R/W
0158 1W Avg Voltage THD Level % 0.5~100.0 0.5 1.0 F4 R/W
0159 1W Avg Voltage THD Delay Sec 0.5~600.0 0.5 10.0 F4 R/W
015A 1W Pulse Counter Relay --- 0~3 1 0 F13 R/W
015B 1W Pulse Counter Level --- 1~65000 1 1000 F2 R/W
015C 1W Pulse Counter Delay Sec 0.5~600.0 0.5 30.0 F4 R/W
015D 1W Slave Address --- 1~254 1 1 F2 R/W
015E 1W Com1 Baud Rate Baud 0~6 1 3 F17 R/W
015F 1W Com2 Baud Rate Baud 0~6 1 3 F17 R/W
0160 1W Com3 Baud Rate Baud 0~6 1 3 F17 R/W
0200 Actual 3W EVAR Relay Date & Time --- --- --- --- F8 R
0203 Values 1W Leds Status BitField --- --- --- F20 R
0204 1W Leds Blink Status BitField --- --- --- F21 R
0205 1W Output Relays Status BitField --- --- --- F22 R
0206 1W Input Status BitField --- --- --- F23 R
0207 1W Active Alarms Status Flags 1 BitField --- --- --- F24 R
0208 1W Active Alarms Status Flags 2 BitField --- --- --- F25 R
0209 1W Active Alarms Status Flags 3 BitField --- --- --- F26 R
020A 1W Pickup Alarms Status Flags 1 BitField --- --- --- F24 R
020B 1W Pickup Alarms Status Flags 2 BitField --- --- --- F25 R
020C 1W Pickup Alarms Status Flags 3 BitField --- --- --- F26 R
020D 1W Alarm Output Status Flags 1 BitField --- --- --- F24 R
020E 1W Alarm Output Status Flags 2 BitField --- --- --- F25 R
020F 1W Alarm Output Status Flags 3 BitField --- --- --- F26 R
0210 1W Aux1 Output Status Flags 1 BitField --- --- --- F24 R
0211 1W Aux1 Output Status Flags 2 BitField --- --- --- F25 R
0212 1W Aux1 Output Status Flags 3 BitField --- --- --- F26 R
0213 1W Aux2 Output Status Flags 1 BitField --- --- --- F24 R
0214 1W Aux2 Output Status Flags 2 BitField --- --- --- F25 R
0215 1W Aux2 Output Status Flags 3 BitField --- --- --- F26 R
0216 2W Phase A RMS Current A --- --- --- F6 R
0218 2W Phase B RMS Current A --- --- --- F6 R
021A 2W Phase C RMS Current A --- --- --- F6 R
021C 2W Average Current A --- --- --- F6 R
021E 2W Ground RMS Current A --- --- --- F6 R
EVAR - MODBUS MEMORY MAP
Read/
Add (Hex) Type Size Description Unit Range Step Initial Value Format
Write
0220 1W Current Unbalance % --- --- --- F4 R
0221 2W A-N RMS Voltage V --- --- --- F4 R
0223 2W B-N RMS Voltage V --- --- --- F4 R
0225 2W C-N RMS Voltage V --- --- --- F4 R
0227 2W A-B RMS Voltage V --- --- --- F4 R
0229 2W B-C RMS Voltage V --- --- --- F4 R
022B 2W C-A RMS Voltage V --- --- --- F4 R
022D 2W Average Voltage V --- --- --- F4 R
022F 1W Voltage Unbalance % --- --- --- F4 R
0230 1W Phase Sequence --- --- --- --- F18 R
0231 1W Phase A Voltage Phasor Angle ° Angle --- --- --- F3 R
0232 1W Phase B Voltage Phasor Angle ° Angle --- --- --- F3 R
0233 1W Phase C Voltage Phasor Angle ° Angle --- --- --- F3 R
0234 1W Phase A Current Phasor Angle ° Angle --- --- --- F3 R
0235 1W Phase B Current Phasor Angle ° Angle --- --- --- F3 R
0236 1W Phase C Current Phasor Angle ° Angle --- --- --- F3 R
0237 1W Frequency Hz --- --- --- F6 R
0238 2W 3Ø Active Power KW --- --- --- F5 R
023A 2W 3Ø Reactive Power KVAR --- --- --- F5 R
023C 2W 3Ø Aparent Power KVA --- --- --- F5 R
023E 1W 3Ø Power Factor --- --- --- --- F19 R
023F 2W Active Power Phase A KW --- --- --- F5 R
0241 2W Reactive Power Phase A KVAR --- --- --- F5 R
0243 2W Aparent Power Phase A KVA --- --- --- F5 R
0245 1W Power Factor Phase A --- --- --- --- F19 R
0246 2W Active Power Phase B KW --- --- --- F5 R
0248 2W Reactive Power Phase B KVAR --- --- --- F5 R
024A 2W Aparent Power Phase B KVA --- --- --- F5 R
024C 1W Power Factor Phase B --- --- --- --- F19 R
024D 2W Active Power Phase C KW --- --- --- F5 R
024F 2W Reactive Power Phase C KVAR --- --- --- F5 R
0251 2W Aparent Power Phase C KVA --- --- --- F5 R
0253 1W Power Factor Phase C --- --- --- --- F19 R
0254 2W Positive Active Energy Kwh --- --- --- F2 R
0256 2W Negative Active Energy Kwh --- --- --- F2 R
0258 2W Positive Reactive Energy Kvrh --- --- --- F2 R
025A 2W Negative Reactive Energy Kvrh --- --- --- F2 R
025C 2W Not Used (Reserved for Future Expansion) --- --- --- --- --- R
025E 2W Pulse Counter --- --- --- --- F2 R
Read/
Add (Hex) Type Size Description Unit Range Step Initial Value Format
Write
033A 1W C-N Voltage THD % --- --- --- F4 R
033B 1W A-B Voltage THD % --- --- --- F4 R
033C 1W B-C Voltage THD % --- --- --- F4 R
033D 1W C-A Voltage THD % --- --- --- F4 R
033E 1W Phase A Current K Factor --- --- --- --- F6 R
033F 1W Phase B Current K Factor --- --- --- --- F6 R
0340 1W Phase C Current K Factor --- --- --- --- F6 R
Read/
Add (Hex) Type Size Description Unit Range Step Initial Value Format
Write
0506 1W A-N Voltage 7th Harmonic % --- --- --- F4 R
0507 1W A-N Voltage 8th Harmonic % --- --- --- F4 R
0508 1W A-N Voltage 9th Harmonic % --- --- --- F4 R
0509 1W A-N Voltage 10th Harmonic % --- --- --- F4 R
050A 1W A-N Voltage 11th Harmonic % --- --- --- F4 R
050B 1W A-N Voltage 12th Harmonic % --- --- --- F4 R
050C 1W A-N Voltage 13th Harmonic % --- --- --- F4 R
050D 1W B-N Voltage 1st Harmonic % --- --- --- F4 R
050E 1W B-N Voltage 2nd Harmonic % --- --- --- F4 R
050F 1W B-N Voltage 3th Harmonic % --- --- --- F4 R
0510 1W B-N Voltage 4th Harmonic % --- --- --- F4 R
0511 1W B-N Voltage 5th Harmonic % --- --- --- F4 R
0512 1W B-N Voltage 6th Harmonic % --- --- --- F4 R
0513 1W B-N Voltage 7th Harmonic % --- --- --- F4 R
0514 1W B-N Voltage 8th Harmonic % --- --- --- F4 R
0515 1W B-N Voltage 9th Harmonic % --- --- --- F4 R
0516 1W B-N Voltage 10th Harmonic % --- --- --- F4 R
0517 1W B-N Voltage 11th Harmonic % --- --- --- F4 R
0518 1W B-N Voltage 12th Harmonic % --- --- --- F4 R
0519 1W B-N Voltage 13th Harmonic % --- --- --- F4 R
051A 1W C-N Voltage 1st Harmonic % --- --- --- F4 R
051B 1W C-N Voltage 2nd Harmonic % --- --- --- F4 R
051C 1W C-N Voltage 3th Harmonic % --- --- --- F4 R
051D 1W C-N Voltage 4th Harmonic % --- --- --- F4 R
051E 1W C-N Voltage 5th Harmonic % --- --- --- F4 R
051F 1W C-N Voltage 6th Harmonic % --- --- --- F4 R
0520 1W C-N Voltage 7th Harmonic % --- --- --- F4 R
0521 1W C-N Voltage 8th Harmonic % --- --- --- F4 R
0522 1W C-N Voltage 9th Harmonic % --- --- --- F4 R
0523 1W C-N Voltage 10th Harmonic % --- --- --- F4 R
0524 1W C-N Voltage 11th Harmonic % --- --- --- F4 R
0525 1W C-N Voltage 12th Harmonic % --- --- --- F4 R
0526 1W C-N Voltage 13th Harmonic % --- --- --- F4 R
0527 1W A-B Voltage 1st Harmonic % --- --- --- F4 R
0528 1W A-B Voltage 2nd Harmonic % --- --- --- F4 R
0529 1W A-B Voltage 3th Harmonic % --- --- --- F4 R
052A 1W A-B Voltage 4th Harmonic % --- --- --- F4 R
052B 1W A-B Voltage 5th Harmonic % --- --- --- F4 R
052C 1W A-B Voltage 6th Harmonic % --- --- --- F4 R
052D 1W A-B Voltage 7th Harmonic % --- --- --- F4 R
052E 1W A-B Voltage 8th Harmonic % --- --- --- F4 R
052F 1W A-B Voltage 9th Harmonic % --- --- --- F4 R
0530 1W A-B Voltage 10th Harmonic % --- --- --- F4 R
0531 1W A-B Voltage 11th Harmonic % --- --- --- F4 R
0532 1W A-B Voltage 12th Harmonic % --- --- --- F4 R
0533 1W A-B Voltage 13th Harmonic % --- --- --- F4 R
0534 1W B-C Voltage 1st Harmonic % --- --- --- F4 R
0535 1W B-C Voltage 2nd Harmonic % --- --- --- F4 R
0536 1W B-C Voltage 3th Harmonic % --- --- --- F4 R
0537 1W B-C Voltage 4th Harmonic % --- --- --- F4 R
0538 1W B-C Voltage 5th Harmonic % --- --- --- F4 R
0539 1W B-C Voltage 6th Harmonic % --- --- --- F4 R
053A 1W B-C Voltage 7th Harmonic % --- --- --- F4 R
053B 1W B-C Voltage 8th Harmonic % --- --- --- F4 R
053C 1W B-C Voltage 9th Harmonic % --- --- --- F4 R
053D 1W B-C Voltage 10th Harmonic % --- --- --- F4 R
053E 1W B-C Voltage 11th Harmonic % --- --- --- F4 R
053F 1W B-C Voltage 12th Harmonic % --- --- --- F4 R
0540 1W B-C Voltage 13th Harmonic % --- --- --- F4 R
0541 1W C-A Voltage 1st Harmonic % --- --- --- F4 R
0542 1W C-A Voltage 2nd Harmonic % --- --- --- F4 R
0543 1W C-A Voltage 3th Harmonic % --- --- --- F4 R
0544 1W C-A Voltage 4th Harmonic % --- --- --- F4 R
0545 1W C-A Voltage 5th Harmonic % --- --- --- F4 R
0546 1W C-A Voltage 6th Harmonic % --- --- --- F4 R
0547 1W C-A Voltage 7th Harmonic % --- --- --- F4 R
0548 1W C-A Voltage 8th Harmonic % --- --- --- F4 R
0549 1W C-A Voltage 9th Harmonic % --- --- --- F4 R
054A 1W C-A Voltage 10th Harmonic % --- --- --- F4 R
EVAR - MODBUS MEMORY MAP
Read/
Add (Hex) Type Size Description Unit Range Step Initial Value Format
Write
054B 1W C-A Voltage 11th Harmonic % --- --- --- F4 R
054C 1W C-A Voltage 12th Harmonic % --- --- --- F4 R
054D 1W C-A Voltage 13th Harmonic % --- --- --- F4 R
--- ---
0600 Events 1W Last Event Number --- --- --- --- F2 R
0601 3W Last Event Clear Date & Time --- --- --- --- F8 R
0610 1W Actual Event Number --- 1~65535 1 1 F2 R/W
0611 3W Actual Event Date & Time --- --- --- --- F8 R
15 14 13 10 9 5 4 0
2nd Not DAYS (1~31/30/29/28)
MONTH HOURS
Word Used (1~12) Depending on the Month & Year (00~23)
15 10 9 0
3th
MINUTES SECONDS
Word (00~59) (00.0~59.9)