ADVANCED PLC PROGRAMMING. Q. Explain the ONE SHOT (ONS) function with an application.

Size: px
Start display at page:

Download "ADVANCED PLC PROGRAMMING. Q. Explain the ONE SHOT (ONS) function with an application."

Transcription

1 Q. Explain the ONE SHOT (ONS) function with an application. One of the important functions provided by PLC is the ability to program an internal relay so that its contacts are activated for just one cycle, that is, one scan through the ladder program. This function is often termed one-shot. The figure below shoes ONE SHOT function inserted in a ladder rung. As shown in figure the one-shot is triggered by the off-to-on transition of the input signal. It stays on for one scan and goes off even if the triggering input is on. It stays off until the input goes off and then comes on again. The conveyor box counting PLC program illustrates the application of ONE SHOT (ONS) instruction. An optical proximity sensor detects the boxes and provides input signal to PLC. The counter instruction counts the number of boxes passing along conveyor. A schematic ladder diagram of PLC program is shown in figure. When there is true condition of proximity switch, a count takes place and it is stored in designated register HR037. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 1

2 This ladder diagram will not function as intended. In fact, with this ladder diagram, when one box goes past proximity sensor the counter instead of showing one count, will show hundreds of count. Let s see what is wrong with this ladder diagram. While the box is being detected, the PLC scans the rungs. These scans are extremely fast and occur many times before the box passes the sensor. Therefore, instead of counting once when a box is detected, the counting occurs every time there is scan. Therefore, for correct working, we need the PLC counter to operate (i.e. count) only during first scan. The counter must not count during subsequent scans. The next count should be counted when that box goes past sensor and next box is being detected. This is accomplished by introducing ONE SHOT instruction between proximity sensor contact and the counter as shown in figure. The modified ladder diagram is shown in figure. The ONE SHOT instruction sends a signal to counter whenever there is off to on transition of the proximity contact. Q. Explain in brief CLEAR (CLR) instruction. The CLEAR (CLR) instruction of function sets all the bits in a register or word to zero. This is useful when we wish to zero out a system before starting or restarting a process. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 2

3 Q. Explain in brief SWEEP function. The SWEEP function is used when we wish to scan through a program or portion of a program at fixed intervals. The fixed interval needs to be longer than the scan time to be operational: for example, if scan time is 30 milliseconds (ms) and we set the sweep time to 20 ms. The scans will be made every 30 ms, the scan time. If we set the sweep time for 5 seconds, the program will be scanned every 5 seconds, which is longer than the scan time. Q. Explain how Bit patterns in registers can be used in machine control? Most PLCs are capable of working with digital bits. Instead of controlling output devices from individual contacts, these PLCs use register bits in groups. For example, if the on-off status of 16 machines is to be controlled, just one of the 16 bits of the 16-bit register could control each of the 16 machines. If there are 157 machines to be turn on and off, only 10 of these 16-bit registers are needed for on-off control (157/16=9.815, or 9 registers plus part of a 10 th one). By contrast, in contact-coil ladder control would need 157 ladder lines in the program. Suppose we wish to have outputs CR0081 and CR0082 controlled by a register bit status. To have CR0081 controlled by bit 11 in HR0207 and CR0082 controlled by bit 12, we should designate the contacts at shown in figure. Take the first 10 bits (from the right is standard on) and use them to control 10 outputs, as shown in figure. The outputs with a feeder bit of 1 would be on, and those with 0 bit would be off. If we modify HR0207 to another pattern of bits, the outputs would change status accordingly. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 3

4 Q. What are the different functions available in PLC for CHANGING A REGISTER BIT STATUS? Explain each of them. Following PLC functions are available for changing register bit status: BIT SET (BS) BIT CLEAR (BC) BIT FOLLOW (BF) BIT SET: When the BS function is enabled as shown in figure, bit 4 of HR0207 is set to 1 (if it was not already a 1). Turning the function off would have no further effect on the bit it would remain a 1. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 4

5 BIT CLEAR: The bit clear function, shown in figure, has the opposite effect of BIT SET. The example in figure operates on big 5 of HR0207. When enabled, the BC function would change bit 5 from 1 to 0. If we had applied BC to bit 6, nothing would have happened, because bit 6 is already a 0. When BC is turned off, nothing further happens. BIT FOLLOW: Figure shows the BF function applied to bit 4 of HR When enabled, the function sets the bit to 1. When disabled, or off, the function sets the bit to 0. Notice that BF differs from BS and BC: on and off are both active and significant in the BIT FOLLOW function. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 5

6 Q. Explain PLC SEQUENCER function. The PLC SEQUENCER is a function that is used for sequential control. It replaces the mechanical drum sequencer that was used to control machines that have a stepped sequence of repeatable operations. One form of the mechanical drum sequencer consisted of a drum from which a number of pegs protruded. When the cylinder rotated, contacts aligned with the pegs were closed when the peg impacted them and opened when the peg had passed. Thus for the arrangement shown in figure, as the drum rotates, in the first step the peg for output 1 is activated, in step 2 the peg for the third output, in step 3 the peg for the second output, and so on. Different outputs could be controlled by pegs located at different distances along the drum. Another form consisted of a series of cams on the same shaft, the profile of the cam being used to switch contacts on and off. The PLC SEQUENCER is based on mechanical drum controller, but it more powerful and flexible programming tool. Suppose we want output 1 to be switched on 5 s after the start and remain on until the time reaches 10 s, output 2 to be switched on at 10 s and remain on until 20 s, output 3 to be switched on at 15 s and remain on until 25 s, and so on. We can represent these requirements by a time sequence diagram, shown in figure, demonstrating the required time sequence. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 6

