0% found this document useful (0 votes)
193 views19 pages

(GIPAM3000) Protocol Mappinglist - Modbus - Tech Data - EN - 202010

(1) The document provides examples of MODBUS register read and write requests and responses. It describes using functions like 0x03 to read holding registers, 0x04 to read input registers, and 0x06 to write a single register. (2) It also gives an example of reading the device date and time using function 0x2B, and writing the date and time using function 0x2B. (3) Important details are provided on the maximum number of registers that can be read or written at once, and exception codes that can be returned for abnormal responses.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
193 views19 pages

(GIPAM3000) Protocol Mappinglist - Modbus - Tech Data - EN - 202010

(1) The document provides examples of MODBUS register read and write requests and responses. It describes using functions like 0x03 to read holding registers, 0x04 to read input registers, and 0x06 to write a single register. (2) It also gives an example of reading the device date and time using function 0x2B, and writing the date and time using function 0x2B. (3) Important details are provided on the maximum number of registers that can be read or written at once, and exception codes that can be returned for abnormal responses.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 19

MODBUS Examples

(1) 0x03 Read Holding Registers(40001 ~ ): Device setting and relay setting register
For Example) Request/Response frame to read 40001 to 40002 registers
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 03 Function 03
Starting Address Hi 00 Byte Count 04
Starting Address Lo 00 Register value Hi (40001) 42
Quantity of Regisgers Hi 00 Register value Lo (40001) DC
Quantity of Regisgers Lo 02 Register value Hi (40002) 00
CRC Lo - Register value Lo (40002) 00
CRC Hi - CRC Lo -
CRC Hi -

(2) 0x04 Read Input Registers(30001 ~ ): Status of many devices, device information and measurement registers
For Example) Request/Response frame to read 30001 to 30002 registers
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 04 Function 04
Starting Address Lo 00 Byte Count 04
Starting Address Lo 00 Register value Hi(30001) 00
Quantity of Registers Hi 00 Register value Lo(30001) 00
Quantity of Registers Lo 02 Register value Hi(30002) 00
CRC Lo - Register value Lo(30002) 00
CRC Hi - CRC Lo -
CRC Hi -

(3) 0x05 Write Single Coil: It is used to control one coil(0001~). 0xFF00 is ON, 0x0000 is OFF.
For Example) Request/Response frame executing ON command to 1106 register.
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 05 Function 05
Output Address Hi 04 Output Address Hi 04
Output Address Lo 51 Output Address Lo 51
Output Value Hi FF Output Value Hi FF
Output Value Lo 00 Output Value Lo 00
CRC Lo - CRC Lo -
CRC Hi - CRC Hi -

(4) 0x06 Write Single Register(40001 ~ ): Device setting and relay setting registers.
For Example) Request/Response frame to write 0x1234 to 40001 register.
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 06 Function 06
Register Address Hi 00 Register Address Hi 00
Register Address Lo 00 Register Address Lo 00
Register Value Hi 12 Register Value Hi 12
Register Value Lo 34 Register Value Lo 34
CRC Lo - CRC Lo -
CRC Hi - CRC Hi -
(5) 0x10 Write Multiple Registers(40001 ~ ): Device setting and relay setting, timesync registers.
For Example) Request/Response frame to write 0x42DC, 0x0000 to 40001~40002 register.
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 10 Function 10
Starting Address Hi 00 Starting Address Hi 00
Starting Address Lo 00 Starting Address Lo 00
Quantity of Regisgers Hi 00 Quantity of Regisgers Hi 00
Quantity of Regisgers Lo 02 Quantity of Regisgers Lo 02
Byte Count 04 CRC Lo -
Registers Value Hi 42 CRC Hi -
Registers Value Lo DC
Registers Value Hi 00
Registers Value Lo 00
CRC Lo -
CRC Hi -

(6) 0x2B/0x0F Read Date and Time: Used to read the current time of the device. (Function code adopted by our company (LS Electric))
For Example) Request/response frame when the current time of the device is November 22, 2018 15:45:30.123
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 2B Function 2B
Sub-function 0F Sub-function 0F
Reserved 00 Reserved 00
Reserved 00
Year (Base year: 2000) 12
Month 0B
Day 16
Hour 0F
Minute 2D
75
Millisecond
AB

(7) 0x2B/0x10 Write Date and Time: Used to write the current time of the device.(Function code adopted by our company (LS Electric))
For Example) Request/response frame when the current time of the device is November 22, 2018 15:45:30.123
Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 2B Function 2B
Sub-function 10 Sub-function 10
Reserved 00 Reserved 00
Reserved 00 Reserved 00
Year (Base year: 2000) 12 Year (Base year: 2000) 12
Month 0B Month 0B
Day 16 Day 16
Hour 0F Hour 0F
Minute 2D Minute 2D
75 75
Millisecond Millisecond
AB AB

<중요사항>
* MAX register read count : 125
(03h, 04h function): Up to 125 registers can be read at one time.

* MAX register write count : 123


(06h, 10h function): To write one register, use 06 function.
Use 10 function when writing multiple registers.
Write up to 123 registers at a time.

(8) Exception Codes


When the received response frame is abnormal or cannot be executed, the device responds with the following format frame.

Response
Field Name (Hex)
Slave Address USER
Function 0x80 + Function Code
Starting Address Hi Corresponding Exception Code
CRC Lo -
CRC Hi -

Ex) If Master tries to READ the 30501 Register under the condition where 30501 Register is not defined
at the register map, Slave device responses to it with ILLEGAL DATA ADDRESS(02).

Request Response
Field Name (Hex) Field Name (Hex)
Slave Address USER Slave Address USER
Function 04 Function 84
Starting Address Hi 01 Exception Code 02
Starting Address Lo F4 CRC Lo -
Quantity of Inputs Hi 00 CRC Hi -
Quantity of Inputs Lo 01
CRC Lo -
CRC Hi -
Exception Code (Hex) Name Description
01 ILLEGAL FUNCTION Unsupported Function Code request
02 ILLEGAL DATA ADDRESS Invalid Data Address request
03 ILLEGAL DATA VALUE Invalid Data Value write request
04 SERVER DEVICE FAILURE Abnormal condition of equipment(device)
Operate command that timed out after Select or
11 SBO TIMEOUT
Operate request without being selected
12 ILLEGAL ADU LENGTH ADU reception with invalid length
13 LOCAL MODE Write/control request in Local state
14 DEVICE NAK Inappropriate control content

(9) The communication response when the power fail state is lower than the device control power reference value is as follows.

Master 요청 Function Code GIPAM3000 Response


