SlideShare a Scribd company logo
Comparison, Forcing I/O and 
Subroutines 
Chapter 07 Sections 7-4 through 7-6 
Chapter 08 Sections 8-1, 8-2, 8-3-3 through 
8-3-5 
Northampton Community College 1
Comparison Instructions 
Chapter 07 Sections 7-4 through 7-6 
Northampton Community College 2
Data Compare Instructions 
Northampton Community College 3 
 
Data compare instructions are input instructions. 
 
Data compare instructions compare the data, or value, 
stored in two words (or registers) and makes a decision 
based upon those values and the type of comparison being 
performed. 
 
The SLC-500 series processors have eight and the 
ControlLogix has nine comparison instructions. We will 
cover seven of them. 
 Equal (EQU) 
 Not Equal (NEQ) 
 Less Than (LES) 
 Less Than or Equal To (LEQ) 
 Greater Than (GRT) 
 Greater Than or Equal To (GEQ) 
 Limit Test (LIM)
Comparison Instruction Parameters 
Northampton Community College 4 
 
Comparison instructions in the SLC500 are word level instructions and 
in the ControlLogix a tag of data type SINT, INT, DINT REAL or 
STRING. The instructions have two parameters: 
 Source A 
 Source B 
Source A 
Source B
Instruction Comparison Rules 
Northampton Community College 5 
 
Comparison instruction parameters have several rules: 
 In the SLC500, Source A and Source B can be WORD level addresses. In 
the ControlLogix Source A and Source B can be a tag of data type SINT, 
INT, DINT, REAL or STRING. 
 Source A can be a WORD level address in the SLC500 or a tag in the 
ControlLogix and Source B can be a program constant. 
 Source A and Source B can not both be program constants. 
Two WORD level 
addresses 
A WORD level 
address and a 
Constant 
Two Constants 
Illegal
Equal (EQU) Instruction 
Northampton Community College 6 
 
The EQU instruction is an input instruction that compares the value referenced 
in Source A to the value referenced in source B. When the value of Source A is 
equal to the value of Source B the instruction is true, otherwise it is false. 
 
When the accumulator value of counter C5:0 (C5:0.ACC) referenced in Source 
A is equal to the accumulator value of counter C5:1 (C5:1.ACC) referenced in 
Source B, the instruction is true and output O:2/5 is energized, otherwise the 
instruction is false and the output is de-energized. 
When the program is 
running, the value of the 
WORD level address will 
be displayed in this field. 
True when Source A = Source B
Not Equal (NEQ) Instruction 
Northampton Community College 7 
 
The NEQ instruction is an input instruction that compares the value 
referenced in Source A to the value referenced in source B. When the 
value of Source A is not equal to the value of Source B the instruction is 
true, otherwise it is false. 
 
When the accumulator value of timer T4:0 (T4:0.ACC) referenced in 
Source A is not equal to the program constant of 36 referenced in 
Source B, the instruction is true and output O:2/5 is energized, 
otherwise the instruction is false and the output is de-energized. 
When the program is 
running, the value of the 
WORD level address will 
be displayed in this field. 
True when Source A ≠ Source B
Greater Than (GRT) Instruction 
Greater Than (A>B) 
Source A SetPoint 
0 
Source B Furnace_Temp 
0 
Northampton Community College 8 
 
The GRT instruction is an input instruction that compares the value 
referenced in Source A to the value referenced in source B. When the 
value of Source A is greater than the value of Source B the instruction is 
true, otherwise it is false. 
 
When the value stored in tag name SetPoint referenced in Source A is 
greater than the value stored in tag name Furnace_Temp referenced in 
Source B, the instruction is true and the output with tag name Heater is 
energized, otherwise the instruction is false and the output is de-energized. 
True when Source A > Source B 
GRT 
Heater 
<Local:3:O.Data.5> 
When the program is 
running, the value of the 
WORD level address will 
be displayed in this field.
Less Than (LES) Instruction 
When the program is 
running, the value of the 
WORD level address will 
be displayed in this field. 
Northampton Community College 9 
 
The LES instruction is an input instruction that compares the value 
referenced in Source A to the value referenced in source B. When the 
value of Source A is less than the value of Source B the instruction is 
true, otherwise it is false. 
 
When the value stored in the preset of timer T4:0 (T4:0.PRE) referenced 
in Source A is less than the accumulator value of counter C5:2 
(C5:2.ACC) referenced in Source B, the instruction is true and output 
O:2/5 is energized, otherwise the instruction is false and the output is 
de-energized. 
True when Source A < Source B
Greater Than or Equal To (GEQ) Instruction 
Northampton Community College 10 
 
The GEQ instruction is an input instruction that compares the value 
referenced in Source A to the value referenced in source B. When the 
value of Source A is greater than or equal to the value of Source B the 
instruction is true, otherwise it is false. 
 
When the value stored in word B3:1 referenced in Source A is greater 
than or equal to the program constant of 568 referenced in Source B, the 
instruction is true and output O:2/5 is energized, otherwise the 
instruction is false and the output is de-energized. 
When the program is 
running, the value of the 
WORD level address will 
be displayed in this field. 
True when Source A ≥ Source B
Less Than or Equal To (LEQ) Instruction 
Less Than or Eql (A<=B) 
Source A Refrg_Temp 
0 
Source B SetPoint 
0 
Northampton Community College 11 
 
The LEQ instruction is an input instruction that compares the value 
referenced in Source A to the value referenced in source B. When the 
value of Source A is less than or equal to the value of Source B the 
instruction is true, otherwise it is false. 
 
When the value of the tag name Refrg_Temp referenced in Source A is 
less than or equal to the value of the tag named SetPoint referenced in 
Source B, the instruction is true and the output with tag name 
Refrg_at_Temp is energized, otherwise the instruction is false and the 
output is de-energized. 
True when Source A ≤ Source B 
LEQ 
Refrg_at_Temp 
<Local:3:O.Data.13> 
When the program is 
running, the value of the 
WORD level address will 
be displayed in this field.
Limit Test (LIM) Instruction 
Northampton Community College 12 
 
The Limit Test instruction is an input instruction that tests for values that 
are inside of, or outside of, a specified range. The output of the 
instruction is dependent upon how the limits are set. 
 
The LIM instruction has three instruction parameters: 
 Low Limit (Low Lim) 
 Test 
 High Limit (High Lim) 
Low Limit (Low Lim) 
Test 
High Limit (High Lim)
LIM Parameter Rules 
Northampton Community College 13 
 
There are several rules associated with entering 
parameters into the LIM instruction: 
 The parameter values in the SLC 500 can be WORD 
level addresses or program constants and in the 
ControlLogix they can be tags of data type SINT, INT, 
DINT, REAL or program constants, with the following 
restrictions: 
If the Test parameter is a program constant, than the High Lim 
and Low Lim parameters must be WORD level addresses or 
tags. 
If the test parameter is a WORD level address or tag, than the 
Low Lim and High Lim parameters can be a program constant, a 
WORD level address or tag or a combination thereof.
LIM Instruction Operation 
O:2/7 OFF O:2/7 ON O:2/7 OFF 
Northampton Community College 14 
 