7 We can transform the timing diagram into a drum sequence requirement. Taking each drum sequence step to take 5 s gives the requirement diagram shown in Table Thus at step 1 we require output 1 to be switched on and to remain on until step 2. At step 2 we require output 2 to be switched on and remain on until step 4. At step 3 we require output 3 to be switched on and remain on until step 5. At step 5 we require output 4 to be switched on and remain on until step 6. Step Time (s) Output 1 Output 2 Output 3 Output PLC sequencer is programmed using a sequence of binary words in the form of the outputs required, such as those listed in table given above. Thus we would have the following binary word sequence put into the program using the programming device. We have seven steps and four outputs. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 7

8 Figure shows a basic ladder program using such a sequencer. The timer is started by an input to I:012/1 and has a preset time of 30 s. It is reset by its DN bit. The DN bit also increments the SQO instruction to the next output word. Thus the sequencer is incremented every 30 s. The location of the data for the words is given by FILE, which gives the starting address for the registers in which the binary data for each step is stored. Sometimes the sequencer is not required to operate on the entire word, so MASK gives the bit pattern that masks off certain bits so they are not controlled by the sequencer. Thus we could have a MASK word of because only last 4 bits are used in this example. SOURCE is the address of the input word or file for an SQC, and DESTINATION is the address of the output word or file. CONTROL is the address that contains parameters with control information. LENGTH is the Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 8

9 number of steps of the sequencer file. POSITION is the step in the sequencer file from/to which the instruction moves data. Q. Explain how PLC matrix functions help to reduce the program length. Suppose that we have 207 pilot lights, each of which is to go on only if both of two contacts are closed. This means that we have to program 207 lines with two contacts and a coil for a pilot light for each line. An alternative to the 207 lines of programming is one line of matrix function. In this case we would program an AND matrix. Energizing the matrix function effectively scans all 207 lines and turns the pilot lights on or off. In this way the PLC matrix functions help to reduce the program length. Q. Explain the PLC AND matrix function. Four coils, each of which can be energized by two inputs in series, result in four AND situations. The coils are programmed on the PLC in the usual manner as shown in figure 5.1. The upper section of figure 5.2 shows the original four coils and eight inputs arranged in a 2 x 2 matrix. A 1 represents on and a is 0, off, in the conventional manner. Each bit of matrix A is used with corresponding bit of matrix B. These bits are ANDed together and the result is put in the corresponding bit location of matrix C. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 9

10 In actual operation, the input data, or status, is contained in two series of registers. The AND operation for the two series then takes place, and the results are put in another series of registers. The equivalent register operation each shown in the lower section of figure 5.2. We have used a 2 x 2 matrix for four AND functions. Next, suppose we have 53 coils, each with two series inputs for actuation. It would take a long time and a lot of PLC memory to program the 106 contacts and the 53 coils. Using the AND matrix system makes programming in lot more straightforward. A typical PLC has 16-bit registers. Therefore, in this case, we use three full registers for the first 3 x 16 = 48 bits. The last 5 bits go in the first part of the next (fourth) register. The on-off statuses of 106 contacts are stored in two register groups. Results of the matrix AND operation appear in another matrix as shown in figure 5.4. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 10

11 Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 11

12 How is the PLC programmed to do the PLC AND operation? Figure 5.5 shows a typical PLC AND function. The coil is assigned a number in the usual manner. We specify the matrix size i.e. the number of registers. We tell the PLC which registers to use by specifying the last register of each group of inputs and outputs. Q. Explain PLC COMPLEMENT function. In some cases, we may wish to turn a number of devices to their opposing state. The complement function allows us to do so. All devices that are on can be turned off, and vice versa. Effectively, this function changes all 1s to 0s. Figure shows the result of complementing register A to register C. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 12

13 Q. Explain operation of discrete and analog PLC. By discrete operation we mean that PLC handles discrete values of inputs and outputs i.e. inputs and outputs can only have two extreme states: ON or OFF, 1 or 0, High or Low, etc. On the other hand, analog operation means that inputs and outputs can be analog quantities i.e. continuous values ranging from minimum to maximum. Earlier PLCs offered only discrete functionality. But nowadays most medium sized and large sized PLCs are capable of analog operation. Analog PLCs have separate analog input and output modules. These modules are nothing but Analog to Digital and Digital to Analog convertors. Due to analog functionality, PLCs are widely used in such processes where there are process variables such as temperature, pressure, flow level, etc. Q. How the PLC networking is carried out? What is Network Topology? OR A PLC or computer with a single network interface can communicate with many other PLCs or computers. To share the information effectively, all the nodes on the network must be connected in some specific manner. The method of connection of these nodes is called as network topology. There are four basic types of network topology namely: o BUS o RING o STAR o TREE Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 13

14 1. BUS Topology: In BUS topology network each node is connected to a common single communication channel or Bus. Every node in bus topology receives a message and checks the destination address that is included in the message. Each end of a bus cable must be terminated using electrical terminal which absorbs the message energy and avoid from reflecting back along the bus. 2. RING Topology: In Ring topology nodes are arranged in a closed loop or ring, the message packets are transmitted sequentially from node to node like a point to point system. Physically each node is connected to two other nodes and it receives message packet from one node and transfer it to other node. Each node is having its specific address, when it receive the packet it checks address included in the message matches its address. If the match the address, it accept the message packet otherwise it boost the signal and transfer to the next node. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 14

15 3. STAR Topology: Multiple modes are connected to a central component, known as Hub. Hub is a wiring center or a common termination point where all the nodes are connected with its individual lines. For example, all telephone customers are individually connected to telephone exchange with its separate telephone lines. 4. TREE Topology: In this topology, all the nodes are connected in a tree type structure, which is consists of smaller bus network. To extend or increase the network repeaters are used to boost the signal strength. The tree is divided into sub-units so it is easier to add new units or disconnect a sub-unit. The BUS topology is popular in industrial sector because other topologies are expensive to configure and confusing. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 15

