Logix 5000™ Controllers Ladder Diagram: Programming Manual
Logix 5000™ Controllers Ladder Diagram: Programming Manual
Logix 5000™ Controllers Ladder Diagram: Programming Manual
Ladder Diagram
1756 ControlLogix®, 1756 GuardLogix®, 1769 CompactLogix™,
1769 Compact GuardLogix®, 1789 SoftLogix™, 5069
CompactLogix™, 5069 Compact GuardLogix®, Studio 5000®
Logix Emulate™
ATTENTION: Identifies information about practices or circumstances that can lead to personal injury or death, property damage, or economic loss. Attentions
help you identify a hazard, avoid a hazard, and recognize the consequence.
IMPORTANT Identifies information that is critical for successful application and understanding of the product.
BURN HAZARD: Labels may be on or inside the equipment, for example, a drive or motor, to alert people that surfaces may reach dangerous temperatures.
ARC FLASH HAZARD: Labels may be on or inside the equipment, for example, a motor control center, to alert people to potential Arc Flash. Arc Flash will cause
severe injury or death. Wear proper Personal Protective Equipment (PPE). Follow ALL Regulatory requirements for safe work practices and for Personal
Protective Equipment (PPE).
Rockwell Automation recognizes that some of the terms that are currently used in our industry and in this publication are not in
alignment with the movement toward inclusive language in technology. We are proactively collaborating with industry peers to
find alternatives to such terms and making changes to our products and content. Please excuse the use of such terms in our
content while we implement these changes.
Global changes
This table identifies changes that apply to all information about a subject in
the manual and the reason for the change. For example, the addition of new
supported hardware, a software design change, or additional reference
material would result in changes to all of the topics that deal with that subject.
Change Topic
Removed confusing "in order" text in Arrange the input Arrange the input instructions on page 14
instructions section.
Chapter 1
Program ladder diagram Introduction ................................................................................................ 11
Instruction ............................................................................................. 11
Branch ................................................................................................... 11
Rung condition..................................................................................... 12
Write ladder logic ....................................................................................... 12
Choose the required instructions ....................................................... 13
Arrange the input instructions ........................................................... 14
Arrange the output instructions ......................................................... 14
Choose a tag name for an operand ..................................................... 15
Enter ladder logic ....................................................................................... 16
Append an element to the cursor location ......................................... 16
Drag and drop an element ................................................................... 17
Assign instruction operands ..................................................................... 17
Create and assign a new tag ................................................................ 17
Choose a name or an existing tag ....................................................... 18
Drag and drop a tag from the Tags window ...................................... 19
Assign an immediate (constant) value ............................................... 19
Enter a rung comment .............................................................................. 20
Language switching ............................................................................ 20
Verify the routine ....................................................................................... 21
Index
Rockwell Automation recognizes that some of the terms that are currently
used in our industry and in this publication are not in alignment with the
movement toward inclusive language in technology. We are proactively
collaborating with industry peers to find alternatives to such terms and
making changes to our products and content. Please excuse the use of such
terms in our content while we implement these changes.
Studio 5000® environment The Studio 5000 Automation Engineering & Design Environment® combines
engineering and design elements into a common environment. The first
element is the Studio 5000 Logix Designer® application. The Logix Designer
application is the rebranding of RSLogix 5000® software and will continue to
be the product to program Logix 5000® controllers for discrete, process, batch,
motion, safety, and drive-based solutions.
Logix 5000® Controllers Process and Drives Instructions Describes how to program a Logix 5000® controller for
Reference Manual, publication 1756-RM006 process or drives applications.
Logix 5000® Controllers Motion Instruction Set Describes how to program a Logix 5000® controller for
Reference Manual, publication MOTION-RM002 motion applications.
Legal Notices Rockwell Automation publishes legal notices, such as privacy policies, license
agreements, trademark disclosures, and other terms and conditions on the
Legal Notices page of the Rockwell Automation website.
Introduction You organize ladder diagram as rungs on a ladder and put instructions on
each rung. There are two basic types of instructions:
Instruction • Input instruction: An instruction that checks, compares, or examines
specific conditions in your machine or process.
• Output instruction: An instruction that takes some action, such as
turn on a device, turn off a device, copy data, or calculate a value.
There is no limit to the number of parallel branch levels that you can enter.
This example shows a parallel branch with five levels. The main rung is the
first branch level, followed by four additional branches.
Large rungs with complex, nested branches result in having to scroll through
the ladder editor and may end up spanning multiple pages when you print the
logic. To make it easier to maintain, divide the logic into multiple smaller
rungs.
Rung condition The controller evaluates ladder instructions based on the rung condition
preceding the instruction (rung-condition-in).
Choose the required Use these steps to choose the required instructions.
instructions
To choose the required instructions
1. Identify the conditions to check and separate them from the action to
take for the rung.
2. Choose the appropriate input instruction for each condition and the
appropriate output instruction for each action.
For more information on specific instructions, see:
• Logix 5000® Controllers General Instructions Reference Manual,
publication 1756-RM003
• Logix 5000® Controllers Process and Drives Instructions Reference
Manual, publication 1756-RM006
• Logix 5000® Controllers Motion Instruction Set Reference Manual,
publication MOTION-RM002
Tip: I/O module data updates asynchronously to the execution of logic. If you reference an
input multiple times in your logic, the input could change state between separate references. If
you need the input to have the same state for each reference, buffer the input value and
reference that buffer tag.
You can also use Input and Output program parameters which automatically buffer the data
during the Logix Designer application execution. See the Logix 5000® Controllers Program
Parameters Programming Manual, publication 1756-PM021.
The examples in this chapter use two simple instructions to help you learn
how to write ladder diagram logic. The rules that you learn for these
instructions apply to all other instructions.
Symbol Name Mnemonic Description
Examine If Closed XIC An input instruction that looks at one bit of data.
If the bit is Then the instruction
(rung-condition-out) is
On (1) True
Off (0) False
Output Energize OTE An output instruction that controls one bit of data.
If the instructions to the left Then the instruction turns the bit
(rung-condition-in) are
True On (1)
False Off (0)
Arrange the input Determine how to arrange the input instructions on the rung, as shown
below.
instructions
To check multiple input conditions when: Arrange the input instructions:
Tip: The controller executes all instructions on a rung regardless of their rung-condition-in. For optimal
performance of a series of instructions, sequence the instructions from most likely to be false on the left to
least likely to be false on the right.
When the controller finds a false instruction, it executes the remaining instructions in the series with their
rung-condition-in set to false. Typically, an instruction executes faster when its rung-condition-in (rung) is
false rather than true.
Arrange the output Place at least one output instruction to the right of the input instructions. You
can enter multiple output instructions on a rung of logic:
instructions
Option Example
Place the output instructions between input instructions. The last instruction on the
rung must be an output instruction.
Tag tag_name
Bit number of a larger data type tag_name.bit_number
Member of a structure tag_name.member_name
Element of a one dimension array tag_name[x]
Element of a two dimension array tag_name[x,y]
Element of a three dimension array tag_name[x,y,z]
Element of an array within a structure tag_name.member_name[x]
Member of an element of an array tag_name[x,y,z].member_name
where:
• x is the location of the element in the first dimension.
• y is the location of the element in the second dimension.
• z is the location of the element in the third dimension.
For a structure within a structure, add .member_name.
Example: Choose a Tag Name for an Operand
To Access: The tag name looks like this:
machine_on tag
part_advance member of
element 1 in the drill array
Enter ladder logic A new routine contains a rung that is ready for instructions.
Append an element to the Use these steps to append an element to the cursor location.
cursor location IMPORTANT Use caution when copying and pasting components between different versions of the Logix
Designer application. The application only supports pasting to the same version or newer
version. Pasting to a prior version of the application is not supported. When pasting to a
prior version, the paste action may succeed but the results may not be as intended.
Drag and drop an element Drag the button for the element directly to the desired location. A green dot
shows a valid placement location (drop point).
Assign instruction operands After you add an instruction to a ladder rung, you assign tags to the
instruction operands. You can create a new tag, use an existing tag, or assign
a constant value.
Create and assign a Use these steps to create and assign a new tag.
new tag
To create and assign a new tag
1. Select the operand area of the instruction.
2. Type a name for the tag and press the Enter key.
3. Right-click the tag name and then select New "tag_name".
4. In the New Parameter or Tag dialog box, in the Usage box, choose the
usage.
6. In the Select Data Type dialog box, choose the data type for the tag.
9. Select OK.
Choose a name or an
existing tag
1. Double-click the operand area, and then select .
The Tag Browser window appears.
2. Select the name or tag:
To select a: Do this:
Enter a rung comment When entering a rung of ladder logic, you can add comments that explain the
purpose of your rung.
To enter a rung comment, perform this procedure.
1. Right-click the rung number of your ladder logic and then select Edit
Rung Comment.
2. Type your rung comment, and then select the green check to save your
changes or select the red X to discard your changes.
Language switching With version 17 and later of the application, you have the option to display
project documentation, such as tag descriptions and rung comments for any
supported localized language. You can store project documentation for
multiple languages in a single project file rather than in language-specific
project files. You define all the localized languages that the project supports
and set the current, default, and optional custom localized language. The
application uses the default language if the current language's content is
Verify the routine As you program your routine (s), it is a good idea to periodically verify your
work.
Index
A
address 13
B
branch
ladder logic 11
C
create
tag 17
I
immediate value
ladder logic 19
L
ladder logic
arrange input instructions 14
arrange output instructions 14
assign immediate value 19
branch 11
develop 12
rung condition 12
N
name
tag name 15
R
routine
verify 21
rung condition 12
T
tag
assign 17
choose name 15
create 17
enter 17
ladder logic 15, 17
V
verify
Literature Library Find installation instructions, manuals, brochures, and technical data publications. rok.auto/literature
Product Compatibility and Download Center Get help determining how products interact, check features and capabilities, and find rok.auto/pcdc
(PCDC) associated firmware.
Documentation feedback
Your comments help us serve your documentation needs better. If you have any suggestions on how to improve our content, complete the form at
rok.auto/docfeedback.
Rockwell Automation maintains current product environmental information on its website at rok.auto/pec.
Allen-Bradley, expanding human possibility, Logix, Rockwell Automation, and Rockwell Software are trademarks of Rockwell Automation, Inc.
Trademarks not belonging to Rockwell Automation are property of their respective companies.
Rockwell Otomayson Ticaret A.Ş. Kar Plaza İş Merkezi E Blok Kat:6 34752, İçerenkÖy, İstanbul, Tel: +90 (216) 5698400 EEE YÖnetmeliğine Uygundur