If the value referenced in the Low Lim is less than or equal 
to the value referenced in the High Lim, the instruction will 
be true when the value referenced in the Test parameter is 
between or equal to either of the limits. 
O:2/7 will be true (ON) 
when T4:1.ACC is: 
≥78 and ≤156 
78 156 
T4:1.ACC
LIM Instruction Operation 
78 156 
Heater ON Heater OFF Heater ON 
Northampton Community College 15 
 
If the value referenced in the Low Lim is greater than the 
value referenced in the High Lim, the instruction will be true 
when the value referenced in the Test parameter is equal to 
or outside of the limits. 
SetPoint 
4 Limit Test (CIRC) 
Low Limit LO_Temp_Lmt 
156 
Test SetPoint 
36 
High Limit HI_Temp_Lmt 
78 
LIM 
Heater 
<Local:3:O.Data.5> 
Heater will be true 
(ON) when the value 
stored in SetPoint is: 
≤78 OR ≥156
Performing Comparison Windows 
Northampton Community College 16 
 
Assume an output is being controlled based upon the value 
of a counter accumulator, C5:0.ACC. Following is the output 
operation criteria: 
 Output is OFF when C5:0.ACC is 0 to and including 3. 
 Output is ON when C5:0.ACC is 4 to and including 7. 
 Output is OFF when C5:0.ACC is 8 to and including 10. 
 Output is ON when C5:0.ACC is 11 to and including 25. 
 Output is OFF when C5:0.ACC is >25. 
 
Comparison instructions can be used in combinations to 
achieve the desired results.
Performing Comparison Windows 
Northampton Community College 17
Subroutines 
Chapter 08 
Sections 8-3-3 to 8-3-5 
Supplement Document 
Northampton Community College 18
Subroutines 
Northampton Community College 19 
 
Subroutine(s) is a group of program code that performs a specific 
task. The subroutine(s) are part of a program (in our case the 
MainProgram) and are not part of the MainRoutine. 
 
A subroutine can be invoked, (called), from anyplace in the 
MainRoutine or from another subroutine. When a subroutine is 
called from within another subroutine it is referred to as nesting 
subroutines. 
 
Most, if not all, computer programs and PLC/PAC programs 
contain subroutines. 
 
Subroutines are used to make what would be an enormous 
program more manageable by breaking up the code into smaller 
tasks. Specific functions within a task should be placed in 
subroutines. 
 
Organizing a program by using subroutines makes the code 
easier to read, understand and maintain. 
 
Subroutines can also be reused in other programs that require 
the same task be performed.
Subroutines 
SLC500 
 
The SLC500 uses 
separate ladder files to 
store and execute 
subroutines. There are a 
total of 253 subroutine 
ladder files; #3 through 
#255. 
Northampton Community College 20 
 
Ladder file #2 (LAD2) is 
the main ladder file and is 
the one we have been 
using in all labs to this 
date. 
 
Scan starts at rung 0 LAD2 
and ends at the End 
statement in LAD2. 
ControlLogix 
 
The ControlLogix uses 
separate routines to store 
and execute subroutines. 
The number of routines is 
limited to 32 per program. 
 
The MainRoutine is the 
main ladder routine and is 
the one we have been 
using in all labs to this 
date. 
 
Scan starts at rung 0 in the 
MainRoutine and ends at 
the End statement in the 
MainRoutine
Creating a ControlLogix Subroutine 
1. To create a new subroutine right 
click on MainProgram and select 
New Routine… from the pop-up 
menu 
2. New Routine dialog box will open. 
Type in the name of the subroutine 
and from the Type: dropdown, 
select the type of program code. 
3. The new 
subroutine will appear 
listed under the 
program that it was 
created in. Double 
click the subroutine to 
open the ladder 
editor. 
Northampton Community College 21
Program Control Instructions 
Northampton Community College 22 
 
There are many program control instructions. Below is a list of them and the 
platforms they are available on: 
Instruction CL 500 Sim Instruction CL 500 Sim 
JMP – Jump to Label ● ● ● 
UID – User Interrupt 
Disable 
● 
LBL – Label ● ● ● 
UIE – User Interrupt 
Enable 
● 
JXR – Jump to External Routine ● 
SFR – Reset Sequential 
Chart 
● 
JSR – Jump to Subroutine ● ● ● 
SFP – Pause Sequential 
Chart 
● 
RET – Return from Subroutine ● ● ● 
EVENT – Trigger Event 
Task 
● 
SBR – Subroutine Label ● ● ● EOT – End of Transition ● 
TND – Temporary End ● ● ● AFI – Always False ● 
MCR – Master Control Reset ● ● ● NOP – No Operation ● 
SUS - Suspend 
 
This course will only cover the instructions shown in Red. The instruction in 
Green can be used, but they will not be discussed in class.
ControlLogix Program Control Instructions 
Northampton Community College 23 
 
JSR – Jump to Subroutine 
 
The JSR is an output instruction that is used to “call” a 
subroutine. 
 
The instruction rung can be conditional or unconditional. 
 
JSR instructions can have several parameters. The one 
shown here has 3-parameters. Subroutine name to 
be “called” (required) 
Parameter to pass to 
the subroutine 
(optional) 
Parameter to accept a 
value returning from 
the subroutine 
(optional)
ControlLogix Program Control Instructions 
Northampton Community College 24 
 
Entering JSR parameters: 
 Routine Name (Required) – 
Double-click this parameter field, 
click the dropdown arrow and 
select the subroutine name from 
the dropdown list. The subroutine 
name will only be in the list if the 
subroutine has been created. 
 Input Par and Return Par 
(Optional) – These parameters 
will not be used in this course. 
When a parameter is not used it 
must be removed. Right click on 
the parameter field and select 
Remove Instruction Parameter 
from the pop-up menu. Do this for 
each parameter that is not 
required. The picture on this slide 
illustrates removing a parameter 
field.
ControlLogix Program Control Instructions 
Northampton Community College 25 
 
JSR operation 
 
When the rung containing a JSR instruction is true, the 
processor scan jumps to the subroutine referenced in the 
Routine Name parameter and begins program execution at 
the first rung in that subroutine 
 
A jump cannot be made into the middle of a subroutine. 
Execution will always start at the first instruction on the first 
rung in that ladder routine. 
This rung will unconditionally jump to the 
subroutine named Routine04
ControlLogix Program Control Instructions 
Northampton Community College 26 
 
SBR – Subroutine Label 
 
The SBR in an input instruction that is always true and 
marks the beginning of a subroutine. It must be the first 
instruction on the first rung of the subroutine. 
 
The input parameter field(s) is used to reference tags 
whose data is to be used (passed) to the subroutine. (This 
course will not be using these parameters). 
 
SBR instructions can have several parameters. The one 
shown here has one parameters. 
Parameter that passes 
data to the subroutine 
(optional)
ControlLogix Program Control Instructions 
Northampton Community College 27 
 