16 Q. State different PLC auxiliary commands and functions. Three important PLC auxiliary functions are: MONITER FORCE PRINT Q. Explain in brief MONITER MODE functions. The monitor mode for ladder diagram operation is indicated on the screen in various ways. It may be indicated by a brightening of the pattern where voltage is passed through. Above figure illustrates brightness enhancement for a standard, single line motor control ladder diagram. The figure shows the screen as the two inputs (stop and start) are energized and deenergized. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 16

17 The above figure shows how the status of holding registers would be shown on the screen. We may call up individual coils, contacts or both on the screen. For example, if we are looking at or in the vicinity of line 32, we may wish to see what is happening to an input contact on line 6, which is off the screen. Contacts and coils from line 6 can be inserted in a blank space by themselves and observed for on-off status as shown in following figure. Q. Explain in brief FORCE MODE functions. The FORCE function is essentially an override control that enables the operator or programmer to operate the circuit from the program keyboard. The FORCE mode is useful but must be used with utmost caution in conjunction with a working process. Misuse of FORCE could lead to equipment damage and operator injury. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 17

18 FORCE is an override function. The FORCE procedure is normally carried out in the MONITOR mode. First, the cursor is placed over the contact, coil, or function we wish to force. Turning FORCE on changes the status of the contact or coil under the cursor. If it is a normally open contact, it will close (turn on). If it is a normally closed contact, it will open (turn off). Q. Explain in brief PRINT functions. Ladder diagrams on a screen cover from one to four or five rungs, depending upon the PLC model. If the entire operational circuit has 20 or more rungs, we may wish to see the entire circuit at once. Using PRINT command, the whole ladder diagram can be printed out continuously on a conventional computer printer. There are, of course, other reasons we might want a ladder printout. We might need a permanent written record, for instance. Also, in education and training, a printout is a written record of laboratory achievement. Other typical PRINT mode capabilities include register status and values, time vs. status diagrams, FORCE status, etc. Rohan Desai- Automobile Dept- New Polytechnic, Kolhapur Page 18

Analog Inputs and Outputs

Analog Inputs and Outputs Analog Inputs and Outputs PLCs must also work with continuous or analog signals. Typical analog signals are 0-10 VDC or 4-20 ma. Analog signals are used to represent changing values such as speed, temperature,

More information

F4-04DA-1 4-Channel Analog Current Output

F4-04DA-1 4-Channel Analog Current Output F4-4DA- 4-Channel Analog Current 32 Analog Current Module Specifications The Analog Current Module provides several features and benefits. ANALOG PUT 4-Ch. Analog It is a direct replacement for the popular

More information

F4 08DA 2 8-Channel Analog Voltage Output

F4 08DA 2 8-Channel Analog Voltage Output 8-Channel Analog Voltage In This Chapter.... Module Specifications Setting the Module Jumper Connecting the Field Wiring Module Operation Writing the Control Program 92 8-Ch. Analog Voltage Module Specifications

More information

F4 04DAS 1 4-Channel Isolated 4 20mA Output

F4 04DAS 1 4-Channel Isolated 4 20mA Output F44DAS 4-Channel Isolated 4mA F44DAS 4-Channel Isolated 4mA Module Specifications The F44DAS 4-channel Isolated Analog module provides several features and benefits. ANALOG 4 CHANNELS PUT F44DAS 4-Ch.

More information

F4 16DA 2 16-Channel Analog Voltage Output

F4 16DA 2 16-Channel Analog Voltage Output F46DA2 6-Channel Analog Voltage In This Chapter.... Module Specifications Setting Module Jumpers Connecting the Field Wiring Module Operation Writing the Control Program 22 F46DA2 6-Ch. Analog Voltage

More information

Introduction to PLCs

Introduction to PLCs Introduction to PLCs Introduction to PLCs Jay F. Hooper Carolina Academic Press Durham, North Carolina Copyright 2005 Jay F. Hooper All Rights Reserved Library of Congress Cataloging-in-Publication Data

More information

F4-08RTD 8-Channel RTD Input

F4-08RTD 8-Channel RTD Input F-8RTD 8-Channel RTD 92 F8RTD 8-Channel RTD Module Specifications The F8RTD 8 Differential Channel RTD module provides several features and benefits. It provides eight RTD input channels with 16-bit resolution.

More information

Spec. Instructor: Center

Spec. Instructor: Center PDHonline Course E379 (5 PDH) Digital Logic Circuits Volume III Spec ial Logic Circuits Instructor: Lee Layton, P.E 2012 PDH Online PDH Center 5272 Meadow Estatess Drive Fairfax, VA 22030-6658 Phone &

More information

Electrical Controls. Isaac Queen

Electrical Controls. Isaac Queen Electrical Controls Isaac Queen iqueen@atn.org www.atn.org 1 Contact blocks include normally open (NO), normally closed (NC), or both NO and NC contacts. 2 A joystick is used to control many different

More information

A Super trainer with advanced hardware and software features only found in very expensive equipment.

A Super trainer with advanced hardware and software features only found in very expensive equipment. PLC Trainer PTS T100 LAB EXPERIMENTS A Super trainer with advanced hardware and software features only found in very expensive equipment. You won t find any similar equipment among our competitors at such

More information

F3 08AD 1 8-Channel Analog Input

F3 08AD 1 8-Channel Analog Input F38AD 8-Channel Analog Input 42 F38AD Module Specifications The following table provides the specifications for the F38AD Analog Input Module from FACTS Engineering. Review these specifications to make

More information

instabus EIB product documentation

instabus EIB product documentation Page: 1 of 39 Push button interface 4-gang Sensor Product name: Push button interface 4-gang Design: UP (flush-mounting type) Item no.: 2076-4T-01 ETS search path: Input / Binary Input, 4-gang / Push button

More information

This Errata Sheet contains corrections or changes made after the publication of this manual.

This Errata Sheet contains corrections or changes made after the publication of this manual. Errata Sheet This Errata Sheet contains corrections or changes made after the publication of this manual. Product Family: DL4 Date: September 12, 218 Manual Number D4-ANLG-M Revision and Date th Ed., Rev.