Read 0x03, 0x04 Normal response to the value before Power Fail
Write 0x06, 0x10, 0x2B/0x10 0x04 Exception error response
In case of Select, normal response, other 0x04 Exception
제어 0x05
error response
GIPAM3000-FI MODBUS Point Map
Ver 01.00
MODBUS REGISTER DESCRIPTION
DATA TYPE AUTHORITY REMARK RANGE UNIT FUNCTION CODE
TYPE ADDRESS NAME 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
COIL 0 CB#1 Close select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 1 CB#1 Close operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 2 CB#1 Open select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 3 CB#1 Open operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 4 CB#2 Close select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 5 CB#2 Close operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 6 CB#2 Open select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 7 CB#2 Open operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 8 Control Contact#01 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 9 Control Contact#01 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 10 Control Contact#02 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 11 Control Contact#02 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 12 Control Contact#03 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 13 Control Contact#03 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 14 Control Contact#04 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 15 Control Contact#04 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 16 Control Contact#05 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 17 Control Contact#05 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 18 Control Contact#06 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 19 Control Contact#06 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 20 Control Contact#07 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 21 Control Contact#07 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 22 Control Contact#08 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 23 Control Contact#08 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 24 Control Contact#09 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 25 Control Contact#09 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 26 Control Contact#10 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 27 Control Contact#10 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 28 Control Contact#11 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 29 Control Contact#11 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 30 Control Contact#12 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 31 Control Contact#12 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 32 Control Contact#13 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 33 Control Contact#13 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 34 Control Contact#14 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 35 Control Contact#14 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 36 Control Contact#15 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 37 Control Contact#15 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 38 Control Contact#16 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 39 Control Contact#16 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 40 Control Contact#17 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 41 Control Contact#17 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 42 Control Contact#18 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 43 Control Contact#18 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 44 Control Contact#19 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 45 Control Contact#19 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 46 Control Contact#20 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 47 Control Contact#20 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 48 Control Contact#21 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 49 Control Contact#21 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 50 Control Contact#22 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 51 Control Contact#22 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 52 Control Contact#23 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 53 Control Contact#23 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 54 Control Contact#24 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 55 Control Contact#24 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 56 Control Contact#25 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 57 Control Contact#25 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 58 Control Contact#26 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 59 Control Contact#26 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 60 Control Contact#27 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 61 Control Contact#27 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 62 Control Contact#28 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 63 Control Contact#28 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 64 Control Contact#29 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 65 Control Contact#29 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 66 Control Contact#30 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 67 Control Contact#30 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 68 Control Contact#31 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 69 Control Contact#31 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 70 Control Contact#32 Pulse-out select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 71 Control Contact#32 Pulse-out operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 1000 Fault Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1001 Energy Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1002 Event Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1003 Fault Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1004 Demand Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1005 Inct Max Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1006 Vgpt, 3V0 Max Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1007 Thermal Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1008 All Data Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1009 CB#1 operation count reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1010 CB#2 operation count reset NONE REMOTE 0xFF00: Execution 0x05
INPUT 0 Controlled status(Remote/Local status) UINT16 NONE 0x5555: Remote, 0xAAAA: Local 0x04
INPUT 1 DI status #1 UINT16 NONE DI#01 DI#02 DI#03 DI#04 DI#05 DI#06 DI#07 DI#08 DI#09 DI#10 DI#11 DI#12 DI#13 DI#14 DI#15 DI#16 0x04
INPUT 2 DI status #2 UINT16 NONE DI#17 DI#18 DI#19 DI#20 0x04
INPUT 3 DO status #1 UINT16 NONE CB1OPEN CB2OPENCB1CLOSECB2CLOSE DO#01 DO#02 DO#03 DO#04 DO#05 DO#06 DO#07 DO#08 DO#09 DO#10 DO#11 DO#12 0x04
INPUT 4 DO status #2 UINT16 NONE DO#13 DO#14 DO#15 DO#16 DO#17 0x04
INPUT 5 OP status #1 UINT16 NONE 67ND 67NI 51LR 49 51S 67G 46_#1 64_#1 59_#1_A 59_#1_B 59_#1_C 59R 37_#1_A 37_#1_B 37_#1_C 0: Reset, 1: Op 0x04
INPUT 6 OP status #2 UINT16 NONE 27_#1_A 27_#1_B 27_#1_C 27R 37P_#1 32P_#1 47P_#1 47N_#1 51N_#1 50N_#1 51_#1_A 51_#1_B 51_#1_C 50_#1_A 50_#1_B 50_#1_C 0: Reset, 1: Op 0x04
INPUT 7 OP status #3 UINT16 NONE 32Q_#1_A 32Q_#1_B 32Q_#1_C 32Q_#2_A 32Q_#2_B 32Q_#2_C 46_#2 64_#2 59_#2_A 59_#2_B 59_#2_C 37_#2_A 37_#2_B 37_#2_C 0: Reset, 1: Op 0x04
INPUT 8 OP status #4 UINT16 NONE 27_#2_A 27_#2_B 27_#2_C 37P_#2 32P_#2 47P_#2 47N_#2 51N_#2 50N_#2 51_#2_A 51_#2_B 51_#2_C 50_#2_A 50_#2_B 50_#2_C 0: Reset, 1: Op 0x04
INPUT 9 OP status #5 UINT16 NONE 67I_#1_A 67I_#1_B 67I_#1_C 67I_#2_A 67I_#2_B 67I_#2_C 67D_#1_A 67D_#1_B 67D_#1_C 67D_#2_A 67D_#2_B 67D_#2_C 81R_#1 81R_#2 81R_#3 81R_#4 0: Reset, 1: Op 0x04
INPUT 10 OP status #6 UINT16 NONE 48 60F 50BF 66 81O_#1 81O_#2 81O_#3 81O_#4 81U_#1 81U_#2 81U_#3 81U_#4 0: Reset, 1: Op 0x04
INPUT 11 Pick-up status #1 UINT16 NONE 49_Alarm 67ND 67NI 51LR_#1 49 51S 67G 46_#1 64_#1 59_#1_A 59_#1_B 59_#1_C 59R 37_#1_A 37_#1_B 37_#1_C 0: Reset, 1: Pick-up 0x04
INPUT 12 Pick-up status #2 UINT16 NONE 27_#1_A 27_#1_B 27_#1_C 27R 37P_#1 32P_#1 47P_#1 47N_#1 51N_#1 50N_#1 51_#1_A 51_#1_B 51_#1_C 50_#1_A 50_#1_B 50_#1_C 0: Reset, 1: Pick-up 0x04
INPUT 13 Pick-up status #3 UINT16 NONE 32Q_#1_A 32Q_#1_B 32Q_#1_C 32Q_#2_A 32Q_#2_B 32Q_#2_C 46_#2 64_#2 59_#2_A 59_#2_B 59_#2_C 37_#2_A 37_#2_B 37_#2_C 0: Reset, 1: Pick-up 0x04
INPUT 14 Pick-up status #4 UINT16 NONE 27_#2_A 27_#2_B 27_#2_C 37P_#2 32P_#2 47P_#2 47N_#2 51N_#2 50N_#2 51_#2_A 51_#2_B 51_#2_C 50_#2_A 50_#2_B 50_#2_C 0: Reset, 1: Pick-up 0x04
INPUT 15 Pick-up status #5 UINT16 NONE 67I_#1_A 67I_#1_B 67I_#1_C 67I_#2_A 67I_#2_B 67I_#2_C 67D_#1_A 67D_#1_B 67D_#1_C 67D_#2_A 67D_#2_B 67D_#2_C 81R_#1 81R_#2 81R_#3 81R_#4 0: Reset, 1: Pick-up 0x04
INPUT 16 Pick-up status #6 UINT16 NONE 48 81O_#1 81O_#2 81O_#3 81O_#4 81U_#1 81U_#2 81U_#3 81U_#4 0: Reset, 1: Pick-up 0x04
INPUT 17 VO status #1 UINT16 NONE VO#01 VO#02 VO#03 VO#04 VO#05 VO#06 VO#07 VO#08 VO#09 VO#10 VO#11 VO#12 VO#13 VO#14 VO#15 VO#16 0x04
INPUT 18 VO status #2 UINT16 NONE VO#17 VO#18 VO#19 VO#20 VO#21 VO#22 VO#23 VO#24 VO#25 VO#26 VO#27 VO#28 VO#29 VO#30 VO#31 VO#32 0x04
INPUT 19 PQ status UINT16 NONE Intr_A Intr_B Intr_C Swell_A Swell_B Swell_C Sag_A Sag_B Sag_C 0x04
INPUT 20 CLP status UINT16 NONE 0x5555: Not, 0xAAAA: Operation 0x04
INPUT 21 동기검출 계전status(25) UINT16 NONE 0x5555: Not, 0xAAAA: Sync 0x04
INPUT 22 재폐로 계전status(79) UINT16 NONE 1: Ready, 2: In Progress, 3: Successful, 10: Unsuccessful, 11: Aborted, 20: Waiting for ready 0x04
INPUT 23 CB#1 status UINT16 NONE 0x00: Intermediate-state, 0x40: Open, 0x80: Close, 0xC0: Bad-state 0x04
INPUT 24 CB#2 status UINT16 NONE 0x00: Intermediate-state, 0x40: Open, 0x80: Close, 0xC0: Bad-state 0x04
INPUT 25 TCS status: CB#1 UINT16 NONE 0: Unknown, 0x5555: Not Good, 0xAAAA: Good 0x04
INPUT 26 TCS status: CB#2 UINT16 NONE 0: Unknown, 0x5555: Not Good, 0xAAAA: Good 0x04
INPUT 27 TRS status: CB#1 UINT16 NONE 0: Unknown, 0x5555: Not Good, 0xAAAA: Good 0x04
INPUT 28 TRS status: CB#2 UINT16 NONE 0: Unknown, 0x5555: Not Good, 0xAAAA: Good 0x04
INPUT 29 Self-diagnosis error status UINT16 NONE 0x5555: steady state, 0xAAAA: Self-diagnosis error occurred 0x04
INPUT 30 Equipment power status UINT16 NONE 0x5555: steady state, 0xAAAA: Power Fail status 0x04
INPUT 31 Fault status UINT16 NONE 0x5555: steady state, 0xAAAA: Operation status of relay element(Latched OP) 0x04
INPUT 32 Number of CB#1 operations UINT16 NONE 0 ~ 65535 0x04
INPUT 33 Number of CB#2 operations UINT16 NONE 0 ~ 65535 0x04
INPUT 34 Equipment operating time UINT32 NONE 0~2
32
-1 hour 0x04
INPUT 36 CB#1 energizing time UINT32 NONE 0~2 32
-1 hour 0x04
INPUT 38 CB#2 energizing time UINT32 NONE 0~2
32
-1 hour 0x04
INPUT 40 Total active power Peak Demand time(P3Φ) UINT32 NONE Value obtained by converting the elapsed time from 00:00:00 January 1, 1970 in seconds - sec 0x04
INPUT 42 Total reactive power Peak Demand time(Q3Φ) UINT32 NONE Value obtained by converting the elapsed time from 00:00:00 January 1, 1970 in seconds - sec 0x04
INPUT 44 Three-phase current Peak Demand time(I3Φ) UINT32 NONE Value obtained by converting the elapsed time from 00:00:00 January 1, 1970 in seconds - sec 0x04
INPUT 46 Total active power Over Demand time(P3Φ) UINT32 NONE Value obtained by converting the elapsed time from 00:00:00 January 1, 1970 in seconds - sec 0x04
INPUT 48 Total reactive power Over Demand time(Q3Φ) UINT32 NONE Value obtained by converting the elapsed time from 00:00:00 January 1, 1970 in seconds - sec 0x04
INPUT 50 Three-phase current Over Demand time(I3Φ) UINT32 NONE Value obtained by converting the elapsed time from 00:00:00 January 1, 1970 in seconds - sec 0x04
INPUT 1000 Van FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1002 Vbn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1004 Vcn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1006 Vab FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1008 Vbc FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1010 Vca FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1012 Vgpt (PT#4) FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1014 Vaux (PT#5) FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1016 Ia FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1018 Ib FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1020 Ic FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1022 Inct (CT#4) FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1024 Izct (CT#5) FLOAT NONE 0.000 ~ 999.999 A 0x04
INPUT 1026 3V0 FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1028 V1 FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1030 V2 FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1032 Vub FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1034 I0 FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1036 I1 FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1038 I2 FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1040 Van Frequency (PT#1) FLOAT NONE 0.000 ~ 78.000 Hz 0x04
INPUT 1042 Vaux Frequency (PT#5) FLOAT NONE 0.000 ~ 78.000 Hz 0x04
INPUT 1044 S3Φ (Three-Phase Apparent Power) FLOAT NONE 0.000 ~ 9999.999M VA 0x04
INPUT 1046 P3Φ (Three-Phase Active Power) FLOAT NONE (+): Forward, (-): Reverse -9999.999M ~ +9999.999M W 0x04
INPUT 1048 Q3Φ (Three-Phase Reactive Power) FLOAT NONE (+): Forward, (-): Reverse -9999.999M ~ +9999.999M VAr 0x04
INPUT 1050 PF3Φ FLOAT NONE The sign is displayed differently according to the display setting of the sign of the power factor. -1.000 ~ +1.000 0x04
INPUT 1052 S TotVAh FLOAT NONE 0.000 ~ 99.999G VAh 0x04
INPUT 1054 P TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 1056 rP TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 1058 Q TotVArh FLOAT NONE 0.000 ~ 99.999G VArh 0x04
INPUT 1060 rQ TotVArh FLOAT NONE 0.000 ~ 99.999G VArh 0x04
INPUT 1062 %Q (Themal) FLOAT NONE 0.00 ~ 150.00% % 0x04
INPUT 1064 Angle _ ∠Van FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1066 Angle _ ∠Vbn FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1068 Angle _ ∠Vcn FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1070 Angle _ ∠Vab FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1072 Angle _ ∠Vbc FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1074 Angle _ ∠Vca FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1076 Angle _ ∠Ia (CT#1) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1078 Angle _ ∠Ib (CT#2) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1080 Angle _ ∠Ic (CT#3) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1082 Angle _ ∠Vgpt (PT#4) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1084 Angle _ ∠Vaux (PT#5) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1086 Angle _ ∠Inct (CT#4) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1088 Angle _ ∠Izct (CT#5) FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1090 Angle _ ∠3V0 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1092 Angle _ ∠V1 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1094 Angle _ ∠V2 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1096 Angle _ ∠I0 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1098 Angle _ ∠I1 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1100 Angle _ ∠I2 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1102 Phase difference ∠Inct - ∠Vgpt FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1104 Phase difference ∠Izct - ∠Vgpt FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1106 Phase difference ∠Inct - ∠3V0 FLOAT NONE -180 ~ 180 ° 0x04
INPUT 1108 Total active power Peak Demand(P3Φ) FLOAT NONE 1 ~ 99.999M W 0x04
INPUT 1110 Total reactive power Peak Demand(Q3Φ) FLOAT NONE 1 ~ 99.999M VAr 0x04
INPUT 1112 Three-phase current Peak Demand(I3Φ) FLOAT NONE 1 ~ 999.999k A 0x04
INPUT 1114 Total active power Over Demand(P3Φ) FLOAT NONE 1 ~ 99.999M W 0x04
INPUT 1116 Total reactive power Over Demand(Q3Φ) FLOAT NONE 1 ~ 99.999M VAr 0x04
INPUT 1118 Three-phase current Over Demand(I3Φ) FLOAT NONE 1 ~ 999.999k A 0x04
INPUT 1120 Sa FLOAT NONE 0.000 ~ 9999.999M VA 0x04
INPUT 1122 Sb FLOAT NONE 0.000 ~ 9999.999M VA 0x04
INPUT 1124 Sc FLOAT NONE 0.000 ~ 9999.999M VA 0x04
INPUT 1126 Pa FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 1128 Pb FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 1130 Pc FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 1132 Qa FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 1134 Qb FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 1136 Qc FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 1138 PFa FLOAT NONE -1.000 ~ +1.000 0x04
INPUT 1140 PFb FLOAT NONE -1.000 ~ +1.000 0x04
INPUT 1142 PFc FLOAT NONE -1.000 ~ +1.000 0x04
INPUT 1144 MAX Vgpt FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1146 MAX 3V0 FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 1148 MAX Inct FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 1150 THD Va FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1152 THD Vb FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1154 THD Vc FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1156 THD Ia FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1158 THD Ib FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1160 THD Ic FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1162 THD Vab FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1164 THD Vbc FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1166 THD Vca FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1168 TDD Ia FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1170 TDD Ib FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1172 TDD Ic FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1174 K-factor Ia FLOAT NONE 0.00 ~ 999.99 0x04
INPUT 1176 K-factor Ib FLOAT NONE 0.00 ~ 999.99 0x04
INPUT 1178 K-factor Ic FLOAT NONE 0.00 ~ 999.99 0x04
INPUT 1180 Va 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1182 Va 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1184 Va 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1186 Va 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1188 Va 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1190 Va 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1192 Va 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1194 Va 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1196 Va 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1198 Va 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1200 Va 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1202 Va 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1204 Vb 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1206 Vb 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1208 Vb 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1210 Vb 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1212 Vb 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1214 Vb 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1216 Vb 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1218 Vb 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1220 Vb 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1222 Vb 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1224 Vb 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1226 Vb 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1228 Vc 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1230 Vc 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1232 Vc 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1234 Vc 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1236 Vc 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1238 Vc 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1240 Vc 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1242 Vc 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1244 Vc 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1246 Vc 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1248 Vc 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1250 Vc 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1252 Ia 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1254 Ia 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1256 Ia 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1258 Ia 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1260 Ia 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1262 Ia 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1264 Ia 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1266 Ia 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1268 Ia 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1270 Ia 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1272 Ia 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1274 Ia 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1276 Ib 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1278 Ib 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1280 Ib 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1282 Ib 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1284 Ib 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1286 Ib 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1288 Ib 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1290 Ib 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1292 Ib 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1294 Ib 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1296 Ib 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1298 Ib 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1300 Ic 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1302 Ic 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1304 Ic 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1306 Ic 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1308 Ic 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1310 Ic 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1312 Ic 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1314 Ic 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1316 Ic 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1318 Ic 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1320 Ic 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1322 Ic 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1324 Vab 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1326 Vab 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1328 Vab 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1330 Vab 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1332 Vab 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1334 Vab 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1336 Vab 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1338 Vab 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1340 Vab 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1342 Vab 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1344 Vab 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1346 Vab 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1348 Vbc 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1350 Vbc 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1352 Vbc 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1354 Vbc 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1356 Vbc 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1358 Vbc 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1360 Vbc 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1362 Vbc 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1364 Vbc 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1366 Vbc 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1368 Vbc 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1370 Vbc 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1372 Vca 2nd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1374 Vca 3rd Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1376 Vca 4th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1378 Vca 5th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1380 Vca 6th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1382 Vca 7th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1384 Vca 8th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1386 Vca 9th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1388 Vca 10th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1390 Vca 11th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1392 Vca 12th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1394 Vca 13th Harmonic Value FLOAT NONE 0.00 ~ 100.00 % 0x04
HOLDING 0 PT Ratio: Primary FLOAT NONE 55 ~ 999.999k V 0x03
HOLDING 2 PT Ratio: Secondary FLOAT NONE 55 ~ 125 V 0x03
HOLDING 4 CT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 6 NCT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 6000 Timesync: year UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 2017 year: 0x2017 0x2000 ~ 0x2099 0x10
HOLDING 6001 Timesync: Month UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 9 month: 0x0009 0x0001 ~ 0x0012 0x10
HOLDING 6002 Timesync: day UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 25 day: 0x0025 0x0001 ~ 0x0031 0x10
Time synchronization requires
HOLDING 6003 Timesync: hour UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 14 hour: 0x0014 0x0000 ~ 0x0023 0x10
7 words to be written at once.
HOLDING 6004 Timesync: minute UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 47 minute: 0x0047 0x0000 ~ 0x0059 0x10
HOLDING 6005 Timesync: second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 44 second: 0x0044 0x0000 ~ 0x0059 0x10
HOLDING 6006 Timesync: milli second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 514 mill second: 0x0514 0x0000 ~ 0x0999 0x10
GIPAM2000-FI/M MODBUS Point Map
Ver 01.01
MODBUS REGISTER DESCRIPTION
DATA TYPE AUTHORITY REMARK RANGE UNIT FUNCTION CODE
TYPE ADDRESS NAME 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
COIL 0 CB#1 Close select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 1 CB#1 Close operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 2 CB#1 Open select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 3 CB#1 Open operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 4 CB#2 Close select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 5 CB#2 Close operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 6 CB#2 Open select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 7 CB#2 Open operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 8 Control Contact#01 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 9 Control Contact#01 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 12 Control Contact#02 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 13 Control Contact#02 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 16 Control Contact#03 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 17 Control Contact#03 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 20 Control Contact#04 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 21 Control Contact#04 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 24 Control Contact#05 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 25 Control Contact#05 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 28 Control Contact#06 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 29 Control Contact#06 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 32 Control Contact#07 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 33 Control Contact#07 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 36 Control Contact#08 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 37 Control Contact#08 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 1000 Fault Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1001 Energy Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1002 Event Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1003 Fault Record Clear NONE REMOTE 0xFF00: Execution 0x05
INPUT 0 DI status #1 UINT16 NONE DI#01 DI#02 DI#03
DI#04 DI#05 DI#06 DI#07 DI#08 DI#09 DI#10 DI#11 DI#12 DI#13 DI#14 DI#15 DI#16 0x04
INPUT 1 DI status #2 UINT16 NONE DI#17 DI#18 DI#19
DI#20 *R/L **F/R *R/L - 0: Local, 1: Remote, **F/R(Power factor) - 0: Forward, 1: 0x04
INPUT 2 DO status #1 UINT16 NONE DO#01 DO#02 DO#17
DO#16 DO#15 DO#14 DO#13 DO#12 DO#11 DO#10 DO#09 DO#08 CB1OPENCB1CLOSECB2OPENCB2CLOSE 0x04
INPUT 3 DO status #2 UINT16 NONE DO#04 DO#05 DO#06 DO#03 0x04
INPUT 4 OP status #1 UINT16 NONE 67ND 48/51LR 49 67G 46 64 59_A 59_B 59_C 0: Reset, 1: OP(Latch) 0x04
INPUT 5 OP status #2 UINT16 NONE 27_#1_A 27_#1_B 27_#1_C 27R 47P_#1 47N_#1 51N 50N 51_A 51_B 51_C 50_A 50_B 50_C 0: Reset, 1: OP(Latch) 0x04
INPUT 6 Van FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 8 Vbn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 10 Vcn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 12 Vab FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 14 Vbc FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 16 Vca FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 18 Vgpt (PT#4) FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 20 Ia FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 22 Ib FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 24 Ic FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 26 Inct or Izct (CT#4 or CT#5) FLOAT NONE Izct if SGR or SEF setting is USE. Other Inct 0.000 ~ 999.999k A 0x04
INPUT 28 Vaux (PT#5) FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 30 V2 FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 32 I2 FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 34 Van Frequency (PT#1) FLOAT NONE 0.000 ~ 78.000 Hz 0x04
INPUT 36 S3Φ (Three-Phase Apparent Power) FLOAT NONE 0.000 ~ 9999.999M VA 0x04
INPUT 38 P3Φ (Three-Phase Active Power) FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 40 Q3Φ (Three-Phase Reactive Power) FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 42 rP3Φ (Three-Phase Reverse Active Power) FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 44 rQ3Φ (Three-Phase Reverse Reactive Power) FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 46 PF3Φ FLOAT NONE -1.000 ~ +1.000 - 0x04
INPUT 48 P TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 50 Q TotVArh FLOAT NONE 0.000 ~ 99.999G VArh 0x04
INPUT 52 rP TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 54 %Q FLOAT NONE 0.00 ~ 150.00% % 0x04
INPUT 56 Reserved - - 0 ~ 360 ° 0x04
INPUT 57 Reserved - - 0 ~ 360 ° 0x04
INPUT 58 Reserved - - 0 ~ 360 ° 0x04
INPUT 59 Reserved - - 0 ~ 360 ° 0x04
INPUT 60 Reserved - - 0 ~ 360 ° 0x04
INPUT 61 Reserved - - 0 ~ 360 ° 0x04
INPUT 62 Reserved - - 0 ~ 360 ° 0x04
INPUT 63 Reserved - - 0 ~ 360 ° 0x04
INPUT 64 Reserved - - 0 ~ 360 ° 0x04
INPUT 65 Reserved - - 0 ~ 360 ° 0x04
INPUT 66 Reserved - - 0 ~ 360 ° 0x04
INPUT 67 Reserved - - 0 ~ 360 ° 0x04
INPUT 68 Reserved - - 0 ~ 360 ° 0x04
INPUT 69 Reserved - - 0 ~ 360 ° 0x04
INPUT 70 Reserved - - 0 ~ 360 ° 0x04
INPUT 71 Reserved - - 0 ~ 360 ° 0x04
INPUT 72 Reserved - -
INPUT 73 Reserved - -
INPUT 74 Reserved - -
INPUT 75 Reserved - -
INPUT 76 Reserved - -
INPUT 77 Reserved - -
INPUT 78 Reserved - - 0 ~ 360 ° 0x04
INPUT 79 Reserved - - 0 ~ 360 ° 0x04
INPUT 80 Reserved - - 0 ~ 360 ° 0x04
INPUT 81 Reserved - - 0 ~ 360 ° 0x04
INPUT 82 Reserved - - 0 ~ 360 ° 0x04
INPUT 83 Reserved - - 0 ~ 360 ° 0x04
INPUT 84 Reserved - - 0 ~ 360 ° 0x04
INPUT 85 Reserved - - 0 ~ 360 ° 0x04
INPUT 86 Reserved - - 0 ~ 360 ° 0x04
INPUT 87 Reserved - - 0 ~ 360 ° 0x04
INPUT 88 Reserved - - 0 ~ 360 ° 0x04
INPUT 89 Reserved - - 0 ~ 360 ° 0x04
INPUT 90 Reserved - - 0 ~ 360 ° 0x04
INPUT 91 Reserved - - 0 ~ 360 ° 0x04
INPUT 92 Reserved - - 0 ~ 360 ° 0x04
INPUT 93 Reserved - - 0 ~ 360 ° 0x04
INPUT 94 Reserved - -
INPUT 95 Reserved - -
INPUT 96 Reserved - -
INPUT 97 Reserved - -
INPUT 98 Reserved - -
INPUT 99 Reserved - -
INPUT 100 THD Va FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 102 THD Vb FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 104 THD Vc FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 106 Reserved - -
INPUT 107 Reserved - -
INPUT 108 THD Ia FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 110 THD Ib FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 112 THD Ic FLOAT NONE 0.00 ~ 100.00 % 0x04
INPUT 1000 Total active power Peak Demand time(P3Φ) UINT32 NONE From MSB, it is divided into year (6bit), month (4bit), work (5bit), city (5bit), minute (6bit), second (6bit). 0x04
INPUT 1002 Total reactive power Peak Demand time(Q3Φ) UINT32 NONE From MSB, it is divided into year (6bit), month (4bit), work (5bit), city (5bit), minute (6bit), second (6bit). 0x04
INPUT 1004 Three-phase current Peak Demand time(I3Φ) UINT32 NONE From MSB, it is divided into year (6bit), month (4bit), work (5bit), city (5bit), minute (6bit), second (6bit). 0x04
INPUT 1006 Reserved - -
INPUT 1007 Reserved - -
INPUT 1008 Reserved - -
INPUT 1009 Reserved - -
INPUT 1010 Reserved - -
INPUT 1011 Reserved - -
INPUT 1012 Total active power Over Demand time(P3Φ) UINT32 NONE From MSB, it is divided into year (6bit), month (4bit), work (5bit), city (5bit), minute (6bit), second (6bit). 0x04
INPUT 1014 Total reactive power Over Demand time(Q3Φ) UINT32 NONE From MSB, it is divided into year (6bit), month (4bit), work (5bit), city (5bit), minute (6bit), second (6bit). 0x04
INPUT 1016 Three-phase current Over Demand time(I3Φ) UINT32 NONE From MSB, it is divided into year (6bit), month (4bit), work (5bit), city (5bit), minute (6bit), second (6bit). 0x04
HOLDING 0 PT Ratio: Primary FLOAT NONE 55 ~ 999.999k V 0x03
HOLDING 2 PT Ratio: Secondary FLOAT NONE 55 ~ 125 V 0x03
HOLDING 4 CT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 6 CT Ratio: Secondary FLOAT NONE 5 (Fixed value) A 0x03
HOLDING 8 NCT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 10 NCT Ratio: Secondary FLOAT NONE 5 (Fixed value) A 0x03
HOLDING 500 MAX Vgpt FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 9999.999k V 0x03, 0x10
HOLDING 502 MAX Inct FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 999.999k A 0x03, 0x10
HOLDING 504 P TotWh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 506 Q TotVArh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G VArh 0x03, 0x10
HOLDING 508 rP TotWh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 510 Total active power Peak Demand(P3Φ) FLOAT NONE A value of 0 is written at initialization(RESET, Delete demand 1 ~ 99.999M W 0x03, 0x10
HOLDING 512 Total reactive power Peak Demand(Q3Φ) FLOAT NONE A value of 0 is written at initialization(RESET, Delete demand 1 ~ 99.999M VAr 0x03, 0x10
HOLDING 514 Three-phase current Peak Demand(I3Φ) FLOAT NONE A value of 0 is written at initialization(RESET, Delete demand 1 ~ 999.999k A 0x03, 0x10
HOLDING 516 Total active power Over Demand(P3Φ) FLOAT NONE A value of 0 is written at initialization(RESET, Delete demand 1 ~ 99.999M W 0x03, 0x10
HOLDING 518 Total reactive power Over Demand(Q3Φ) FLOAT NONE A value of 0 is written at initialization(RESET, Delete demand 1 ~ 99.999M VAr 0x03, 0x10
HOLDING 520 Three-phase current Over Demand(I3Φ) FLOAT NONE A value of 0 is written at initialization(RESET, Delete demand 1 ~ 999.999k A 0x03, 0x10
HOLDING 1000 Equipment operating time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 sec 0x03, 0x10
HOLDING 1002 CB#1 energizing time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 1004 CB#2 energizing time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 3000 Number of CB#1 operations UINT16 NONE 0 ~ 65535 0x03, 0x06, 0x10
HOLDING 3001 Number of CB#2 operations UINT16 NONE 0 ~ 65535 0x03, 0x06, 0x10
HOLDING 6000 Timesync: year UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 2017 year: 0x2017 0x2000 ~ 0x2099 0x10
HOLDING 6001 Timesync: month UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 9 month: 0x0009 0x0001 ~ 0x0012 0x10
HOLDING 6002 Timesync: day UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 25 day: 0x0025 0x0001 ~ 0x0031 0x10
Time synchronization requires
HOLDING 6003 Timesync: hour UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 14 hour: 0x0014 0x0000 ~ 0x0023 0x10
7 words to be written at once.
HOLDING 6004 Timesync: minute UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 47 minute: 0x0047 0x0000 ~ 0x0059 0x10
Time synchronization requires
7 words to be written at once.

HOLDING 6005 Timesync: second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 44 second: 0x0044 0x0000 ~ 0x0059 0x10
HOLDING 6006 Timesync: milli second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 514 mill second: 0x0514 0x0000 ~ 0x0999 0x10
HOLDING 6010 Timesync: year UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 2017 year: 0x2017 0x2000 ~ 0x2099 0x10
HOLDING 6011 Timesync: Month/Day UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 9 month 25day: 0x0925 Time synchronization requires 4 words to be written at a time or 0x0101 ~ 0x1231 0x10
HOLDING 6012 Timesync: hour/minute UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 14 hour 47minute: 0x1447 write 2 words continuously within 5 seconds. 0x0000 ~ 0x2359 0x10
HOLDING 6013 Timesync: second/milli second UINT16 BOTH Unsigned int used. For exemple) 44second 514mill second: 44514 0~ 59999 0x10
GIPAM2200-FN/FZ MODBUS Point Map
Ver 01.00
MODBUS REGISTER DESCRIPTION
DATA TYPE AUTHORITY DATA TYPE AUTHORITY REMARK RANGE UNIT FUNCTION CODE
TYPE ADDRESS NAME 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
COIL 0 CB#1 Close select NONE REMOTE 0xFF00: Execution NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 1 CB#1 Close operate NONE REMOTE 0xFF00: Execution NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 2 CB#1 Open select NONE REMOTE 0xFF00: Execution NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 3 CB#1 Open operate NONE REMOTE 0xFF00: Execution NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 4 Control Contact#01 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 5 Control Contact#01 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 8 Control Contact#02 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 9 Control Contact#02 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 12 Control Contact#03 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 13 Control Contact#03 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 16 Control Contact#04 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 17 Control Contact#04 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. NONE REMOTE SBO Timeout: Fixed at 5 seconds 0x05
COIL 1000 Fault Reset NONE REMOTE 0xFF00: Execution NONE REMOTE 0x05
COIL 1001 Energy Reset NONE REMOTE 0xFF00: Execution NONE REMOTE 0x05
COIL 1002 Event Record Clear NONE REMOTE 0xFF00: Execution NONE REMOTE 0x05
COIL 1003 Fault Record/Value/Wave Reset NONE REMOTE 0xFF00: Execution NONE REMOTE 0x05
COIL 1004 All Data Clear NONE REMOTE 0xFF00: Execution NONE REMOTE 0x05
INPUT 0 DI status UINT16 NONE Pick up **TimeSync DiagErr P/F *R/L DI#06 DI#05 DI#04 DI#03 DI#02 DI#01 UINT16 NONE *R/L - 0: Local, 1: Remote, **TimeSync - 1: Not Sync 0x04
INPUT 1 DO status UINT16 NONE DO#09 DO#08 DO#07 DO#06 DO#05 DO#04 DO#03
DO#02 DO#01 UINT16 NONE 0x04
INPUT 2 OP status #1 UINT16 NONE CBF(50BF) 27_#1_C 27_#1_B 27_#1_A UINT16 NONE 0x04
INPUT 3 OP status #2 UINT16 NONE 64_#1 64_#2 67G 67ND 50N_#1 50N_#2 51N_#1 50_#1_C 50_#1_B 50_#1_A 50_#2_C 50_#2_B 50_#2_A 51_#1_C 51_#1_B 51_#1_A UINT16 NONE 0x04
INPUT 4 OP status #3 UINT16 NONE PTF(60F) CBF(50BF) 46_#1 UINT16 NONE 0x04
INPUT 5 OP status #4 UINT16 NONE 46_#2 66 37_#1_C 37_#1_B 37_#1_A 51LR 48 49 59_#1_C 59_#1_B 59_#1_A 59_#2_C 59_#2_B 59_#2_A 47N_#1 47N_#2 UINT16 NONE 0x04
INPUT 6 Van FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 8 Vbn FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 10 Vcn FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 12 Vab FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 14 Vbc FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 16 Vca FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 18 Vgpt (PT#4) FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 20 Ia FLOAT NONE FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 22 Ib FLOAT NONE FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 24 Ic FLOAT NONE FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 26 Inct or Izct (CT#4 or CT#5) FLOAT NONE FLOAT NONE Izct if SGR or SEF setting is USE. Other Inct 0.000 ~ 999.999k A 0x04
INPUT 28 Inct max FLOAT NONE FLOAT NONE Not available if 2200FZ 0.000 ~ 9999.999k A 0x04
INPUT 30 V2 FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 32 I2 FLOAT NONE FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 34 Van Frequency (PT#1) FLOAT NONE FLOAT NONE 0.000 ~ 78.000 Hz 0x04
INPUT 36 Vgpt max FLOAT NONE FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 38 P3Φ (Three-Phase Active Power) FLOAT NONE FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 40 Q3Φ (Three-Phase Reactive Power) FLOAT NONE FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 42 rP3Φ (Three-Phase Reverse Active Power) FLOAT NONE FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 44 rQ3Φ (Three-Phase Reverse Reactive Power) FLOAT NONE FLOAT NONE -9999.999M ~ +9999.999M VAr 0x04
INPUT 46 PF3Φ FLOAT NONE FLOAT NONE -1.000 ~ +1.000 - 0x04
INPUT 48 P TotWh FLOAT NONE FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 50 Q TotVArh FLOAT NONE FLOAT NONE 0.000 ~ 99.999G VArh 0x04
INPUT 52 rP TotWh FLOAT NONE FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 54 %Q FLOAT NONE FLOAT NONE 0.00 ~ 150.00% % 0x04
HOLDING 0 CT Ratio: Primary FLOAT NONE FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 2 PT Ratio: Primary FLOAT NONE FLOAT NONE 55 ~ 999.999k V 0x03
HOLDING 4 NCT Ratio: Primary FLOAT NONE FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 6 NCT Ratio: Secondary FLOAT NONE FLOAT NONE 5 (Fixed value) A 0x03
HOLDING 500 MAX Vgpt FLOAT NONE FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 9999.999k V 0x03, 0x10
HOLDING 502 MAX Inct FLOAT NONE FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 999.999k A 0x03, 0x10
HOLDING 504 P TotWh FLOAT NONE FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 506 Q TotVArh FLOAT NONE FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G VArh 0x03, 0x10
HOLDING 508 rP TotWh FLOAT NONE FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 1000 Equipment operating time UINT32 NONE UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 1002 CB#1 energizing time UINT32 NONE UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 3000 Number of CB#1 operations UINT16 NONE UINT16 NONE A value of 0 is written at initialization(RESET). 0 ~ 65535 0x03, 0x06, 0x10
HOLDING 6000 Timesync: year UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 2017 year: 0x2017 UINT16 BOTH 0x2000 ~ 0x2099 0x10
HOLDING 6001 Timesync: month UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 9 month: 0x0009 UINT16 BOTH 0x0001 ~ 0x0012 0x10
HOLDING 6002 Timesync: day UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 25 day: 0x0025 UINT16 BOTH 0x0001 ~ 0x0031 0x10
Time synchronization requires
HOLDING 6003 Timesync: hour UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 14 hour: 0x0014 UINT16 BOTH 0x0000 ~ 0x0023 0x10
7 words to be written at once.
HOLDING 6004 Timesync: minute UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 47 minute: 0x0047 UINT16 BOTH 0x0000 ~ 0x0059 0x10
HOLDING 6005 Timesync: second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 44 second: 0x0044 UINT16 BOTH 0x0000 ~ 0x0059 0x10
HOLDING 6006 Timesync: milli second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 514 mill second: 0x0514 UINT16 BOTH 0x0000 ~ 0x0999 0x10
GIPAM2200-DG MODBUS Point Map
Ver 01.00
MODBUS REGISTER DESCRIPTION
DATA TYPE AUTHORITY REMARK RANGE UNIT FUNCTION CODE
TYPE ADDRESS NAME 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
COIL 0 CB#1 Close select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 1 CB#1 Close operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 2 CB#1 Open select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 3 CB#1 Open operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 4 Control Contact#01 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 5 Control Contact#01 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 8 Control Contact#02 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 9 Control Contact#02 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 12 Control Contact#03 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 13 Control Contact#03 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 16 Control Contact#04 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 17 Control Contact#04 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 1000 Fault Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1001 Energy Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1002 Event Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1003 Fault Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1004 All Data Clear NONE REMOTE 0xFF00: Execution 0x05
INPUT 0 DI status UINT16 NONE Pick up **TimeSync DiagErr P/F ***F/R *R/L DI#06 DI#05 DI#04 DI#03 DI#02 DI#01 *R/L - 0: Local, 1: Remote, **TimeSync - 1: Not Sync, ***F/R(Power factor) - 0: Forward, 1: 0x04
INPUT 1 DO status UINT16 NONE DO#09 DO#08 DO#07 DO#06 DO#05 DO#04 DO#03 DO#02 DO#01 0x04
INPUT 2 OP status #1 UINT16 NONE 81R_#1 67ND 67NI 59_#1_C 59_#1_B 59_#1_A 59_#2_C 59_#2_B 59_#2_A 27_#1_C 27_#1_B 0x04
INPUT 3 OP status #2 UINT16 NONE 27_#1_A 27_#2_C 27_#2_B 27_#2_A 50N_#1 50N_#2 51N_#1 50_#1_C 50_#1_B 50_#1_A 50_#2_C 50_#2_B 50_#2_A 51_#1_C 51_#1_B 51_#1_A 0x04
INPUT 4 OP status #3 UINT16 NONE 67D_#1_C 67D_#1_B 67D_#1_A 67I_#1_C 67I_#1_B 67I_#1_A PTF(60F) CBF(50BF) 25 46_#1 0x04
INPUT 5 OP status #4 UINT16 NONE 46_#2 49 32Q_#1_C32Q_#1_B32Q_#1_A 37P_#1 32P_#1_F 32P_#1_R 81O_#1 81U_#1 0x04
INPUT 6 Van FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 8 Vbn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 10 Vcn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 12 Vab FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 14 Vbc FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 16 Vca FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 18 Vgpt (PT#4) or 3V0 FLOAT NONE 3V0 when 67NI or 67ND voltage input is Vertor Sum. Otherwise Vgpt 0.000 ~ 9999.999k V 0x04
INPUT 20 Reserved - -
INPUT 21 Reserved - -
INPUT 22 Ia FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 24 Ib FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 26 Ic FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 28 Inct (CT#4) FLOAT NONE 0.000 ~ 9999.999k A 0x04
INPUT 30 Inct max FLOAT NONE 0.000 ~ 9999.999k A 0x04
INPUT 32 Reserved - -
INPUT 33 Reserved - -
INPUT 34 I2 FLOAT NONE 0.000 ~ 9999.999k A 0x04
INPUT 36 Van Frequency (PT#1) FLOAT NONE 0.000 ~ 78.000 Hz 0x04
INPUT 38 Reserved - -
INPUT 39 Reserved - -
INPUT 40 P3Φ (Three-Phase Active Power) FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 42 Q3Φ (Three-Phase Reactive Power) FLOAT NONE -9999.999M ~ +9999.999M Var 0x04
INPUT 44 rP3Φ (Three-Phase Reverse Active Power) FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 46 rQ3Φ (Three-Phase Reverse Reactive Power) FLOAT NONE -9999.999M ~ +9999.999M Var 0x04
INPUT 48 PF3Φ FLOAT NONE -1.000 ~ +1.000 - 0x04
INPUT 50 P TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 52 Q TotVArh FLOAT NONE 0.000 ~ 99.999G VArh 0x04
INPUT 54 rP TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 56 %Q FLOAT NONE 0.00 ~ 150.00% % 0x04
INPUT 58 Reserved - -
INPUT 59 Reserved - -
INPUT 60 Reserved - -
INPUT 61 Reserved - -
INPUT 62 Reserved - -
INPUT 63 Reserved - -
INPUT 64 Reserved - -
INPUT 65 Reserved - -
INPUT 66 Reserved - -
INPUT 67 Reserved - -
INPUT 68 Reserved - -
INPUT 69 Reserved - -
INPUT 70 Reserved - -
INPUT 71 Reserved - -
INPUT 72 Reserved - -
INPUT 73 Reserved - -
INPUT 74 Reserved - -
INPUT 75 Reserved - -
INPUT 76 Reserved - -
INPUT 77 Reserved - -
INPUT 78 Reserved - -
INPUT 79 Reserved - -
INPUT 80 Reserved - -
INPUT 81 Reserved - -
INPUT 82 Reserved - -
INPUT 83 Reserved - -
INPUT 84 Reserved - -
INPUT 85 Reserved - -
INPUT 86 MAX Vgpt or MAX 3V0 FLOAT NONE 3V0 MAX when 67NI or 67ND zero phase voltage input is Vertor Sum. Otherwise Vgpt MAX. 0.000 ~ 9999.999k V 0x04
HOLDING 0 CT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 2 PT Ratio: Primary FLOAT NONE 55 ~ 999.999k V 0x03
HOLDING 4 NCT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 500 MAX Inct FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 999.999k A 0x03, 0x10
HOLDING 502 P TotWh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 504 Q TotVArh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G VArh 0x03, 0x10
HOLDING 506 rP TotWh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 508 Reserved - -
HOLDING 509 Reserved - -
HOLDING 510 Reserved - -
HOLDING 511 Reserved - -
HOLDING 512 Reserved - -
HOLDING 513 Reserved - -
HOLDING 514 %Q FLOAT NONE A value of 0 is written at initialization(RESET). 0.00 ~ 150.00 % 0x03, 0x10
3V0 MAX when 67NI or 67ND zero phase voltage input is Vertor Sum. Otherwise Vgpt MAX.
HOLDING 516 MAX Vgpt or MAX 3V0 FLOAT NONE 0.000 ~ 9999.999k V 0x03, 0x10
A value of 0 is written at initialization(RESET).
HOLDING 1000 Equipment operating time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 1002 CB#1 energizing time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 3000 Number of CB#1 operations UINT16 NONE A value of 0 is written at initialization(RESET). 0 ~ 65535 0x03, 0x06, 0x10
HOLDING 6000 Timesync: year UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 2017 year: 0x2017 0x2000 ~ 0x2099 0x10
HOLDING 6001 Timesync: month UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 9 month: 0x0009 0x0001 ~ 0x0012 0x10
HOLDING 6002 Timesync: day UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 25 day: 0x0025 0x0001 ~ 0x0031 0x10
Time synchronization requires
HOLDING 6003 Timesync: hour UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 14 hour: 0x0014 0x0000 ~ 0x0023 0x10
7 words to be written at once.
HOLDING 6004 Timesync: minute UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 47 minute: 0x0047 0x0000 ~ 0x0059 0x10
HOLDING 6005 Timesync: second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 44 second: 0x0044 0x0000 ~ 0x0059 0x10
HOLDING 6006 Timesync: milli second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 514 mill second: 0x0514 0x0000 ~ 0x0999 0x10
GIPAM2200-IG MODBUS Point Map
Ver 01.00
MODBUS REGISTER DESCRIPTION
DATA TYPE AUTHORITY REMARK RANGE UNIT FUNCTION CODE
TYPE ADDRESS NAME 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
COIL 0 CB#1 Close select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 1 CB#1 Close operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 2 CB#1 Open select NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 3 CB#1 Open operate NONE REMOTE 0xFF00: Execution SBO Timeout: Fixed at 5 seconds 0x05
COIL 4 Control Contact#01 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 5 Control Contact#01 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 8 Control Contact#02 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 9 Control Contact#02 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 12 Control Contact#03 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 13 Control Contact#03 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 16 Control Contact#04 Pulse-out select NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 17 Control Contact#04 Pulse-out operate NONE REMOTE 0xFF00: Execution. CC ON control can be used only in Pulse-out setting. SBO Timeout: Fixed at 5 seconds 0x05
COIL 1000 Fault Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1001 Energy Reset NONE REMOTE 0xFF00: Execution 0x05
COIL 1002 Event Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1003 Fault Record Clear NONE REMOTE 0xFF00: Execution 0x05
COIL 1004 All Data Clear NONE REMOTE 0xFF00: Execution 0x05
*R/L - 0: Local, 1: Remote, **TimeSync - 1: Not Sync, ***F/R(Power factor) - 0: Forward, 1:
INPUT 0 DI status UINT16 NONE Pick up **TimeSync DiagErr P/F ***F/R *R/L DI#06 DI#05 DI#04 DI#03 DI#02 DI#01 0x04
Reverse
INPUT 1 DO status UINT16 NONE DO#09 DO#08 DO#07 DO#06 DO#05 DO#04 DO#03 DO#02 DO#01 0x04
INPUT 2 OP status #1 UINT16 NONE 59_#1_C 59_#1_B 59_#1_A 59_#2_C 59_#2_B 59_#2_A 27_#1_C 27_#1_B 0x04
INPUT 3 OP status #2 UINT16 NONE 27_#1_A 27_#2_C 27_#2_B 27_#2_A 50N_#1 50N_#2 51N_#1 50_#1_C 50_#1_B 50_#1_A 50_#2_C 50_#2_B 50_#2_A 51_#1_C 51_#1_B 51_#1_A 0x04
INPUT 4 OP status #3 UINT16 NONE PTF(60F) CBF(50BF) 25 46_#1 0x04
INPUT 5 OP status #4 UINT16 NONE 46_#2 49 32Q_#1_C32Q_#1_B32Q_#1_A 37P_#1 32P_#1_F 32P_#1_R 81O_#1 81U_#1 0x04
INPUT 6 Van FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 8 Vbn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 10 Vcn FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 12 Vab FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 14 Vbc FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 16 Vca FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 18 Vaux (PT#5) FLOAT NONE 0.000 ~ 9999.999k V 0x04
INPUT 20 Reserved - -
INPUT 21 Reserved - -
INPUT 22 Ia FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 24 Ib FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 26 Ic FLOAT NONE 0.000 ~ 999.999k A 0x04
INPUT 28 Inct (CT#4) FLOAT NONE 0.000 ~ 9999.999k A 0x04
INPUT 30 Inct max FLOAT NONE 0.000 ~ 9999.999k A 0x04
INPUT 32 Reserved - -
INPUT 33 Reserved - -
INPUT 34 I2 FLOAT NONE 0.000 ~ 9999.999k A 0x04
INPUT 36 Van Frequency (PT#1) FLOAT NONE 0.000 ~ 78.000 Hz 0x04
INPUT 38 Reserved - -
INPUT 39 Reserved - -
INPUT 40 P3Φ (Three-Phase Active Power) FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 42 Q3Φ (Three-Phase Reactive Power) FLOAT NONE -9999.999M ~ +9999.999M Var 0x04
INPUT 44 rP3Φ (Three-Phase Reverse Active Power) FLOAT NONE -9999.999M ~ +9999.999M W 0x04
INPUT 46 rQ3Φ (Three-Phase Reverse Reactive Power) FLOAT NONE -9999.999M ~ +9999.999M Var 0x04
INPUT 48 PF3Φ FLOAT NONE -1.000 ~ +1.000 - 0x04
INPUT 50 P TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 52 Q TotVArh FLOAT NONE 0.000 ~ 99.999G VArh 0x04
INPUT 54 rP TotWh FLOAT NONE 0.000 ~ 99.999G Wh 0x04
INPUT 56 %Q FLOAT NONE 0.00 ~ 150.00% % 0x04
HOLDING 0 CT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 2 PT Ratio: Primary FLOAT NONE 55 ~ 999.999k V 0x03
HOLDING 4 NCT Ratio: Primary FLOAT NONE 5 ~ 9999 A 0x03
HOLDING 500 MAX Inct FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 999.999k A 0x03, 0x10
HOLDING 502 P TotWh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 504 Q TotVArh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G VArh 0x03, 0x10
HOLDING 506 rP TotWh FLOAT NONE A value of 0 is written at initialization(RESET). 0.000 ~ 99.999G Wh 0x03, 0x10
HOLDING 508 Reserved - -
HOLDING 509 Reserved - -
HOLDING 510 Reserved - -
HOLDING 511 Reserved - -
HOLDING 512 Reserved - -
HOLDING 513 Reserved - -
HOLDING 514 %Q FLOAT NONE A value of 0 is written at initialization(RESET). 0.00 ~ 150.00 % 0x03, 0x10
HOLDING 1000 Equipment operating time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 1002 CB#1 energizing time UINT32 NONE A value of 0 is written at initialization(RESET). 0 ~ 232 -1 hour 0x03, 0x10
HOLDING 3000 Number of CB#1 operations UINT16 NONE A value of 0 is written at initialization(RESET). 0 ~ 65535 0x03, 0x06, 0x10
HOLDING 6000 Timesync: year UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 2017 year: 0x2017 0x2000 ~ 0x2099 0x10
HOLDING 6001 Timesync: month UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 9 month: 0x0009 0x0001 ~ 0x0012 0x10
HOLDING 6002 Timesync: day UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 25 day: 0x0025 0x0001 ~ 0x0031 0x10
Time synchronization requires
HOLDING 6003 Timesync: hour UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 14 hour: 0x0014 0x0000 ~ 0x0023 0x10
7 words to be written at once.
HOLDING 6004 Timesync: minute UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 47 minute: 0x0047 0x0000 ~ 0x0059 0x10
HOLDING 6005 Timesync: second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 44 second: 0x0044 0x0000 ~ 0x0059 0x10
Time synchronization requires
7 words to be written at once.

HOLDING 6006 Timesync: milli second UINT16 BOTH BCD(Binary-coded decimal) used. For exemple) 514 mill second: 0x0514 0x0000 ~ 0x0999 0x10

You might also like