For this course the Input Par parameter will need to be 
removed from the SBR instruction. To remove the 
parameter right-click on the parameter and select Remove 
Instruction Parameter from the pop-up menu.
ControlLogix Program Control Instructions 
Northampton Community College 28 
 
RET – Return from Subroutine 
 
The RET instruction is an output instruction that is used to 
stop executing the subroutine and return to the ladder file 
that originally “called” the subroutine. 
 
The instruction can be conditional or unconditional and can 
contain several parameters. The RET instruction shown 
here has one parameter. (This course will not use these 
parameters). 
Parameter that passes 
data back to the 
ladder file that 
originally “called” the 
subroutine. (optional)
ControlLogix Program Control Instructions 
Northampton Community College 29 
 
For this course the Input Par parameter will need to be 
removed from the RET instruction. To remove the 
parameter right-click on the parameter and select Remove 
Instruction Parameter from the pop-up menu.
ControlLogix Program Control Instructions 
Northampton Community College 30 
 
Several conditional RET instructions can be present in a 
subroutine. As an example: 
 If an RET instruction becomes true that is on rung 0006 in a 
subroutine containing 45-rungs, the program scan will return to the 
ladder file that originally called the subroutine and rungs 0007 
through 0045 will not execute. 
 If the RET instruction on rung 0006 becomes false another RET 
instruction becomes true that is on rung 0010 in the same 
subroutine, the program scan will return to the ladder file that 
originally called the subroutine and rungs 0011 through 0045 will not 
executed. 
 
If the entire subroutine ladder file is to be always scanned, 
placing a RET instruction on the last rung of the program is 
optional. If an RET instruction is not found in the subroutine 
ladder file, the END statement performs the return.
Program Execution using Subroutines 
Northampton Community College 31
Forcing I/O 
Northampton Community College 32
Using the Force I/O Function 
Northampton Community College 33 
 
The force function will only work on field I/O devices, 
therefore the input and output data files in the SLC500 and 
the Controller tags in the ControlLogix. 
 
Before applying a force to any input or any output device, 
an understanding of the potential effect that force(s) will 
have on the machine or process operation and to the safety 
of personal is essential. 
DO NOT INSTALL FORCES WITHOUT FIRST 
UNDERSTANDING WHAT AFFECT IT WILL HAVE ON 
THE OPERATION OF THE MACHINE OR PROCESS 
 
Most programming software provide some visible means of 
alerting the user that a force is in affect or installed. 
 
Most processor modules have an LED indicator that will be 
lit if there are any forces installed.
Installing and Enabling Forces 
Northampton Community College 34 
 
This is an instructor led, interactive lab. 
 
If there is no program running in the PLC at your 
workstation, open a program that uses I/O field devices, 
download the program to the PLC, then place the PLC in 
RUN mode. 
 
Your instructor will also switch to RSLogix and attach to 
someone’s workstation to lead you through and 
demonstrate the force functions.

More Related Content

What's hot

Lecture 16 17 code-generation
Lecture 16 17 code-generationLecture 16 17 code-generation
Lecture 16 17 code-generation
Iffat Anjum
 
Three address code In Compiler Design
Three address code In Compiler DesignThree address code In Compiler Design
Three address code In Compiler Design
Shine Raj
 
Back patching
Back patchingBack patching
Back patching
santhiya thavanthi
 
Compiler Design File
Compiler Design FileCompiler Design File
Compiler Design File
Archita Misra
 
Compiler unit 4
Compiler unit 4Compiler unit 4
Compiler unit 4
BBDITM LUCKNOW
 
Code generation
Code generationCode generation
Code generation
Aparna Nayak
 
Compiler unit 5
Compiler  unit 5Compiler  unit 5
Compiler unit 5
BBDITM LUCKNOW
 
Chapter Eight(3)
Chapter Eight(3)Chapter Eight(3)
Chapter Eight(3)
bolovv
 
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Saikrishna Tanguturu
 
Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085
Chinmayee samal
 
Chapter Seven(2)
Chapter Seven(2)Chapter Seven(2)
Chapter Seven(2)
bolovv
 
Interm codegen
Interm codegenInterm codegen
Interm codegen
Anshul Sharma
 
Intermediate code- generation
Intermediate code- generationIntermediate code- generation
Intermediate code- generation
rawan_z
 
Principle source of optimazation
Principle source of optimazationPrinciple source of optimazation
Principle source of optimazation
Siva Sathya
 
Lecture 12 intermediate code generation
Lecture 12 intermediate code generationLecture 12 intermediate code generation
Lecture 12 intermediate code generation
Iffat Anjum
 
Report on c and c++
Report on c and c++Report on c and c++
Report on c and c++
oggyrao
 
Intermediate code generation
Intermediate code generationIntermediate code generation
Intermediate code generation
RamchandraRegmi
 
Chapter 5 programming concepts iv
Chapter 5  programming concepts ivChapter 5  programming concepts iv
Chapter 5 programming concepts iv
SHREEHARI WADAWADAGI
 
Code optimization
Code optimizationCode optimization
Code optimization
veena venugopal
 
Co&amp;al lecture-07
Co&amp;al lecture-07Co&amp;al lecture-07
Co&amp;al lecture-07
AbdulKarim563520
 

What's hot (20)

Lecture 16 17 code-generation
Lecture 16 17 code-generationLecture 16 17 code-generation
Lecture 16 17 code-generation
 
Three address code In Compiler Design
Three address code In Compiler DesignThree address code In Compiler Design
Three address code In Compiler Design
 
Back patching
Back patchingBack patching
Back patching
 
Compiler Design File
Compiler Design FileCompiler Design File
Compiler Design File
 
Compiler unit 4
Compiler unit 4Compiler unit 4
Compiler unit 4
 
Code generation
Code generationCode generation
Code generation
 
Compiler unit 5
Compiler  unit 5Compiler  unit 5
Compiler unit 5
 
Chapter Eight(3)
Chapter Eight(3)Chapter Eight(3)
Chapter Eight(3)
 
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
Compiler Design - Ambiguous grammar, LMD & RMD, Infix & Postfix, Implementati...
 
Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085Addressing mode & data transfer instruction of 8085
Addressing mode & data transfer instruction of 8085
 
Chapter Seven(2)
Chapter Seven(2)Chapter Seven(2)
Chapter Seven(2)
 
Interm codegen
Interm codegenInterm codegen
Interm codegen
 
Intermediate code- generation
Intermediate code- generationIntermediate code- generation
Intermediate code- generation
 
Principle source of optimazation
Principle source of optimazationPrinciple source of optimazation
Principle source of optimazation
 
Lecture 12 intermediate code generation
Lecture 12 intermediate code generationLecture 12 intermediate code generation
Lecture 12 intermediate code generation
 
Report on c and c++
Report on c and c++Report on c and c++
Report on c and c++
 
Intermediate code generation
Intermediate code generationIntermediate code generation
Intermediate code generation
 