More information

Drum Instruction Programming

Drum Instruction Programming 6 In This hapter.... Introduction Step Transitions Overview of Drum Operation Drum ontrol Techniques s 6- Introduction Purpose Drum Terminology The four drum instructions available in the DL35 PU electronically

More information

AN-SERV-009. Luis Miranda 1

AN-SERV-009. Luis Miranda 1 THIS INFORMATION PROVIDED BY AUTOMATIONDIRECT.COM TECHNICAL SUPPORT IS SUPPLIED "AS IS", WITHOUT ANY GUARANTEE OF ANY KIND. These documents are provided by our technical support department to assist others.

More information

Ch 5 Hardware Components for Automation

Ch 5 Hardware Components for Automation Ch 5 Hardware Components for Automation Sections: 1. Sensors 2. Actuators 3. Analog-to-Digital Conversion 4. Digital-to-Analog Conversion 5. Input/Output Devices for Discrete Data Computer-Process Interface

More information

Standard single-purpose processors: Peripherals

Standard single-purpose processors: Peripherals 3-1 Chapter 3 Standard single-purpose processors: Peripherals 3.1 Introduction A single-purpose processor is a digital system intended to solve a specific computation task. The processor may be a standard

More information

WHEN A PLC IS TOO MUCH, AND SPACE FOR

WHEN A PLC IS TOO MUCH, AND SPACE FOR WHEN A PLC IS TOO MUCH, AND SPACE FOR A RELAY SEQUENCE CIRCUIT IS TOO LITTLE Pattern Selector 59 2.33 66 2.6 70 2.75 No programming required Select from among 15 preset patterns Wiring far simpler than

More information

Awning control system GFM001. Installation and Operating Instructions

Awning control system GFM001. Installation and Operating Instructions Geiger-Funk Sunshade controls Awning control system for 230V drives GFM001 Installation and Operating Instructions for pre-coded systems Table of Contents 1 Introduction...3 2 Safety instructions...3 3

More information

ELG3331: Digital Tachometer Introduction to Mechatronics by DG Alciatore and M B Histand

ELG3331: Digital Tachometer Introduction to Mechatronics by DG Alciatore and M B Histand ELG333: Digital Tachometer Introduction to Mechatronics by DG Alciatore and M B Histand Our objective is to design a system to measure and the rotational speed of a shaft. A simple method to measure rotational

More information

Bulletin 1402 Line Synchronization Module (LSM)

Bulletin 1402 Line Synchronization Module (LSM) Bulletin 1402 (LSM) Application Notes Table of Contents What is Synchronization?...................................... 2 Synchronization............................................. 3 1771 Modules and

More information

Sorting Line with Detection 9V

Sorting Line with Detection 9V 536628 Sorting Line with Detection 9V I2 O8 I1 I3 C1 I5 I6 I4 Not in the picture: O5, O6, O7, O8 Circuit layout for Sorting Line with Detection Terminal no. Function Input/Output 1 color sensor I1 2 phototransistor

More information

Servo Indexer Reference Guide

Servo Indexer Reference Guide Servo Indexer Reference Guide Generation 2 - Released 1/08 Table of Contents General Description...... 3 Installation...... 4 Getting Started (Quick Start)....... 5 Jog Functions..... 8 Home Utilities......

More information

ROM/UDF CPU I/O I/O I/O RAM

ROM/UDF CPU I/O I/O I/O RAM DATA BUSSES INTRODUCTION The avionics systems on aircraft frequently contain general purpose computer components which perform certain processing functions, then relay this information to other systems.

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

i1800 Series Scanners

i1800 Series Scanners i1800 Series Scanners Scanning Setup Guide A-61580 Contents 1 Introduction................................................ 1-1 About this manual........................................... 1-1 Image outputs...............................................

More information

The Allen-Bradley Servo Interface Module (Cat. No SF1) when used with the Micro Controller (Cat. No UC1) can control single axis

The Allen-Bradley Servo Interface Module (Cat. No SF1) when used with the Micro Controller (Cat. No UC1) can control single axis Table of Contents The Allen-Bradley Servo Interface Module (Cat. No. 1771-SF1) when used with the Micro Controller (Cat. No. 1771-UC1) can control single axis positioning systems such as found in machine

More information

