Connectivity to the ASCO 5210 Digital Power Meter via Modbus This design specification describes the Modbus communications protocol as supported by the Power Meter 5210. It includes instructions on how to pass information into and out of the device via the Modbus network. This publication should be used by individuals wishing to integrate either device into their facility by developing software to communicate with either device. Additional information can be found in Power Meter Operator’s Manual 381333-368. Modbus Protocol Implementation Basics The following rules define the Modbus slave implementation of the devices: The devices operate as slaves only (communication must be initiated by the master). The maximum number of bytes contained within one packet of communications is 64. The maximum number of registered accessed with one read is 29. the network will act on the command, but it will not issue any responses. Function Code Field. This is a second byte of each transmission and represents the commanded action to the slave device (for queries from the master) or the action that was taken by the slave device (for responses from the slave). Codes between 1 and 127 are defined as Modbus RTU functions. The function codes supported by the Power Meter are detailed on pages 4-6 . Data Field. The data field varies in length depending on whether the message is a request or a response packet. This field typically contains information required by the slave device to perform the command specified in a request packet or data being passed back by the slave device in a response packet. Error Check Field. The error check field consists of a 16 bit (2 byte) Cyclical Redundancy Check (CRC16). It allows the receiving device to detect a packet that has been corrupted with transmission errors. Refer to CRC-16 Algorithm on page 2 for details. Packet Framing and Timing Transmission Format Although the Modbus protocol supports both ASCII and RTU modes of transmission, only the RTU mode is implemented. Within the RTU mode, the ASCO devices support the following communication parameters: 8 data bits no parity 1 stop bit Modbus RTU Packet Format Every Modbus Packet consists of the following fields: Device Address Field Function Code Field Data Field Error Check Field Because the Modbus RTU protocol does not define any explicit packet synchronization bytes, synchronization is accomplished implicitly with the use of silent intervals. According to the Modbus RTU standard, all messages must start with a silent interval of at least 3.5 character times. This means that every byte within a packet must precede the previous byte by fewer than 3.5 character times based on the baud rate. And every new packet of data must begin at least 3.5 character times or more after the packet that had preceded it. In summary, the three timing intervals associated with the ASCO devices are as follows: Maximum time between two consecutive bytes within a packet < 3.5 character times. Minimum time between two consecutive packets is > 3.5 character times. Device Address Field. This is the first byte of each Modbus RTU transmission. The device address is a number limited to the range of 0 - 247 and is associated with a single device configured with a matching address. Only the slave device whose address matches the value in this field will respond to the specified command. Device address 0 indicates a broadcast command. This means that every slave on Maximum response time from a Master request to a slave response is < 100 milliseconds. ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 1 381339-307 D CRC-16 Algorithm Procedure. The algorithm essentially treats the entire data packet (less the start, stop, and, if used, parity bits) as one continuous binary number. Since we are doing a 16-bit CRC calculation, the binary number (entire packet) is multiplied by 216 and then divided by the generator polynomial. In the case of the Modbus protocol, the generator polynomial is x16 + x15 + x2 + 1. The 16-bit remainder of the division, which is the 16-bit CRC checksum, is then appended to the end of the packet. The resulting data packet including the 16-bit CRC checksum, when divided by the same Generator Polynomial at the receiver, will give a zero remainder if no transmission errors have occurred. 1. Initially, load the 16-bit CRC register with the value FFFF hex. 2. Exclusive OR the 16-bit CRC register with the first data byte of the packet and store the result in the 16-bit CRC register. 3. If the Least Significant Bit (LSB) of the 16-bit CRC register is equal to one, then shift the 16-bit CRC register to the right by one bit and then Exclusive OR the result with the generator polynomial, A001 hex. Otherwise, just shift the 16-bit CRC register to the right by one bit. 4. Repeat step 3 until eight right shifts have been performed. The binary value of the Generator Polynomial is A001 hex. This is obtained by first dropping the mostsignificant-bit of the polynomial and then reversing the bit order. This yields 1010000000000001 or A001h. 5. Exclusive OR the 16-bit CRC register with the next data byte of the packet. The steps for generating the 16-bit CRC checksum are as follows: 7. The 16-bit CRC register contains the new checksum to be appended to the end of the packet, Least Significant Byte first. 6. Repeat steps 3-5 until all the bytes of the data packet have been used in step 5. CRC-16 Pseudocode. Below is the pseudocode for generating the 16-bit CRC checksum. XOR is the Exclusive-OR function: CRC16REG = FFFF hex GENPOLY = A001 hex FOR X = 1 to number of bytes in packet BEGIN XOR CRC16REG with the Xth data byte FOR Y = 1 to 8 BEGIN IF [(the least-significant-bit of CRC16REG) = 1] THEN SHIFT CRC16REG one bit to the RIGHT XOR CRC16REG with GENPOLY OTHERWISE SHIFT CRC16REG one bit to the RIGHT END NEXT Y END NEXT X The resulting CRC16REG contains the 16-bit CRC checksum CRC-16 C Programming Language Example. CRC16_checksum is a C language function that calculates and returns the 16-bit CRC checksum of a string of characters. This is the brute force method as it consumes a lot of processing power performing numerous bit shifts. A table look-up method based on this function would be more suitable for embedded systems where processing power is at a premium. The following four parameters are passed as part of the function 1. pointer to string 2. length of string (in bytes) 3. initial CRC value 4. desired Generator polynomial Included to make this CRC-16 function generic for any generator polynomial continued on next page 2 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D The following C-language type definitions (typedef’s) are assumed: 1. typedef unsigned int uint; 2. typedef unsigned char uchar; The function is defined as follows: uint CRC16_checksum(uchar *Buffer, uint Length, uint CRC, uint Genpoly) { uint index; While (Length--) { /* for each data byte in string */ CRC = CRC ^ (uint) *Buffer++; /* exclusive OR data byte */ For (index = 0; index < 8; index++) { /* for each of the 8 bits */ If ((CRC & 0x0001) == 1) CRC = (CRC >> 1) ^ Genpoly; Else (CRC = CRC >> 1); } /* for statement */ } /* while statement */ } return(CRC); An ASCO Example. Let’s assume the transmitting device desired to send the ASCII string “ASCO”. Using an ASCII character look-up table, we have the following hexadecimal codes for each of the ASCO letters: A = 0x65 S = 0x83 C = 0x67 O = 0x79 The transmitter would determine the 16-bit CRC checksum as follows (in C, both methods are equivalent): CRC16_checksum(“ASCO”, 4, 0xFFFF, 0xA001) which returns CRC = 0xCD94 CRC16_checksum(“\x65\x83\x67\x79”, 4, 0xFFFF, 0xA001) which returns CRC = 0xCD94 Before sending the string, the transmitter would append the CRC checksum (in byte reverse order) to the string as follows: “ASCO\x94\xCD” or the equivalent in hexadecimal notation “\x65\x83\x67\x79\x94\xCD” If the receiving device received the string without any transmission errors, then doing the 16-bit CRC checksum on the entire received string would yield (again, both methods are equivalent): CRC16_checksum(“ASCO\x94\xCD”, 4, 0xFFFF, 0xA001) which returns CRC = 0x0000 CRC16_checksum(“\x65\x83\x67\x79\x94\xCD”, 4, 0xFFFF, 0xA001) which returns CRC = 0x0000 Since the CRC checksum is equal to zero, the transmission is deemed valid. Had an error been induced during the transmission, such as the ASCII character ‘A’ being inadvertently changed to the character ‘B’ (which is hexadecimal 0x66), the receiving device would determine the new checksum as: CRC16_checksum(“BSCO\x94\xCD”, 4, 0xFFFF, 0xA001) which returns CRC = 0x3300 CRC16_checksum(“\x66\x83\x67\x79\x94\xCD”, 4, 0xFFFF, 0xA001) which returns CRC = 0x3300 Since the CRC is NON-ZERO (0x3300), the receiver would assume an error had occurred and discard the packet. ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D 3 Supported Function Codes for Power Meter Function # 03 (03h) – Read Holding Registers This function code allows the master to read one or more consecutive data registers from the Power Meter. The data registers are always 16 bit (two byte) values, transmitted high order byte first. Refer to Register Map on page 09 for details about the data register definitions of the Power Meter. The following example shows the format of a transmission between a master requesting device and the responding Power Meter (slave device) at address 24. The master desires to read the four values of voltage, VA, VB, VC, VAVE, beginning at Holding register location 40011 (which is a “Data starting address” of 11decimal or 0A hexadecimal). Master Transmission Packet Format Slave address Function code Data starting address (high byte) Data starting address (low byte) Number of registers (high byte) Number of registers (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 03 00 0A 00 04 66 02 Slave Response Packet Format Slave address Function code Byte count Data word #1 (high byte) Data word #1 (low byte) Data word #2 (high byte) Data word #2 (low byte) Data word #3 (high byte) Data word #3 (low byte) Data word #4 (high byte) Data word #4 (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 03 08 00 E6 00 E5 00 E7 00 E6 14 2E The Power Meter supports the following Read Holding Register addresses-decimal: 11-26, 31-46, 48, 51-64, 7184, 87-93, 96-125, 127-137, 213, 435-576, 578-697,699730. The Type of those Registers is defined as RO (Read only). Function # 06 (06h) – Preset Single Register This function code allows the master device to modify the contents of a single configuration register within the Power Meter. The data registers are always 16 bit (two byte) values, transmitted high order byte first. Refer to Register Map on page 09 for details about the about the data register definitions of the Power Meter. 4 The Power Meter currently supports the following Preset Single register addresses. If a Function #06 command is issued without one of these registers addresses, the Power Meter will respond with an invalid address range Exception Response (see Exception Responses on page 6). 40065 40066 40141 40142 40143 40144 40145 40146 40200 40201 40202 40203 40204 Address (in hex notation) 0040 0041 008C 008D 008E 008F 0090 0091 00C7 00C8 00C9 00CA 00CB 40205 40206 40207 00CC 00CD 00CE 40208 40209 40210 00CF 00D0 00D1 40211 40212 40214 40215 4032240325 4042240431 40433 40434 40698 40755 00D2 00D3 00D5 00D6 141-144 Nominal Voltage Nominal Current Power Meter Hours Power Meter Minutes Power Meter Year Power Meter Month Power Meter Date Power Meter Day of Week System type Source mode Potential transformer ratio (PTR) Current transformer ratio (CTR) Neutral current transformer ratio (CT4R) SCI comm. port (J5) protocol SCI comm. port (J5) baud rate SCI comm. port (J5) device address 485 comm. Port (J1) protocol 485 comm. Port (J1) baud rate 485 comm. port (J1) device address Menu language selection Demand Integration Period Clear Demand Clear Energies Power Meter Name 1A5-1AE Power Meter Location Address 01B0 01B1 02B9 02F2 Description Clear Min Max Parameters CT installed Date Format Clear all Demands The following example shows the format of a transmission between a master device and the responding Power Meter (slave device) at address 24. The master desires to set the System Type (Holding register 40200) to a Single Phase – 3 Wire system (data value 02). See System Type on page 07 for details. Master Transmission Packet Format Slave address Function code Data address (high byte) Data address (low byte) Data word (high byte) Data word (low byte) CRC16 (low byte) CRC16 (high byte) ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Example (in hex) 18 06 00 C7 00 02 BB FF Slave Response Packet Format Slave address Function code Data starting address (high byte) Data starting address (low byte) Number of registers (high byte) Number of registers (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 06 00 C7 00 02 BB FF The following example shows the format of a transmission between a master requesting device and the responding Power Meter (slave device) at address 24. The master desires to configure Power Meter name (Holding Registers 40322 – 40425) to “ASCOMAP ”. The Power Meter supports the following Preset Single Register addresses -decimal:65-66,141-146,200-212,214215 ,433,434,698,755. Function # 16 (10h) – Preset Multiple Registers This function code allows the master device to modify the contents of consecutive configuration registers within the Power Meter. The data registers are always 16 bit (two byte) values, transmitted high order byte first. Refer to Register Map on page 10 for details about the data register definitions of the Power Meter. The Power Meter currently supports the following Preset Multiple register ranges. If a Function #16 command is issued without one of these corresponding register ranges, the Power Meter will respond with an invalid address range Exception Response (see Exception Responses on page 6). Mutli write register e.g. 40200-212 only support entire range write and not the intermediate range such as 200-203, 205207 The Power Meter supports the following Preset Multiple Register addresses -decimal: 200-212,141-146, 322-325, 422-431. Address Start End 40065 40066 40200 40211 40322 40325 40422 40431 Register Count 2 12 4 10 Description General Settings General Settings Power Meter Name Power Meter Location Master Transmission Packet Format Slave address Function code Data starting address (high byte) Data starting address (low byte) Number of registers (high byte) Number of registers (low byte) Byte count Data word #1 (high byte) Data word #1 (low byte) Data word #2 (high byte) Data word #2 (low byte) Data word #3 (high byte) Data word #3 (low byte) Data word #4 (high byte) Data word #4 (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 10 01 41 00 04 08 41 “A” 53 ”S” 43 “C” 4F “O” 4D “M” 41 “A” 50 “P” 20 “ ” 16 69 Slave Response Packet Format Slave address Function code Data starting address (high byte) Data starting address (low byte) Number of registers (high byte) Number of registers (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 10 01 41 00 04 92 2B Command String (in Hex) ADDR 10 00 C7 00 02 04 ..data.. CRCLO CRCHI ADDR 10 00 C7 00 0C 18 ..data.. CRCLO CRCHI ADDR 10 00 E5 00 04 08 ..data.. CRCLO CRCHI ADDR 10 01 45 00 0A 14 ..data.. CRCLO CRCHI ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D 5 Exception Responses If the Modbus master device sends an unsupported command, attempts to read an invalid holding register, or attempts to write invalid data, the Power Meter (Modbus slave) issues an exception response. The format for the exception response is as follows: 1. SLAVE ADDRESS 2. FUNCTION CODE* (With the most-significant-bit set to a 1) 3. ERROR CODE 4. CRC16 – low order byte 5. CRC16 – high order byte * Note: The high order bit of the function code has been set to one to indicate an exception response has been generated. The following table is a list of the exception codes supported by the Power Meter. Exception Response Error Codes Error code 01 02 03 Error name Illegal function Illegal data address Illegal data value Power Meter implementation The slave does not support the function code contained in the master query packet. The slave does not support the Holding Register address referenced in the data field of the master query packet. The slave does not support the data referenced in the data field of the master query packet. The following example shows the format of a transmission between a master device and the responding Power Meter (slave device) at address 24. The master device attempts to write an invalid data value (04) to the System Type holding register 40200. The Power Meter slave device responds with Error code 03. Master Transmission Packet Format Slave address Function code Data starting address (high byte) Data starting address (low byte) Data (high byte) Data (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 06 00 C7 00 04 3B FD Slave Response Packet Format Slave address Function code Error code CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 86 03 D3 A6 The following example shows the format of a transmission between a master device and the responding Power Meter (slave device) at address 24. The master device attempts to write to an invalid address, 40216 (0x00D7). The Power Meter slave device responds with Error code 02. Master Transmission Packet Format Slave address Function code Data starting address (high byte) Data starting address (low byte) Data (high byte) Data (low byte) CRC16 (low byte) CRC16 (high byte) Example (in hex) 18 06 00 D7 00 03 7B FA Slave Response Packet Format Slave address Function code Error code CRC16 (low byte) CRC16 (high byte) 6 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Example (in hex) 18 86 02 12 66 Configuration Register Details for Power Meter Register Map for Power Meter The following table describes the mapping of the registers within the Power Meter to Holding Registers defined in the Modbus protocol. Note: The addresses in the format of 4xxxx follow the MODICON MODBUS protocol for point addressing. The actual address sent is the Register Address shown in the map minus the value 40001. Register Type Parameter Name RO RO RO RO RO RO RO RO RO RO RO RO RO RO RO RO VAN VBN VCN VAVE VAB VBC VCA VLAVE VLUNBAL VUNBAL IA IB IC IAVE IUNBAL IN RO RO RO RO RO RO RO RO RO RO RO RO RO RO RO RO kWA kWB kWC kWT kVARA kVARB kVARC kVART PfA PfB PfC PfT kVAA kVAB kVAC kVAT RO Freq. 40051 RO NormkWHIMP Normal kWH Import (LO word) 40052 RO NormkWHIMP Normal kWH Import (HO word) 40054 RO NormkWHEXP Normal kWH Export (HO word) Reg Number 40001-40010 40011 40012 40013 40014 40015 40016 40017 40018 40019 40020 40021 40022 40023 40024 40025 40026 40027-40030 40031 40032 40033 40034 40035 40036 40037 40038 40039 40040 40041 40042 40043 40044 40045 40046 40047 40048 40049-40050 Parameter Description Undefined Phase A line to neutral voltage Phase B line to neutral voltage Phase C line to neutral voltage Line to neutral average voltage A-B line to line voltage B-C line to line voltage C-A line to line voltage Line to line average voltage Line to line voltage unbalance Line to neutral voltage unbalance Phase A current Phase B current Phase C current Average current Current unbalance CT4 or neutral current Undefined Active Power phase A Active Power phase B Active Power phase C Active Power total Reactive Power phase A Reactive Power phase B Reactive Power phase C Reactive Power total Power Factor phase A Power Factor phase B Power Factor phase C Power Factor total volt-ampere Power phase A volt-ampere Power phase B volt-ampere Power phase C volt-ampere Power total Undefined Frequency on phase VA Undefined 40055 RO NormkWHNET Normal kWH Net (LO word) 40056 RO NormkWHNET Normal kWH Net (HO word) 40058 RO NormkVarHIMP Normal kVarH Import (HO word) 40059 RO NormkVarHEXP Normal kVarH Export (LO word) 40060 RO NormkVarHEXP Normal kVarH Export (HO word) 7 Data Range Units 0 – 59,999 0 – 59,999 0 – 59,999 0 – 59,999 0 – 59,000 0 – 59,000 0 – 59,000 0 – 59,000 0 – 100% 0 – 100% 0 – 29,999 (55000) 0 – 29,999 (55000) 0 – 29,999 (55000) 0 – 29,999 (55000) 0 – 100% 0 – 29,999 (55000) Volt Volt Volt Volt Volt Volt Volt Volt Implemented in Firmware Version Amp. 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 (-.99 to +1.00) * 100 (-.99 to +1.00) * 100 (-.99 to +1.00) * 100 (-.99 to +1.00) * 100 0 – 29,999 0 – 29,999 0 – 29,999 0 – 29,999 kW kW kW kW kVAR kVAR kVAR kVAR Pf Pf Pf Pf kVA kVA kVA kVA 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 (40.00 to 80.00) * 100 Hz x 100 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kVARH 843086-004 kVARH 843086-004 kVARH 843086-004 -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 1 Amp. Amp. Amp. Amp. 381339-307 D Reg Number Register Type Parameter Name 40061 RO NormkVarHNET Normal kVarH Net (LO word) 40062 RO NormkVarHNET Normal kVarH Net (HO word) Parameter Description Data Range -1,999,999,999 to + 1,999,999,999 40063 RO NormkVAHNET Normal kVAH Net (LO word) -1,999,999,999 to + 1,999,999,999 40064 40065 40066 40067-40070 RO RW RW NormkVAHNET Nom_Volt Nom_Amps Normal kVAH Net (HO word) Nominal Voltage Nominal Current Undefined 70-59999 1-55000 40071 RO EmerkWHIMP Emerg kWH Import (LO word) -1,999,999,999 to + 1,999,999,999 40072 RO EmerkWHIMP Emerg kWH Import (HO word) 40073 RO EmerkWHEXP Emerg kWH Export (LO word) 40074 RO EmerkWHEXP Emerg kWH Export (HO word) 40075 RO EmerkWHNET Emerg kWH Net (LO word) 40076 RO EmerkWHNET Emerg kWH Net (HO word) 40077 RO EmerkVarHIMP Emerg kVarH Import (LO word) 40078 RO EmerkVarHIMP Emerg kVarH Import (HO word) 40079 RO EmerkVarHEXP Emerg kVarH Export (LO word) 40080 RO EmerkVarHEXP Emerg kVarH Export (HO word) 40081 RO EmerkVarHNET Emerg kVarH Net (LO word) 40082 RO EmerkVarHNET Emerg kVarH Net (HO word) 40083 RO EmerkVAHNET Emerg kVAH Net (LO word) 40084 40085-40086 40087 40088 40089 40090 40091 40092 40093 40094-40095 40096 40097 40098 40099 40100 40101 40102-40107 40108-40113 40114-40119 40120-40125 40126 40127 40128-40129 40130 40131 40132 RO EmerkVAHNET RO RO RO RO RO RO RO kWT kWT kWT kWT IAVE VLAVE Freq. RO RO RO RO RO RO RO RO RO RO SwitchPosition kWT kVART kVAT PfT Freq. V_String SW_Date SerialNumber ModelNumber RO H_STATUS RO RO RO kWT kWT kWT Emerg kVAH Net (HO word) Undefined Active Power (Watts) total Instantaneous Watt Demand Current Month Maximum Demand Active Power (watts) Total Average current Line to line average voltage Frequency on phase VA Undefined Main & auxiliary Switch positions Active Power total Reactive Power total volt-ampere Power total Power Factor total Frequency on phase VA Software Version string Software build date string Device serial number Device model number Undefined Health status word Undefined Active Power (Watts) total Instantaneous Watt demand Current Month Maximum Demand Current Month Maximum Watt Demand Date Current Month Maximum Watt Demand Month Current Month Maximum Watt Demand Year Current Month Maximum Watt Demand Hour 8 40133 RO 40134 RO 40135 RO 40136 RO -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 -1,999,999,999 to + 1,999,999,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 0 – 29,999(55,000) 0 – 59,999 (40.00 to 80.00) * 100 0:normal 1:emergency -29,999 to +29,999 -29,999 to +29,999 0 – 29,999 (-0.99 to +1.00) * 100 (40.00 to 80.00) * 100 12 ASCII characters 12 ASCII characters 12 ASCII characters 12 ASCII characters Units Implemented in Firmware Version kVARH 843086-004 kVARH 843086-004 kVAH 843086-004 kVAH Volt Amp. 843086-004 843086-004 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kWH 843086-004 kVARH 843086-004 kVARH 843086-004 kVARH 843086-004 kVARH 843086-004 kVARH 843086-004 kVARH 843086-004 kVAH 843086-004 kVAH 843086-004 kW kW kW 843086-004 843086-011 843086-011 Amp. Volt Hz x 100 843086-004 843086-004 843086-004 kW kVAR kVA Pf x 100 Hz x 100 0:Normal 1:Error 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 -29,999 to +29,999 -29,999 to +29,999 -29,999 to +29,999 kW kW kW 843086-004 843086-011 843086-011 1-31 Date 843086-011 1-12 Month 843086-011 00-99 Year 843086-011 00-23 Hour 843086-011 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Reg Number Register Type 40137 RO 40138-40140 40141 40142 40143 40144 40145 40146 40147-40199 RW RW RW RW RW RW Parameter Name Parameter Description Current Month Maximum Watt Demand Minute Undefined Power Meter Hours Power Meter Minutes Power Meter Year Power Meter Month Power Meter Date Power Meter Day of week Undefined 40200 RW TYPESYSTEM System Type 40201 RW MODESOURCE Source Mode 40202 40203 40204 RW RW RW PTR CTR CT4R 40205 RW PROTOCOLSCI SCI comm. port (J5) protocol 40206 RW BAUDSCI SCI comm. port (J5) baud rate 40207 RW ADDRSCI SCI comm. port (J5) device address 40208 RW PROTOCOL485 485 comm. port (J1) protocol 40209 RW BAUD485 485 comm. port (J1) baud rate 40210 40211 40212 RW RW RW ADDR485 TYPELANG MIN 40213 RO Subintl_Size 40214 WO Clear_Demand 40215 40216-40321 40322-40325 40326-40421 40422-40431 40432 40433 WO Clear_Energy RW PM-Name RW PM-Location RW 485 comm. port (J1) device address Language selection Demand Integration period Demand Subinterval Size(Fixed at 1 minute) Reset Instantaneous and Current Month maximum Demand registers to 0 Clears Energy registers to 0 Undefined Power Meter Name Undefined Power Meter Location Undefined Clear Min max parameters 40434 RW CT installed 40435 40436 40437 40438 40439 40440 40441 40442 40443 40444 40445 40446 RO RO RO RO RO RO RO RO RO RO RO RO OTHER kWH Import (LO word) OTHER kWH Import (HO word) OTHER kWH Export (LO word) OTHER kWH Export (HO word) OTHER kWH Net (LO word) OTHER kWH Net (HO word) OTHER kVarH Import (LO word) OTHER kVarH Import (HO word) OTHER kVarH Export (LO word) OTHER kVarH Export (HO word) OTHER kVarH Net (LO word) OTHER kVarH Net (HO word) Potential Transformer Ratio Current Transformer Ratio 4th Current Input Transformer Ratio Data Range 00-59 0-23 0-59 0-99 1-12 1-31 0-6 0:3∅-4 w wye 1:3∅-3 w delta 2:1∅-3 w 3:1∅-2 w 0: normal 1: emergency 2: load 3: other (note 4) 120 to 28200 (note 5) 5 to 55000 OFF to 55000 1:ASCOBUS II 2:Modbus RTU 1:9600 2:19.2k 1 to 239 1:ASCOBUS II 2:Modbus RTU 1:9600 2:19.2k 3:38.4k 4:57.6k 1 to 239 0 to 8 (Note 1) 1 to 15 Units Implemented in Firmware Version Minute 843086-011 Hours Minutes Year Month Date Day 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 Minutes 843086-004 843086-004 843086-011 (Write value 0x0000) 843086-011 (Write value 0xFFFF) 843086-004 8 ASCII chars 843086-004 20 ASCII chars 843086-004 (Write value 0xFFFF) 0:A-B-C 1:A 2:B 3:C 0 to + 1,999,999,999 843086-004 0 to + 1,999,999,999 0 to + 1,999,999,999 0 to + 1,999,999,999 0 to + 1,999,999,999 0 to + 1,999,999,999 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D 843086-004 kWH kWH kWH kWH kWH kWH kVARH kVARH kVARH kVARH kVARH kVARH 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 843086-004 9 Reg Number Register Type 40447 40448 RO RO 40449 RO 40450 RO 40451 RO 40452 RO 40453 RO 40454 RO 40455 RO 40456 RO 40457 RO 40458 RO 40459 RO 40460 RO 40461 RO 40462 RO 40463 RO 40464 RO 40465 RO 40466 RO 40467 RO 40468 RO 40469 RO 40470 RO 40471 RO 40472 RO 40473 RO 40474 RO 40475 RO 40476 RO 40477 RO 40478 RO 40479 RO 10 Parameter Name Parameter Description OTHER kVAH Net (LO word) OTHER kVAH Net (HO word) % of Full scale Rated current in A Phase % of Full scale Rated current in B Phase % of Full scale Rated current in C Phase % of Full scale Rated Active Power in A Phase % of Full scale Rated Active Power in B Phase % of Full scale Active Power current in C Phase NORMAL Minimum Voltage on A Phase NORMAL Maximum Voltage on A Phase NORMAL Minimum Voltage on B Phase NORMAL Maximum Voltage on B Phase NORMAL Minimum Voltage on C Phase NORMAL Maximum Voltage on C Phase NORMAL Minimum L-N Average Voltage NORMAL Maximum L-N Average Voltage NORMAL Minimum Voltage on AB Phase NORMAL Maximum Voltage on AB Phase NORMAL Minimum Voltage on BC Phase NORMAL Maximum Voltage on BC Phase NORMAL Minimum Voltage on CA Phase NORMAL Maximum Voltage on CA Phase NORMAL Minimum L-L Average Voltage NORMAL Maximum L-L Average Voltage NORMAL Minimum Current in A Phase NORMAL Maximum Current in A Phase NORMAL Minimum Current in B Phase NORMAL Maximum Current in B Phase NORMAL Minimum Current in C Phase NORMAL Maximum Current in C Phase NORMAL Minimum Average Current NORMAL Maximum Average Current NORMAL Minimum Current in Data Range 0 to + 1,999,999,999 Units Implemented in Firmware Version kVAH kVAH 843086-004 843086-004 0 to 200 843086-004 0 to 200 843086-004 0 to 200 843086-004 0 to 200 843086-004 0 to 200 843086-004 0 to 200 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Reg Number Register Type 40480 RO 40481 RO 40482 RO 40483 RO 40484 RO 40485 RO 40486 RO 40487 RO 40488 RO 40489 RO 40490 RO 40491 RO 40492 RO 40493 RO 40494 RO 40495 RO 40496 RO 40497 RO 40498 RO 40499 RO 40500 RO 40501 RO 40502 RO 40503 RO 40504 RO 40505 RO 40506 RO 40507 RO 40508 RO 40509 RO 40510 RO Parameter Name Parameter Description Neutral NORMAL Maximum Current in Neutral NORMAL Minimum Active Power on A Phase NORMAL Maximum Active Power on A Phase NORMAL Minimum Active Power on B Phase NORMAL Maximum Active Power on B Phase NORMAL Minimum Active Power on C Phase NORMAL Maximum Active Power on C Phase NORMAL Minimum Total Active Power NORMAL Maximum Total Active Power NORMAL Minimum Reactive Power on A Phase NORMAL Maximum Reactive Power on A Phase NORMAL Minimum Reactive Power on B Phase NORMAL Maximum Reactive Power on B Phase NORMAL Minimum Reactive Power on C Phase NORMAL Maximum Reactive Power on C Phase NORMAL Minimum Total Reactive Power NORMAL Maximum Total Reactive Power NORMAL Minimum Apparent Power on A Phase NORMAL Maximum Apparent Power on A Phase NORMAL Minimum Apparent Power on B Phase NORMAL Maximum Apparent Power on B Phase NORMAL Minimum Apparent Power on C Phase NORMAL Maximum Apparent Power on C Phase NORMAL Minimum Total Apparent Power NORMAL Maximum Total Apparent Power NORMAL Minimum Power Factor A Phase NORMAL Maximum Power Factor A Phase NORMAL Minimum Power Factor B Phase NORMAL Maximum Power Factor B Phase NORMAL Minimum Power Factor C Phase NORMAL Maximum Power Factor C Phase Units Implemented in Firmware Version Amp. 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 0 to 55000 kW 843086-004 0 to 55000 kW 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 0 to 55000 kVAR 843086-004 0 to 55000 kVAR 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 0 to 55000 kVA 843086-004 0 to 55000 kVA 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 Data Range 0 – 55,000 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D 11 Reg Number Register Type 40511 RO 40512 RO 40513 RO 40514 RO 40515 RO 40516 RO 40517 RO 40518 RO 40519 RO 40520 RO 40521 RO 40522 RO 40523 RO 40524 RO 40525 RO 40526 RO 40527 RO 40528 RO 40529 RO 40530 RO 40531 RO 40532 RO 40533 RO 40534 RO 40535 RO 40536 RO 40537 RO 40538 RO 40539 RO 40540 RO 40541 RO 40542 RO 12 Parameter Name Parameter Description NORMAL Minimum Total Power Factor NORMAL Maximum Total Power Factor NORMAL Minimum System Frequency NORMAL Maximum System Frequency EMERG Minimum Voltage on A Phase EMERG Maximum Voltage on A Phase EMERG Minimum Voltage on B Phase EMERG Maximum Voltage on B Phase EMERG Minimum Voltage on C Phase EMERG Maximum Voltage on C Phase EMERG Minimum L-N Average Voltage EMERG Maximum L-N Average Voltage EMERG Minimum Voltage on AB Phase EMERG Maximum Voltage on AB Phase EMERG Minimum Voltage on BC Phase EMERG Maximum Voltage on BC Phase EMERG Minimum Voltage on CA Phase EMERG Maximum Voltage on CA Phase EMERG Minimum L-L Average Voltage EMERG Maximum L-L Average Voltage EMERG Minimum Current in A Phase EMERG Maximum Current in A Phase EMERG Minimum Current in B Phase EMERG Maximum Current in B Phase EMERG Minimum Current in C Phase EMERG Maximum Current in C Phase EMERG Minimum Average Current EMERG Maximum Average Current EMERG Minimum Current in Neutral EMERG Maximum Current in Neutral EMERG Minimum Active Power on A Phase EMERG Maximum Active Power Data Range Units Implemented in Firmware Version (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (40 to 100) * 100 Hz x 100 843086-004 (40 to 100) * 100 Hz x 100 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 to 59999 Volt 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 0 – 55,000 Amp. 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Reg Number Register Type 40543 RO 40544 RO 40545 RO 40546 RO 40547 RO 40548 RO 40549 RO 40550 RO 40551 RO 40552 RO 40553 RO 40554 RO 40555 RO 40556 RO 40557 RO 40558 RO 40559 RO 40560 RO 40561 RO 40562 RO 40563 RO 40564 RO 40565 RO 40566 RO 40567 RO 40568 RO 40569 RO 40570 RO 40571 RO 40572 RO 40573 RO Parameter Name Parameter Description on A Phase EMERG Minimum Active Power on B Phase EMERG Maximum Active Power on B Phase EMERG Minimum Active Power on C Phase EMERG Maximum Active Power on C Phase EMERG Minimum Total Active Power EMERG Maximum Total Active Power EMERG Minimum Reactive Power on A Phase EMERG Maximum Reactive Power on A Phase EMERG Minimum Reactive Power on B Phase EMERG Maximum Reactive Power on B Phase EMERG Minimum Reactive Power on C Phase EMERG Maximum Reactive Power on C Phase EMERG Minimum Total Reactive Power EMERG Maximum Total Reactive Power EMERG Minimum Apparent Power on A Phase EMERG Maximum Apparent Power on A Phase EMERG Minimum Apparent Power on B Phase EMERG Maximum Apparent Power on B Phase EMERG Minimum Apparent Power on C Phase EMERG Maximum Apparent Power on C Phase EMERG Minimum Total Apparent Power EMERG Maximum Total Apparent Power EMERG Minimum Power Factor A Phase EMERG Maximum Power Factor A Phase EMERG Minimum Power Factor B Phase EMERG Maximum Power Factor B Phase EMERG Minimum Power Factor C Phase EMERG Maximum Power Factor C Phase EMERG Minimum Total Power Factor EMERG Maximum Total Power Factor EMERG Minimum System Frequency Data Range Units Implemented in Firmware Version -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 -32768 to +32768 kW 843086-004 0 to 55000 kW 843086-004 0 to 55000 kW 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 -32768 to +32768 kVAR 843086-004 0 to 55000 kVAR 843086-004 0 to 55000 kVAR 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 -32768 to +32768 kVA 843086-004 0 to 55000 kVA 843086-004 0 to 55000 kVA 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (-0.99 to +1.00) * 100 Pf x 100 843086-004 (40 to 100) * 100 Hz x 100 843086-004 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D 13 Reg Number Register Type 40574 RO 40575 RO 40576 RO 40577 WO 40578 RO 14 Parameter Name Parameter Description 40579 RO 40580 40581 40582 40583 40584 40585 40586 40587 RO RO RO RO RO RO RO RO EMERG Maximum System Frequency Resettable Engine Runtime counter in Hours Cumulative Engine Runtime counter in Hours Clear Resettable Engine Run time counter Expanded Health Status Register (LO Word) Expanded Health Status Register (HO Word) Phase A Voltage THD Phase B Voltage THD Phase C Voltage THD Phase A Current THD Phase B Current THD Phase C Current THD APAC Port Enable APAC Address 40588 RO APAC Baud rate 40589 RO Heart Beat time 40590 RO Transmit PDO1 Transmission Type 40591 40592 RO RO Transmit PDO1 Inhibit Time Transmit PDO1 Event Time 40593 RO Transmit PDO2 Transmission Type 40594 40595 RO RO Transmit PDO2 Inhibit Time Transmit PDO2 Event Time 40596 RO Transmit PDO3 Transmission Type 40597 40598 RO RO Transmit PDO3 Inhibit Time Transmit PDO3 Event Time 40599 RO Transmit PDO4 Transmission Type Data Range (40 to 100) * 100 Units Implemented in Firmware Version Hz x 100 843086-004 0 to 65535 Hour 843086-004 0 to 65535 Hour 843086-004 (Write value 0xFFFF) 843086-004 843086-004 0 to 31 (Note 2) 843086-004 0 to 100% 0 to 100% 0 to 100% 0 to 100% 0 to 100% 0 to 100% 1 – Enable; 2 – Disable 1 to 127 0 – 100Kbps; 1 – 250Kbps; 2 – 500Kbps; 3 – 1000Kbps; 0 to 60000 0 to 255 0 – OFF; 254 – Timed based on Event Time & Inhibit Timer 255 – Timed based on Event Time, Inhibit Timer & on change of the mapped parameters 0 to 60000 0 to 60000 0 to 255 0 – OFF; 254 – Timed based on Event Time & Inhibit Timer; 255 – Timed based on Event Time, Inhibit Timer & on change of the mapped parameters 0 to 60000 0 to 60000 0 to 255 0 – OFF; 254 – Timed based on Event Time & Inhibit Timer; 255 – Timed based on Event Time, Inhibit Timer & on change of the mapped parameters 0 to 60000 0 to 60000 0 to 255 0 – OFF; 254 – Timed based on Event Time & Inhibit Timer; 255 – Timed based on Event Time, Inhibit Timer & on change of the mapped parameters ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D 843086-007 843086-007 843086-007 843086-007 843086-007 843086-007 843086-011 843086-011 843086-011 msec 843086-011 843086-011 msec msec 843086-011 843086-011 843086-011 msec msec 843086-011 843086-011 843086-011 msec msec 843086-011 843086-011 843086-011 Reg Number Register Type 40600 40601 40602 RO RO RO 40603 RO First Month Date (Date, Month) 40604 RO First Month Year (Year, Hours) 40605 RO 40606 RO 40607 RO Second Month Date (Date, Month) 40608 RO Second Month Year (Year, Hours) 40609 RO 40610 RO 40611 RO Third Month Date (Date, Month) 40612 RO Third Month Year (Year, Hours) 40613 RO 40614 RO 40615 RO Fourth Month Date (Date, Month) 40616 RO Fourth Month Year (Year, Hours) 40617 RO 40618 RO 40619 RO Fifth Month Date (Date, Month) 40620 RO Fifth Month Year (Year, Hours) 40621 RO 40622 RO 40623 RO Sixth Month Date (Date, Month) 40624 RO Sixth Month Year (Year, Hours) 40625 RO 40626 RO 40627 RO Seventh Month Date (Date, Month) 40628 RO Seventh Month Year (Year, Hours) 40629 RO 40630 RO 40631 RO Eighth Month Date (Date, Month) 40632 RO Eighth Month Year (Year, Hours) 40633 RO 40634 RO 40635 RO Ninth Month Date (Date, Month) 40636 RO Ninth Month Year (Year, Hours) Parameter Name KW KW KW KW KW KW KW KW KW Parameter Description Transmit PDO4 Inhibit Time Transmit PDO4 Event Time First Month Max Demand First Month Minutes (Minutes, Seconds) Second Month Max Demand Second Month Minutes (Minutes, Seconds) Third Month Max Demand Third Month Minutes (Minutes, Seconds) Fourth Month Max Demand Fourth Month Minutes (Minutes, Seconds) Fifth Month Max Demand Fifth Month Minutes (Minutes, Seconds) Sixth Month Max Demand Sixth Month Minutes (Minutes, Seconds) Seventh Month Max Demand Seventh Month Minutes (Minutes, Seconds) Eighth Month Max Demand Eighth Month Minutes (Minutes, Seconds) Ninth Month Max Demand Data Range 0 to 60000 0 to 60000 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Units msec msec kW Date, Month Year, Hours Minutes, Seconds kW Date, Month Year, Hours Minutes, Seconds kW Date, Month Year, Hours Minutes, Seconds kW Date, Month Year, Hours Minutes, Seconds kW Date, Month Year, Hours Implemented in Firmware Version 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 Minutes, Seconds kW Date, Month 843086-011 Year, Hours 843086-011 843086-011 843086-011 Minutes, Seconds kW Date, Month 843086-011 Year, Hours 843086-011 Minutes, Seconds kW Date, Month Year, Hours 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 Minutes, Seconds kW Date, Month 843086-011 Year, Hours 843086-011 843086-011 843086-011 15 Reg Number Register Type 40637 RO 40638 RO 40639 RO Tenth Month Date (Date, Month) 40640 RO Tenth Month Year (Year, Hours) 40641 RO 40642 RO 40643 RO 40644 RO 40645 RO 40646 RO 40647 RO 40648 RO 40649 RO 40650 RO 40651 RO 40652 RO 40653 RO 40654 RO 40655 RO 40656 RO 40657 RO 40658 RO 40659 RO 40660 RO 40661 RO 40662 RO 40663 RO 40664 RO 40665 RO 40666 RO 40667 RO 40668 RO 40669 RO 16 Parameter Name KW KW KW KW KW KW KW KW Parameter Description Ninth Month Minutes (Minutes, Seconds) Tenth Month Max Demand Tenth Month Minutes (Minutes, Seconds) Eleventh Month Max Demand Eleventh Month Date (Date, Month) Eleventh Month Year (Year, Hours) Eleventh Month Minutes (Minutes, Seconds) Twelveth Month Max Demand Twelveth Month Date (Date, Month) Twelveth Month Year (Year, Hours) Twelveth Month Minutes (Minutes, Seconds) Thirteenth Month Max Demand Thirteenth Month Date (Date, Month) Thirteenth Month Year (Year, Hours) Thirteenth Month Minutes (Minutes, Seconds) Data Range 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 Fourteenth Month Max Demand Fourteenth Month Date (Date, Month) Fourteenth Month Year (Year, Hours) Fourteenth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Fifteenth Month Max Demand Fifteenth Month Date (Date, Month) Fifteenth Month Year (Year, Hours) Fifteenth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Sixteenth Month Max Demand Sixteenth Month Date (Date, Month) Sixteenth Month Year (Year, Hours) Sixteenth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Seventeenth Month Max Demand Seventeenth Month Date (Date, Month) Seventeenth Month Year (Year, Hours) Seventeenth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 0-59 0-59 0-59 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Units Implemented in Firmware Version Minutes, Seconds kW Date, Month 843086-011 Year, Hours 843086-011 Minutes, Seconds kW Date, Month Year, Hours Minutes, Seconds kW Date, Month Year, Hours Minutes, Seconds kW Date, Month 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 843086-011 Year, Hours 843086-011 Minutes, Seconds 843086-011 kW Date, Month 843086-013 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW Date, Month 843086-013 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW Date, Month 843086-013 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW Date, Month 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 843086-013 Reg Number Register Type Parameter Name 40670 RO KW 40671 RO 40672 RO 40673 RO 40674 RO 40675 RO 40676 RO 40677 RO 40678 RO 40679 RO 40680 RO 40681 RO 40682 RO 40683 RO 40684 RO 40685 RO 40686 RO 40687 RO 40688 RO 40689 RO 40690 RO 40691 RO 40692 RO 40693 RO 40694 RO 40695 RO 40696 RO 40697 RO 40698 RW KW KW KW KW KW KW Parameter Description Data Range Eighteenth Month Max Demand Eighteenth Month Date (Date, Month) Eighteenth Month Year (Year, Hours) Eighteenth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Nineteenth Month Max Demand Nineteenth Month Date (Date, Month) Nineteenth Month Year (Year, Hours) Nineteenth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Twentieth Month Max Demand Twentieth Month Date (Date, Month) Twentieth Month Year (Year, Hours) Twentieth Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Twenty First Month Max Demand Twenty First Month Date (Date, Month) Twenty First Month Year (Year, Hours) Twenty First Month Minutes (Minutes, Seconds) -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) Twenty Second Month Max Demand Twenty Second Month Date (Date, Month) Twenty Second Month Year (Year, Hours) Twenty Second Month Minutes (Minutes, Seconds) Twenty Third Month Max Demand Twenty Third Month Date (Date, Month) Twenty Third Month Year (Year, Hours) Twenty Third Month Minutes (Minutes, Seconds) Twenty Fourth Month Max Demand Twenty Fourth Month Date (Date, Month) Twenty Fourth Month Year (Year, Hours) Twenty Fourth Month Minutes (Minutes, Seconds) Date Format 0-59 0-59 0-59 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 -29,999 to +29,999 Date (1-31),Month (112) Year (0-99), Hours (023) 0-59 0 to 2 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Units Implemented in Firmware Version kW Date, Month 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW Date, Month 843086-013 843086-013 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW Date, Month 843086-013 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW Date, Month 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW 843086-013 Date, Month 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 843086-013 kW Date, Month 843086-013 Year, Hours 843086-013 Minutes, Seconds 843086-013 kW 843086-013 Date, Month 843086-013 Year, Hours 843086-013 Minutes, Seconds 0 – US Format 1 – EU Format 2 – ISO Format 843086-013 843086-013 843086--013 17 Reg Number Register Type Parameter Name Parameter Description 40699 40700 40701 40702 40703 40704 RO RO RO RO RO RO KW 40705 RO Last 60 Mins Max Demand Last 60 Mins Max Demand Date Last 60 Mins Max Demand Month Last 60 Mins Max Demand Year Last 60 Mins Max Demand Hours Last 60 Mins Max Demand Minutes Last 60 Mins Max Demand Seconds 40706 RO 40707 40708 40709 40710 40711 RO RO RO RO RO 40712 RO 40713 RO 40714 Last 60 Mins Max Demand Day KW RO 40715 40716 40717 40718 40719 40720 RO RO RO RO RO RO 40721 RO Last 24 Hours Max Demand Last 24 Hours Max Demand Date Last 24 Hours Max Demand Month Last 24 Hours Max Demand Year Last 24 Hours Max Demand Hours Last 24 Hours Max Demand Minutes Last 24 Hours Max Demand Seconds Last 24 Hours Max Demand Day KW Last 30 Days Max Demand Last 30 Days Max Demand Date Last 30 Days Max Demand Month Last 30 Days Max Demand Year Last 30 Days Max Demand Hours Last 30 Days Max Demand Minutes Last 30 Days Max Demand Seconds 40722 RO 18 40723 40724 RO RO 40725 RO 40726 RO 40727 RO 40728 RO 40729 RO Last 30 Days Max Demand Day KW Last 12 Months Max Demand Last 12 Months Max Demand Date Last 12 Months Max Demand Month Last 12 Months Max Demand Year Last 12 Months Max Demand Hours Last 12 Months Max Demand Minutes Last 12 Months Max Demand Seconds. Data Range Units Implemented in Firmware Version -29,999 to +29,999 Date (1-31) Month (1-12) Year (0-99) Hours (0-23) 0-59 kW Date Month Year Hours Minutes 843086-013 843086-013 0-59 Seconds 843086-013 0–6 0 – Sunday; 1 – Monday; 2 – Tuesday; 3 – Wednesday; 4 – Thursday; 5 – Friday; 6 – Saturday -29,999 to +29,999 Date (1-31) Month (1-12) Year (0-99) Hours (0-23) 843086-013 843086-013 843086-013 843086-013 kW Date Month Year Hours 843086-013 843086-013 843086-0132 843086-013 843086-013 0-59 Minutes 843086-013 0-59 Seconds 843086-013 0–6 0 – Sunday; 1 – Monday; 2 – Tuesday; 3 – Wednesday; 4 – Thursday; 5 – Friday; 6 – Saturday 843086-013 -29,999 to +29,999 Date (1-31) Month (1-12) Year (0-99), Hours (0-23) 0-59 kW Date Month Year Hours Minutes 843086-013 843086-013 843086-013 843086-013 843086-013 843086-013 0-59 Seconds 843086-013 0–6 0 – Sunday; 1 – Monday; 2 – Tuesday; 3 – Wednesday; 4 – Thursday; 5 – Friday; 6 – Saturday -29,999 to +29,999 Date (1-31) Month (1-12) 843086-013 kW Date Month 843086-013 843086-013 843086-013 Year (0-99), Year 843086-013 Hours (0-23) Hours 843086-013 0-59 Minutes 843086-013 0-59 Seconds 843086-013 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Reg Number 40730 Register Type RO 40731-40754 40755 Parameter Name Parameter Description Last 12 Months Max Demand Day Data Range Units 0–6 0 – Sunday; 1 – Monday; 2 – Tuesday; 3 – Wednesday; 4 – Thursday; 5 – Friday; 6 – Saturday Implemented in Firmware Version 843086-013 Undefined WO Clear all Demands (Write value 0x0000) ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 381339-307 D Clear Demand 843086-013 19 Note 3- Unexpected Interrupt Details: Note 1 - Languages Data 0 1 2 3 4 5 6 7 8 Language English Spanish Italian French German Portuguese Russian Korean Chinese Note 2- Bit Position in Health Register Value 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Functionality EEPROM DC Test AC Test RTC Test LCD Test Left Key Status Right Key Status Up Key Status Down Key Status ESC Key Status Enter Key Status Phase A ADC Phase B ADC Phase C ADC Phase N ADC RS485 Test APAC1 Test APAC2 Test Digital Inputs Test PLL Test AC Good Test LED Test Calibration Status Defaults loaded to all structures in database Defaults loaded to Config structure in database Runtime ADC error Unexpected Interrupt value(note 10) Not Used Not Used Description Value 1 2 3 4 5 6 6 8 9 10 11 12 13 14 15 Description SPI2 end-transfer/overrun SCI1 or SCI2 error interrupt SCC interrupt A MibADC end event conversion SW interrupt(SSI) HET interrupt 2 HECC1 interrupt B SCC interrupt B MibADC end groupt 1 conversion DMA interrupt 1 GIO interrupt B MibADC end group 2 conversion SCI3 error interrupt HECC2 interrupt A HECC2 interrupt B Note 4- Source Mode – Holding Register no. 40201 The source mode register defines the source bus to which the Power Meter is connected. The Energy register display window changes according to the bus defined. The user can specify a normal bus connection, an emergency bus connection, a connection to the load side of the bus or no specific designation. 0 - Normal 1 - Failed Binary value 0 (00h) 1 (01h) 2 (02h) Label Description NORMAL EMERGENCY LOAD 3 (03h) OTHER Normal power bus Emergency power bus Load power bus Any power bus with no designation on the Energy registers When the LOAD selection is chosen, the Power Meter uses the N/E INPUT status input to determine ATS switch position. Two sets of Energy registers are used; Normal energy registers & Emergency energy registers. 0-Normal 1 to 15-Failed Note 5- Potential Transformer Ratio – Register no. 40202 This register defines the full-scale voltage input value for the three phases of voltage. This is based on the ratio of the external voltage transformers (PTs) connected between the Power Meter and the power bus. Range 120 to 28,200 The value of 28,200 is the ratio 235:1 (120 * 235 = 28,200). Note that if external voltage transformers are not required and subsequently not used, the ratio should be set to 120, which is 1:1. 20 ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA 1 381339-307 D