Chapter 5 programming concepts iv
Chapter 5  programming concepts ivChapter 5  programming concepts iv
Chapter 5 programming concepts iv
 
Code optimization
Code optimizationCode optimization
Code optimization
 
Co&amp;al lecture-07
Co&amp;al lecture-07Co&amp;al lecture-07
Co&amp;al lecture-07
 

Viewers also liked

Move mask moves_rev01_fa16
Move mask moves_rev01_fa16Move mask moves_rev01_fa16
Move mask moves_rev01_fa16
John Todora
 
Slc500cap6
Slc500cap6Slc500cap6
Slc500cap6
Ricardo Akerman
 
NB Designer Manual Operation [unlockplc.com]
NB Designer Manual Operation [unlockplc.com]NB Designer Manual Operation [unlockplc.com]
NB Designer Manual Operation [unlockplc.com]
unlockplc123
 
Diseño de juegos
Diseño de juegosDiseño de juegos
Diseño de juegos
Nicole2411
 
04 scaling analog_datal_sp17
04 scaling analog_datal_sp1704 scaling analog_datal_sp17
04 scaling analog_datal_sp17
John Todora
 
03 analog control_sp17
03 analog control_sp1703 analog control_sp17
03 analog control_sp17
John Todora
 
Data Manipulation and Math Instruction on RSLogix 500
Data Manipulation and Math Instruction on RSLogix 500Data Manipulation and Math Instruction on RSLogix 500
Data Manipulation and Math Instruction on RSLogix 500
Lino Hugun Saputra
 
Sap -mise_en_oeuvre
Sap  -mise_en_oeuvreSap  -mise_en_oeuvre
Sap -mise_en_oeuvre
omar bllaouhamou
 
Controllogix 5000 Training
Controllogix 5000 TrainingControllogix 5000 Training
Controllogix 5000 Training
Business Industrial Network
 
Arquitectura Integrada
Arquitectura IntegradaArquitectura Integrada
Arquitectura Integrada
Lito Villasante Mora
 
Examen sap master 2015
Examen sap master 2015Examen sap master 2015
Examen sap master 2015
omar bllaouhamou
 
Manejo de avisos y alarmas en HMI
Manejo de avisos y alarmas en HMIManejo de avisos y alarmas en HMI
Manejo de avisos y alarmas en HMI
john piñeros
 
PLC and SCADA
PLC and SCADAPLC and SCADA
PLC and SCADA
Suman Sourabh
 
Cap5. circuitos neumaticos
Cap5. circuitos neumaticosCap5. circuitos neumaticos
Cap5. circuitos neumaticos
chorisin87
 
Programación estructurada Siemens - TIA PORTAL
Programación estructurada Siemens - TIA PORTALProgramación estructurada Siemens - TIA PORTAL
Programación estructurada Siemens - TIA PORTAL
john piñeros
 
Allen Bradley- Micrologix PLC Instructions
Allen Bradley- Micrologix PLC InstructionsAllen Bradley- Micrologix PLC Instructions
Allen Bradley- Micrologix PLC Instructions
NFI - Industrial Automation Training Academy
 
Programación SIEMENS S7 200
Programación SIEMENS S7 200Programación SIEMENS S7 200
Programación SIEMENS S7 200
EDUARDO RODRÍGUEZ PORTES
 
Manual manejo TIA PORTAL SIEMENS
Manual manejo TIA PORTAL SIEMENSManual manejo TIA PORTAL SIEMENS
Manual manejo TIA PORTAL SIEMENS
john piñeros
 
Step 7 avanzado
Step 7 avanzadoStep 7 avanzado
Step 7 avanzado
acarhuacusma
 
INSTALACIÓN NEUMATICA
INSTALACIÓN NEUMATICAINSTALACIÓN NEUMATICA
INSTALACIÓN NEUMATICA
Esaú Samaniego Melo
 

Viewers also liked (20)

Move mask moves_rev01_fa16
Move mask moves_rev01_fa16Move mask moves_rev01_fa16
Move mask moves_rev01_fa16
 
Slc500cap6
Slc500cap6Slc500cap6
Slc500cap6
 
NB Designer Manual Operation [unlockplc.com]
NB Designer Manual Operation [unlockplc.com]NB Designer Manual Operation [unlockplc.com]
NB Designer Manual Operation [unlockplc.com]
 
Diseño de juegos
Diseño de juegosDiseño de juegos
Diseño de juegos
 
04 scaling analog_datal_sp17
04 scaling analog_datal_sp1704 scaling analog_datal_sp17
04 scaling analog_datal_sp17
 
03 analog control_sp17
03 analog control_sp1703 analog control_sp17
03 analog control_sp17
 
Data Manipulation and Math Instruction on RSLogix 500
Data Manipulation and Math Instruction on RSLogix 500Data Manipulation and Math Instruction on RSLogix 500
Data Manipulation and Math Instruction on RSLogix 500
 
Sap -mise_en_oeuvre
Sap  -mise_en_oeuvreSap  -mise_en_oeuvre
Sap -mise_en_oeuvre
 
Controllogix 5000 Training
Controllogix 5000 TrainingControllogix 5000 Training
Controllogix 5000 Training
 
Arquitectura Integrada
Arquitectura IntegradaArquitectura Integrada
Arquitectura Integrada
 
Examen sap master 2015
Examen sap master 2015Examen sap master 2015
Examen sap master 2015
 
Manejo de avisos y alarmas en HMI
Manejo de avisos y alarmas en HMIManejo de avisos y alarmas en HMI
Manejo de avisos y alarmas en HMI
 
PLC and SCADA
PLC and SCADAPLC and SCADA
PLC and SCADA
 
Cap5. circuitos neumaticos
Cap5. circuitos neumaticosCap5. circuitos neumaticos
Cap5. circuitos neumaticos
 
Programación estructurada Siemens - TIA PORTAL
Programación estructurada Siemens - TIA PORTALProgramación estructurada Siemens - TIA PORTAL
Programación estructurada Siemens - TIA PORTAL
 
Allen Bradley- Micrologix PLC Instructions
Allen Bradley- Micrologix PLC InstructionsAllen Bradley- Micrologix PLC Instructions
Allen Bradley- Micrologix PLC Instructions
 
Programación SIEMENS S7 200
Programación SIEMENS S7 200Programación SIEMENS S7 200
Programación SIEMENS S7 200
 
Manual manejo TIA PORTAL SIEMENS
Manual manejo TIA PORTAL SIEMENSManual manejo TIA PORTAL SIEMENS
Manual manejo TIA PORTAL SIEMENS
 
Step 7 avanzado
Step 7 avanzadoStep 7 avanzado
Step 7 avanzado
 
INSTALACIÓN NEUMATICA
INSTALACIÓN NEUMATICAINSTALACIÓN NEUMATICA
INSTALACIÓN NEUMATICA
 

Similar to 13 chap07 and_08_comparison_subs_force_fa14

Lecture05 abap on line
Lecture05 abap on lineLecture05 abap on line
Lecture05 abap on line
Milind Patil
 