(

( AN INTRODUCTION TO CAMAC (http://www-esd.fnal.gov/esd/catalog/intro/introcam.htm) Computer Automated Measurement And Control, (CAMAC), is a modular data handling system used at almost every nuclear physics

More information

DRUM SEQUENCER CIRCUITS

DRUM SEQUENCER CIRCUITS NOE: For this example chapter pages are identified with: = eacher Copy = tudent Copy Chapter 13 DRUM EQUENCER CIRCUI CHAPER ECION What is a Drum equencer? 13-2 CHAPER OBJECIVE After studying this chapter,

More information

PULSE INPUT MODULE PI232/PI272 USER S MANUAL

PULSE INPUT MODULE PI232/PI272 USER S MANUAL UM-TS02 -E021 PROGRAMMABLE CONTROLLER PROSEC T2-series PULSE INPUT MODULE PI232/PI272 USER S MANUAL TOSHIBA CORPORATION Important Information Misuse of this equipment can result in property damage or human

More information

Motor control using FPGA

Motor control using FPGA Motor control using FPGA MOTIVATION In the previous chapter you learnt ways to interface external world signals with an FPGA. The next chapter discusses digital design and control implementation of different

More information

Introduction to PLC and Ladder Logic Programming

Introduction to PLC and Ladder Logic Programming Introduction Introduction to PLC and Ladder Logic Programming A PLC (Programmable Logic Controller) is an industrial computer used for automation of electromechanical processes, such as control of machinery

More information

Unit-6 PROGRAMMABLE INTERRUPT CONTROLLERS 8259A-PROGRAMMABLE INTERRUPT CONTROLLER (PIC) INTRODUCTION

Unit-6 PROGRAMMABLE INTERRUPT CONTROLLERS 8259A-PROGRAMMABLE INTERRUPT CONTROLLER (PIC) INTRODUCTION M i c r o p r o c e s s o r s a n d M i c r o c o n t r o l l e r s P a g e 1 PROGRAMMABLE INTERRUPT CONTROLLERS 8259A-PROGRAMMABLE INTERRUPT CONTROLLER (PIC) INTRODUCTION Microcomputer system design requires

More information

Module-20 Shift Registers

Module-20 Shift Registers 1 Module-20 Shift Registers 1. Introduction 2. Types of shift registers 2.1 Serial In Serial Out (SISO) register 2.2 Serial In Parallel Out (SIPO) register 2.3 Parallel In Parallel Out (PIPO) register

More information

This Errata Sheet contains corrections or changes made after the publication of this manual.

This Errata Sheet contains corrections or changes made after the publication of this manual. Errata Sheet This Errata Sheet contains corrections or changes made after the publication of this manual. Product Family: DL35 Manual Number D3-ANLG-M Revision and Date 3rd Edition, February 23 Date: September

More information

Width (W): 44 mm. bus connecting and branching terminal External supply --- Inputs: Number: up to 2 (depending on parameterization: channel 1 to 2)

Width (W): 44 mm. bus connecting and branching terminal External supply --- Inputs: Number: up to 2 (depending on parameterization: channel 1 to 2) Product name: Design: 2-channel push button interface UP (flush-mounting type) Item no.: 1118 00 ETS search path: Gira Giersiepen / input / binary input, 2fold / Universal push putton interface 2fold Functional

More information

i800 Series Scanners Image Processing Guide User s Guide A-61510

i800 Series Scanners Image Processing Guide User s Guide A-61510 i800 Series Scanners Image Processing Guide User s Guide A-61510 ISIS is a registered trademark of Pixel Translations, a division of Input Software, Inc. Windows and Windows NT are either registered trademarks

More information

Monostable multivibrators

Monostable multivibrators Monostable multivibrators We've already seen one example of a monostable multivibrator in use: the pulse detector used within the circuitry of flip-flops, to enable the latch portion for a brief time when

More information

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX.

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX. Review the following material on sensors. Discuss how you might use each of these sensors. When you have completed reading through this material, build a robot of your choosing that has 2 motors (connected

More information

s for Gap Systems Inductive Supply & s www.trelectronic.com/powergap s for Gap Systems s for Gap Systems Ideal s for Gap Gap can provide a unique solution for problems with motion applications - Cable

More information

Operation. Section 4. Additional Information. Operation 4-1

Operation. Section 4. Additional Information. Operation 4-1 4-1 Section 4 WARNING: Allow only personnel with appropriate training and experience to operate or service the equipment. The use of untrained or inexperienced personnel to operate or service the equipment

More information

Selecting Telecommunication Test Equipment To Maximize Throughput and Accuracy. By Robert Green Keithley Instruments, Inc.

Selecting Telecommunication Test Equipment To Maximize Throughput and Accuracy. By Robert Green Keithley Instruments, Inc. Selecting Telecommunication Test Equipment To Maximize Throughput and Accuracy By Robert Green Keithley Instruments, Inc. Soaring demand for cell phones, pagers mobile radios and base-stations, is putting

More information

Digital Electronics 8. Multiplexer & Demultiplexer

Digital Electronics 8. Multiplexer & Demultiplexer 1 Module -8 Multiplexers and Demultiplexers 1 Introduction 2 Principles of Multiplexing and Demultiplexing 3 Multiplexer 3.1 Types of multiplexer 3.2 A 2 to 1 multiplexer 3.3 A 4 to 1 multiplexer 3.4 Multiplex

More information

g GE POWER MANAGEMENT

g GE POWER MANAGEMENT 469 FREQUENTLY ASKED QUESTIONS 1 Can not communicate through the front port RS232 Check the following settings Communication port on your computer ( com1, com2 com3 etc ) Parity settings must match between

More information

The Benefits of Using the Electrical Toolset in AutoCAD

The Benefits of Using the Electrical Toolset in AutoCAD The Benefits of Using the Electrical Toolset in AutoCAD A productivity study detailing the differences between AutoCAD and the Electrical toolset. Built specifically to create and modify electrical controls

More information

F3 16AD 16-Channel Analog Input

F3 16AD 16-Channel Analog Input F3 6AD 6-Channel Analog Input 5 2 F3 6AD 6-Channel Analog Input Module Specifications The following table provides the specifications for the F3 6AD Analog Input Module from FACTS Engineering. Review these

More information

Signal Paths from Analog to Digital

Signal Paths from Analog to Digital CHAPTER 1 Signal Paths from Analog to Digital Introduction Designers of analog electronic control systems have continually faced following obstacles in arriving at a satisfactory design: 1. Instability

More information

TABLE OF CONTENTS. Keypad Programming Manual 1

TABLE OF CONTENTS. Keypad Programming Manual 1 TABLE OF CONTENTS How To Program Radios...2 Keypad Programming...2 A. Navigation...3 1. Group Parameters (CH 00)...4 2. Channel Parameters (CH 01 - CH20)...4 3. Global Parameters (GRP 00)...5 B. Group

More information

USING RS-232 to RS-485 CONVERTERS (With RS-232, RS-422 and RS-485 devices)

USING RS-232 to RS-485 CONVERTERS (With RS-232, RS-422 and RS-485 devices) ICS DataCom Application Note USING RS- to RS- CONVERTERS (With RS-, RS- and RS- devices) INTRODUCTION Table RS-/RS- Logic Levels This application note provides information about using ICSDataCom's RS-

More information

ENGINEERING KNOWLEDGE TEST (EKT) COMPUTER SCIENCE STREAM BOOKLET SERIES H

ENGINEERING KNOWLEDGE TEST (EKT) COMPUTER SCIENCE STREAM BOOKLET SERIES H Set No 1/15 ENGINEERING KNOWLEDGE TEST (EKT) COMPUTER SCIENCE STREAM BOOKLET SERIES H Time Allotted: 45 Minutes Instructions for Candidates 1. Total No. of Questions 50. Each Question is of three marks.

More information

KM-4800w. Copy/Scan Operation Manual

KM-4800w. Copy/Scan Operation Manual KM-4800w Copy/Scan Operation Manual NOTE: This Operation Manual contains information that corresponds to using both the metric and inch versions of these machines. The metric versions of these machines

More information

Logical Trunked. Radio (LTR) Theory of Operation

Logical Trunked. Radio (LTR) Theory of Operation Logical Trunked Radio (LTR) Theory of Operation An Introduction to the Logical Trunking Radio Protocol on the Motorola Commercial and Professional Series Radios Contents 1. Introduction...2 1.1 Logical

More information

TEACHING PLC IN AUTOMATION --A Case Study

TEACHING PLC IN AUTOMATION --A Case Study TEACHING PLC IN AUTOMATION --A Case Study Dr. George Yang, Assistant Professor And Dr. Yona Rasis, Assistant Professor Department of Engineering Technology Missouri Western State College 4525 Downs Drive

More information

Temperature Controller model MFC-301/T-Dry. Version for Dry Transformers and Motors. Technical Manual. Licht

Temperature Controller model MFC-301/T-Dry. Version for Dry Transformers and Motors. Technical Manual. Licht Temperature Controller model MFC-301/T-Dry Version for Dry Transformers and Motors Technical Manual Licht Contents 1 Introduction 2 2 Operating principle 3 2.1 General principle 3 2.2 RTD operation 3 3

More information

Airport Lighting Controller AFS1000 User Manual. January 10, 2017

Airport Lighting Controller AFS1000 User Manual. January 10, 2017 Airport Lighting Controller AFS1000 User Manual January 10, 2017 Contents Table of Figures... iv Table of Tables... v Introduction... 1 System Description... 1 Operation... 2 Basic Controller Operation...

More information

Chapter. F0-04AD-1, 4-Channel Analog Current Input. In This Chapter...

Chapter. F0-04AD-1, 4-Channel Analog Current Input. In This Chapter... F0-0-, -hannel nalog urrent Input hapter In This hapter... Module Specifications... Setting the Module Jumper... onnecting and isconnecting the Field Wiring... Wiring iagram... Module Operation... Special

More information

Artistic Licence. The DALI Guide. Version 3-1. The DALI Guide

Artistic Licence. The DALI Guide. Version 3-1. The DALI Guide Artistic Licence The Guide The Guide Version 3-1 This guide has been written to explain and DSI to those who are more familiar with DMX. While DMX, and DSI are all digital protocols, there are some fundamental

More information

Utility and Energy Systems Program

Utility and Energy Systems Program Utility and Energy Systems Program Electrical Technology Associate in Applied Science Degree Electrical Technology, Construction Electrical Utility/Lineworker Electrical Tech. Control/Maintenance Electrical

More information

Compatible Products: LAC L12-SS-GG-VV-P L16-SS-GG-VV-P PQ12-GG-VV-P P16-SS-GG-VV-P T16-SS-GG-VV-P

Compatible Products: LAC L12-SS-GG-VV-P L16-SS-GG-VV-P PQ12-GG-VV-P P16-SS-GG-VV-P T16-SS-GG-VV-P USB Control and Configuration of the LAC (Linear Actuator Control Board) Compatible Products: LAC L12-SS-GG-VV-P L16-SS-GG-VV-P PQ12-GG-VV-P P16-SS-GG-VV-P T16-SS-GG-VV-P This note provides further information

More information

Firmware Version d & higher Installation & Operation

Firmware Version d & higher Installation & Operation DIGI LCD Readout Firmware Version d 2.100 & higher Installation & Operation Warranty Accurate Technology, Inc., warrants this product against defective parts and workmanship for 1 year commencing from

More information

EIG DNP V3.0 Protocol Assignments

EIG DNP V3.0 Protocol Assignments E Electro Industries/G augetech "The Leader in Web Accessed Power Monitoring" EIG DNP V3.0 Protocol Assignments For Futura+ and DM Series Power Monitors Version 1.14 July 15, 2003 Doc # E100-7-03 V1.14

More information

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ υιοπασδφγηϕκλζξχϖβνµθωερτψυιοπασδ φγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκλζ ξχϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµ EE 331 Design Project Final Report θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ

More information

TEAM DIGITAL. SC82 Servo Controller

TEAM DIGITAL. SC82 Servo Controller TEAM DIGITAL SC Servo Controller Improving the world of DCC > DCC compatible accessory decoder > Control servos motors > Output status LEDs > inputs for turnout control > 6 inputs for semaphore signaling

More information

R PROFLAME Instruction Book Collection

R PROFLAME Instruction Book Collection 9.956.028 R00 584 PROFLAME Instruction Book Collection 4-17 18-29 584 PROFLAME System 30-39 Appendix: DIP SWITCH NUMBER (0=ON 1=OFF) 40-41 4-17 Fig. 1 The SIT is a device that allows, in conjunction with

More information

EQ-ROBO Programming : bomb Remover Robot

EQ-ROBO Programming : bomb Remover Robot EQ-ROBO Programming : bomb Remover Robot Program begin Input port setting Output port setting LOOP starting point (Repeat the command) Condition 1 Key of remote controller : LEFT UP Robot go forwards after

More information

A-D and D-A Converters

A-D and D-A Converters Chapter 5 A-D and D-A Converters (No mathematical derivations) 04 Hours 08 Marks When digital devices are to be interfaced with analog devices (or vice a versa), Digital to Analog converter and Analog

More information

Chapter 10 Digital PID

Chapter 10 Digital PID Chapter 10 Digital PID Chapter 10 Digital PID control Goals To show how PID control can be implemented in a digital computer program To deliver a template for a PID controller that you can implement yourself

More information

Busbars and lines are important elements

Busbars and lines are important elements CHAPTER CHAPTER 23 Protection of Busbars and Lines 23.1 Busbar Protection 23.2 Protection of Lines 23.3 Time-Graded Overcurrent Protection 23.4 Differential Pilot-Wire Protection 23.5 Distance Protection

More information

Code No: M0326 /R07 Set No. 1 1. Define Mechatronics and explain the application of Mechatronics in CNC Machine tools and Computer Integrated Manufacturing (CIM). 2. (a) What are the various Filters that

More information

CONFIGURING DRIVE PARAMETERS

CONFIGURING DRIVE PARAMETERS The red LEDs ON,, are indicating: a) ON Led: - ON: Inverter activated b) Led : - ON: Inverter accelerating - Blinking: Inverter on highest frequency c) Led : - ON: Inverter decelerating - Blinking: Inverter

More information

Digital Logic Circuits

Digital Logic Circuits Digital Logic Circuits Let s look at the essential features of digital logic circuits, which are at the heart of digital computers. Learning Objectives Understand the concepts of analog and digital signals

More information

A NEW GENERATION PROGRAMMABLE PHASE/AMPLITUDE MEASUREMENT RECEIVER

A NEW GENERATION PROGRAMMABLE PHASE/AMPLITUDE MEASUREMENT RECEIVER GENERAL A NEW GENERATION PROGRAMMABLE PHASE/AMPLITUDE MEASUREMENT RECEIVER by Charles H. Currie Scientific-Atlanta, Inc. 3845 Pleasantdale Road Atlanta, Georgia 30340 A new generation programmable, phase-amplitude

More information

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC)

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) COURSE / CODE DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) Connecting digital circuitry to sensor devices

