Application Guide. Considerations for 32 Bit Integer Parameters in 16 Bit Processors. PowerFlex 700VC, PowerFlex 700S. Introduction.

Size: px
Start display at page:

Download "Application Guide. Considerations for 32 Bit Integer Parameters in 16 Bit Processors. PowerFlex 700VC, PowerFlex 700S. Introduction."

Transcription

1 Topic: Drive Product: Introduction User Information Considerations for 32 Bit Integer Parameters in 16 Bit Processors PowerFlex 700VC, PowerFlex 700S An Application Guide provides generic information on features and functions of drive products and their implementation. Application Guides are not specific to any one application, but generically discuss application techniques and/or functions as part of an application. Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines for the Application, Installation and Maintenance of Solid State Controls (Publication SGI-1.1 available from your local Rockwell Automation sales office or online at describes some important differences between solid state equipment and hard-wired electromechanical devices. Because of this difference, and because of the wide variety of uses for solid state equipment, all persons responsible for applying this equipment must satisfy themselves that each intended application of this equipment is acceptable. In no event will Rockwell Automation, Inc. be responsible or liable for indirect or consequential damages resulting from the use or application of this equipment. The examples and diagrams in this document are included solely for illustrative purposes. Because of the many variables and requirements associated with any particular installation, Rockwell Automation, Inc. cannot assume responsibility or liability for actual use based on the examples and diagrams. No patent liability is assumed by Rockwell Automation, Inc. with respect to use of information, circuits, equipment, or software described in this document. Reproduction of the contents of this document, in whole or in part, without written permission of Rockwell Automation, Inc. is prohibited. Related Publications The following publications should be referenced and followed when operating, configuring, or commissioning this drive product. These publications may be found on the literature library at ; Publication Title PowerFlex 700S Phase II Control User Manual PowerFlex 700S Phase I Control User Manual Pub Number 20D-UM006 20D-UM001 PFLEX-AP002A-EN-E.doc - June 28, 2005

2 Precautions Class 1 LED Product ATTENTION: Hazard of permanent eye damage exists when using optical transmission equipment. This product emits intense light and invisible radiation. Do not look into module ports or fiber optic cable connectors. General Precautions ATTENTION: This drive contains ESD (Electrostatic Discharge) sensitive parts and assemblies. Static control precautions are required when installing, testing, servicing or repairing this assembly. Component damage may result if ESD control procedures are not followed. If you are not familiar with static control procedures, reference Allen Bradley publication , Guarding Against Electrostatic Damage or any other applicable ESD protection handbook. ATTENTION: An incorrectly applied or installed drive can result in component damage or a reduction in product life. Wiring or application errors such as under sizing the motor, incorrect or inadequate AC supply, or excessive surrounding air temperatures may result in malfunction of the system. ATTENTION: Only qualified personnel familiar with the PowerFlex 700S AC Drive and associated machinery should plan or implement the installation, start-up and subsequent maintenance of the system. Failure to comply may result in personal injury and/or equipment damage. ATTENTION: To avoid an electric shock hazard, verify that the voltage on the bus capacitors has discharged before performing any work on the drive. Measure the DC bus voltage at the +DC & DC terminals of the Power Terminal Block (refer to Chapter 1 in the PowerFlex 700S User Manual for location). The voltage must be zero. ATTENTION: Risk of injury or equipment damage exists. DPI or SCANport host products must not be directly connected together via 1202 cables. Unpredictable behavior can result if two or more devices are connected in this manner. ATTENTION: Risk of injury or equipment damage exists. Parameters 365 [Encdr0 Loss Cnfg] [VoltFdbkLossCnfg] let you determine the action of the drive in response to operating anomalies. Precautions should be taken to ensure that the settings of these parameters do not create hazards of injury or equipment damage. ATTENTION: Risk of injury or equipment damage exists. Parameters 383 [SL CommLoss Data] [NetLoss DPI Cnfg] let you determine the action of the drive if communications are disrupted. You can set these parameters so the drive continues to run. Precautions should be taken to ensure the settings of these parameters do not create hazards of injury or equipment damage. PFLEX-AP002A-EN-E.doc Page 2 of 8

3 The SLC and PLC-5 do not have a 32 bit integer data type. Therefore, 32 bit integer parameters that come from a drive into the SLC or PLC-5 remain split as (2) 16 bit integers. There are some considerations that should be taken when adding a drive with 32 bit integer parameters to a SLC or PLC-5 system. Drives that are based on 32 bit integer parameters include the PowerFlex700VC and the PowerFlex 700S. Note that the PowerFlex 700S also has floating point parameters. For information on handling floating point parameters over a network please see the PowerFlex 700S Reference Manual. For bitwise parameters, such as Drive Status, there is not an issue when the 32 bit integer remains split as (2) 16 bit integers. This is because we are normally concerned with looking at individual bits. However, for 32 bit integer parameters where we need to interpret the entire decimal value, it can be difficult to interpret the decimal value correctly. The following is a summary of how the decimal values of 32 bit parameters appear in a 16 bit processor: 1. If the value of the data is less than decimal and it is a positive value, the least significant word reflects accurate parameter data. In other words, if it is known that the parameter value (taking into account the scale factor) is less than and is a positive value, the parameter can be interpreted easily in the SLC by looking at the least significant 16 bit integer. For example, parameter 414 [Enc Pos Feedback] in a PowerFlex700VC contains a value of Parameter 414 [Enc Pos Feedback] is sent to a SLC over DeviceNet using Datalink A1 Out. The same value appears in the SLC at address I:1.3 which is the lower 16 bit integer of Encoder Position. PFLEX-AP002A-EN-E.doc Page 3 of 8

4 If we look at the data in binary format we can see that there are no bits on in I:1.4, which is the upper 16 bit Integer of Encoder Position. 2. If the value is greater than 32767, bits in the most significant 16 bit integer will be on. Therefore, it is not sufficient to look only at the least significant integer. Since there is no double integer data structure in the SLC or PLC-5, it is difficult to interpret the entire 32 bit data. For example, parameter 414 [Enc Pos Feedback] in a PowerFlex700VC contains a value of PFLEX-AP002A-EN-E.doc Page 4 of 8

5 If we look at the corresponding values in the SLC, it seems that neither the lower 16 bit integer or the upper 16 bit integer correspond to the value In fact, the lower 16 bit integer is a negative value. When the data is seen in binary format, we see that there are bits on in both the upper and lower integers, I:1.3 and I:1.4, indicating that the value is larger than If the value is negative (less than 0), bit 15 in the upper 16 bit integer will be 1. When the value of the parameter is between 0 and , it is possible to look at just the lower 16 bit integer value. PFLEX-AP002A-EN-E.doc Page 5 of 8

6 For example, parameter 24 [Commanded Torque] is -5.1%. This corresponds to an internal value of -51 when the scale factor is taken into account. -51 is what is sent through the communication adapter. Parameter 24 [Commanded Torque] is sent to a SLC over DeviceNet using Datalink A1 Out. We can see that the lower 16 bit integer value of -51 corresponds to the value of -51 in parameter 24. The upper 16 bit integer will be -1 when the value of the parameter is between 0 and In binary we can see that the upper 16 bits are all 1 when the value of the parameter is between 0 and PFLEX-AP002A-EN-E.doc Page 6 of 8

7 4. When the value is negative (less than 0), but beyond the range of 0 to , the upper 16 bits will again change. It will not be sufficient to look at just the lower 16 bit integer. For example, parameter 414 [Enc Pos Feedback] in a PowerFlex700VC contains a value of If we look at the corresponding values in the SLC, it seems that neither the lower 16 bit integer or the upper 16 bit integer correspond to the value In fact, the lower 16 bit integer is a positive value. PFLEX-AP002A-EN-E.doc Page 7 of 8

8 When the data is seen in binary format, we see that bit 15 is on in the upper 16 bit integer, I:1.4, indicating that the parameter value is negative. PFLEX-AP002A-EN-E.doc Page 8 of 8

PCI Expansion Slot Kit for 6181P (1500P) Series D Integrated Display Computer

PCI Expansion Slot Kit for 6181P (1500P) Series D Integrated Display Computer Installation Instructions PCI Expansion Slot Kit for 6181P (1500P) Series D Integrated Display Computer Catalog Number 6189V-2PCI15R Topic Page About This Publication 1 Important User Information 2 Safety

More information

Kinetix 6000 Axis Module and Shunt Module

Kinetix 6000 Axis Module and Shunt Module Installation Instructions Kinetix 6000 and Shunt Module Catalog Numbers 2094-AMxx, 2094-BMxx 2094-AMxx-S, 2094-BMxx-S 2094-BSP2 Topic Page About This Publication 1 Important User Information 2 Before You

More information

DriveGuard. Safe-Off Option for PowerFlex 70 AC Drives. User Manual.

DriveGuard. Safe-Off Option for PowerFlex 70 AC Drives. User Manual. DriveGuard Safe-Off Option for PowerFlex 70 AC Drives User Manual www.abpowerflex.com Important User Information Solid state equipment has operational characteristics differing from those of electromechanical

More information

Ferrite Core for Internal DPI Cables on PowerFlex 700S Frame 3 and 4 Drives

Ferrite Core for Internal DPI Cables on PowerFlex 700S Frame 3 and 4 Drives Installation Instructions Ferrite Core for Internal DPI Cables on PowerFlex 700S Frame 3 and 4 Drives ATTENTION: To avoid an electric shock hazard, verify that the voltage on the bus capacitors has discharged

More information

PowerFlex 700S Phase II Drives DriveLogix Option Card Battery Extension Cable

PowerFlex 700S Phase II Drives DriveLogix Option Card Battery Extension Cable Installation Instructions PowerFlex 700S Phase II Drives DriveLogix Option Card Battery Extension Cable!!!!! ATTENTION: To avoid an electric shock hazard, ensure that all power to the drive has been removed

More information

EtherNet/IP Adapter. 20-COMM-E FRN 2.xxx. User Manual. AB Drives

EtherNet/IP Adapter. 20-COMM-E FRN 2.xxx. User Manual. AB Drives AB Drives EtherNet/IP Adapter 20-COMM-E FRN 2.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety

More information

Kinetix 300 Memory Module Programmer

Kinetix 300 Memory Module Programmer Kinetix 300 Memory Module Programmer Catalog Number 2097-PGMR Topic About the Memory Module Programmer 1 Parts List 3 Batteries Operation 4 Using Memory Module Programmer 6 Switch On/Off Memory Module

More information

PowerFlex 4 / 40 Custom Firmware

PowerFlex 4 / 40 Custom Firmware PowerFlex 4 / 40 Custom Firmware DB Option Modbus Enhancement with Broadcast Mode Overview The purpose of this insert instructions manual is to provide the special information about the custom firmware

More information

Solar Combiner Enclosure

Solar Combiner Enclosure Installation Instructions Solar Combiner Enclosure Catalog Numbers 1000-SB006, 1000-SB012 Topic Page Description 1 Important Safety Instructions 3 Nameplate Data 4 Planning for Installation 4 Install the

More information

ControlNet Adapters. User Manual. 20-COMM-C (coax) 20-COMM-Q (fiber) FRN 1.xxx

ControlNet Adapters. User Manual. 20-COMM-C (coax) 20-COMM-Q (fiber) FRN 1.xxx ControlNet Adapters 20-COMM-C (coax) 20-COMM-Q (fiber) FRN 1.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment.

More information

PowerFlex 700S and 700H Frame 13 Replacement Power Structures

PowerFlex 700S and 700H Frame 13 Replacement Power Structures Installation Instructions PowerFlex 700S and 700H Frame 13 Replacement Power Structures Introduction Use this document to install a replacement power structure on a PowerFlex 700S or 700H frame 13 drive.

More information

Using GuardShield Light Curtains (Safe 4, Micro 400, or 440L), with ArmorBlock Guard I/O and SmartGuard Controller

Using GuardShield Light Curtains (Safe 4, Micro 400, or 440L), with ArmorBlock Guard I/O and SmartGuard Controller Safety Application Example Using GuardShield Light Curtains (Safe 4, Micro 400, or 440L), with ArmorBlock Guard I/O and SmartGuard Controller Light Curtain with On-machine Components Safety Rating: Category

More information

InView Firmware Update

InView Firmware Update Installation Instructions InView Firmware Update Topic Page Hazardous Voltage 3 Change EPROM on 2706-P72, 2706-P74 Display 3 Change EPROM on 2706-P42, 2706-P44 Displays 5 Firmware Upgrade Kit 7 2 InView

More information

GuardLogix: Safety Gate Application with SensaGuard Switch

GuardLogix: Safety Gate Application with SensaGuard Switch Safety Application Example GuardLogix: Safety Gate Application with SensaGuard Switch Safety Rating: PLe, Cat. 4 to EN ISO 13849.1 2008 Introduction...2 Important User Information...2 General Safety Information...3

More information

PROFIBUS Adapter. 20-COMM-P FRN 1.xxx. User Manual

PROFIBUS Adapter. 20-COMM-P FRN 1.xxx. User Manual PROFIBUS Adapter 20-COMM-P FRN 1.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

ControlNet Adapter. 20-COMM-C FRN 1.xxx. User Manual

ControlNet Adapter. 20-COMM-C FRN 1.xxx. User Manual ControlNet Adapter 20-COMM-C FRN 1.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

GuardLogix: Dual Zone Gate Protection with E-stop and Trojan Interlock Switch

GuardLogix: Dual Zone Gate Protection with E-stop and Trojan Interlock Switch Safety Application Example GuardLogix: Dual Zone Gate Protection with E-stop and Trojan Interlock Switch Safety Rating: PLd, Cat. 3 to EN ISO 13849.1 2008 Introduction... 2 Important User Information...

More information

Installation Instructions

Installation Instructions Installation Instructions (Cat. No. 1771-OBN Series B) Use this document as a guide when installing the catalog number 1771-OBN series B output module. Because of the variety of uses for the products described

More information

Digital ac/dc (24V) Input Module

Digital ac/dc (24V) Input Module Installation Instructions Digital ac/dc (24V) Input Module Catalog Number 1771-IND, Series C Topic Page Important User Information 2 Before You Begin 3 Power Requirements 3 Prevent Electrostatic Discharge

More information

PowerMonitor 5000 Unit Catalog Number Upgrade

PowerMonitor 5000 Unit Catalog Number Upgrade Installation Instructions PowerMonitor 5000 Unit Catalog Number Upgrade Catalog Numbers 1426-MxE-xxx Topic Page Upgrade the Device Catalog Number with the ControlFLASH Utility 3 Determine Communication

More information

GuardLogix: TLS Guardlocking Application

GuardLogix: TLS Guardlocking Application Safety Application Example GuardLogix: TLS Guardlocking Application Safety Rating: PLd, Cat. 3 to EN ISO 13849.1 2008 Introduction... 2 Important User Information... 2 General Safety Information... 3 Description...

More information

DriveLogix 5730 Controller

DriveLogix 5730 Controller DriveLogix 5730 Controller for PowerFlex 700S Drives with Phase II Control Firmware Version 13.XX User Manual Important User Information Solid state equipment has operational characteristics differing

More information

RGU Main Control Board Replacement Firmware Version 3.01

RGU Main Control Board Replacement Firmware Version 3.01 Replacement Kit Instructions RGU Main Control Board Replacement Firmware Version 3.0 Contents This document shows how to remove and replace the main control board in a Regenerative DC Bus Supply Unit (RGU).

More information

PowerFlex 755 Common DC Input Drives, Frames Interlock Assembly and Precharge Assembly Left-front Cover Retrofit Kit

PowerFlex 755 Common DC Input Drives, Frames Interlock Assembly and Precharge Assembly Left-front Cover Retrofit Kit Installation Instructions PowerFlex 755 Common DC Input Drives, Frames 8...10 Interlock Assembly and Precharge Assembly Left-front Cover Retrofit Kit Catalog Numbers 20G14x, 21G14x Topic Page General Precautions

More information

PowerFlex DC Drive - Frame A Switching Power Supply Circuit Board

PowerFlex DC Drive - Frame A Switching Power Supply Circuit Board Installation Instructions PowerFlex DC Drive - Frame A Switching Power Supply Circuit Board ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should plan or implement

More information

Using TLS3-GD2 Guardlocking Interlock with ArmorBlock Guard I/O and SmartGuard Controller

Using TLS3-GD2 Guardlocking Interlock with ArmorBlock Guard I/O and SmartGuard Controller Safety Application Example Using TLS3-GD2 Guardlocking Interlock with ArmorBlock Guard I/O and SmartGuard Controller Guardlocking with On-machine Components Safety Rating: Category 3, according to EN954-1

More information

Adapter Kit for PanelView 1200/1200e Touch Screen Terminal Cutout

Adapter Kit for PanelView 1200/1200e Touch Screen Terminal Cutout Installation Instructions Adapter Kit for PanelView 1200/1200e Touch Screen Terminal Cutout Catalog Numbers 2711-NR5T, 2711P-RAT12E2 Topic Page About This Publication 1 Important User Information 2 About

More information

PowerFlex 700 Power Jumpers

PowerFlex 700 Power Jumpers PowerFlex 700 Power Jumpers Installation Instructions The PowerFlex 700 drive contains protective s and Common Mode Capacitors referenced to ground (see below). To guard against unstable operation and/or

More information

DeviceNet Adapter. 20-COMM-D FRN 1.xxx. User Manual

DeviceNet Adapter. 20-COMM-D FRN 1.xxx. User Manual DeviceNet Adapter 20-COMM-D FRN 1.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

Installation Instructions

Installation Instructions Installation Instructions (Catalog Number 1771-OD) This document provides information on: Because of the variety of uses for the products described in this publication, those responsible for the application

More information

Installation Instructions

Installation Instructions Installation Instructions Cat. No. 1771 P3, P4, P5 and P5E Use this document as a guide when installing the catalog number 1771-P3, -P4, -P5 or -P5E power supplies. Because of the variety of uses for the

More information

BACnet MS/TP Adapter. 20-COMM-B FRN 1.xxx. User Manual

BACnet MS/TP Adapter. 20-COMM-B FRN 1.xxx. User Manual BACnet MS/TP Adapter 20-COMM-B FRN 1.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

PowerFlex DC Drive - Frame A SCR Modules for Drives with a Power Traces Circuit Board

PowerFlex DC Drive - Frame A SCR Modules for Drives with a Power Traces Circuit Board Installation Instructions PowerFlex DC Drive - Frame A SCR Modules for Drives with a Power Traces Circuit Board!!! ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should

More information

DPAK IGBT Motor Drive Reference Design Kit

DPAK IGBT Motor Drive Reference Design Kit Description DPAK IGBT Motor Drive Reference Design Kit The reference design power board is designed to showcase IR DPAK IRGR4610DPBF IGBT in a motor drive application. Product Summary IGBT inverter power

More information

Teaching Color-Sensing Connected Components Building Block. Quick Start

Teaching Color-Sensing Connected Components Building Block. Quick Start Teaching Color-Sensing Connected Components Building Block Quick Start Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment.

More information

Color-Sensing Connected Components Building Block. Quick Start

Color-Sensing Connected Components Building Block. Quick Start Color-Sensing Connected Components Building Block Quick Start Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety

More information

Differential Liquid/Gas Pressure Transmitter

Differential Liquid/Gas Pressure Transmitter Installation Instruction Differential Liquid/Gas Pressure Transmitter Catalog Number(s) 1414-CPZ10FWFAA, 1414-IPZ10FWFAA Explosion Hazard WARNING Do not use in an explosive or hazardous environment, with

More information

PowerFlex DC Drive Frame B Pulse Transformer Circuit Board

PowerFlex DC Drive Frame B Pulse Transformer Circuit Board Installation Instructions PowerFlex DC Drive Frame B Pulse Transformer Circuit Board ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should plan or implement the installation,

More information

Throughout this manual we use notes to make you aware of safety considerations:

Throughout this manual we use notes to make you aware of safety considerations: Because of the variety of uses for the products described in this publication, those responsible for the application and use of this control equipment must satisfy themselves that all necessary steps have

More information

GV3000/SE General Purpose (Volts/Hertz) and Vector Duty AC Drive, HP, 230V AC

GV3000/SE General Purpose (Volts/Hertz) and Vector Duty AC Drive, HP, 230V AC Software Start-Up and Reference Manual D2-3416-2 GV3000/SE General Purpose (Volts/Hertz) and Vector Duty AC Drive, 30-100 HP, 230V AC Version 6.04 Important User Information Solid-state equipment has operational

More information

(Catalog Numbers 1394-FK10TS and -FK22TS)

(Catalog Numbers 1394-FK10TS and -FK22TS) Installation Instructions 1394 Fan Kit (Catalog Numbers 1394-FK10TS and -FK22TS) This publication provides installation instructions for the Allen-Bradley 1394 fan kit. The fan kit applies to the following

More information

PowerFlex 700S and 700H Frame 11 Replacement Power Structures

PowerFlex 700S and 700H Frame 11 Replacement Power Structures Installation Instructions PowerFlex 700S and 700H Frame 11 Replacement Power Structures Introduction Use this document to install a replacement power structure on a PowerFlex 700S or 700H frame 11 drive.

More information

PowerFlex 70 Safe-Off Control EtherNet/IP Guard I/O Safety Module and GuardLogix Integrated Safety Controller

PowerFlex 70 Safe-Off Control EtherNet/IP Guard I/O Safety Module and GuardLogix Integrated Safety Controller Safety Application Example PowerFlex 70 Safe-Off Control EtherNet/IP Guard I/O Safety Module and GuardLogix Integrated Safety Controller Safety Rating: Category 3 (also see Achieving a Cat. 4 Safety Rating)

More information

Installation Instructions

Installation Instructions Installation Instructions (Cat. No. 71-A1B, -A2B, -A3B, -A3B1, -A4B Series B) Because of the variety of uses for the products described in this publication, those responsible for the application and use

More information

DeviceNet Communications Module

DeviceNet Communications Module DeviceNet Communications Module Catalog Number 1203-GK5 or 1336-GM5 Firmware 1.xxx-3.xxx TM CONFORMANCE TESTED User Manual Important User Information Solid state equipment has operational characteristics

More information

PowerFlex DC Stand-Alone Regulator (SAR) Field Circuit Board

PowerFlex DC Stand-Alone Regulator (SAR) Field Circuit Board Installation Instructions PowerFlex DC Stand-Alone Regulator (SAR) Field Circuit Board ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should plan or implement the

More information

ArmorPoint I/O Field Potential Distributor, Series A

ArmorPoint I/O Field Potential Distributor, Series A Installation Instructions ArmorPoint I/O Field Potential Distributor, Series A (Cat. No. 1738-FPD) The field potential distributor (Cat. no. 1738-FPD) lets you change the field power distribution source

More information

PowerFlex DC Stand-Alone Regulator (SAR) Switching Power Supply Circuit Board

PowerFlex DC Stand-Alone Regulator (SAR) Switching Power Supply Circuit Board Installation Instructions PowerFlex DC Stand-Alone Regulator (SAR) Switching Power Supply Circuit Board ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should plan

More information

Disconnect Switch and Circuit Breaker Mechanism Specifications Bulletin Number 1494

Disconnect Switch and Circuit Breaker Mechanism Specifications Bulletin Number 1494 Technical Data Disconnect Switch and Circuit Breaker Mechanism Specifications Bulletin Number 1494 Topic Page 1494U Disconnect Switch Specifications 2 1494C, 1494F, 1494G, 1494R, 1494V Disconnect Switch

More information

PowerFlex 525 DeviceNet Adapter

PowerFlex 525 DeviceNet Adapter User Manual PowerFlex 525 DeviceNet Adapter Catalog Number: 25-COMM-D Important User Information Solid-state equipment has operational characteristics differing from those of electromechanical equipment.

More information

Allen-Bradley Motors

Allen-Bradley Motors Installation Instructions Firmware Update Instructions for Ethernet, Enhanced and ControlNet PLC-5 Programmable Controllers Purpose Firmware Update Kit Contents Hardware and Software Requirements This

More information

PowerMonitor 1000 Unit Catalog Number Upgrade

PowerMonitor 1000 Unit Catalog Number Upgrade Installation Instructions PowerMonitor 1000 Unit Catalog Number Upgrade Catalog Numbers 1408-UPT1-E3, 1408-UPT2-E3, 1408-UPE1-E3, 1408-UPE2-E3, 1408-UP485-ENT, 1408-UPT3-E3 Topic Important User Information

More information

CompactLogix Power Supplies Specifications

CompactLogix Power Supplies Specifications Technical Data CompactLogix Power Supplies Specifications 1768 CompactLogix Power Supplies Catalog Numbers 1768-PA3, 1768-PB3 1769 Compact I/O Power Supplies Catalog Numbers 1769-PA2, 1769-PB2, 1769-PA4,

More information

SynchLink Board for PowerFlex 700S Drives with Phase II Control

SynchLink Board for PowerFlex 700S Drives with Phase II Control Installation Instructions SynchLink Board for PowerFlex 700S Drives with Phase II Control ATTENTION: To avoid an electric shock hazard, verify that the voltage on the bus capacitors has discharged before

More information

PowerFlex DC Stand-Alone Regulator (SAR) Power Interface Circuit Board

PowerFlex DC Stand-Alone Regulator (SAR) Power Interface Circuit Board Installation Instructions PowerFlex DC Stand-Alone Regulator (SAR) Power Interface Circuit Board ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should plan or implement

More information

User Manual. PowerFlex ENETR Dual-port EtherNet/IP Option Module Firmware Revision Number 1.xxx

User Manual. PowerFlex ENETR Dual-port EtherNet/IP Option Module Firmware Revision Number 1.xxx User Manual PowerFlex 20-750-ENETR Dual-port EtherNet/IP Option Module Firmware Revision Number 1.xxx Important User Information Solid-state equipment has operational characteristics differing from those

More information

NHP SAFETY REFERENCE GUIDE

NHP SAFETY REFERENCE GUIDE NHP SAFETY REFERENCE GUIDE GuardLogix SAFETY FUNCTION DOCUMENTS Cable Pull Switch - Products: GuardLogix Series Connection of Cable Pull Switches Safety Rating: PLd, Cat. 3 to EN ISO 13849-1: 2008 Table

More information

Bulletin 1395 ControlNet TM Communication Board

Bulletin 1395 ControlNet TM Communication Board Bulletin 1395 ControlNet TM Communication Board Firmware Rev 1.1 Compatible with ControlNet Version 1.5 User Manual Important User Information Solid state equipment has operational characteristics differing

More information

GuardLogix Controller to Kinetix 6000 Drive with Safe-Off using EtherNet/IP CompactBlock Guard I/O Module

GuardLogix Controller to Kinetix 6000 Drive with Safe-Off using EtherNet/IP CompactBlock Guard I/O Module Safety Application Example GuardLogix Controller to Kinetix 6000 Drive with Safe-Off using EtherNet/IP CompactBlock Guard I/O Module Safety Rating: SIL3/Category 3 (also see SIL3/CAT4 section), according

More information

PowerFlex ControlNet Adapters 20-COMM-C (Coax) Series A FRN 2.xxx, Series B FRN 3.xxx 20-COMM-Q (Fiber) Series A FRN 3.xxx

PowerFlex ControlNet Adapters 20-COMM-C (Coax) Series A FRN 2.xxx, Series B FRN 3.xxx 20-COMM-Q (Fiber) Series A FRN 3.xxx PowerFlex ControlNet Adapters 20-COMM-C (Coax) Series A FRN 2.xxx, Series B FRN 3.xxx 20-COMM-Q (Fiber) Series A FRN 3.xxx User Manual Important User Information Solid state equipment has operational characteristics

More information

InView Communication Modules

InView Communication Modules Installation Instructions InView Communication Modules Catalog Numbers 2706-PxM, 2706-PxK, 2706-PxP Topic Page About This Publication 1 Important User Information 2 Power Supply Requirements 3 Mount the

More information

PowerFlex DC Stand-Alone Regulator (SAR) In-Rush Limiting Resistor

PowerFlex DC Stand-Alone Regulator (SAR) In-Rush Limiting Resistor Installation Instructions PowerFlex DC Stand-Alone Regulator (SAR) In-Rush Limiting Resistor ATTENTION: Only qualified personnel familiar with DC drives and associated machinery should plan or implement

More information

PowerFlex 700L Liquid-to-Liquid Heat Exchanger Control Board Replacement

PowerFlex 700L Liquid-to-Liquid Heat Exchanger Control Board Replacement Installation Instructions PowerFlex 700L Liquid-to-Liquid Heat Exchanger Replacement ATTENTION: To avoid an electric shock hazard and prevent thermal damage, ensure that all power to the drive power module

More information

Block I/O Cat. No IOBA and -IOBB Series B User Manual

Block I/O Cat. No IOBA and -IOBB Series B User Manual User Manual Because of the variety of uses for the products described in this publication, those responsible for the application and use of this control equipment must satisfy themselves that all necessary

More information

Block I/O Cat. No IOBA and -IOBB User Manual

Block I/O Cat. No IOBA and -IOBB User Manual User Manual Because of the variety of uses for this product and because of the differences between solid state products and electromechanical products, those responsible for applying and using this product

More information

Zener Barriers Bulletin 937Z

Zener Barriers Bulletin 937Z Technical Data Zener Barriers Bulletin 937Z Topic Page Introduction 2 Mounting 2 Housing 3 Operating Principle 3 Specifications 6 Introduction Allen-Bradley Zener barriers are a cost-effective solution

More information

Application Technique. Safety Function: Safety Camera with E-stop

Application Technique. Safety Function: Safety Camera with E-stop Application Technique Safety Function: Safety Camera with E-stop Products: Guardmaster Dual-input Safety Relay, Guardmaster SC300 Safety Camera Safety Rating: PLd, Cat. 3 to EN ISO 13849-1: 2008 2 Safety

More information

DeviceNet Network Configuration

DeviceNet Network Configuration User Manual DeviceNet Network Configuration 1756 ControlLogix, 1756 GuardLogix, 1769 CompactLogix, 1769 Compact GuardLogix, 1789 SoftLogix, Studio 5000 Logix Emulate Important User Information Solid-state

More information

Allen-Bradley 1397 AC Tachometer Interface Card

Allen-Bradley 1397 AC Tachometer Interface Card Instructions Allen-Bradley 1397 AC Tachometer Interface Card Cat. No. 1397-AC Contents Topic Page What This Option Provides 1 Where This Option Is Used 1 What These Instructions Contain 1 Specifications

More information

1756 ControlLogix Chassis Specifications

1756 ControlLogix Chassis Specifications Technical Data 1756 ControlLogix Chassis Specifications Catalog Numbers 1756-A4/B, 1756-A7/B, 1756-A10/B, 1756-A13/B, 1756-A17/B, 1756-A4LXT, 1756-A5XT, 1756-A7LXT, 1756-A7XT Topic Page Standard ControlLogix

More information

USB-to-DeviceNet Cable

USB-to-DeviceNet Cable Installation Instructions USB-to-DeviceNet Cable Catalog Number 1784-U2DN Topic Page Important User Information 2 Environment and Enclosure 3 About the Cable 4 Install the Cable 5 Status Indicators 10

More information

Interbus Adapter. 20-COMM-I FRN 1.xxx. User Manual

Interbus Adapter. 20-COMM-I FRN 1.xxx. User Manual Interbus Adapter 20-COMM-I FRN 1.xxx User Manual Table of Contents Table of Contents Preface Chapter 1 Chapter 2 Chapter 3 Chapter 4 About This Manual Related Documentation.............................

More information

User Manual. PowerFlex 525 Embedded EtherNet/IP Adapter

User Manual. PowerFlex 525 Embedded EtherNet/IP Adapter User Manual PowerFlex 525 Embedded EtherNet/IP Adapter Important User Information Solid-state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

ControlLogix SIL2 System Configuration

ControlLogix SIL2 System Configuration ControlLogix SIL2 System Configuration Using RSLogix 5000 Subroutines Application Technique (Catalog Numbers 1756 and 1492) Important User Information 8 / 2011 Solid state equipment has operational characteristics

More information

Simple Package Measurement Connected Components Building Block. Quick Start

Simple Package Measurement Connected Components Building Block. Quick Start Simple Package Measurement Connected Components Building Block Quick Start Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment.

More information

1395 Node Adapter Board Troubleshooting

1395 Node Adapter Board Troubleshooting 1395 Node Adapter Board Troubleshooting Specifications Electrical: Board power provided by Drive (+5V) Discrete Input 24V DC or 115V AC, jumper selectable Environmental: Ambient Operating Temperature Storage

More information

PowerFlex 400 Frame G and H Replacement Procedure for Gate Power Board

PowerFlex 400 Frame G and H Replacement Procedure for Gate Power Board Service Bulletin PowerFlex 400 Frame G and H Replacement Procedure for Gate Power Board Contents This publication provides instructions for replacing the gate power board for PowerFlex 400 Frame G and

More information

EtherNet/IP Communications Module

EtherNet/IP Communications Module EtherNet/IP Communications Module M/N RECOMM-ENET Firmware Version 2.xxx Firmware Version 3.xxx Instruction Manual D2-3510-1 The information in this manual is subject to change without notice. Throughout

More information

Micro800 Programmable Controllers: Getting Started with Motion Control Using a Simulated Axis

Micro800 Programmable Controllers: Getting Started with Motion Control Using a Simulated Axis Quick Start Micro800 Programmable Controllers: Getting Started with Motion Control Using a Simulated Axis Catalog Numbers Bulletin 2080-LC30, 2080-LC50 Important User Information Solid-state equipment

More information

SINAMICS G130. Terminal Module 150 (TM150) Operating Instructions 03/2013 SINAMICS

SINAMICS G130. Terminal Module 150 (TM150) Operating Instructions 03/2013 SINAMICS SINAMICS G130 Operating Instructions 03/2013 SINAMICS s Safety information 1 General information 2 SINAMICS SINAMICS G130 Mechanical installation 3 Electrical installation 4 Technical specifications 5

More information

User Manual FRN 1.xx 2.xx

User Manual FRN 1.xx 2.xx Allen-Bradley Bulletin 160 DeviceNet Communication Module User Manual FRN 1.xx 2.xx Important User Information Because of the variety of uses for the products described in this publication, those responsible

More information

ArmorBlock Guard I/O DeviceNet Safety Modules

ArmorBlock Guard I/O DeviceNet Safety Modules Installation Instructions ArmorBlock Guard I/O DeviceNet Safety Modules Catalog Numbers 1732DS-IB8XOBV4, 1732DS-IB8 Topic Page Important User Information 2 Environment and Enclosure 3 Preventing Electrostatic

More information

RS-485 DF1 Adapter. 20-COMM-S FRN 1.xxx. User Manual

RS-485 DF1 Adapter. 20-COMM-S FRN 1.xxx. User Manual RS-485 DF1 Adapter 20-COMM-S FRN 1.xxx User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

PanelView 600 Terminals

PanelView 600 Terminals Installation Instructions PanelView 600 Terminals Catalog Numbers 2711-K6Cxx, 2711-B6Cxx Topic Page Hazardous Location Considerations 3 European Union Directive Compliance 4 Wiring and Safety Guidelines

More information

Import/Export Project Components. Programming Manual

Import/Export Project Components. Programming Manual Import/Export Project Components Programming Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines

More information

Using a Guard Locking Interlock Switch and Light Curtains with DeviceNet Guard I/O and a GuardLogix Controller

Using a Guard Locking Interlock Switch and Light Curtains with DeviceNet Guard I/O and a GuardLogix Controller Safety Application Example Using a Guard Locking Interlock Switch and Light Curtains with DeviceNet Guard I/O and a GuardLogix Controller Safety Rating: Category 3, according to EN954-1 Introduction...

More information

User Manual. PowerFlex DNET DeviceNet Option Module Firmware Revision Number 1.xxx

User Manual. PowerFlex DNET DeviceNet Option Module Firmware Revision Number 1.xxx User Manual PowerFlex 20-750-DNET DeviceNet Option Module Firmware Revision Number 1.xxx Important User Information Solid-state equipment has operational characteristics differing from those of electromechanical

More information

ESRS Encoder Signal Reference Simulator

ESRS Encoder Signal Reference Simulator ESRS Encoder Signal Reference Simulator (Cat. No. 4100-ESRS) Installation and Setup Manual Important User Information Because of the variety of uses for the products described in this publication, those

More information

ProcessLogix R510.0 Server Installation Instructions

ProcessLogix R510.0 Server Installation Instructions ProcessLogix R510.0 Server Installation Instructions Installation Instructions Before you begin... This publication guides you through the remaining processes required to initialize a ProcessLogix Server.

More information

CENTERLINE 2100 Motor Control Centers EtherNet/IP Network Adapter

CENTERLINE 2100 Motor Control Centers EtherNet/IP Network Adapter User Manual CENTERLINE 2100 Motor Control Centers EtherNet/IP Network Adapter Catalog Numbers 2100-ENET Series A FRN 1.XXX Important User Information Solid-state equipment has operational characteristics

More information

NHP SAFETY REFERENCE GUIDE

NHP SAFETY REFERENCE GUIDE NHP SAFETY REFERENCE GUIDE GuardLogix SAFETY FUNCTION DOCUMENTS Emergency Stop Table of Contents: Introduction 6-121 Important User Information 6-121 Safety Function Realization 6-122 General Safety Information

More information

Cat. No KT/B. Installation Data

Cat. No KT/B. Installation Data Cat. No. 1784-KT/B Installation Data The 1784-KT/B Communication Interface Module allows personal computers, workstations or terminals to communicate with Allen-Bradley processors and controllers, either

More information

DeviceNet ArmorBlock Network Powered 16-input Module

DeviceNet ArmorBlock Network Powered 16-input Module Installation Instructions DeviceNet ArmorBlock Network Powered 16-input Module Catalog number 1732D-IBDPM12MND, Series A Table of Contents Topic Page Important User Information 2 Environment and Enclosure

More information

Embedded I/O Expansion Board with 10 Outputs

Embedded I/O Expansion Board with 10 Outputs Installation Instructions Embedded I/O Expansion Board with 10 Outputs Catalog Number 1799-OQ10X Topic Page Important User Information 2 Environment and Enclosure 3 About the Board 4 Install the Board

More information

Size, Select and Configure Kinetix and PowerFlex Drives Using Motion Analyzer. For Classroom Use Only!

Size, Select and Configure Kinetix and PowerFlex Drives Using Motion Analyzer. For Classroom Use Only! Size, Select and Configure Kinetix and PowerFlex Drives Using Motion Analyzer For Classroom Use Only! Important User Information This documentation, whether, illustrative, printed, online or electronic

More information

PowerFlex 700S Drives - Phase II Control (Frame Sizes 9-13)

PowerFlex 700S Drives - Phase II Control (Frame Sizes 9-13) PowerFlex 700S Drives - Phase II Control (Frame Sizes 9-13) 1 Quick Start PowerFlex 700S Drives - Phase II Control (Frame Sizes 9-13) Introduction This document is designed to guide you through the basic

More information

Embedded EtherNet/IP Option Card for DriveLogix 5730 Controllers

Embedded EtherNet/IP Option Card for DriveLogix 5730 Controllers Installation Instructions Embedded EtherNet/IP Option ard for DriveLogix 5730 ontrollers!!! TTENTION: To avoid an electric shock hazard, verify that the voltage on the bus capacitors has discharged before

More information

NHP SAFETY REFERENCE GUIDE

NHP SAFETY REFERENCE GUIDE NHP SAFETY REFERENCE GUIDE GSR SAFETY FUNCTION DOCUMENTS E-Stop Safety Function Table of Contents: Introduction 6-18 Important User Information 6-18 General Safety Information 6-19 Safety Function Realization

More information

DeviceNet Communications

DeviceNet Communications DeviceNet Communications For PanelView Plus and PanelPlus CE Terminals 2711P User Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical

More information

Logix5000 Controllers Produced and Consumed Tags

Logix5000 Controllers Produced and Consumed Tags Logix5 Controllers Produced and Consumed Tags Catalog Numbers 1756 ControlLogix, 1756 GuardLogix, 1768 Compact GuardLogix, 1769 CompactLogix, 1789 SoftLogix, PowerFlex with DriveLogix Programming Manual

More information