Java Programming - Conditional Statements (Switch).pdf
Java Programming - Conditional Statements (Switch).pdfJava Programming - Conditional Statements (Switch).pdf
Java Programming - Conditional Statements (Switch).pdf
ROWELL MARQUINA
 
Black-Box.ppt
Black-Box.pptBlack-Box.ppt
Black-Box.ppt
coctheweeknd
 
Lect07
Lect07Lect07
Programming Fundamentals lecture 7
Programming Fundamentals lecture 7Programming Fundamentals lecture 7
Programming Fundamentals lecture 7
REHAN IJAZ
 
Microcontroladores: introducción a la programación en lenguaje ensamblador AVR
Microcontroladores: introducción a la programación en lenguaje ensamblador AVRMicrocontroladores: introducción a la programación en lenguaje ensamblador AVR
Microcontroladores: introducción a la programación en lenguaje ensamblador AVR
SANTIAGO PABLO ALBERTO
 
The 8051 microcontroller
The 8051 microcontrollerThe 8051 microcontroller
The 8051 microcontroller
PallaviHailkar
 
Control Structures in C
Control Structures in CControl Structures in C
Control Structures in C
sana shaikh
 
C language
C languageC language
C language
Mohamed Bedair
 
Enhanced pid pide
Enhanced pid pideEnhanced pid pide
Enhanced pid pide
Kamit Patel
 
CIS 1403 lab 4 selection
CIS 1403 lab 4 selectionCIS 1403 lab 4 selection
CIS 1403 lab 4 selection
Hamad Odhabi
 
C++
C++ C++
C operator and expression
C operator and expressionC operator and expression
C operator and expression
LavanyaManokaran
 
C language UPTU Unit3 Slides
C language UPTU Unit3 SlidesC language UPTU Unit3 Slides
C language UPTU Unit3 Slides
Rakesh Roshan
 
Algorithm manual
Algorithm manualAlgorithm manual
Algorithm manual
EfendyMasuli
 
Algorithm Flowchart Manual ALGORITHM FLOWCHART MANUAL For STUDENTS
Algorithm   Flowchart Manual ALGORITHM   FLOWCHART MANUAL For STUDENTSAlgorithm   Flowchart Manual ALGORITHM   FLOWCHART MANUAL For STUDENTS
Algorithm Flowchart Manual ALGORITHM FLOWCHART MANUAL For STUDENTS
Alicia Edwards
 
detail of flowchart and algorithm that are used in programmingpdf
detail of flowchart and algorithm that are used in programmingpdfdetail of flowchart and algorithm that are used in programmingpdf
detail of flowchart and algorithm that are used in programmingpdf
ssuserf86fba
 
De so 1
De so 1De so 1
De so 1
kiennt
 
Ch05
Ch05Ch05
Umts parameter reference
Umts parameter referenceUmts parameter reference
Umts parameter reference
amini110
 

Similar to 13 chap07 and_08_comparison_subs_force_fa14 (20)

Lecture05 abap on line
Lecture05 abap on lineLecture05 abap on line
Lecture05 abap on line
 
Java Programming - Conditional Statements (Switch).pdf
Java Programming - Conditional Statements (Switch).pdfJava Programming - Conditional Statements (Switch).pdf
Java Programming - Conditional Statements (Switch).pdf
 
Black-Box.ppt
Black-Box.pptBlack-Box.ppt
Black-Box.ppt
 
Lect07
Lect07Lect07
Lect07
 
Programming Fundamentals lecture 7
Programming Fundamentals lecture 7Programming Fundamentals lecture 7
Programming Fundamentals lecture 7
 
Microcontroladores: introducción a la programación en lenguaje ensamblador AVR
Microcontroladores: introducción a la programación en lenguaje ensamblador AVRMicrocontroladores: introducción a la programación en lenguaje ensamblador AVR
Microcontroladores: introducción a la programación en lenguaje ensamblador AVR
 
The 8051 microcontroller
The 8051 microcontrollerThe 8051 microcontroller
The 8051 microcontroller
 
Control Structures in C
Control Structures in CControl Structures in C
Control Structures in C
 
C language
C languageC language
C language
 
Enhanced pid pide
Enhanced pid pideEnhanced pid pide
Enhanced pid pide
 
CIS 1403 lab 4 selection
CIS 1403 lab 4 selectionCIS 1403 lab 4 selection
CIS 1403 lab 4 selection
 
C++
C++ C++
C++
 
C operator and expression
C operator and expressionC operator and expression
C operator and expression
 
C language UPTU Unit3 Slides
C language UPTU Unit3 SlidesC language UPTU Unit3 Slides
C language UPTU Unit3 Slides
 
Algorithm manual
Algorithm manualAlgorithm manual
Algorithm manual
 
Algorithm Flowchart Manual ALGORITHM FLOWCHART MANUAL For STUDENTS
Algorithm   Flowchart Manual ALGORITHM   FLOWCHART MANUAL For STUDENTSAlgorithm   Flowchart Manual ALGORITHM   FLOWCHART MANUAL For STUDENTS
Algorithm Flowchart Manual ALGORITHM FLOWCHART MANUAL For STUDENTS
 
detail of flowchart and algorithm that are used in programmingpdf
detail of flowchart and algorithm that are used in programmingpdfdetail of flowchart and algorithm that are used in programmingpdf
detail of flowchart and algorithm that are used in programmingpdf
 
De so 1
De so 1De so 1
De so 1
 
Ch05
Ch05Ch05
Ch05
 
Umts parameter reference
Umts parameter referenceUmts parameter reference
Umts parameter reference
 

More from John Todora

01 control logix_arrays_sp17
01 control logix_arrays_sp1701 control logix_arrays_sp17
01 control logix_arrays_sp17
John Todora
 
Lab02 review
Lab02 reviewLab02 review
Lab02 review
John Todora
 
Subroutines rev01 fa16
Subroutines rev01 fa16Subroutines rev01 fa16
Subroutines rev01 fa16
John Todora
 
ControlLogix Counters FA16
ControlLogix Counters FA16ControlLogix Counters FA16
ControlLogix Counters FA16
John Todora
 
Lab02 lead in
Lab02 lead inLab02 lead in
Lab02 lead in
John Todora
 
ControlLogix Timers FA16
ControlLogix Timers FA16ControlLogix Timers FA16
ControlLogix Timers FA16
John Todora
 
02 chapter02 fa16
02 chapter02 fa1602 chapter02 fa16
02 chapter02 fa16
John Todora
 
01 introduction to_plc-pac_rev01_fa16
01 introduction to_plc-pac_rev01_fa1601 introduction to_plc-pac_rev01_fa16
01 introduction to_plc-pac_rev01_fa16
John Todora
 
07 chapter07 loop_diagrams
07 chapter07 loop_diagrams07 chapter07 loop_diagrams
07 chapter07 loop_diagrams
John Todora
 
06 chapter06 binary_logic_systems_Rev02
06 chapter06 binary_logic_systems_Rev0206 chapter06 binary_logic_systems_Rev02
06 chapter06 binary_logic_systems_Rev02
John Todora
 