More information

STX Stair lighting controller.

STX Stair lighting controller. Stair lighting controller STX-1792 STX-1792 controller is used to control stairs lighting dynamically. The backlight is switched on with the subsequent steps, depending on the motion directions: ascending

More information

TECHNICAL DOCUMENT EPC SERVO AMPLIFIER MODULE Part Number L xx EPC. 100 Series (1xx) User Manual

TECHNICAL DOCUMENT EPC SERVO AMPLIFIER MODULE Part Number L xx EPC. 100 Series (1xx) User Manual ELECTRONIC 1 100 Series (1xx) User Manual ELECTRONIC 2 Table of Contents 1 Introduction... 4 2 Basic System Overview... 4 3 General Instructions... 5 3.1 Password Protection... 5 3.2 PC Interface Groupings...

More information

Level Crossing with Barriers and Real Sound LCS6

Level Crossing with Barriers and Real Sound LCS6 Level Crossing with Barriers and Real Sound LCS6 Automatically detects trains using an infra-red sensor mounted below the track bed Operates attached yellow and red leds on level crossing signs (not included)

More information

1. The decimal number 62 is represented in hexadecimal (base 16) and binary (base 2) respectively as

1. The decimal number 62 is represented in hexadecimal (base 16) and binary (base 2) respectively as BioE 1310 - Review 5 - Digital 1/16/2017 Instructions: On the Answer Sheet, enter your 2-digit ID number (with a leading 0 if needed) in the boxes of the ID section. Fill in the corresponding numbered

