1 Intro
1 Intro
Course Objectives
In this course, we shall learn about the different aspects of factory automation and its components.
At the lowest level, we study sensors and actuators that control the physical process, and how they
work with simple electrical or mechanical stimulus. We study how systems containing a large
number of sensors and actuators that follow pre-defined logic can be controlled automatically
using Logic Controllers. Finally, in more complex systems, the logic that governs actions of the
actuators is based not only on inputs from sensors, but also from other sources such as data stored
by humans etc. Such automation requires connection between hardware (sensors, actuators) and
computer(s) linked together on networks. We will learn how high level programming languages
(e.g. C++ or Java) can be used to design automation control in such complex systems. The most
significant element of automation in modern industry is the growing use of computers and
electronic controls. In keeping with this, the course shall concentrate on computers and computer
applications.
History of Automation:
The concept of automated factories is not old historically. The first organized automation is
believed to have sprung out of the industrial revolution in England in the latter half of the 18th
century. Some of the landmark events in these 200 years of rapid industrialization include:
• Outburst of mechanization due to the Industrial revolution, 1770.
• Henry Ford and the development of hard automation and transfer lines, 1900.
• Machine tools with automatic controls; e.g. copying machines with a stylus to traverse the
master copy in order to generate an electrical signal for the servomotor drive.
• Numerically Controlled (NC) machine tools, 1952 (US Air Force, MIT).
• Rapid development of microchip computers, late 1960's.
• CNC (computer numerical controlled) machine tools.
• Industrial Robots (1970's).
• Computer networks (1970's).
• Fully automated, Flexible Manufacturing Systems (FMS) for high flexibility, 1990's.
NOTES
2
Why Automate?
• Shorter processing time: low lead-time, lower work-in-progress time, lower inventory
Communication network
Network Interface
Analog controls
A/D D/A
converter converter Digital Signals
Analog Signals
Physical Process
Control structures can basically be looked upon as open loop or closed-loop (feedback) systems.
In open loop systems, the actuator is given a command to take an action for a fixed amount of
time, or of fixed magnitude. No sensors are used; the user must know, for example, by calibration
NOTES
3
of the actuator behavior, how much work (or magnitude of effect) will be done by the actuator for
that value of the signal. Such systems are cheaper, and usually lighter (since there is no sensor to
be mounted on the operated device). Closed loop systems typically use a sensor to measure the
actual effect being caused by the actuator. If the device is far from the target, the actuator is given
a signal to keep working; when the device reaches the target, the sensor signals the actuator to
stop its action (thus the signal from the sensor is called a feedback). Usually, feedback systems
also accelerate the device when the target is far away, and decelerate the device when it is near the
target to account for inertia.
feedback
Sensor
Examples of Automation:
NOTES
4
2a. Automatic doors
When you walk in front of the door of some buildings, the door automatically opens. After a fixed
amount of time, it shuts.
- Lift doors often use this type of system; what type of sensor is used?
- Lift doors additionally use a system where the closing door re-opens if it hits the person
standing in the doorway. What sensor is used for this?
- Let sensor-1 be “person-in-door”, sensor-2 be “door-hit-person” and actuator control be
“open-the-door”. What is the logical statement for the control of the actuator?
4. Fridge
The fridge in your home cools the food you keep inside it. You can set the intensity of the cooling
by setting a slider or dial.
NOTES
5
All of the above are examples of automation that we encounter every day of our lives. The same
technology is used in the control of automatic machines in all types of factories and companies. In
this course, we will learn, to some extent, how such control systems work.
NOTES