04 chapter04 specification_forms
04 chapter04 specification_forms04 chapter04 specification_forms
04 chapter04 specification_forms
John Todora
 
03 chapter03 lists_indexes_databases
03 chapter03 lists_indexes_databases03 chapter03 lists_indexes_databases
03 chapter03 lists_indexes_databases
John Todora
 
02 chapter02 p&ids_and_symbols_split_animations
02 chapter02 p&ids_and_symbols_split_animations02 chapter02 p&ids_and_symbols_split_animations
02 chapter02 p&ids_and_symbols_split_animations
John Todora
 
01 chapter01 process_flow_diagram
01 chapter01 process_flow_diagram01 chapter01 process_flow_diagram
01 chapter01 process_flow_diagram
John Todora
 
00 introduction
00 introduction00 introduction
00 introduction
John Todora
 
EMEC130 P&ID Symbol Primer
EMEC130 P&ID Symbol PrimerEMEC130 P&ID Symbol Primer
EMEC130 P&ID Symbol Primer
John Todora
 
02 copy file_fill_sp16
02 copy file_fill_sp1602 copy file_fill_sp16
02 copy file_fill_sp16
John Todora
 
Control Systems Basics
Control Systems BasicsControl Systems Basics
Control Systems Basics
John Todora
 
01 overview of_industrial_automation_sp15
01 overview of_industrial_automation_sp1501 overview of_industrial_automation_sp15
01 overview of_industrial_automation_sp15
John Todora
 
05 analog control_sp15
05 analog control_sp1505 analog control_sp15
05 analog control_sp15
John Todora
 

More from John Todora (20)

01 control logix_arrays_sp17
01 control logix_arrays_sp1701 control logix_arrays_sp17
01 control logix_arrays_sp17
 
Lab02 review
Lab02 reviewLab02 review
Lab02 review
 
Subroutines rev01 fa16
Subroutines rev01 fa16Subroutines rev01 fa16
Subroutines rev01 fa16
 
ControlLogix Counters FA16
ControlLogix Counters FA16ControlLogix Counters FA16
ControlLogix Counters FA16
 
Lab02 lead in
Lab02 lead inLab02 lead in
Lab02 lead in
 
ControlLogix Timers FA16
ControlLogix Timers FA16ControlLogix Timers FA16
ControlLogix Timers FA16
 
02 chapter02 fa16
02 chapter02 fa1602 chapter02 fa16
02 chapter02 fa16
 
01 introduction to_plc-pac_rev01_fa16
01 introduction to_plc-pac_rev01_fa1601 introduction to_plc-pac_rev01_fa16
01 introduction to_plc-pac_rev01_fa16
 
07 chapter07 loop_diagrams
07 chapter07 loop_diagrams07 chapter07 loop_diagrams
07 chapter07 loop_diagrams
 
06 chapter06 binary_logic_systems_Rev02
06 chapter06 binary_logic_systems_Rev0206 chapter06 binary_logic_systems_Rev02
06 chapter06 binary_logic_systems_Rev02
 
04 chapter04 specification_forms
04 chapter04 specification_forms04 chapter04 specification_forms
04 chapter04 specification_forms
 
03 chapter03 lists_indexes_databases
03 chapter03 lists_indexes_databases03 chapter03 lists_indexes_databases
03 chapter03 lists_indexes_databases
 
02 chapter02 p&ids_and_symbols_split_animations
02 chapter02 p&ids_and_symbols_split_animations02 chapter02 p&ids_and_symbols_split_animations
02 chapter02 p&ids_and_symbols_split_animations
 
01 chapter01 process_flow_diagram
01 chapter01 process_flow_diagram01 chapter01 process_flow_diagram
01 chapter01 process_flow_diagram
 
00 introduction
00 introduction00 introduction
00 introduction
 
EMEC130 P&ID Symbol Primer
EMEC130 P&ID Symbol PrimerEMEC130 P&ID Symbol Primer
EMEC130 P&ID Symbol Primer
 
02 copy file_fill_sp16
02 copy file_fill_sp1602 copy file_fill_sp16
02 copy file_fill_sp16
 
Control Systems Basics
Control Systems BasicsControl Systems Basics
Control Systems Basics
 
01 overview of_industrial_automation_sp15
01 overview of_industrial_automation_sp1501 overview of_industrial_automation_sp15
01 overview of_industrial_automation_sp15
 
05 analog control_sp15
05 analog control_sp1505 analog control_sp15
05 analog control_sp15
 

Recently uploaded

Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
 
How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17
Celine George
 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
nitinpv4ai
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapitolTechU
 
Skimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S EliotSkimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S Eliot
nitinpv4ai
 
How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17
Celine George
 
Juneteenth Freedom Day 2024 David Douglas School District
Juneteenth Freedom Day 2024 David Douglas School DistrictJuneteenth Freedom Day 2024 David Douglas School District
Juneteenth Freedom Day 2024 David Douglas School District
David Douglas School District
 
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
Nguyen Thanh Tu Collection
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
EduSkills OECD
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
nitinpv4ai
 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
TechSoup
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
Nguyen Thanh Tu Collection
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 

Recently uploaded (20)

Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
 
How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17
 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
 
Skimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S EliotSkimbleshanks-The-Railway-Cat by T S Eliot
Skimbleshanks-The-Railway-Cat by T S Eliot
 
How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17
 
