221C Conectividad G5 Control Panel
221C Conectividad G5 Control Panel
This design specification describes the Modbus 0 indicates a broadcast command. This means that
communications protocol as supported by the ASCO every slave on the network will act on the
Power Manager Xp and 7000 Series Group 5 command, but it will not issue any responses.
Controller. It includes instructions on how to pass
Function Code Field. This is a second byte of
information into and out of the either device via the
each transmission and represents the commanded
Modbus network. This publication should be used by
action to the slave device (for queries from the
individuals wishing to integrate either device into their
master) or the action that was taken by the slave
facility by developing software to communicate with
device (for responses from the slave). Codes
either device. Additional information can be found in
between 1 and 127 are defined as Modbus RTU
Power Manager Xp Operator’s Manual 381333-199
functions. The function codes supported by the
and Group 5 Controller User’s Guide 381333-126.
Power Manager Xp are detailed on page 4. The
function codes supported by the Group 5
Modbus Protocol Controller are detailed on page 10.
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
uint index;
} /* 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):
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:
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 www.asco.com
381339-221 C 3
Supported Function Codes for Power Manager Xp
Function # 03 (03h) – Read Holding Registers about the about the data register definitions of the
Power Manager Xp.
This function code allows the master to read one or
more consecutive data registers from the Power The Power Manager Xp currently supports the
Manager Xp. The data registers are always 16 bit (two following Preset Single register addresses. If a
byte) values, transmitted high order byte first. Refer to Function #06 command is issued without one of these
Register Map on page 12 for details about the data register addresses, the Power Manager Xp will
register definitions of the Power Manager Xp. respond with an invalid address range Exception
Response (see Exception Responses on page 5).
The following example shows the format of a
transmission between a master requesting device and Address
Address (in hex Description
the responding Power Manager Xp (slave device) at notation)
address 24. The master desires to read the four values 40095 005E Relay outputs (DO1-DO4)
of current, IA, IB, IC, IAVE, beginning at Holding 40200 00C7 System type
register location 40021 (which is a “Data starting 40201 00C8 Source mode
address” of 20 decimal or 14 hexadecimal). 40202 00C9 Potential transformer ratio (PTR)
40203 00CA Current transformer ratio (CTR)
Master Transmission 40204 00CB Neutral current transformer ratio
(CT4R)
Packet Format Example (in hex) 40205 00CC SCI comm. port (J5) protocol
Slave address 18 40206 00CD SCI comm. port (J5) baud rate
Function code 03 40207 00CE SCI comm. port (J5) device
Data starting address (high byte) 00 address
Data starting address (low byte) 14 40208 00CC 485 comm. Port (J1) protocol
Number of registers (high byte) 00 40209 00CD 485 comm. Port (J1) baud rate
Number of registers (low byte) 04 40210 00CE 485 comm. port (J1) device
CRC16 (low byte) 06 address
CRC16 (high byte) 04 40211 00CF Menu language selection
40212 00D0 Demand window size (in minutes)
Slave Response 40213 00D1 Demand subinterval size (fixed at
1 minute)
Packet Format Example (in hex) 40214 00D2 Reset inst. & max. demand
Slave address 18 registers
Function code 03 40215 00D3 Reset energy registers
Byte count 08
Data word #1 (high byte) 04
Data word #1 (low byte) CE
The following example shows the format of a
Data word #2 (high byte) 04 transmission between a master device and the
Data word #2 (low byte) D3 responding Power Manager Xp (slave device) at
Data word #3 (high byte) 04 address 24. The master desires to set the System Type
Data word #3 (low byte) D3 (Holding register 40200) to a Single Phase – 3 Wire
Data word #4 (high byte) 04 system (data value 02). See System Type on page 7 for
Data word #4 (low byte) CE
CRC16 (low byte) 36
details.
CRC16 (high byte) 7F Master Transmission
Packet Format Example (in hex)
The Power Manger Xp supports the following Read
Slave address 18
Holding Register addresses-decimal: 11-26, 31-48, Function code 06
51-64, 71-84, 87-94, 96-125, 127-128, 130-137, 149- Data address (high byte) 00
159. The Type of those Registers is defined as RO Data address (low byte) C7
(Read only). Data word (high byte) 00
Data word (low byte) 02
CRC16 (low byte) BB
Function # 06 (06h) – Preset Single Register CRC16 (high byte) FF
This function code allows the master device to modify
the contents of a single configuration register within
the Power Manager Xp. The data registers are always
16 bit (two byte) values, transmitted high order byte
first. Refer to Register Map on page 12 for details
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
4 381339-221 C
Slave Response Function # 16 (10h) – Preset Multiple Registers
Packet Format Example (in hex) This function code allows the master device to modify
Slave address 18
the contents of consecutive configuration registers
Function code 06
Data starting address (high byte) 00 within the Power Manager Xp. The data registers are
Data starting address (low byte) C7 always 16 bit (two byte) values, transmitted high order
Number of registers (high byte) 00 byte first. Refer to Register Map on page 12 for details
Number of registers (low byte) 02 about the data register definitions of the Power
CRC16 (low byte) BB Manager Xp.
CRC16 (high byte) FF
The Power Manager Xp currently supports the
The Power Manger Xp supports the following Preset following Preset Multiple register ranges. If a Function
Single Register addresses -decimal: 65-68, 95, 148, #16 command is issued without one of these
160, and 200-215. corresponding register ranges, the Power Manager Xp
will respond with an invalid address range Exception
Response (see Exception Responses on page 6).
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 5
Exception Responses
If the Modbus master device sends an unsupported The following example shows the format of a trans-
command, attempts to read an invalid holding register, mission between a master device and the responding
or attempts to write invalid data, the Power Manager Power Manager Xp (slave device) at address 24. The
Xp (Modbus slave) issues an exception response. The master device attempts to write an invalid data value
format for the exception response is as follows: (04) to the System Type holding register 40200. The
Power Manager Xp slave device responds with Error
1. SLAVE ADDRESS
code 03.
2. FUNCTION CODE*
(with the most-significant-bit set to a 1) Master Transmission
3. ERROR CODE Packet Format Example (in hex)
4. CRC16 – low order byte Slave address 18
5. CRC16 – high order byte Function code 06
Data starting address (high byte) 00
* Note: The high order bit of the function code Data starting address (low byte) C7
Data (high byte) 00
has been set to one to indicate an exception
Data (low byte) 04
response has been generated. CRC16 (low byte) 3B
CRC16 (high byte) FD
The following table is a list of the exception codes
supported by the Power Manager Xp. Slave Response
Exception Response Error Codes Packet Format Example (in hex)
Slave address 18
Error Error Power Manager Xp
Function code 86
code name implementation
Error code 03
Illegal The slave does not support the
01 function function code contained in the master CRC16 (low byte) D3
query packet. CRC16 (high byte) A6
Illegal The slave does not support the Holding
02 data Register address referenced in the
address data field of the master query packet. The following example shows the format of a
Illegal The slave does not support the data transmission between a master device and the
03 data referenced in the data field of the responding Power Manager Xp (slave device) at
value master query packet. address 24. The master device attempts to write to an
Device The addresses slave is unable to invalid address, 40216 (0x00D7). The Power Manager
04 failure perform the action requested due to an
internal failure or malfunction. Xp slave device responds with Error code 02.
Master Transmission
Packet Format Example (in hex)
Slave address 18
Function code 06
Data starting address (high byte) 00
Data starting address (low byte) D7
Data (high byte) 00
Data (low byte) 03
CRC16 (low byte) 7B
CRC16 (high byte) FA
Slave Response
Packet Format Example (in hex)
Slave address 18
Function code 86
Error code 02
CRC16 (low byte) 12
CRC16 (high byte) 66
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
6 381339-221 C
Configuration Register Details
System Type – Holding Register no. 40200 Current Transformer Ratio
The system type register defines the type of system to
– Holding Register no. 40203
which the Power Manager Xp is connected. This register defines the full-scale current input value
Binary Label Description for the three phases of current. This is based on the
value ratio of the external current transformers (CTs) con-
0 (00h) 4W_WYE 3 Phase, 4 wire WYE system nected between the Power Manager Xp and the power
1 (01h) 3W_DELTA 3 Phase, 3 wire DELTA system bus.
2 (02h) 3W_1PHASE Single phase, 3 wire system
3 (03h) 2W_1PHASE Single phase, 2 wire system Range
5 to 24,000
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 7
485 Communications Port (J1) Protocol Language – Holding Register no. 40211
– Holding Register no. 40208 Defines the Language displayed on the liquid crystal
Defines the protocol of the dedicated RS-485 display (LCD) interface.
communications port, if present on Power Manager Binary Label Description
Xp. ‡ value
0 (00h) ENGLISH English language*
Binary Label Description
value * Currently only the English language is available.
0 (00h) ASCOBusI ASCOBusI protocol
1 (01h) ASCOBusII ASCOBusII protocol
2 (02h) ModbusRTU ModbusRTU protocol Demand Window Size
– Holding Register no. 40212
485 Communications Port (J1) Baud Rate Defines the length of the demand period, in minutes,
– Holding Register no. 40209 used in calculating the sliding window demand values.
Range
Defines the baud rate of the dedicated RS-485
1 to 15
communications port, if present on Power Manager
Xp. ‡
Binary Label Description Subinterval Size
value
1 (01h) _9600 9600 bps
– Holding Register no. 40213
2 (02h) _19_2K 19200 bps Defines the length of the subinterval demand period, in
3 (03h) _38_4K 38400 bps
minutes, used in calculating the sliding window
4 (04h) _57_6K 57600 bps
demand values. This value is fixed at 1 minute.
Range
485 Communications Port (J1) Device Address 1
– Holding Register no. 40210
Defines the Power Manager Xp address of the Reset Demand
dedicated RS-485 communications port, if present on – Holding Register no. 40214
Power Manager Xp.‡
Writing a value of 0xFFFF to this holding register
Protocol Allowable address range
clears the Minimum and Maximum KWDemand
ASCOBusI 0-31
ASCOBusII 1-239 registers.
ModbusRTU 1-239
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
8 381339-221 C
Status Input Names (8) Relay Output Names (4)
– Holding Register nos. 40326-40389 – Holding Register nos. 40390-40421
Defines the name of the eight Status Inputs (S1 – S8). Defines the name of the four Relay Outputs (DO1 –
The name consists of sixteen ASCII characters, which DO4). The name consists of sixteen ASCII characters,
are assigned two characters per register. which are assigned two characters per register.
Register Register description Register Register description
Address (2 ASCII characters per register) Address (2 ASCII characters per register)
Base INPUT_NAMEchar1 + INPUT_NAMEchar2 Base OUTPUT_NAMEchar1 + OUTPUT_NAMEchar2
Base + 1 INPUT_NAMEchar3 + INPUT_NAMEchar4 Base + 1 OUTPUT_NAMEchar3 + OUTPUT_NAMEchar4
Base + 2 INPUT_NAMEchar5 + INPUT_NAMEchar6 Base + 2 OUTPUT_NAMEchar5 + OUTPUT_NAMEchar6
Base + 3 INPUT_NAMEchar7 + INPUT_NAMEchar8 Base + 3 OUTPUT_NAMEchar7 + OUTPUT_NAMEchar8
Base + 4 INPUT_NAMEchar9 + INPUT_NAMEchar10 Base + 4 OUTPUT_NAMEchar9 + OUTPUT_NAMEchar10
Base + 5 INPUT_NAMEchar11 + INPUT_NAMEchar12 Base + 5 OUTPUT_NAMEchar11 + OUTPUT_NAMEchar12
Base + 6 INPUT_NAMEchar13 + INPUT_NAMEchar14 Base + 6 OUTPUT_NAMEchar13 + OUTPUT_NAMEchar14
Base + 7 INPUT_NAMEchar15 + INPUT_NAMEchar16 Base + 7 OUTPUT_NAMEchar15 + OUTPUT_NAMEchar16
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 9
Supported Function Codes for Group 5 Controller
Function # 03 (03h) – Read Holding Registers about the about the data register definitions of the
Group 5 Controller.
This function code allows the master to read one or
more consecutive data registers from the Group 5 The following example shows the format of a
Controller. The data registers are always 16 bit (two transmission between a master device and the
byte) values, transmitted high order byte first. Refer to responding Group 5 Controller (slave device) at
Register Map on page 18 for details about the data address 24 (24 decimal = 18 hex). The master desires
register definitions of the Group 5 Controller. to set the time delay TDES at Holding register 40132
(132 decimal = 84 hex) to 5 seconds (data value 05).
The following example shows the format of a
transmission between a master requesting device and Master Transmission
the responding Group 5 Controller (slave device) at Packet Format Example (in hex)
address 24 (24 decimal = 18 hex).. The master desires Slave address 18
to read the three values of voltage, NVAB, NVBC, Function code 06
NVCA, IAVE, beginning at Holding register location Data address (high byte) 00
40016 (16 decimal = 10 hexadecimal). Data address (low byte) 84
Data word (high byte) 00
Master Transmission Data word (low byte) 05
CRC16 (low byte) 0B
Packet Format Example (in hex) CRC16 (high byte) E9
Slave address 18
Function code 03
Data starting address (high byte) 00
Slave Response
Data starting address (low byte) 10 Packet Format Example (in hex)
Number of registers (high byte) 00 Slave address 18
Number of registers (low byte) 03 Function code 06
CRC16 (low byte) 04 Data address (high byte) 00
CRC16 (high byte) 0E Data address (low byte) 84
Number of registers (high byte) 00
Slave Response Number of registers (low byte) 05
CRC16 (low byte) 0B
Packet Format Example (in hex) CRC16 (high byte) E9
Slave address 18
Function code 03
Byte count 06
The Group 5 Controller currently supports the
Data word #1 (high byte) 00 following Preset Single Register addresses (decimal):
Data word #1 (low byte) 78 44, 101-173.
Data word #2 (high byte) 00
Data word #2 (low byte) 79 Function # 16 (10h) – Preset Multiple Registers
Data word #3 (high byte) 00
Data word #3 (low byte) 77 This function code allows the master device to modify
CRC16 (low byte) B7 the contents of consecutive configuration registers
CRC16 (high byte) 10
within the Group 5 Controller. The data registers are
always 16 bit (two byte) values, transmitted high order
The Group 5 Controller currently supports the byte first. Refer to Register Map on page 18 for details
following Read Holding Register addresses (decimal): about the data register definitions of the Group 5
11-54, 100, 105-173. Maximum number of registers Controller.
that can be read with a single 03H command is 12.
Attempting to read more than 12 registers with a single The following example shows the format of a
03H command will result in Exception Response from transmission between a master requesting device and
the Group 5 Controller. the responding Group 5 Controller (slave device) at
address 24 (24 decimal = 18 hex). The master desires
Function # 06 (06h) – Preset Single Register to set the following parameters occupying consecutive
register locations: NVDO at Holding register 40118
This function code allows the master device to modify (118 decimal = 76 hex) to 85% (85 decimal = 55 hex),
the contents of a single configuration register within NVPU at Holding register 40119 to 90% (90 decimal
the Group 5 Controller. The data registers are always = 5A hex) and NVTP at Holding register 40120 to
16 bit (two byte) values, transmitted high order byte 110% (110 decimal = 6E hex).
first. Refer to Register Map on page 18 for details
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
10 381339-221 C
Master Transmission 1. SLAVE ADDRESS
Packet Format Example (in hex)
2. FUNCTION CODE*
Slave address 18 (with the most-significant-bit set to a 1)
Function code 10 3. ERROR CODE
Data starting address (high byte) 00 4. CRC16 – low order byte
Data starting address (low byte) 76 5. CRC16 – high order byte
Number of registers (high byte) 00
Number of registers (low byte) 03
Byte count 06
* Note: The high order bit of the function code
Data word #1 (high byte) 00 has been set to one to indicate an exception
Data word #1 (low byte) 55 response has been generated.
Data word #2 (high byte) 00
Data word #2 (low byte) 5A The following table is a list of the exception codes
Data word #3 (high byte) 00 supported by the Group 5 Controller.
Data word #3 (low byte) 6E
CRC16 (low byte) 8A Exception Response Error Codes
CRC16 (high byte) 1E
Error Error Group 5 Controller
code name implementation
Slave Response Illegal The slave does not support the
Packet Format Example (in hex) 01 function function code contained in the master
Slave address 18 query packet.
Function code 10 Illegal The slave does not support the Holding
02 data Register address referenced in the
Data starting address (high byte) 00
address data field of the master query packet.
Data starting address (low byte) 76
Illegal The slave does not support the data
Number of registers (high byte) 00
03 data referenced in the data field of the
Number of registers (low byte) 03
value master query packet.
CRC16 (low byte) 63
Device The addresses slave is unable to
CRC16 (high byte) DB 04 failure perform the action requested due to an
internal failure or malfunction.
The Group 5 Controller currently supports the
following Preset Multiple Register addresses The following example shows the format of a trans-
(decimal): 44, 101-173. mission between a master device and the responding
Group 5 Controller (slave device) at address 24. The
Note: To access the Log Events data at Holding master device attempts to write data word 0015H to a
Register addresses 40044-40053 first the selected Log Read Only Register at 40016 (16 decimal = 10 hex).
Event number has to be written into Register 40044 The Group 5 Controller slave device responds with
using Function 06H command and then the data of that Error code 02.
Event can be read from Registers 40045-40053 using
Function 03H command. Master Transmission
Packet Format Example (in hex)
Similarly, to access the Feature F11C Schedules data Slave address 18
at Holding Registers addresses 40112-40117, first the Function code 06
Data starting address (high byte) 00
selected Schedule number to access (read or write) has
Data starting address (low byte) 10
to be written into Register 40112 using Function 06H Data (high byte) 00
command and then the data of that Schedule can be Data (low byte) 15
accessed (read or written to) at Registers 40113-40117 CRC16 (low byte) 4B
using Function 03H, 06H, or 10H command. CRC16 (high byte) C9
Slave Response
Exception Responses Packet Format Example (in hex)
Slave address 18
If the Modbus master device sends an unsupported Function code 86
command, attempts to read an invalid holding register, Error code 02
or attempts to write invalid data, the Group 5 CRC16 (low byte) 12
Controller (Modbus slave) issues an exception CRC16 (high byte) 66
response. The format for the exception response is as
follows:
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 11
Register Map for Power Manager Xp
The following table describes the mapping of the registers within the Power Manager Xp to Holding Registers defined in the Modbus protocol.
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
Modbus is a registered trademark of Gould Inc. 1 381339-221 C
40053 RO NormkWHEXP Normal kWH Export (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40054 RO NormkWHEXP Normal kWH Export (HO word) FS611842-006
40055 RO NormkWHNET Normal kWH Net (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40056 RO NormkWHNET Normal kWH Net (HO word) FS611842-006
40057 RO NormkVarHIMP Normal kVarH Import (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40058 RO NormkVarHIMP Normal kVarH Import (HO word) FS611842-006
40059 RO NormkVarHEXP Normal kVarH Export (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40060 RO NormkVarHEXP Normal kVarH Export (HO word) FS611842-006
40061 RO NormkVarHNET Normal kVarH Net (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40062 RO NormkVarHNET Normal kVarH Net (HO word) FS611842-006
40063 RO NormkVAHNET Normal kVAH Net (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40064 RO NormkVAHNET Normal kVAH Net (HO word) FS611842-006
40065 RW Nom_Freq Nominal Freq 0– 60Hz, 1–50Hz 0 or 1 AS629262-004
40066 RW kW_Capacity Nominal kW Capacity 0-24999 AS629262-004
40067 RW Nom_Volt Nominal Voltage 115-59999 AS629262-004
40068 RW Nom_Amps Nominal Current 0-29999 AS629262-004
40069-40070 Undefined
40071 RO EmerkWHIMP Emerg kWH Import (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40072 RO EmerkWHIMP Emerg kWH Import (HO word) FS611842-006
40073 RO EmerkWHEXP Emerg kWH Export (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40074 RO EmerkWHEXP Emerg kWH Export (HO word) FS611842-006
40075 RO EmerkWHNET Emerg kWH Net (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40076 RO EmerkWHNET Emerg kWH Net (HO word) FS611842-006
40077 RO EmerkVarHIMP Emerg kVarH Import (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40078 RO EmerkVarHIMP Emerg kVarH Import (HO word) FS611842-006
40079 RO EmerkVarHEXP Emerg kVarH Export (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40080 RO EmerkVarHEXP Emerg kVarH Export (HO word) FS611842-006
40081 RO EmerkVarHNET Emerg kVarH Net (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40082 RO EmerkVarHNET Emerg kVarH Net (HO word) FS611842-006
40083 RO EmerkVAHNET Emerg kVAH Net (LO word) -1,999,999,999 to + 1,999,999,999 FS611842-006
40084 RO EmerkVAHNET Emerg kVAH Net (HO word) FS611842-006
40085-40086 Undefined
40087 RO kWT Active Power (Watts) total -29,999 to +29,999 FS611842-006
40088 RO kWDemandT Instantaneous Watt Demand -29,999 to +29,999 FS611842-006
40089 RO MaxkWDeman Maximum Watt Demand -29,999 to +29,999 FS611842-006
40090 RO kWT Active Power (Watts) total -29,999 to +29,999 FS611842-006
40091 RO IAVE Average current 0 – 29,999 FS611842-006
40092 RO VLAVE Line to line average voltage 0 – 59,999 FS611842-006
40093 RO Freq. Frequency on phase VA (40.00 to 80.00) * 100 FS611842-006
40094 RO StatusInputs 8 General purpose digital inputs Bits 0 – 7 Þ S1–S8 FS611842-006
40095 RW RelayOutputs 4 General purpose digital outputs Bits 0 – 3 Þ DO1–DO4 FS611842-006
40096 RO SwitchPosition Main & auxiliary Switch positions 0:norm & 1:emer. FS611842-006
40097 RO kWT Active Power total -29,999 to +29,999 FS611842-006
40098 RO kVART Reactive Power total -29,999 to +29,999 FS611842-006
40099 RO kVAT volt-ampere Power total 0 – 29,999 FS611842-006
40100 RO PfT Power Factor total (-0.99 to +1.00) * 100 FS611842-006
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 13
40101 RO Freq. Frequency on phase VA (40.00 to 80.00) * 100 FS611842-006
40102-40107 RO V_String Software Version string 12 ASCII characters FS611842-006
40108-40113 RO SW_Date Software build date string 12 ASCII characters FS611842-006
40114-40119 RO SerialNumber Device serial number 12 ASCII characters FS611842-006
40120-40125 RO ModelNumber Device model number 12 ASCII characters FS611842-006
40126 Undefined
40127 RO H_STATUS Health status word FS611842-006
40128-Bit0 RO SP_STATUS Setpoint #1 Output Status Normal/Tripped 0 or 1 AS629262-004
40128-Bit1 RO SP_STATUS Setpoint #1 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit 2 RO SP_STATUS Setpoint #2 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit 3 RO SP_STATUS Setpoint #2 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit 4 RO SP_STATUS Setpoint #3 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit 5 RO SP_STATUS Setpoint #3 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit 6 RO SP_STATUS Setpoint #4 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit 7 RO SP_STATUS Setpoint #4 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit 8 RO SP_STATUS Setpoint #5 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit 9 RO SP_STATUS Setpoint #5 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit10 RO SP_STATUS Setpoint #6 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit11 RO SP_STATUS Setpoint #6 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit12 RO SP_STATUS Setpoint #7 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit13 RO SP_STATUS Setpoint #7 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40128- Bit14 RO SP_STATUS Setpoint #8 Output Status Normal/Tripped 0 or 1 AS629262-004
40128- Bit15 RO SP_STATUS Setpoint #8 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40129- Bit 0 RO SP_STATUS Setpoint #9 Output Status Normal/Tripped 0 or 1 AS629262-004
40129- Bit 1 RO SP_STATUS Setpoint #9 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40129- Bit 2 RO SP_STATUS Setpoint #10 Output Status Normal/Tripped 0 or 1 AS629262-004
40129- Bit 3 RO SP_STATUS Setpoint #10 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40129- Bit 4 RO SP_STATUS Setpoint #11 Output Status Normal/Tripped 0 or 1 AS629262-004
40129- Bit 5 RO SP_STATUS Setpoint #11 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40129- Bit 6 RO SP_STATUS Setpoint #12 Output Status Normal/Tripped 0 or 1 AS629262-004
40129- Bit 7 RO SP_STATUS Setpoint #12 Acknowledge State Ack/Pendg 0 or 1 AS629262-004
40129- Bit 8 RO SP_STATUS kW Demand Setpoint Status Normal/Trip 0 or 1 AS629262-004
40129 Not Used Bit 9:Bit 15
40130 RO kWT Active Power (Watts) total -29,999 to +29,999 FS611842-006
40131 RO kWDemandT Instantaneous Watt Demand -29,999 to +29,999 FS611842-006
40132 RO MaxkWD Maximum Watt Demand -29,999 to +29,999 FS611842-006
40133 RO kWD_Date Maximum Watt Demand Date 1-31 FS611842-006
40134 RO kWD_Month Maximum Watt Demand Month 1-12 FS611842-006
40135 RO kWD_Year Maximum Watt Demand Year 1-99 FS611842-006
40136 RO kWD_Hour Maximum Watt Demand Hour 1-23 FS611842-006
40137 RO kWD_Minute Maximum Watt Demand Minute 1-59 FS611842-006
40138-40140 Undefined
40141 RW PM_TIME Power Manager Hours 0-23 AS629262-004
40142 RW PM_TIME Power Manager Minutes 0-59 AS629262-004
40143 RW PM_DATE Power Manager Year 0-99 AS629262-004
40144 RW PM_DATE Power Manager Month 1-12 AS629262-004
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
14 381339-221 C
40145 RW PM_DATE Power Manager Day of Month 1-31 AS629262-004
40146 RW PM_DATE Power Manager Day of Week (0-S, 1-M, etc) 1-6 AS629262-004
40147 Undefined
40148-Bit 0 WO SP_ACK Setpoint #1 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 1 WO SP_ACK Setpoint #2 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 2 WO SP_ACK Setpoint #3 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 3 WO SP_ACK Setpoint #4 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 4 WO SP_ACK Setpoint #5 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 5 WO SP_ACK Setpoint #6 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 6 WO SP_ACK Setpoint #7 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 7 WO SP_ACK Setpoint #8 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 8 WO SP_ACK Setpoint #9 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit 9 WO SP_ACK Setpoint #10 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit10 WO SP_ACK Setpoint #11 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit11 WO SP_ACK Setpoint #12 Output Alarm Acknowledge 0 or 1 AS629262-004
40148- Bit12 Not Used
40148- Bit13 Not Used
40148- Bit14 Not Used
40148- Bit15 Not Used
40149 RO Event _LOG Number of Unread Event Log Entries 0-99 AS629262-004
40150 RO Event _LOG# Event Number (0 – The Latest One) 0-255 AS629262-004
40151 RO Event_Year Event Year 0-99 AS629262-004
40152 RO Event _Month Event Month 1-12 AS629262-004
40153 RO Event _Day Event Month Day 1-31 AS629262-004
40154 RO Event _Week Event Week Day 0-6 AS629262-004
40155 RO Event _Hour Event Hour 0-23 AS629262-004
40156 RO Event _Minute Event Minute 0-59 AS629262-004
40157 RO Event _Second Event Second 0-59 AS629262-004
40158 RO Event _Event Event Parameter: 1-22 AS629262-004
1-kW Prealarm,
2-kW Alarm,
3-Over Voltage,
4-Under Voltage,
5-OverFrequency,
6-UnderFrequency,
7-Reverse Power,
8-Reverse VARs,
9-Reverse Current,
10-Negative Sequence Current,
11-Negative Sequence Voltage,
12-Input#1,
13-Input#2,
14-Input#3,
15-Input#4,
16-Input#5,
17-Input#6,
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 15
18-Input#7,
19-Input#8,
20-Input#9(switch position),
21-None,
22-KW Demand
40159 RO Event _Cause Event Cause: 0-Reset, 1-Tripped, 2-Acknowled 0-2 AS629262-004
40160-Bit 0 RW DEVICE86 Device 86 Active? 0-No or 1-Yes AS629262-004
40160-Bit 1 RW DEVICE86 Device 86 State 0-No or 1-Tripped AS629262-004
40160-Bit 2 RW DEVICE86 Device 86 Hold 0-Reset Ok or 1-Do Not Reset AS629262-004
40161-40199 Undefined
40200 RW TYPESYSTEM System Type FS611842-006
40201 RW MODESOURCE Source Mode FS611842-006
40202 RW PTR Potential Transformer Ratio FS611842-006
40203 RW CTR Current Transformer Ratio FS611842-006
40204 RW CT4R 4th Current Input Transformer Ratio FS611842-006
40205 RW PROTOCOLSCI SCI comm. port (J5) protocol FS611842-006
40206 RW BAUDSCI SCI comm. port (J5) baud rate FS611842-006
40207 RW ADDRSCI SCI comm. port (J5) device address FS611842-006
40208 RW PROTOCOL485 485 comm. port (J1) protocol FS611842-006
40209 RW BAUD485 485 comm. port (J1) baud rate FS611842-006
40210 RW ADDR485 485 comm. port (J1) device address FS611842-006
40211 RW TYPELANG Language selection FS611842-006
40212 RW Window_Size Demand Window size (in minutes) FS611842-006
40213 RW Subintl_Size Demand Subinterval size (fixed at 1 minute) FS611842-006
40214 WO Reset_Demand Resets Inst. & Max. demand registers FS611842-006
40215 WO Clear_Energy Clears Energy registers to 0 FS611842-006
40216-40229 Undefined
40230-40235 RW SETPOINT Setpoint configuration settings
40236-40242 RW SETPOINT1 Setpoint#1 Configuration Settings: AS629262-004
40236 RW #I Setpoint Number 0-11
40237 RW Parameter Setpoint Parameter 0-20
40238 RW High_limit Setpoint Trip Level 0-500
40239 RW TD_Operate Setpoint Trip Time Delay 0-600
40240 RW Low_Limit Setpoint Reset Level 0-500
40241 RW TD_Release Setpoint Reset Time Delay 0-600
40242-Bit0-3 RW Output Setpoint Digital Output :DO1 To DO4 0 or 1
40242-Bit 4 RW -- Output No Acknowledg/Acknowledg 0 or 1
40242-Bit 5 RW -- Output Status Normal/Tripped 0 or 1
40242-Bit 6 RW -- Previous Acknowledge/Pending 0 or 1
40242-Bit 7 RW -- Present Acknowledge/Pending 0 or 1
40243-40249 RW SETPOINT2 Setpoint#2 Configuration Settings Same Setting as SP#1 AS629262-004
40250-40256 RW SETPOINT3 Setpoint#3 Configuration Settings Same Setting as SP #1 AS629262-004
40257-40263 RW SETPOINT4 Setpoint#4 Configuration Settings Same Setting as SP #1 AS629262-004
40264-40270 RW SETPOINT5 Setpoint#5 Configuration Settings Same Setting as SP #1 AS629262-004
40271-40277 RW SETPOINT6 Setpoint#6 Configuration Settings Same Setting as SP #1 AS629262-004
40278-40284 RW SETPOINT7 Setpoint#7 Configuration Settings Same Setting as SP #1 AS629262-004
40285-40291 RW SETPOINT8 Setpoint#8 Configuration Settings Same Setting as SP #1 AS629262-004
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
16 381339-221 C
40292-40298 RW SETPOINT9 Setpoint#9 Configuration Settings Same Setting as SP #1 AS629262-004
40299-40305 RW SETPOINT10 Setpoint#10 Configuration Settings Same Setting as SP #1 AS629262-004
40306-40312 RW SETPOINT11 Setpoint#11 Configuration Settings Same Setting as SP #1 AS629262-004
40313-40319 RW SETPOINT12 Setpoint#12 Configuration Settings Same Setting as SP #1 AS629262-004
40320-40321 Undefined
40322-40325 RW PM-Name Power Manager Name 8 ASCII chars AS629262-004
40326-40333 RW Status1_Name S1 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40334-40341 RW Status2_Name S2 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40342-40349 RW Status3_Name S3 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40350-40357 RW Status4_Name S4 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40358-40365 RW Status5_Name S5 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40366-40373 RW Status6_Name S6 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40374-40381 RW Status7_Name S7 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40382-40389 RW Status8_Name S8 Status Input name 15 chars+ 1 byte eng. alarms FS611842-006
40390-40397 RW Relay1_Name DO1 Relay Output name 15 chars+ 1 byte eng. alarms FS611842-006
40398-40405 RW Relay2_Name DO2 Relay Output name 15 chars+ 1 byte eng. alarms FS611842-006
40406-40413 RW Relay3_Name DO3 Relay Output name 15 chars+ 1 byte eng. alarms FS611842-006
40414-40421 RW Relay4_Name DO4 Relay Output name 15 chars+ 1 byte eng. alarms FS611842-006
40422-40431 RW PM-Location Power Manager Location 20 ASCII chars AS629262-004
40432 Undefined
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 17
Register Map for Group 5 Controller
The following table describes the mapping of the registers within the Group 5 Controller to Holding Registers defined in the Modbus protocol.
Real Time Data Registers
Register Register Parameter Parameter Data Range Implemented in
Address Type Name Description Firmware Version
40001- 40010 Undefined
40011 RO PHASE_0 Phase Shift between Normal & Emergency -1800 – 1800 607540-023
40012 RO NFRQ_0 Normal Frequency 0 – 7000 607540-023
40013 RO EFRQ_0 Emergency Frequency 0 – 7000 607540-023
40014-Bit 0 RO I_MAIN_ON_N Main on Normal Boolean 607540-023
40014-Bit 1 RO I_MAIN_ON_E Main on Emergency Boolean 607540-023
40014-Bit 2 RO I_AUX_ON_N Auxiliary on Normal Boolean 607540-023
40014-Bit 3 RO I_AUX_ON_E Auxiliary on Emergency Boolean 607540-023
40014-Bit 4 RO N.SrcAvl Normal Source Available Boolean 607540-023
40014-Bit 5 E.SrcAvl Emergency Source Available Boolean 607540-023
40015-Bit 0 RO STATPHR.NABC Normal Phase Rotation is ABC Boolean 607540-023
40015-Bit 1 RO STATPHR.NCBA Normal Phase Rotation is CBA Boolean 607540-023
40015-Bit 2 RO STATPHR.EABC Emergency Phase Rotation is ABC Boolean 607540-023
40015-Bit 3 RO STATPHR.ECBA Emergency Phase Rotation is CBA Boolean 607540-023
40015-Bit 4 RO XRQ_F11C_LX Engine Exerciser with Load Active Boolean 607540-023
40015-Bit 5 RO SComFeat.XfrCommOn Serial F17 is Active Boolean 607540-023
40015-Bit 6 RO I_F17_ON External F17 is Active Boolean 607540-023
40016 RO NV_AB Normal Voltage Phase AB 0 to 28200 607540-023
40017 RO NV_BC Normal Voltage Phase BC 0 to 28200 607540-023
40018 RO NV_CA Normal Voltage Phase CA 0 to 28200 607540-023
40019 RO NVUnblCur Normal Voltage Unbalance 0 to 99 % 607540-023
40020 RO EV_AB Emergency Voltage Phase AB 0 to 28200 607540-023
40021 RO EV_BC Emergency Voltage Phase BC 0 to 28200 607540-023
40022 RO EV_CA Emergency Voltage Phase CA 0 to 28200 607540-023
40023 RO EVUnblCur Emergency Voltage Unbalance 0 to 99 % 607540-023
40024 RO I_NOM_V Nominal Voltage 0 to 15 607540-023
40025-Bit 0 RO I_FRQ_60 Nominal Frequency Bool (60-50 Hz) 607540-023
40025-Bit 1 RO I_N3PHASE Normal Source 3 Phase sensing Boolean 607540-023
40025-Bit 2 RO I_E3PHASE Emergency Source 3 Phase sensing Boolean 607540-023
40025-Bit3-4 RO TSType Transfer Switch Type (CTTS, OTTS,DTTS) 0 to 3 607540-023
40025-Bit 5 RO TSBypass Transfer Switch Bypass or not Boolean 607540-023
40026 RO TSAmp Transfer Switch Amp rating 0 to 15 607540-023
40027-40032 RO LCD_CP_VER Control Panel Software version 10 char. string 607540-023
40033-40038 RO LCD_CP_DATE Control Panel Software date 10 char. string 607540-023
40039-Bit 0 RO OPSave.b.ATSLout Transfer Switch Locked Out Boolean 607540-023
40039-Bit 1 RO OPSave.b.XtdPrlAl CTTS extended parallel alarm Boolean 607540-023
40039-Bit 2 RO OPSave.b.SyncFail CTTS failure to synch alarm Boolean 607540-023
40039-Bit 3 RO DTTSLoadDisc DTTS Load Disconnect Boolean 607540-023
40039-Bit 4 RO I_EXT_PLOCK_ON External parameter lock is active Boolean 607540-023
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
18 381339-221 C
40039-Bit 5 RO Relay.NR Engine running Boolean 607540-023
40040 RO CPState Control Panel State 0 to 255 607540-023
40041 RO CPStateData Control Panel Status State Data (àlookup table) 0 to 65535 607540-023
40042-Bit 0 RO F.F6BOn Feature 6B Boolean 607540-023
40042-Bit 1 RO F.F6COn Feature 6C Boolean 607540-023
40042-Bit 2 RO I_F17_ON Feature 17 Boolean 607540-023
40042-Bit 3 RO SComFeat.XfrCommOn Feature 17 Serial Boolean 607540-023
40042-Bit 4 RO F.F29On Feature 29 Boolean 607540-023
40042-Bit 5 RO F.F30On Feature 30 Boolean 607540-023
40042-Bit 6 RO F.F34AOn Feature 34A Boolean 607540-023
40042-Bit 7 RO F.F34BOn Feature 34B Boolean 607540-023
40043-Bit 0 RO F.F89On Feature 89 Boolean 607540-023
40043-Bit 1 RO F.CTBypsOn Feature CT Bypass Boolean 607540-023
40043-Bit 2 RO I_ALARM_RST Feature Alarm Reset Boolean 607540-023
40043-Bit 3 RO I_F6D_MAN_ON Feature 6D Boolean 607540-023
40043-Bit 4 RO F.F5On Feature 5 Boolean 607540-023
40043-Bit 5 RO I_F5F6Z_ON Feature 6Z Boolean 607540-023
40043-Bit 6 RO F.SComF17Off Feature 34T Boolean 607540-023
40044 RW LogNum Event number 0 to 99 607540-023
40045 RO LogYear Event year 0 to 99 607540-023
40046 RO LogMonth Event month 1 to 12 607540-023
40047 RO LogDayM Event day of month 1 to 31 607540-023
40048 RO LogDayW Event day of week 0 to 6 607540-023
40049 RO LogHour Event hour 0 to 23 607540-023
40050 RO LogMin Event minute 0 to 59 607540-023
40051 RO LogSec Event second 0 to 59 607540-023
40052 RO LogType Event type 1 to 6 607540-023
40053 RO LogCause Event cause 0 to 8 607540-023
40054-Bit0-6 RO LogEntNr Number of entries in the control panel event log 0 to 99 607540-023
40055-40099 Undefined
Configuration Registers
Register Register Parameter Parameter Data Range Implemented in
Address Type Name Description Firmware Version
40100-Bit0-5 RO SlcMode Soft Load Controller mode 0 to 3 607540-023
40100-Bit 6 RO SlcStat.NBrOpn SLC Normal Breaker status Boolean 607540-023
40100-Bit 7 RO SlcStat.EBrOpn SLC Emergency Breaker status Boolean 607540-023
40101- Bit 0 WO F6B Set the bit to 1 to activate the Feature 6B serially Boolean 607540-023
40101- Bit 1 WO F6C Set the bit to 1 to activate the Feature 6C serially Boolean 607540-023
40101- Bit 2 WO XfrCommOn Set the bit to 1 to activate the Feature 17 serially Boolean 607540-023
40101- Bit 3 WO TDB Set the bit to 1 to activate the TD Bypass serially Boolean 607540-023
40101- Bit 4 WO F29 Set the bit to 1 to activate the Feature 29 serially Boolean 607540-023
40101- Bit 5 WO F30 Set the bit to 1 to activate the Feature 30 serially Boolean 607540-023
40101- Bit 6 WO F34A Set the bit to 1 to activate the Feature 34A serially Boolean 607540-023
40101- Bit 7 WO F34B Set the bit to 1 to activate the Feature 34B serially Boolean 607540-023
40102- Bit 0 WO F89 Set the bit to 1 to activate the Feature 89 serially Boolean 607540-023
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 19
40102- Bit 1 WO CTBYPS Set the bit to 1 to activate the CT bypass serially Boolean 607540-023
40102- Bit 2 WO ALARM_RST Set the bit to 1 to activate the alarm reset serially Boolean 607540-023
40103- Bit 0 WO F6B Set the bit to 1 to deactivate the Feature 6B serially Boolean 607540-023
40103- Bit 1 WO F6C Set the bit to 1 to deactivate the Feature 6C serially Boolean 607540-023
40103- Bit 2 WO XfrCommOn Set the bit to 1 to deactivate the Feature 17 serially Boolean 607540-023
40103- Bit 3 WO TDB Set the bit to 1 to deactivate the TD Bypass serially Boolean 607540-023
40103- Bit 4 WO F29 Set the bit to 1 to deactivate the Feature 29 serially Boolean 607540-023
40103- Bit 5 WO F30 Set the bit to 1 to deactivate the Feature 30 serially Boolean 607540-023
40103- Bit 6 WO F34A Set the bit to 1 to deactivate the 34A serially Boolean 607540-023
40103- Bit 7 WO F34B Set the bit to 1 to deactivate the 34B serially Boolean 607540-023
40104- Bit 0 WO F89 Set the bit to 1 to deactivate the Feature 89 serially Boolean 607540-023
40104- Bit 1 WO CTBYPS Set the bit to 1 to deactivate the CT bypass serially Boolean 607540-023
40104- Bit 2 WO ALARM_RST Set the bit to 1 to deactivate the alarm reset serially Boolean 607540-023
40105- Bit 0 RW LogEnab Control panel event log enabled Boolean 607540-023
40105- Bit 1 RW ClearLog Control panel clear log, 0-clears log Boolean 607540-023
40106 RW PTRatioN PT ratio numerator 120 - 28200 607540-023
40107 RW PTRatioD PT ratio denominator 120 - 28200 607540-023
40108-40111 RW ATSTag Control panel name 8 char string 607540-023
40112 RW F11CNum Schedule number 1 to 7 607540-023
40113-Bit 0 RW F11CEnab F11CNum Schedule enabled Boolean 607540-023
40113-Bit 1 RW F11CLdXfer F11CNum Schedule test with load xfer enabled Boolean 607540-023
40113-Bits 2-4 RW F11CStartWk F11CNum Schedule week of month 0 to 4 607540-023
40113-Bits 5-7 RW F11CStartDay F11CNum Schedule day of week 0 to 6 607540-023
40114 RW F11CStartHour F11CNum Schedule start time hours 0 - 23 607540-023
40115 RW F11CStartMin F11CNum Schedule start time minutes 0 - 59 607540-023
40116 RW F11CRunHour F11CNum Schedule run time hours 0 - 23 607540-023
40117 RW F11CRunMin F11CNum Schedule run time minutes 0 - 59 607540-023
40118 RW NVDO Normal voltage dropout 70 - 98 % 607540-023
40119 RW NVPU Normal voltage pickup 85 - 100 % 607540-023
40120 RW NVTP Normal over voltage trip 102 - 115 % 607540-023
40121 RW NFDO Normal frequency dropout 85 - 98 % 607540-023
40122 RW NFPU Normal frequency pickup 90 -100 % 607540-023
40123 RW NFTP Normal over frequency trip 102 -110 % 607540-023
40124-Bits 0-4 RW NVUNBPU Normal voltage unbalance pickup 3 - 18 % 607540-023
40124-Bits 5-7 RW unused 607540-023
40124-Bit 8-12 RW NVUNBDO Normal voltage unbalance dropout 5 - 20 % 607540-023
40124-Bit 13 RW NVUNBEnab Normal voltage unbalance enabled Boolean 607540-023
40124-Bit14-15 RW unused 607540-023
40125 RW EVDO Emergency voltage dropout 70 - 98 % 607540-023
40126 RW EVPU Emergency voltage pickup 85 -100 % 607540-023
40127 RW EVTP Emergency over voltage trip 102 - 115 % 607540-023
40128 RW EFDO Emergency frequency dropout 85 - 98 % 607540-023
40129 RW EFPU Emergency frequency pickup 90 - 100 % 607540-023
40130 RW EFTP Emergency over frequency trip 102 - 110 % 607540-023
40131-Bits 0-4 RW EVUNBPU Emergency voltage unbalance pickup 3 - 18 % 607540-023
40131-Bits 5-7 RW unused 607540-023
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
20 381339-221 C
40131-Bit 8-12 RW EVUNBDO Emergency voltage unbalance dropout 5 - 20 % 607540-023
40131-Bit 13 RW EVUNBEnab Emergency voltage unbalance enabled Boolean 607540-023
40131-Bit14-15 RW unused 607540-023
40132 RW TDES Timer 1C engine start time delay 0 - 3659 sec 607540-023
40133 RW TDEF Timer 1F engine fail time delay 0 - 3659 sec 607540-023
40134 RW TDNE Timer 2B transfer N to E time delay 0 - 3659 sec 607540-023
40135 RW TDEC Timer 2E engine cool down time delay 0 - 3659 sec 607540-023
40136 RW TDENF Timer 3AF transfer E to N on source fail time delay 0 - 3659 sec 607540-023
40137 RW TDENT Timer 3A T transfer E to N on test time delay 0 - 3659 sec 607540-023
40138 RW TD31F Timer 31F N to E pre transfer signal time delay 0 - 359 sec 607540-023
40139 RW TD31M Timer 31M N to E post transfer signal time delay 0 - 359 sec 607540-023
40140 RW TD31G Timer 31G E to N pre transfer signal time delay 0 - 359 sec 607540-023
40141 RW TD31N Timer 31N E to N post transfer signal time delay 0 - 359 sec 607540-023
40142-Bit 0 RW TDTNEBypEna Bypass 31F and 31M on N source failure Boolean 607540-023
40142-Bit 1 RW TDTENBypEna Bypass 31G and 31N on E source failure Boolean 607540-023
40142-Bit 2 RW ExtBatt External battery present Boolean 607540-023
40143 RW CTTSTDSyncMon CTTS in-sync monitor time delay 0-30 sec x10 607540-023
40144 RW CTTSTDFToSync CTTS fail to sync time delay 0 - 359 sec 607540-023
40145 RW CTTSTD.XtdPrl CTTS extended parallel time delay 102-103ms /10 607540-023
40146 RW DTTSLdDiscon DTTS load disconnect time delay 0 - 359 sec 607540-023
40147- Bit 0 RW Feat.CommitXfer Commit to transfer after engine start Boolean 607540-023
40147- Bit 1 RW ShedLd.Dir Shed load (F30) direction is N to E Boolean 607540-023
40147- Bit 2 RW ShedLd.InPh Shed load in phase Boolean 607540-023
40147- Bit 3 RW ShedLdIsoLdSFail Isolate load on source failure (on load shed) Boolean 607540-023
40147- Bit 4 RW ShedLd.IsoLdF17 Isolate load on F17 (on load shed) Boolean 607540-023
40147- Bit 5 RW CTTSBypFSync Fail to sync auto CT Bypass Boolean 607540-023
40147- Bit 6 RW CTTSBypsOTInPh Transfer in phase on CT Byp if load disconnect = 0 Boolean 607540-023
40148 RW CurTimeHour Hour 0 - 23 607540-023
40149 RW CurTimeMin Minute 0 - 59 607540-023
40150 RW CurTimeSec Second 0 - 59 607540-023
40151 RW CurDateYear Year 0 - 99 607540-023
40152 RW CurDateMonth Month 1 - 12 607540-023
40153 RW CurDateMday Day of month 1 - 31 607540-023
40154 RW CurDateWday Day of week 0-6 607540-023
40155-40156 RW TimeEAvl Total time E has been acceptable 0-5,999,999min 607540-023
40157-40158 RW TimeNAvl Total time N has been acceptable 0-5,999,999min 607540-023
40159 RW DaysEnerg Total number of days CP has been energized 0-9,999 days 607540-023
40160 RW ATSTotXfrs Total number of TS transfers 0-9,999 trans. 607540-023
40161 RW SFailTotXfrs Total number of TS transfers due to source failures 0-9,999 trans. 607540-023
40162-40163 RW NETCFG Control panel network configuration 4 char string 607540-023
40164-40173 RW ATSDscr Control panel description 20 char string 607540-023
ASCO Power Technologies, L.P., 50 Hanover Rd., Florham Park, NJ 07932 USA www.asco.com
381339-221 C 21