More information

Chapter. F2-02DA-1, F2-02DA-1L 2-Channel Analog. Current Output. In This Chapter...

Chapter. F2-02DA-1, F2-02DA-1L 2-Channel Analog. Current Output. In This Chapter... F-0-, F-0-L -hannel nalog hapter urrent In This hapter... Module Specifications onnecting and isconnecting the Field Wiring Module Operation Writing the ontrol Program hapter : F-0-, F-0-L, -hannel nalog

More information

Appeal decision. Appeal No Tokyo, Japan Appellant MITSUBISHI ELECTRIC CORPORATION. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan.

Appeal decision. Appeal No Tokyo, Japan Appellant MITSUBISHI ELECTRIC CORPORATION. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan. Appeal decision Appeal No. 2012-23592 Tokyo, Japan Appellant MITSUBISHI ELECTRIC CORPORATION Tokyo, Japan Patent Attorney SOGA, Michiharu Tokyo, Japan Patent Attorney SUZUKI, Norikazu Tokyo, Japan Patent

More information

Position Indicator model MFC-300/IP. Technical Manual. Licht

Position Indicator model MFC-300/IP. Technical Manual. Licht Position Indicator model MFC-300/IP Technical Manual Licht Contents 1 Introduction 2 2 Front panel indication 3 3 Error indication 4 4 Manual commands 5 5 Configuration 6 5.1 Parameter reset 6 6 Programmable

More information

WCS-D5100 Programming Software for the Icom ID-5100 Data

WCS-D5100 Programming Software for the Icom ID-5100 Data WCS-D5100 Programming Software for the Icom ID-5100 Data Memory Types (left to right) Memories Limit Memories DR Memories Call Channels GPS Memories Receive Frequency Transmit Frequency Offset Frequency

More information

The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003

The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003 The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003 Design Objectives The purpose of our device is to control a window based on the temperature of a specified area. The goal

More information

D3 04AD 4-Channel Analog Input

D3 04AD 4-Channel Analog Input 4-Channel Analog Input 22 Module Specifications The following table provides the specifications for the Analog Input Module. Review these specifications to make sure the module meets your application requirements.

More information

Exercise 2. Point-to-Point Programs EXERCISE OBJECTIVE

