Face Recognization Based Car Security System
Face Recognization Based Car Security System
INTRODUCTION
In recent years, the popularity of the automobile sector is increasing all over the world [1]. But
unfortunately there exist an exponential increase in vehicles crime [2]. At the present time, most
vehicles are controlled via using mechanical keys, security cards, and password/pattern. But,
with the development of IoT technologies and many embedded mechanisms, the vehicle security
systems are continuously improving [3]. These improvements are depending on the vehicle’s
owners and police workstations requirements [4]. Whereas, they are not only concerning with the
theft of vehicle contents, but also the loss of vehicles and the personal security requirements of
the vehicle’s owner[5]. Many well-known biometrics-based identification and verification
techniques existed. Fingerprints, facial features, and iris have been employed in various security
applications. Face recognition is considered a good choice biometric technique For vehicle
security and alarm systems because it based on human face feature information and can work
under different conditions [6]. Therefore, most of the face recognition techniques have been
developed to achieve a higher rate of discrimination [7]. Meanwhile, the face recognition process
uses some complex calculations, this paper proposes a reliable VSS− IoT system based on a low
power processor as a guard against vehicle theft [8]. This system converts the images captured
by the USB
installed in the vehicle to gray-scale images to detect and recognize faces in realtime. Where
the combination of AdaBoost algorithm with Haar − Cascade classifier improves face detection
accuracy [9]. Then the proposed system employs the PCA algorithm to recognize drivers’ faces.
Embedded systems are controlled by one or more main processing cores that are
typically either microcontrollers or digital signal processors (DSP). The key characteristic,
however, is being dedicated to handle a particular task, which may require very powerful
processors. For example, air traffic control systems may usefully be viewed as embedded, even
though they involve mainframe computers and dedicated regional and national networks between
airports and radar sites. (Each radar probably includes one or more embedded systems of its
own.)
Since the embedded system is dedicated to specific tasks, design engineers can
optimize it to reduce the size and cost of the product and increase the reliability and
performance. Some embedded systems are mass-produced, benefiting from economies of scale.
Physically embedded systems range from portable devices such as digital watches
and MP3 players, to large stationary installations like traffic lights, factory controllers, or the
systems controlling nuclear power plants. Complexity varies from low, with a single
microcontroller chip, to very high with multiple units, peripherals and networks mounted inside a
large chassis or enclosure.
Labeled parts include microprocessor (4), RAM (6), flash memory (7).Embedded
systems programming is not like normal PC programming. In many ways, programming for an
embedded system is like programming PC 15 years ago. The hardware for the system is usually
chosen to make the device as cheap as possible. Spending an extra dollar a unit in order to make
things easier to program can cost millions. Hiring a programmer for an extra month is cheap in
comparison. This means the programmer must make do with slow processors and low memory,
while at the same time battling a need for efficiency not seen in most PC applications. Below is a
list of issues specific to the embedded field.
2.1.1 History:
One of the first recognizably modern embedded systems was the Apollo Guidance
Computer, developed by Charles Stark Draper at the MIT Instrumentation Laboratory. At the
project's inception, the Apollo guidance computer was considered the riskiest item in the Apollo
project as it employed the then newly developed monolithic integrated circuits to reduce the size
and weight. An early mass-produced embedded system was the Autonetics D-17 guidance
computer for the Minuteman missile, released in 1961. It was built from transistor logic and had
a hard disk for main memory. When the Minuteman II went into production in 1966, the D-17
was replaced with a new computer that was the first high-volume use of integrated circuits.
2.1.2 Tools:
Debugging tools are another issue. Since you can't always run general programs
on your embedded processor, you can't always run a debugger on it. This makes fixing your
program difficult. Special hardware such as JTAG ports can overcome this issue in part.
However, if you stop on a breakpoint when your system is controlling real world hardware (such
as a motor), permanent equipment damage can occur. As a result, people doing embedded
programming quickly become masters at using serial IO channels and error message style
debugging.
2.1.3 Resources:
The uses of embedded systems are virtually limitless, because every day new
products are introduced to the market that utilizes embedded computers in novel ways. In recent
years, hardware such as microprocessors, microcontrollers, and FPGA chips have become much
cheaper. So when implementing a new form of control, it's wiser to just buy the generic chip and
write your own custom software for it. Producing a custom-made chip to handle a particular task
or set of tasks costs far more time and money. Many embedded computers even come with
extensive libraries, so that "writing your own software" becomes a very trivial task indeed. From
2.2.1 Debugging:
2.2.2 Reliability:
Embedded systems often reside in machines that are expected to run continuously
for years without errors and in some cases recover by them if an error occurs. Therefore the
software is usually developed and tested more carefully than that for personal computers, and
unreliable mechanical moving parts such as disk drives, switches or buttons are avoided.
Specific reliability issues may include:
The system cannot safely be shut down for repair, or it is too inaccessible to repair.
Examples include space systems, undersea cables, navigational beacons, bore-hole
systems, and automobiles.
The system must be kept running for safety reasons. "Limp modes" are less tolerable.
Often backup s are selected by an operator. Examples include aircraft navigation, reactor
control systems, safety-critical chemical factory controls, train signals, engines on single-
engine aircraft.
The system will lose large amounts of money when shut down: Telephone switches,
factory controls, bridge and elevator controls, funds transfer and market making,
automated sales and service.
In this design, the software simply has a loop. The loop calls subroutines, each of which
manages a part of the hardware or software.
Some embedded systems are predominantly interrupt controlled. This means that
tasks performed by the system are triggered by different kinds of events. An interrupt could be
generated for example by a timer in a predefined frequency, or by a serial port controller
receiving a byte. These kinds of systems are used if event handlers need low latency and the
event handlers are short and simple.
Usually these kinds of systems run a simple task in a main loop also, but this task
is not very sensitive to unexpected delays. Sometimes the interrupt handler will add longer tasks
to a queue structure. Later, after the interrupt handler has finished, these tasks are executed by
the main loop. This method brings the system close to a multitasking kernel with discrete
processes.
Cooperative Multitasking:
Primitive Multitasking:
In this type of system, a low-level piece of code switches between tasks or threads
based on a timer (connected to an interrupt). This is the level at which the system is generally
considered to have an "operating system" kernel. Depending on how much functionality is
required, it introduces more or less of the complexities of managing multiple tasks running
conceptually in parallel.
As any code can potentially damage the data of another task (except in larger
systems using an MMU) programs must be carefully designed and tested, and access to shared
data must be controlled by some synchronization strategy, such as message queues, semaphores
or a non-blocking synchronization scheme.
These systems takes the input in the form of electrical signals from transducers or
commands from human beings such as pressing of a button etc.., process them and produces
desired output. This entire process of taking input, processing it and giving output is done in
standalone mode. Such embedded systems comes under stand alone embedded systems
These embedded systems follow an absolute dead line time period i.e.., if the
tasking is not done in a particular time period then there is a cause of damage to the entire
equipment.
Eg: consider a system in which we have to open a valve within 30 milliseconds. If this
valve is not opened in 30 ms this may cause damage to the entire equipment. So in such cases we
use embedded systems for doing automatic operations.
Eg: Consider a TV remote control system, if the remote control takes a few milliseconds delay it
will not cause damage either to the TV or to the remote control. These systems which will not cause
damage when they are not operated at considerable time period those systems comes under soft real-time
embedded systems.
Eg:
Whenever a person comes near the door, it captures the image of a person and
sends to the desktop of your computer which is connected to internet. This gives an alerting
message with image on to the desktop of your computer, and then you can open the door lock
just by clicking the mouse. Fig: 2.2 show the network communications in embedded systems.
The central processing unit (c.p.u) can be any one of the following
microprocessor, microcontroller, digital signal processing.
Among these Microcontroller is of low cost processor and one of the main advantage
of microcontrollers is, the components such as memory, serial communication
interfaces,
Department Of ECE 12 CMR Institute Of Technology
analog to digital converters etc.., all these are built on a single chip. The numbers of
external components that are connected to it are very less according to the application.
Microprocessors are more powerful than microcontrollers. They are used in major
applications with a number of tasking requirements. But the microprocessor requires
many external components like memory, serial communication, hard disk, input
output ports etc.., so the power consumption is also very high when compared to
microcontrollers.
Digital signal processing is used mainly for the applications that particularly
involved with processing of signals
Today a lot of industries are using embedded systems for process control. In
industries we design the embedded systems to perform a specific operation like monitoring
temperature, pressure, humidity ,voltage, current etc.., and basing on these monitored levels we
do control other devices, we can send information to a centralized monitoring station.
Fig2.6: Vehicle
In critical industries where human presence is avoided there we can use vehicles
which are programmed to do a specific operation.
BLOCL DIAGRAM
Ve hil
Bu
z
POWER SUPPLY
All digital circuits require regulated power supply. In this article we are going to learn how to get
a regulated positive supply from the mains supply.
Figure 1 shows the basic block diagram of a fixed regulated power supply. Let us go through
each block.
2.2.1 TRANSFORMER
So
The secondary voltage of the transformer depends on the number of turns in the Primary as
well as in the secondary.
This is the simplest type of rectifier as you can see in the diagram a half wave
rectifier consists of only one diode. When an AC signal is applied to it during the
positive half cycle the diode is forward biased & current flows through it. But
during the negative half cycle diode is reverse biased & no current flows through
it. Since only one half of the input reaches the output, it is very inefficient to be
used in power supplies.
As the name suggests it converts the full wave i.e. both the positive & the
negative half cycle into DC thus it is much more efficient than Half Wave Rectifier
& that too without using a center tapped transformer thus much more cost
effective than Full Wave Rectifier.
Full Bridge Wave Rectifier consists of four diodes namely D1, D2, D3 and D4.
During the positive half cycle diodes D1 & D4 conduct whereas in the negative
half cycle diodes D2 & D3 conduct thus the diodes keep switching the transformer
connections so we get positive half cycles in the output.
Even though half wave & full wave rectifier give DC output, none of them provides
a constant output voltage. For this we require to smoothen the waveform
received from the rectifier. This can be done by using a capacitor at the output of
the rectifier this capacitor is also called as “FILTER CAPACITOR” or
“SMOOTHING CAPACITOR” or “RESERVOIR CAPACITOR”. Even after using
this capacitor a small amount of ripple will remain.
We place the Filter Capacitor at the output of the rectifier the capacitor will charge to the
peak
voltage during each half cycle then will discharge its stored energy slowly through the load
while the rectified voltage drops to zero, thus trying to keep the voltage as constant as
possible.
Where,
Vr= accepted ripple voltage.( should not be more than 10% of the voltage)
I= current consumed by the circuit in Amperes.
F= frequency of the waveform. A half wave rectifier has only one peak in one cycle so F=25hz
Whereas a full wave rectifier has Two peaks in one cycle so F=100hz.
After filtering the rectifier output the signal is given to a voltage regulator. The
maximum input voltage that can be applied at the input is 35V.Normally there is a
2-3 Volts drop across the regulator so the input voltage should be at least 2-3
Volts higher than the output voltage. If the input voltage gets below the Vmin
Circuit diagram:
IC 7805:
The 7805 will automatically reduce output current if it gets too hot.The last two
digits represent the voltage; for instance, the 7812 is a 12-volt regulator. The 78xx
series of regulators is designed to work in complement with the 79xx series of
negative voltage regulators in systems that provide both positive and negative.
The 7805 & 78 is one of the most common and well-known of the 78xx series
regulators, as it's small component count and medium-power regulated 5V make
it useful for powering TTL devices.
SPECIFICATIONS IC 7805
Vout 5V
Operation Ambient
0 - 125°C
Temp
Output Imax 1A
FEATURES
Processors:
CPU: Xtensa dual-core (or single-core) 32-bit LX6 microprocessor, operating
at 160 or 240 MHz and performing at up to 600 DMIPS
Ultra low power (ULP) co-processor
Memory: 520 KiB SRAM
Department Of ECE 28 CMR Institute Of Technology
Wireless connectivity:
Wi-Fi: 802.11 b/g/n
Bluetooth: v4.2 BR/EDR and BLE
Peripheral interfaces:
12-bit SAR ADC up to 18 channels
2 × 8-bit DACs
10 × touch sensors (capacitive sensing GPIOs)
Temperature sensor
4 × SPI
2 × I²S interfaces
2 × I²C interfaces
3 × UART
SD/SDIO/CE-ATA/MMC/eMMC host controller
SDIO/SPI slave controller
Ethernet MAC interface with dedicated DMA and IEEE 1588 Precision Time
Protocol support
CAN bus 2.0
Infrared remote controller (TX/RX, up to 8 channels)
Motor PWM
LED PWM (up to 16 channels)
Hall effect sensor
Ultra low power analog pre-amplifier
Security:
IEEE 802.11 standard security features all supported, including WFA,
WPA/WPA2 and WAPI
Secure boot
Flash encryption
1024-bit OTP, up to 768-bit for customers
Cryptographic hardware acceleration: AES, SHA-2, RSA, elliptic curve
cryptography (ECC), random number generator (RNG)
Power management:
Internal low-dropout regulator
Individual power domain for RTC
5uA deep sleep current
Embedded
Processor Package
Identifier flash memory Description
cores size
(MiB)
Initial production
ESP32- 2
2 0 6×6 mm release chip of the
D0WDQ6
ESP32 series.
Smaller physical
2
ESP32-D0WD 2 0 5×5 mm package variation
similar to ESP32-
D0WDQ6.
Module[edit]
Embedded
Processor Package
Identifier flash memory Description
cores size
(MiB)
ESP32 based surface-mount printed circuit board modules directly contain the
ESP32 SoC and are designed to be easily integrated onto other circuit boards.
Meandered inverted-F antenna designs are used for the PCB trace antennas on
the modules listed below. In addition to flash memory, some modules
include pseudostatic RAM (pSRAM).
Flash
pSRAM
Vendor Name Antenna memory Description
(MiB)
(MiB)
Variation of ESP32-
WROVER module
ESP32- U.FL configured to use an
WROVER- socket, 4 4 on-board U.FL
I PCB trace compatible connector.
PCB trace antenna not
connected by default.
Variation of ESP-32S-
ALB-
AnalogLamb PCB trace 16 0 ALB with 16 MiB of
WROOM
flash memory.[15]
Module similar in
appearance to
Espressif's ESP-
W32 PCB trace 4 0
WROOM-32, but
footprint pinout
IntoRobot differs. [18]
Discontinued. OEM
module version of the
(Not
S01 8 4 SiPy. Supported Wi-Fi,
included.)
Bluetooth, and Sigfox
(14 dBm and 22 dBm).
Development & break-out boards extend wiring and may add functionality, often
building upon ESP32 module boards and making them easier to use for
development purposes (especially with breadboards).
Surface-
mount
Vendor Name Description
module
used
Compact development
ESP- board created by
ESP32-DevKitC WROOM- Espressif.[25] Silkscreen
Espressif 32 labeling on PCB reads "Core
Board".
ESP-
Large development board
WROOM-
created by
ESP-WROVER-KIT 32 or [26]
Espressif. Previously
ESP32-
named ESP32-DevKitJ.[27]
WROVER
NodeMCU-like development
Ai-Thinker NodeMCU-32S ESP-32S
board.[28]
Development board
April
ESPea32 † with perfboard area that
Brother
may be optionally cut-off.
Arduino Uno-like
development board based
on ESP32 IoT UNO
ArduCAM ESP32 UNO ESP-32S
framework with support for
SPI ArduCAM, Battery pins
and uSD card slot.
Arduino-style development
Noduino Quantum † board that directly
incorporates the ESP32 chip.
MicroPython programmable
Pycom WiPy † Wi-Fi & Bluetooth IoT
development platform with
a 1 km Wi-Fi range. WiPy
Compact development
board with FTDI FT231x
SparkFun ESP32 Thing †
USB/serial interface and LiPo
charger built-in.
SunDUINO
ESP-
Arduino-style development
WROOM-
ESP32 SunDUINO board. Lacks on-board USB-
32 or
UART.
ESP-32S
ESP-
LOLIN32 WROOM-
32
WEMOS[32]
LOLIN32 Lite †
Programming[edit]
Programming languages, frameworks, platforms, and environments used for ESP32
programming:
Alibaba Group's IoT LED wristband, used by participants at the group's 2017
annual gathering. Each wristband operated as a "pixel", receiving commands
for coordinated LED light control, allowing formation of a "live and wireless
screen".[36]
USB CAMERA
• USB Cameras are imaging cameras that use USB 2.0 or USB 3.0 technology
to transfer image data. USB Cameras are designed to easily interface with
dedicated computer systems by using the same USB technology that is
found on most computers. The accessibility of USB technology in computer
systems as well as the 480 Mb/s transfer rate of USB 2.0 makes USB
Cameras ideal for many imaging applications.
A simple electromagnetic relay, such as the one taken from a car in the first
picture, is an adaptation of an electromagnet. It consists of a coil of wire
surrounding a soft iron core, an iron yoke, which provides a low reluctance path
for magnetic flux, a movable iron armature, and a set, or sets, of contacts; two in
the relay pictured. The armature is hinged to the yoke and mechanically linked to
a moving contact or contacts. It is held in place by a spring so that when the relay
is de-energized there is an air gap in the magnetic circuit. In this condition, one of
the two sets of contacts in the relay pictured is closed, and the other set is open.
Other relays may have more or fewer sets of contacts depending on their
function. The relay in the picture also has a wire connecting the armature to the
yoke. This ensures continuity of the circuit between the moving contacts on the
armature, and the circuit track on the printed circuit board (PCB) via the yoke,
which is soldered to the PCB.
When an electric current is passed through the coil, the resulting magnetic field
attracts the armature and the consequent movement of the movable contact or
contacts either makes or breaks a connection with a fixed contact. If the set of
contacts was closed when the relay was De-energized, then the movement opens
the contacts and breaks the connection, and vice versa if the contacts were open.
When the current to the coil is switched off, the armature is returned by a force,
approximately half as strong as the magnetic force, to its relaxed position. Usually
this force is provided by a spring, but gravity is also used commonly in industrial
motor starters. Most relays are manufactured to operate quickly. In a low voltage
If the coil is energized with DC, a diode is frequently installed across the coil, to
dissipate the energy from the collapsing magnetic field at deactivation, which
would otherwise generate a voltage spike dangerous to circuit components. Some
automotive relays already include a diode inside the relay case. Alternatively a
contact protection network, consisting of a capacitor and resistor in series, may
absorb the surge. If the coil is designed to be energized with AC, a small copper
ring can be crimped to the end of the solenoid. This "shading ring" creates a small
out- of-phase current, which increases the minimum pull on the armature during
the AC cycle.
Types
Latching relay
A latching relay has two relaxed states (bistable). These are also called "impulse",
"keep", or "stay" relays. When the current is switched off, the relay remains in its
last state. This is achieved with a solenoid operating a ratchet and cam
mechanism, or by having two opposing coils with an over-center spring or
permanent magnet to hold the armature and contacts in position while the coil is
relaxed, or with a remanent core. In the ratchet and cam example, the first pulse
to the coil turns the relay on and the second pulse turns it off. In the two coil
example, a pulse to one coil turns the relay on and a pulse to the opposite coil
turns the relay off. This type of relay has the advantage that it consumes power
only for an instant, while it is being switched, and it retains its last setting across a
power outage. A remanent core latching relay requires a current pulse of opposite
polarity to make it change state.
Reed relay
A reed relay has a set of contacts inside a vacuum or inert gas filled glass tube,
which protects the contacts against atmospheric corrosion. The contacts are
closed by a magnetic field generated when current passes through a coil around
the glass tube. Reed relays are capable of faster switching speeds than larger
types of relays, but have low switch current and voltage ratings.
A mercury-wetted reed relay is a form of reed relay in which the contacts are
wetted with mercury. Such relays are used to switch low-voltage signals (one volt
or less) because of their low contact resistance, or for high-speed counting and
timing applications where the mercury eliminates contact bounce. Mercury
wetted relays are position-sensitive and must be mounted vertically to work
properly. Because of the toxicity and expense of liquid mercury, these relays are
rarely specified for new equipment. See also mercury switch.
Polarized relay
A polarized relay placed the armature between the poles of a permanent magnet
to increase sensitivity. Polarized relays were used in middle 20th Century
telephone exchanges to detect faint pulses and correct telegraphic distortion. The
poles were on screws, so a technician could first adjust them for maximum
sensitivity and then apply a bias spring to set the critical current that would
operate the relay.
Contactor relay
A contactor is a very heavy-duty relay used for switching electric motors and
lighting loads. Continuous current ratings for common contactors range from 10
amps to several hundred amps. High-current contacts are made with alloys
containing silver. The unavoidable arcing causes the contacts to oxidize; however,
silver oxide is still a good conductor. Such devices are often used for motor
starters. A motor starter is a contactor with overload protection devices attached.
The overload sensing devices are a form of heat operated relay where a coil heats
a bi- metal strip, or where a solder pot melts, releasing a spring to operate
auxiliary contacts. These auxiliary contacts are in series with the coil. If the
overload senses excess current in the load, the coil is de-energized. Contactor
relays can be extremely loud to operate, making them unfit for use where noise is
a chief concern.
A solid state relay (SSR) is a solid state electronic component that provides a
similar function to an electromechanical relay but does not have any moving
components, increasing long-term reliability. With early SSR's, the tradeoff came
from the fact that every transistor has a small voltage drop across it. This voltage
drop limited the amount of current a given SSR could handle. As transistors
improved, higher current SSR's, able to handle 100 to 1,200 Amperes, have
become commercially available. Compared to electromagnetic relays, they may
be falsely triggered by transients.
A solid state contactor is a very heavy-duty solid state relay, including the
necessary heat sink, used for switching electric heaters, small electric motors and
lighting loads; where frequent on/off cycles are required. There are no moving
parts to wear out and there is no contact bounce due to vibration. They are
activated by AC control signals or DC control signals from Programmable logic
controller (PLCs), PCs, Transistor-transistor logic (TTL) sources, or other
microprocessor and microcontroller controls.
Buchholz relay
A Buchholz relay is a safety device sensing the accumulation of gas in large oil-
filled transformers, which will alarm on slow accumulation of gas or shut down
the transformer if gas is produced rapidly in the transformer oil.
A forced-guided contacts relay has relay contacts that are mechanically linked
together, so that when the relay coil is energized or de-energized, all of the linked
contacts move together. If one set of contacts in the relay becomes immobilized,
no other contact of the same relay will be able to move. The function of forced-
guided contacts is to enable the safety circuit to check the status of the relay.
Forced-guided contacts are also known as "positive-guided contacts", "captive
contacts", "locked contacts", or "safety relays".
Electric motors need over current protection to prevent damage from over-
loading the motor, or to protect against short circuits in connecting cables or
internal faults in the motor windings. One type of electric motor overload
protection relay is operated by a heating element in series with the electric
motor. The heat generated by the motor current heats a bimetallic strip or melts
solder, releasing a spring to operate contacts. Where the overload relay is
exposed to the same environment as the motor, a useful though crude
compensation for motor ambient temperature is provided.
Circuit symbols of relays. "C" denotes the common terminal in SPDT and DPDT
types.
Since relays are switches, the terminology applied to switches is also applied to
relays. A relay will switch one or more poles, each of whose contacts can be
thrown by energizing the coil in one of three ways:
The "S" or "D" may be replaced with a number, indicating multiple switches
connected to a single actuator. For example 4PDT indicates a four pole double
throw relay (with 14 terminals).
Applications:
Isolate the controlling circuit from the controlled circuit when the two are
at different potentials, for example when controlling a mains-powered
device from a low-voltage switch. The latter is often applied to control
office lighting as the low voltage wires are easily installed in partitions,
which may be often moved as needs change. They may also be controlled
by room occupancy detectors in an effort to conserve energy,
Logic functions. For example, the boolean AND function is realised by
connecting normally open relay contacts in series, the OR function by
connecting normally open contacts in parallel. The change-over or Form C
contacts perform the XOR (exclusive or) function. Similar functions for
NAND and NOR are accomplished using normally closed contacts. The
Ladder programming language is often used for designing relay logic
networks.
A large relay with two coils and many sets of contacts, used in an old telephone
switching system.
Department Of ECE 59 CMR Institute Of Technology
Several 30-contact relays in "Connector" circuits in mid 20th century 1XB switch
and 5XB switch telephone exchanges; cover removed on one
Advantages of relays:
Disadvantages of relays:
D.C. Motor:
The DC motor has two basic parts: the rotating part that is called the
armature and the stable part that includes coils of wire called the field coils. The
stationary part is also called up the stator. Figure shows a depict of a distinctive
DC motor, Figure shows a picture of a DC armature, and Figure shows a picture of
a distinctive stator. From the picture you can see the armature is made of coils of
wire wrapped around the core, and the core has an covered shaft that rotates on
charges. You should also notice that the ends of each coil of wire on the armature
are finished at one end of the armature. The outcome points are called the
commutator, and this is where's brushes make electrical contact to bring
electrical current from the stationary part to the rotating part of the machine.
Operation:
The DC motor you will find in modem industrial applications operates very
similarly to the simple DC motor described earlier in this chapter. Figure 12-9
demonstrates an electrical diagram of a simple DC motor. comment that the DC
The magnetic field in the armature and field coil causes the armature to
begin to rotate. This occurs by the dissimilar magnetic poles attracting each other
Types of DC motors:
1. DC Shunt Motor,
2. DC Series Motor,
The rotational energy that you get from any motor is usually the battle between two magnetic
fields going after each other. The DC motor has magnetic poles and an armature, to windward
DC electricity is flowed, The Magnetic Poles are electromagnets, and when they are energized,
they develop a strong magnetic field approximately them, and the armature which is given
power with a commutator, invariably repels the poles, and therefore rotates.
In a 2 pole DC Motor, the armature will have two separate sets of winding,
connected to a commutator at the end of the shaft that are in constant touch
with carbon brushes. The brushes are motionless, and the commutator rotates
and as the portions of the commutator touching the respective positive or
negative polarity brush will energize the respective part of the armature with the
respective polarity. It is commonly arranged in such a way that the armature and
the poles are always repelling.
The general idea of a DC Motor is, the stronger the Field Current, the stronger the
magnetic field, and faster the rotation of the armature. When the armature
revolves between the poles, the magnetic field of the poles induce power in the
armature conductors, and some electricity is generated in the armature, which is
called back emf, and it acts as a resistance for the armature. Generally an
armature has resistance of less than 1 Ohm, and powering it with heavy voltages
of Direct Current could result in immediate short circuits. This back emf helps us
there.When an armature is loaded on a DC Shunt Motor, the speed naturally
reduces, and therefore the back emf reduces, which allows more armatures
current to flow. This results in more armature field, and therefore it results in
When a DC Shunt Motor is overloaded, if the armature becomes too slow, the
reduction of the back emf could cause the motor to burn due to heavy current
flow thru the armature.
The poles and armature are excited separately, and parallel, therefore it is called
a Shunt Motor.
A DC Series Motor has its field coil in series with the armature. hence any amount
of power drawn by the armature will be passed through the field. As a result you
cannot start a Series DC Motor without any load affiliated to it. It will either run
uncontrollably in full speed, or it will block.
When the load is increased then its efficiency increases with respect to the load
employed. So these are on Electric Trains and elevators.
Specifications
DC supply: 4 to 12V
RPM: 300 at 12V
Total length: 46mm
Motor diameter: 36mm
Motor length: 25mm
Brush type: Precious metal
Gear head diameter: 37mm
Gear head length: 21mm
Output shaft: Centred
Shaft diameter: 6mm
We generally use 300 RPM Center Shaft Economy Series DC Motor which is high quality low cost
DC geared motor. It has steel gears and pinions to assure longer life and better wear and tear
places. The gears are fixed on hardened steel spindles polished to a mirror finish. The output
shaft circumvolve in a plastic bushing. The whole assembly is crossed with a plastic ring.
Gearbox is sealed off and lubricated with lithium grease and require no sustainment. The motor
is screwed to the gear box from inside.
Although motor gives 300 RPM at 12V but motor runs smoothly from 4V to 12V and gives wide
range of RPM, and torque. Tables below gives reasonably good idea of the motor’s
performance in terms of RPM and no load current as a function of voltage and stall torque, stall
current as a operate of voltage.
3. DC Compound Motor:
A compound of Series and Shunt excitation for the fields is done in a Compound
DC Motor. This affords the best of both series and shunt motors. Improve torque
as in a series motor, while the possible action to start the motor with no load.
Above is the diagram of a long shunt motor, as in a short shunt, the shunt coil will
be connected after the serial coil.
A Compound motor can be run as a shunt motor absent connecting the serial coil
at all but not vice versa.
Applications
Transport
High power BLDC motors are found in electric vehicles and hybrid vehicles.
These motors are basically AC synchronous motors with permanent magnet
rotors.
A number of electric bicycles use BLDC motors that are sometimes built into
the wheel hub itself, with the stator determined solidly to the axle and the
magnets attached to and rotating withstand wheel. The bicycle wheel hub is the
motor. This type of electric bicycle as well has a standard bicycle transmission on
pedals, sprockets, and chain that can be pedaled along with, or absent, the use of
the motor as need arises.
Industrial engineering
Stepper motor
Model engineering
BLDC motors are a popular motor choice for model aircraft including helicopters.
Their prosperous power-to-weight ratios and large range of usable sizes, from
under 5 gram to large motors rated at thousands of watts, have inspired the
market for electric-powered model flight.
Legal confinements for the use of combustion engine driven model aircraft in
some countries have also supported the shift to high-power electric systems.
Their popularity has also risen in the Radio Controlled Car, cracked, and Truck
scene, where sensor-type motors (with an extra six wires, connected to Hall effect
sensors) allow the position of the rotor magnet to be detected. Brushless motors
have been effectual in RC Car Racing in accordance to ROAR (the American
governing body for RC Car Racing), since 2006. various RC Car Brushless motors,
feature expendable and upgradable parts, such as sintered neodymium-iron-
boron (rare earth magnets), ceramic bearings, and exchangeable motor timing
assemblies. These motors as a result are rapidly rising to be the preferred motor
type for electric on and off-road RC racers and recreational drivers alike, for their
low maintenance, high campaigning reliability and power efficiency (most
Sensored motors have an efficiency rating of 80% or greater).
The PWM switching frequency has to be much faster than what would
regard the load, which is to say the device that uses the power. generally
switching have to be done several times a minute in an electric range, 120 Hz in a
lamp dimmer, from few kilohertz (kHz) to tens of kHz for a motor drive and well
into the tens or hundreds of kHz in audio amplifiers and computer power
supplies.
The term duty cycle describes the proportion of 'on' time to the regular
interval or 'period' of time; a low duty cycle corresponds to low power, because
the power is off for most significant bit the time. Duty cycle is conveyed in
percent, 100% being fully on.
The main advantage of PWM is that power loss in the switching devices is
very low. When a switch is off there is much no current, and when it is on, there is
nearly no voltage drop across the switch. Power loss, existence the product of
voltage and current, is thus in both examples close to zero. PWM also works well
with digital assures, which, because of their on/off nature, can easily set the
necessitated duty cycle. PWM has also been used in certain communication
systems where its duty cycle has been used to convey information over a
communications channel.
One of the advantages of PWM is that the signal remains digital all the way
To set the pressure on the bracken to, say, 100 psi, the software would do a
reverse lookup to determine the duty cycle that should produce that quantity of
PWM is economical, space saving, and noise resistant. And it's now in your bag of
deceptions. So use it.
PWM controllers
Many microcontrollers include on-chip PWM controllers. For example,
Microchip's PIC16C67 admits two, each other which has a selectable on-time and
period of time. The duty cycle is the ratio of the on-time to the period; the
modulating frequency is the inverse of the period. To start PWM procedure, the
data sheet suggests the software should:
Set the period of time in the on-chip timer/counter that provides the
modulating square wave
• Set the direction of the PWM output, which is one of the general-function
I/O pins
DC Motor Driver:
When the enable input is low, those drivers are disabled and their outputs are off
and in the high-impedance state. With the thoroughly data inputs, each pair of
drivers forms a full-H (or bridge) reversible drive suitable for solenoid or motor
applications. On the L293, international high-speed output clamp diodes should
be used for inductive transient stifling. A VCC1 terminal, classify from VCC2, is
provided for the logic inputs to minimize device power dissolution. The L293and
L293D are characterized for operation from 0°C to 70°C.
Features of L293D:
1. Electric Train: A kind of DC motor called the DC Series Motor is used in Electric
Trains. The DC Series Motors have the attribute to deliver more power when they
are affluent more. So the more the people get on a train, the more herculean the
train becomes.
2. Elevators: The best bidirectional motors are DC motors. They are expended in
elevators. Compound DC Motors are used for this covering.
3. DC Fans, CD ROM Drives, and Hard Drives: All these things need motors, very
miniature motors, with great exactness. AC motors can never conceive of any
application in these places.
BUZZER
Mechanical
Electromechanical
CONCLUSION:
An embedded automotive security system involving face recognition is presented. The system can be
used to reduce the increased vehicle theft and allows the owner to identify the intruder thereby having
the vehicle under his/her control. The results obtained through the face recognition shows that it
can be relied upon to ensure safety of vehicle. The system is also reliable to be used in other
authorization applications involving robotics, border management, banking security involving ATMs .
FUTURE SCOPE:
In the long run, robots using facial recognition technology may also come to foray.
Other areas that are now welcoming it with open arms are schools.
Reporting duplicate voters
to keep fraud in debit/credit card purchases and payment especially the ones that are online.
REFERENCE:
[1] P Bagavathy, R Dhaya and T Devakumar (2011), Real time car theft decline system using ARM processor, Proceedings
of International Conference on Advances in Recent Technologies in Communication and Computing, pp. 101- 105.
[2] S K Hese and M R Banwaskar (2013), Performance Evaluation of PCA and LDA for Face Recognition, International
Journal of Advanced Research in Electronics and Communication Engineering, Maharashtra, India, 2, 2, pp.149-152.
[3] Shihab A. Hameed, Shaima Abdulla et al. (2011), New Automobile Monitoring and Tracking Model: Facilitate Model
with Handhelds, 4th International Conference on Mechatronics, Malaysia.
[4] P Viola and M Jones (2002), Fast and robust classification using asymmetric AdaBoost and a detector cascade, NIPS14.