Juneteenth Freedom Day 2024 David Douglas School District
Juneteenth Freedom Day 2024 David Douglas School DistrictJuneteenth Freedom Day 2024 David Douglas School District
Juneteenth Freedom Day 2024 David Douglas School District
 
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN TẬP VÀ PHÁT TRIỂN CÂU HỎI TRONG ĐỀ MINH HỌA THI TỐT NGHIỆP THPT ...
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 8 - CẢ NĂM - FRIENDS PLUS - NĂM HỌC 2023-2024 (B...
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 

13 chap07 and_08_comparison_subs_force_fa14

  • 1. Comparison, Forcing I/O and Subroutines Chapter 07 Sections 7-4 through 7-6 Chapter 08 Sections 8-1, 8-2, 8-3-3 through 8-3-5 Northampton Community College 1
  • 2. Comparison Instructions Chapter 07 Sections 7-4 through 7-6 Northampton Community College 2
  • 3. Data Compare Instructions Northampton Community College 3  Data compare instructions are input instructions.  Data compare instructions compare the data, or value, stored in two words (or registers) and makes a decision based upon those values and the type of comparison being performed.  The SLC-500 series processors have eight and the ControlLogix has nine comparison instructions. We will cover seven of them.  Equal (EQU)  Not Equal (NEQ)  Less Than (LES)  Less Than or Equal To (LEQ)  Greater Than (GRT)  Greater Than or Equal To (GEQ)  Limit Test (LIM)
  • 4. Comparison Instruction Parameters Northampton Community College 4  Comparison instructions in the SLC500 are word level instructions and in the ControlLogix a tag of data type SINT, INT, DINT REAL or STRING. The instructions have two parameters:  Source A  Source B Source A Source B
  • 5. Instruction Comparison Rules Northampton Community College 5  Comparison instruction parameters have several rules:  In the SLC500, Source A and Source B can be WORD level addresses. In the ControlLogix Source A and Source B can be a tag of data type SINT, INT, DINT, REAL or STRING.  Source A can be a WORD level address in the SLC500 or a tag in the ControlLogix and Source B can be a program constant.  Source A and Source B can not both be program constants. Two WORD level addresses A WORD level address and a Constant Two Constants Illegal
  • 6. Equal (EQU) Instruction Northampton Community College 6  The EQU instruction is an input instruction that compares the value referenced in Source A to the value referenced in source B. When the value of Source A is equal to the value of Source B the instruction is true, otherwise it is false.  When the accumulator value of counter C5:0 (C5:0.ACC) referenced in Source A is equal to the accumulator value of counter C5:1 (C5:1.ACC) referenced in Source B, the instruction is true and output O:2/5 is energized, otherwise the instruction is false and the output is de-energized. When the program is running, the value of the WORD level address will be displayed in this field. True when Source A = Source B
  • 7. Not Equal (NEQ) Instruction Northampton Community College 7  The NEQ instruction is an input instruction that compares the value referenced in Source A to the value referenced in source B. When the value of Source A is not equal to the value of Source B the instruction is true, otherwise it is false.  When the accumulator value of timer T4:0 (T4:0.ACC) referenced in Source A is not equal to the program constant of 36 referenced in Source B, the instruction is true and output O:2/5 is energized, otherwise the instruction is false and the output is de-energized. When the program is running, the value of the WORD level address will be displayed in this field. True when Source A ≠ Source B
  • 8. Greater Than (GRT) Instruction Greater Than (A>B) Source A SetPoint 0 Source B Furnace_Temp 0 Northampton Community College 8  The GRT instruction is an input instruction that compares the value referenced in Source A to the value referenced in source B. When the value of Source A is greater than the value of Source B the instruction is true, otherwise it is false.  When the value stored in tag name SetPoint referenced in Source A is greater than the value stored in tag name Furnace_Temp referenced in Source B, the instruction is true and the output with tag name Heater is energized, otherwise the instruction is false and the output is de-energized. True when Source A > Source B GRT Heater <Local:3:O.Data.5> When the program is running, the value of the WORD level address will be displayed in this field.
  • 9. Less Than (LES) Instruction When the program is running, the value of the WORD level address will be displayed in this field. Northampton Community College 9  The LES instruction is an input instruction that compares the value referenced in Source A to the value referenced in source B. When the value of Source A is less than the value of Source B the instruction is true, otherwise it is false.  When the value stored in the preset of timer T4:0 (T4:0.PRE) referenced in Source A is less than the accumulator value of counter C5:2 (C5:2.ACC) referenced in Source B, the instruction is true and output O:2/5 is energized, otherwise the instruction is false and the output is de-energized. True when Source A < Source B
  • 10. Greater Than or Equal To (GEQ) Instruction Northampton Community College 10  The GEQ instruction is an input instruction that compares the value referenced in Source A to the value referenced in source B. When the value of Source A is greater than or equal to the value of Source B the instruction is true, otherwise it is false.  When the value stored in word B3:1 referenced in Source A is greater than or equal to the program constant of 568 referenced in Source B, the instruction is true and output O:2/5 is energized, otherwise the instruction is false and the output is de-energized. When the program is running, the value of the WORD level address will be displayed in this field. True when Source A ≥ Source B
  • 11. Less Than or Equal To (LEQ) Instruction Less Than or Eql (A<=B) Source A Refrg_Temp 0 Source B SetPoint 0 Northampton Community College 11  The LEQ instruction is an input instruction that compares the value referenced in Source A to the value referenced in source B. When the value of Source A is less than or equal to the value of Source B the instruction is true, otherwise it is false.  When the value of the tag name Refrg_Temp referenced in Source A is less than or equal to the value of the tag named SetPoint referenced in Source B, the instruction is true and the output with tag name Refrg_at_Temp is energized, otherwise the instruction is false and the output is de-energized. True when Source A ≤ Source B LEQ Refrg_at_Temp <Local:3:O.Data.13> When the program is running, the value of the WORD level address will be displayed in this field.
  • 12. Limit Test (LIM) Instruction Northampton Community College 12  The Limit Test instruction is an input instruction that tests for values that are inside of, or outside of, a specified range. The output of the instruction is dependent upon how the limits are set.  The LIM instruction has three instruction parameters:  Low Limit (Low Lim)  Test  High Limit (High Lim) Low Limit (Low Lim) Test High Limit (High Lim)
  • 13. LIM Parameter Rules Northampton Community College 13  There are several rules associated with entering parameters into the LIM instruction:  The parameter values in the SLC 500 can be WORD level addresses or program constants and in the ControlLogix they can be tags of data type SINT, INT, DINT, REAL or program constants, with the following restrictions: If the Test parameter is a program constant, than the High Lim and Low Lim parameters must be WORD level addresses or tags. If the test parameter is a WORD level address or tag, than the Low Lim and High Lim parameters can be a program constant, a WORD level address or tag or a combination thereof.
  • 14. LIM Instruction Operation O:2/7 OFF O:2/7 ON O:2/7 OFF Northampton Community College 14  If the value referenced in the Low Lim is less than or equal to the value referenced in the High Lim, the instruction will be true when the value referenced in the Test parameter is between or equal to either of the limits. O:2/7 will be true (ON) when T4:1.ACC is: ≥78 and ≤156 78 156 T4:1.ACC
  • 15. LIM Instruction Operation 78 156 Heater ON Heater OFF Heater ON Northampton Community College 15  If the value referenced in the Low Lim is greater than the value referenced in the High Lim, the instruction will be true when the value referenced in the Test parameter is equal to or outside of the limits. SetPoint 4 Limit Test (CIRC) Low Limit LO_Temp_Lmt 156 Test SetPoint 36 High Limit HI_Temp_Lmt 78 LIM Heater <Local:3:O.Data.5> Heater will be true (ON) when the value stored in SetPoint is: ≤78 OR ≥156
  • 16. Performing Comparison Windows Northampton Community College 16  Assume an output is being controlled based upon the value of a counter accumulator, C5:0.ACC. Following is the output operation criteria:  Output is OFF when C5:0.ACC is 0 to and including 3.  Output is ON when C5:0.ACC is 4 to and including 7.  Output is OFF when C5:0.ACC is 8 to and including 10.  Output is ON when C5:0.ACC is 11 to and including 25.  Output is OFF when C5:0.ACC is >25.  Comparison instructions can be used in combinations to achieve the desired results.
  • 17. Performing Comparison Windows Northampton Community College 17
  • 18. Subroutines Chapter 08 Sections 8-3-3 to 8-3-5 Supplement Document Northampton Community College 18
  • 19. Subroutines Northampton Community College 19  Subroutine(s) is a group of program code that performs a specific task. The subroutine(s) are part of a program (in our case the MainProgram) and are not part of the MainRoutine.  A subroutine can be invoked, (called), from anyplace in the MainRoutine or from another subroutine. When a subroutine is called from within another subroutine it is referred to as nesting subroutines.  Most, if not all, computer programs and PLC/PAC programs contain subroutines.  Subroutines are used to make what would be an enormous program more manageable by breaking up the code into smaller tasks. Specific functions within a task should be placed in subroutines.  Organizing a program by using subroutines makes the code easier to read, understand and maintain.  Subroutines can also be reused in other programs that require the same task be performed.
  • 20. Subroutines SLC500  The SLC500 uses separate ladder files to store and execute subroutines. There are a total of 253 subroutine ladder files; #3 through #255. Northampton Community College 20  Ladder file #2 (LAD2) is the main ladder file and is the one we have been using in all labs to this date.  Scan starts at rung 0 LAD2 and ends at the End statement in LAD2. ControlLogix  The ControlLogix uses separate routines to store and execute subroutines. The number of routines is limited to 32 per program.  The MainRoutine is the main ladder routine and is the one we have been using in all labs to this date.  Scan starts at rung 0 in the MainRoutine and ends at the End statement in the MainRoutine
  • 21. Creating a ControlLogix Subroutine 1. To create a new subroutine right click on MainProgram and select New Routine… from the pop-up menu 2. New Routine dialog box will open. Type in the name of the subroutine and from the Type: dropdown, select the type of program code. 3. The new subroutine will appear listed under the program that it was created in. Double click the subroutine to open the ladder editor. Northampton Community College 21
  • 22. Program Control Instructions Northampton Community College 22  There are many program control instructions. Below is a list of them and the platforms they are available on: Instruction CL 500 Sim Instruction CL 500 Sim JMP – Jump to Label ● ● ● UID – User Interrupt Disable ● LBL – Label ● ● ● UIE – User Interrupt Enable ● JXR – Jump to External Routine ● SFR – Reset Sequential Chart ● JSR – Jump to Subroutine ● ● ● SFP – Pause Sequential Chart ● RET – Return from Subroutine ● ● ● EVENT – Trigger Event Task ● SBR – Subroutine Label ● ● ● EOT – End of Transition ● TND – Temporary End ● ● ● AFI – Always False ● MCR – Master Control Reset ● ● ● NOP – No Operation ● SUS - Suspend  This course will only cover the instructions shown in Red. The instruction in Green can be used, but they will not be discussed in class.
  • 23. ControlLogix Program Control Instructions Northampton Community College 23  JSR – Jump to Subroutine  The JSR is an output instruction that is used to “call” a subroutine.  The instruction rung can be conditional or unconditional.  JSR instructions can have several parameters. The one shown here has 3-parameters. Subroutine name to be “called” (required) Parameter to pass to the subroutine (optional) Parameter to accept a value returning from the subroutine (optional)
  • 24. ControlLogix Program Control Instructions Northampton Community College 24  Entering JSR parameters:  Routine Name (Required) – Double-click this parameter field, click the dropdown arrow and select the subroutine name from the dropdown list. The subroutine name will only be in the list if the subroutine has been created.  Input Par and Return Par (Optional) – These parameters will not be used in this course. When a parameter is not used it must be removed. Right click on the parameter field and select Remove Instruction Parameter from the pop-up menu. Do this for each parameter that is not required. The picture on this slide illustrates removing a parameter field.
  • 25. ControlLogix Program Control Instructions Northampton Community College 25  JSR operation  When the rung containing a JSR instruction is true, the processor scan jumps to the subroutine referenced in the Routine Name parameter and begins program execution at the first rung in that subroutine  A jump cannot be made into the middle of a subroutine. Execution will always start at the first instruction on the first rung in that ladder routine. This rung will unconditionally jump to the subroutine named Routine04
  • 26. ControlLogix Program Control Instructions Northampton Community College 26  SBR – Subroutine Label  The SBR in an input instruction that is always true and marks the beginning of a subroutine. It must be the first instruction on the first rung of the subroutine.  The input parameter field(s) is used to reference tags whose data is to be used (passed) to the subroutine. (This course will not be using these parameters).  SBR instructions can have several parameters. The one shown here has one parameters. Parameter that passes data to the subroutine (optional)
  • 27. ControlLogix Program Control Instructions Northampton Community College 27  For this course the Input Par parameter will need to be removed from the SBR instruction. To remove the parameter right-click on the parameter and select Remove Instruction Parameter from the pop-up menu.
  • 28. ControlLogix Program Control Instructions Northampton Community College 28  RET – Return from Subroutine  The RET instruction is an output instruction that is used to stop executing the subroutine and return to the ladder file that originally “called” the subroutine.  The instruction can be conditional or unconditional and can contain several parameters. The RET instruction shown here has one parameter. (This course will not use these parameters). Parameter that passes data back to the ladder file that originally “called” the subroutine. (optional)
  • 29. ControlLogix Program Control Instructions Northampton Community College 29  For this course the Input Par parameter will need to be removed from the RET instruction. To remove the parameter right-click on the parameter and select Remove Instruction Parameter from the pop-up menu.
  • 30. ControlLogix Program Control Instructions Northampton Community College 30  Several conditional RET instructions can be present in a subroutine. As an example:  If an RET instruction becomes true that is on rung 0006 in a subroutine containing 45-rungs, the program scan will return to the ladder file that originally called the subroutine and rungs 0007 through 0045 will not execute.  If the RET instruction on rung 0006 becomes false another RET instruction becomes true that is on rung 0010 in the same subroutine, the program scan will return to the ladder file that originally called the subroutine and rungs 0011 through 0045 will not executed.  If the entire subroutine ladder file is to be always scanned, placing a RET instruction on the last rung of the program is optional. If an RET instruction is not found in the subroutine ladder file, the END statement performs the return.
  • 31. Program Execution using Subroutines Northampton Community College 31
  • 32. Forcing I/O Northampton Community College 32
  • 33. Using the Force I/O Function Northampton Community College 33  The force function will only work on field I/O devices, therefore the input and output data files in the SLC500 and the Controller tags in the ControlLogix.  Before applying a force to any input or any output device, an understanding of the potential effect that force(s) will have on the machine or process operation and to the safety of personal is essential. DO NOT INSTALL FORCES WITHOUT FIRST UNDERSTANDING WHAT AFFECT IT WILL HAVE ON THE OPERATION OF THE MACHINE OR PROCESS  Most programming software provide some visible means of alerting the user that a force is in affect or installed.  Most processor modules have an LED indicator that will be lit if there are any forces installed.
  • 34. Installing and Enabling Forces Northampton Community College 34  This is an instructor led, interactive lab.  If there is no program running in the PLC at your workstation, open a program that uses I/O field devices, download the program to the PLC, then place the PLC in RUN mode.  Your instructor will also switch to RSLogix and attach to someone’s workstation to lead you through and demonstrate the force functions.