Exercise 2. Point-to-Point Programs EXERCISE OBJECTIVE Exercise 2 Point-to-Point Programs EXERCISE OBJECTIVE In this exercise, you will learn various important terms used in the robotics field. You will also be introduced to position and control points, and

More information

Operating Instructions

Operating Instructions Operating Instructions Indexing Table Control - Supplement to User Guide COMPAX-M/S - Power Supply COMPAX-M DIGITAL Status Number Value - + Enter Ready Error Ready Error X6 X7 X6 IN RS485 OUT RS232 X8

More information

8510 AC Spindle Drive System

8510 AC Spindle Drive System 8510 AC Spindle Drive System Manual Important User Information Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines for the Application,

More information

ECET 211 Electric Machines & Controls Lecture 7 Relays. Lecture 7 Relays

ECET 211 Electric Machines & Controls Lecture 7 Relays. Lecture 7 Relays ECET 211 Electric Machines & Controls Lecture 7 Relays Text Book: Electric Motors and Control Systems, by Frank D. Petruzella, published by McGraw Hill, 2015. Paul I-Hai Lin, Professor Electrical and Computer

More information

Take for instance this circuit:

Take for instance this circuit: Ladder diagrams Ladder diagrams are specialized schematics commonly used to document industrial control logic systems. They are called "ladder" diagrams because they resemble a ladder, with two vertical

More information

Use of the application program. Functional description. GAMMA instabus Application program description. May A8 Venetian blind actuator

Use of the application program. Functional description. GAMMA instabus Application program description. May A8 Venetian blind actuator Use of the application program Product family: Product type: Manufacturer: Venetian blind Switch Siemens Name: Venetian blind actuator N 523/11 Order no.: 5WG1 523-1AB11 Functional description Application

More information

FRIDAY, 18 MAY 1.00 PM 4.00 PM. Where appropriate, you may use sketches to illustrate your answer.

FRIDAY, 18 MAY 1.00 PM 4.00 PM. Where appropriate, you may use sketches to illustrate your answer. X036/13/01 NATIONAL QUALIFICATIONS 2012 FRIDAY, 18 MAY 1.00 PM 4.00 PM TECHNOLOGICAL STUDIES ADVANCED HIGHER 200 marks are allocated to this paper. Answer all questions in Section A (120 marks). Answer

More information

Precalculations Individual Portion Introductory Lab: Basic Operation of Common Laboratory Instruments

Precalculations Individual Portion Introductory Lab: Basic Operation of Common Laboratory Instruments Name: Date of lab: Section number: M E 345. Lab 1 Precalculations Individual Portion Introductory Lab: Basic Operation of Common Laboratory Instruments Precalculations Score (for instructor or TA use only):

More information

Use of the application program. Functional description. GAMMA instabus Application program description. October 2007

Use of the application program. Functional description. GAMMA instabus Application program description. October 2007 Use of the application program Product family: Product type: Manufacturer: Venetian blind Switch Siemens Name: Venetian blind actuator N 523/11 Order no.: 5WG1 523-1AB11 Functional description Application

More information

Fixed-function (FF) implementation for PSoC 3 and PSoC 5 devices

Fixed-function (FF) implementation for PSoC 3 and PSoC 5 devices 2.40 Features 8- or 16-bit resolution Multiple pulse width output modes Configurable trigger Configurable capture Configurable hardware/software enable Configurable dead band Multiple configurable kill

More information

Speed Feedback and Current Control in PWM DC Motor Drives

Speed Feedback and Current Control in PWM DC Motor Drives Exercise 3 Speed Feedback and Current Control in PWM DC Motor Drives EXERCISE OBJECTIVE When you have completed this exercise, you will know how to improve the regulation of speed in PWM dc motor drives.

More information

54645D. Mixed Signal Oscilloscope

54645D. Mixed Signal Oscilloscope 54645D Mixed Signal Oscilloscope Page 1 of 42 Instructions for the use of the 54645D Mixed Signal Oscilloscope This pamphlet is intended to give you (the student) an overview on the use of the 54645D Mixed

More information

KNX manual High-performance switch actuators RM 4 H FIX1 RM 8 H FIX2

KNX manual High-performance switch actuators RM 4 H FIX1 RM 8 H FIX2 KNX manual High-performance switch actuators RM 4 H FIX1 RM 8 H FIX2 4940212 4940217 2018-10-17 Contents 1 Function description 3 2 Operation 4 3 Technical data 5 4 The FIX2 RM 8 H application programme

More information

Chapter 5: Signal conversion

Chapter 5: Signal conversion Chapter 5: Signal conversion Learning Objectives: At the end of this topic you will be able to: explain the need for signal conversion between analogue and digital form in communications and microprocessors

More information

Operating Handbook For FD PILOT SERIES AUTOPILOTS

Operating Handbook For FD PILOT SERIES AUTOPILOTS Operating Handbook For FD PILOT SERIES AUTOPILOTS TRUTRAK FLIGHT SYSTEMS 1500 S. Old Missouri Road Springdale, AR 72764 Ph. 479-751-0250 Fax 479-751-3397 Toll Free: 866-TRUTRAK 866-(878-8725) www.trutrakap.com

More information

KNX manual 1-channel flush-mounted switch actuator SU 1

KNX manual 1-channel flush-mounted switch actuator SU 1 KNX manual 1-channel flush-mounted switch actuator SU 1 4942520 2018-10-04 Contents 1 Function description 3 2 Operation 4 3 Technical data 5 4 The SU 1 application programme 7 4.1 Selection in the product

More information

Systems. Roland Kammerer. 29. October Institute of Computer Engineering Vienna University of Technology. Communication in Distributed Embedded

Systems. Roland Kammerer. 29. October Institute of Computer Engineering Vienna University of Technology. Communication in Distributed Embedded Communication Roland Institute of Computer Engineering Vienna University of Technology 29. October 2010 Overview 1. Distributed Motivation 2. OSI Communication Model 3. Topologies 4. Physical Layer 5.

More information