SlideShare a Scribd company logo
1 of 4
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 262
AN ENHANCED METHOD FOR HUMAN LIFE RESCUE SYSTEM
K. Arunkumar
Associate Professor, Department of ECE, Jeppiaar Institute of Technology, Tamil Nadu, India
Abstract
In the Modern World, Traffic is one of the main problem in our daily life. During Emergency conditions Vehicles like Ambulances
and Fire Controllers are delayed to reach their destination due to the Traffic Jams. Every one minute there will be an accident in
India, which causes loss of lives. This is a wireless module system which generates information from the accident zone to the
ambulance facility very quickly. Traffic blocking and management of free movement of vehicles were recognized as major
problem in modern urban areas. The accidents in the city have been increased due to negligible of rules and rise in motor
vehicles leads to the loss of life. The main idea behind this system is to endow with a flow for the rescue vehicles to reach the
hospitals in moment. The novelty in this paper is to manage the traffic signals in the alleyway of the rescue vehicle. This scheme is
fully programmed, thus it finds the accident point, to be in command of traffic lights, helps to reach the hospital in instance.
Keywords: SMAC, HLRS, etc
--------------------------------------------------------------------***----------------------------------------------------------------------
1. INTRODUCTION
This Paper focuses on the safety of the human lives at the
time of accidents using Tri-axial Micro-Electro Mechanical
Systems (MEMS) and to intimate the nearest receiving
ambulance facility by sending the Global Positioning
System (GPS) reading of the vehicle through Sensor
Medium Access Control (SMAC) Protocol. This paper
makes use of a sensor to detect the condition of the patient
and to transfer it to the nearest hospital zone and to monitor
the patient condition. The traffic congestion is a major
problem in modern urban areas, which cause disturbance to
Ambulance and this is overcome by using RF transmitter
and receiver to terminate the traffic signal and to ensure a
tidal flow. This paper introduces a scheme called Human
Life Rescue System (HLRS) to solve the problem faced by
the rescue vehicle to reach the destination in moment. The
idea behind this scheme is to control the traffic lights in the
path of the ambulance. This is fully automated, thus it finds
the accident spot, controls the traffic lights, helping to reach
the hospital in time.
2. LITERATURE REVIEW
2.1 Existing system
In the earlier paper Global System for Mobile
communication (GSM) module was used but using this
module may cause delay while sending the information from
the accident zone due to network problems. Vibration
Sensors are used but this may not be much effective. The
PIC16F874A Microcontroller is preferred in this system and
it produce more heat and also expensive than other
Microcontrollers.
2.2 Proposed system
In the proposed system the microcontroller AT89S52 is used
and it is a CMOS 8-bit microcontroller. MEMS incorporate
miniature electro-mechanical components fabricated with
processing techniques. MEMS decrease the cost and
increase the reliability. SMAC is used for sending the
information and the transmission speed is high.
2.3 Vehicle section
Fig 1. Block diagram of Vehicle Section
In the Vehicle section Tri-axial MEMS is used to detect the
variation in the range and sends to the microcontroller. Then
the microcontroller reads the GPS value using Global
Positioning System and sends the GPS reading to the
Ambulance section through the SMAC. SMAC is used for
the transmitting and receiving the message using encoder
and decoder concept. SMAC is used to Reduce Energy
Consumption due to Overhearing, Collision and support
Self-Configuration. SMAC is used for Fast Transmission
and Multi Node Transmission
2.4 Ambulance section
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 263
Fig 2 : Ambulance Section Block diagram
In the Ambulance section, the message from the vehicle
section is received via SMAC and the motor runs. Radio
Frequency (RF) transmitter in this section is used to transmit
the signal to the RF receiver. Heart Beat sensor is used to
detect the heart beat of the patient.
2.5 Hospital section
Fig 3: Hospital section Block diagram
In the hospital side an UART, Universal Asynchronous
Receiver / Transmitter is used to convert the signal into
serial information from parallel ie sent on a communication
line. The information gone for several process and the
required things send to personal computer in the receiver
side. The Personal Computer (PC) is used for displaying the
GPS reading of the vehicle and the heart beat value.
2.6 Signal section
Fig 4 : Signal section Block diagram
Radio Frequency (RF) acts in the range as high of 300GHz
to low as 3KHZ. In this paper the frequency used in the
range of 430MHZ to 440MHZ.The signal can be send to
microcontroller through wireless transmission which
incorporated the signal to same frequency used in traffic
lights and turn on green for the rescue vehicle path and other
direction it switch on to red to stall the vehicular movement.
3. PROGRAM
#include <REGX51.H>
sbit rs=P3^2;
sbit rw=P3^3;
sbit en=P3^4;
sfr datas=0xA0;
void lcdinit(void);
void lcddata(unsigned char ldat);
void del1();
void sms1();
void sendd();
int amount,cost,fl,fl1;
void INITLCD()
{
lcdinit();
}
void COMMAND(unsigned char val)
{
lcdcmd(val);
}
void DISPLAY(unsigned char val)
{
lcddata(val);
}
void lcdinit(void)
{
lcdcmd(0x38);
lcdcmd(0x38);
lcdcmd(0x38);
lcdcmd(0x06);
lcdcmd(0x0e);
lcdcmd(0x01);
void lcdcmd(unsigned char lcmd)
{
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 264
datas=lcmd;
rs=0;
rw=0;
en=1;
delay(100);
en=0;
}
void delay(unsigned int del)
{
while(del--);
}
void lcddata(unsigned char ldat)
{
datas=ldat;
rs=1;
rw=0;
en=1;
delay(100);
en=0;
}
char flags=0;
char flagt=0;
char kval=0;
char flagr=0;
int recharge=0;
char flagtick=0;
unsigned char keypad();
void disp(unsigned char dat)
{
DISPLAY(dat);
}
else
int value,ps,ct,fg,c1,c2;
long ct1,ct2,i;
char val,j;
void main()
{
SCON=0x50;
TMOD=0x20;
TH1=0xfd;
TR1=1;
INITLCD();
lcdcmd(0x80);
putchar("Traffic System ",16);
while(1)
{
while(RI==0)
{
delay(5);
while((P0&0x0F)==0x0A);
lcdcmd(0x80);
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 265
4. RESULT
Fig 5. Hardware section
Fig:6. Hardware part Connected with Computer
The human life rescue system working in a efficient manner
than the previous system.
5. CONCLUSION and FUTURE SCOPE
In this paper I have developed a new product using micro
controller projecting an advance technology in controlling
both the traffic signals and the ambulances/fire service
during an emergency. The Human Life Rescue System
(HLRS) can be used in major metro cities and second level
cities of urban India which are more populated. The analysis
proves that HLRS surpass the existing manually operated
system. The system can be updated with latest ARM
processor and raseperry board and implement this in our
metrocities with efficient manner to save priceless human
life.
REFERENCES
[1]Varaprasad G,etal. “Flexible Routing Algorithm for
Vehicular Area Networks”, in Proc. IEEE Conference on
Intelligent Transport Systems Telecommunications, Osaka,
Japan, pp.30-38, 2010.
[2] Gokulan B.P., Srinivasan D., “Distributed Geometric
Fuzzy Multi-agent Urban Traffic Signal Control”, IEEE
Transactions on Intelligent Transportation Systems, vol.11,
no.3, pp.714-727, 2010.
[3] Kumar S., Abhilash P.G., Jyothi D.G., Varaprasad G.,
“Violation Detection Method for Vehicular Ad Hoc
Networking”, ACM/Wiley Security and Communication
Networks, 2014, DOI:10.1002/sec.427.
[4] Abdoos M., Mozayani N and Bazzan A.L.C., “Traffic
Light Control in Non- Stationary Environments based on
Multi agent Q-learning”, in Proc. IEEE Conference on
Intelligent Transportation Systems, pp.580- 1585, 2011.
[5] Ayush K.R. Mittal, Deepika Bhandari, “A Novel
Approach to Implement Green Wave system and Detection
of Stolen Vehicles”, in Proc. IEEE Conference on Advance
Computing, pp.1055-1059, 2013.
[6] Suresh Sharma, Alok Pithora, Gaurav Gupta, Mohit
Goel, Mohit Sinha, “Traffic Light Priority Control For
Emergency Vehicle Using RFID”, International Journal of
Innovations in Engineering and Technology, vol.2, no.2,
pp.363-366, 2013.

More Related Content

What's hot

IRJET- Emergency Navigation System using Mobile Computing
IRJET-  	  Emergency Navigation System using Mobile ComputingIRJET-  	  Emergency Navigation System using Mobile Computing
IRJET- Emergency Navigation System using Mobile ComputingIRJET Journal
 
Real time multimedia-signal_proccesing_using_matlab
Real time multimedia-signal_proccesing_using_matlabReal time multimedia-signal_proccesing_using_matlab
Real time multimedia-signal_proccesing_using_matlabangshumanjob
 
IRJET- Automatic Metro Train to Shuttle Between Two Stations
IRJET- Automatic Metro Train to Shuttle Between Two Stations   IRJET- Automatic Metro Train to Shuttle Between Two Stations
IRJET- Automatic Metro Train to Shuttle Between Two Stations IRJET Journal
 
Implementation of vehicle ventilation system using node mcu esp8266 for remot...
Implementation of vehicle ventilation system using node mcu esp8266 for remot...Implementation of vehicle ventilation system using node mcu esp8266 for remot...
Implementation of vehicle ventilation system using node mcu esp8266 for remot...Journal Papers
 
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...Editor IJMTER
 
Can protocol driverless train control system
Can protocol driverless train control systemCan protocol driverless train control system
Can protocol driverless train control systemeSAT Publishing House
 
Auto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between StationsAuto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between StationsMadhav Reddy Chintapalli
 
Combined IOT and Cloud Computing Solution for Railway Accident Avoidance
Combined IOT and Cloud Computing Solution for Railway Accident AvoidanceCombined IOT and Cloud Computing Solution for Railway Accident Avoidance
Combined IOT and Cloud Computing Solution for Railway Accident AvoidanceIRJET Journal
 
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...IRJET Journal
 
IRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET Journal
 
IRJET- Smart Ambulance with Traffic Control Ability
IRJET- Smart Ambulance with Traffic Control AbilityIRJET- Smart Ambulance with Traffic Control Ability
IRJET- Smart Ambulance with Traffic Control AbilityIRJET Journal
 
Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...IJCSEA Journal
 
IOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTION
IOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTIONIOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTION
IOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTIONK S RANJITH KUMAR
 
Sensor Cloud Infrastructure - Small Survey Report
Sensor Cloud Infrastructure - Small Survey ReportSensor Cloud Infrastructure - Small Survey Report
Sensor Cloud Infrastructure - Small Survey ReportVintesh Patel
 
Ijsrp apr-2012-83
Ijsrp apr-2012-83Ijsrp apr-2012-83
Ijsrp apr-2012-83abhi29513
 
Multi tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsmMulti tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsmeSAT Publishing House
 
Multi tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsmMulti tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsmeSAT Journals
 

What's hot (19)

IRJET- Emergency Navigation System using Mobile Computing
IRJET-  	  Emergency Navigation System using Mobile ComputingIRJET-  	  Emergency Navigation System using Mobile Computing
IRJET- Emergency Navigation System using Mobile Computing
 
Real time multimedia-signal_proccesing_using_matlab
Real time multimedia-signal_proccesing_using_matlabReal time multimedia-signal_proccesing_using_matlab
Real time multimedia-signal_proccesing_using_matlab
 
IRJET- Automatic Metro Train to Shuttle Between Two Stations
IRJET- Automatic Metro Train to Shuttle Between Two Stations   IRJET- Automatic Metro Train to Shuttle Between Two Stations
IRJET- Automatic Metro Train to Shuttle Between Two Stations
 
Implementation of vehicle ventilation system using node mcu esp8266 for remot...
Implementation of vehicle ventilation system using node mcu esp8266 for remot...Implementation of vehicle ventilation system using node mcu esp8266 for remot...
Implementation of vehicle ventilation system using node mcu esp8266 for remot...
 
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
 
Ijetcas14 395
Ijetcas14 395Ijetcas14 395
Ijetcas14 395
 
Can protocol driverless train control system
Can protocol driverless train control systemCan protocol driverless train control system
Can protocol driverless train control system
 
Auto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between StationsAuto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between Stations
 
Combined IOT and Cloud Computing Solution for Railway Accident Avoidance
Combined IOT and Cloud Computing Solution for Railway Accident AvoidanceCombined IOT and Cloud Computing Solution for Railway Accident Avoidance
Combined IOT and Cloud Computing Solution for Railway Accident Avoidance
 
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
IRJET- A Survey on Control of Mechanical ARM based on Hand Gesture Recognitio...
 
IRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation System
 
IRJET- Smart Ambulance with Traffic Control Ability
IRJET- Smart Ambulance with Traffic Control AbilityIRJET- Smart Ambulance with Traffic Control Ability
IRJET- Smart Ambulance with Traffic Control Ability
 
Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...Top Cited Articles International Journal of Computer Science, Engineering and...
Top Cited Articles International Journal of Computer Science, Engineering and...
 
IOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTION
IOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTIONIOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTION
IOT BASED BLACK BOX DEVICE FOR VEHICLE DETECTION
 
Sensor Cloud Infrastructure - Small Survey Report
Sensor Cloud Infrastructure - Small Survey ReportSensor Cloud Infrastructure - Small Survey Report
Sensor Cloud Infrastructure - Small Survey Report
 
Ijsrp apr-2012-83
Ijsrp apr-2012-83Ijsrp apr-2012-83
Ijsrp apr-2012-83
 
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEMSAFETY NOTIFICATION AND BUS MONITORING SYSTEM
SAFETY NOTIFICATION AND BUS MONITORING SYSTEM
 
Multi tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsmMulti tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsm
 
Multi tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsmMulti tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsm
 

Viewers also liked

Using GIS for Emergency Management - The case of the Essonne County Fire &amp...
Using GIS for Emergency Management - The case of the Essonne County Fire &amp...Using GIS for Emergency Management - The case of the Essonne County Fire &amp...
Using GIS for Emergency Management - The case of the Essonne County Fire &amp...Yann KACENELEN
 
Accident Detection and Ambulance Triggered Traffic Management Systems
Accident Detection and Ambulance Triggered Traffic Management SystemsAccident Detection and Ambulance Triggered Traffic Management Systems
Accident Detection and Ambulance Triggered Traffic Management SystemsSachin Kumar Asokan
 
Hospital management system(database)
Hospital management system(database)Hospital management system(database)
Hospital management system(database)Iftikhar Ahmad
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system projectHimani Chopra
 

Viewers also liked (6)

Using GIS for Emergency Management - The case of the Essonne County Fire &amp...
Using GIS for Emergency Management - The case of the Essonne County Fire &amp...Using GIS for Emergency Management - The case of the Essonne County Fire &amp...
Using GIS for Emergency Management - The case of the Essonne County Fire &amp...
 
Rescue Alert System Review
Rescue Alert System ReviewRescue Alert System Review
Rescue Alert System Review
 
1
11
1
 
Accident Detection and Ambulance Triggered Traffic Management Systems
Accident Detection and Ambulance Triggered Traffic Management SystemsAccident Detection and Ambulance Triggered Traffic Management Systems
Accident Detection and Ambulance Triggered Traffic Management Systems
 
Hospital management system(database)
Hospital management system(database)Hospital management system(database)
Hospital management system(database)
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
 

Similar to An enhanced method for human life rescue system

G041024547
G041024547G041024547
G041024547IOSR-JEN
 
Real time tracking based on gsm and ir module for running train
Real time tracking based on gsm and ir module for running trainReal time tracking based on gsm and ir module for running train
Real time tracking based on gsm and ir module for running traineSAT Journals
 
Vehicle density sensor system to manage traffic
Vehicle density sensor system to manage trafficVehicle density sensor system to manage traffic
Vehicle density sensor system to manage trafficeSAT Journals
 
Vehicle density sensor system to manage traffic
Vehicle density sensor system to manage trafficVehicle density sensor system to manage traffic
Vehicle density sensor system to manage trafficeSAT Publishing House
 
Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...Editor IJMTER
 
Smart Metro - Rail System
Smart Metro - Rail SystemSmart Metro - Rail System
Smart Metro - Rail SystemIJAEMSJORNAL
 
Automatic Notch Indication and Identification of Compartment in Emergency
Automatic Notch Indication and Identification of Compartment in EmergencyAutomatic Notch Indication and Identification of Compartment in Emergency
Automatic Notch Indication and Identification of Compartment in EmergencyIJERA Editor
 
IRJET- Automatic Railway Crack Locator
IRJET-	 Automatic Railway Crack LocatorIRJET-	 Automatic Railway Crack Locator
IRJET- Automatic Railway Crack LocatorIRJET Journal
 
Traffic Density Control and Accident Indicator Using WSN
Traffic Density Control and Accident Indicator Using WSNTraffic Density Control and Accident Indicator Using WSN
Traffic Density Control and Accident Indicator Using WSNIJMTST Journal
 
IRJET- Smart Accident Detection and Emergency Notification System using IoT a...
IRJET- Smart Accident Detection and Emergency Notification System using IoT a...IRJET- Smart Accident Detection and Emergency Notification System using IoT a...
IRJET- Smart Accident Detection and Emergency Notification System using IoT a...IRJET Journal
 
A new method to prevent accidents in railways using microcontroller based on
A new method to prevent accidents in railways using microcontroller based onA new method to prevent accidents in railways using microcontroller based on
A new method to prevent accidents in railways using microcontroller based onIAEME Publication
 
IRJET- Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...
IRJET-  	  Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...IRJET-  	  Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...
IRJET- Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...IRJET Journal
 
WIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLES
WIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLESWIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLES
WIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLESNiraj Rajan
 
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...Associate Professor in VSB Coimbatore
 
Intelligent traffic regulation system for roads using car two way communication
Intelligent traffic regulation system for roads using car two way communicationIntelligent traffic regulation system for roads using car two way communication
Intelligent traffic regulation system for roads using car two way communicationeSAT Publishing House
 
Congestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportationCongestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportationIAEME Publication
 
Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...
Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...
Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...IRJET Journal
 
IRJET- Automatic Detection of Crack Fault in Railway Track
IRJET- Automatic Detection of Crack Fault in Railway TrackIRJET- Automatic Detection of Crack Fault in Railway Track
IRJET- Automatic Detection of Crack Fault in Railway TrackIRJET Journal
 

Similar to An enhanced method for human life rescue system (20)

G041024547
G041024547G041024547
G041024547
 
Ck35487490
Ck35487490Ck35487490
Ck35487490
 
Real time tracking based on gsm and ir module for running train
Real time tracking based on gsm and ir module for running trainReal time tracking based on gsm and ir module for running train
Real time tracking based on gsm and ir module for running train
 
Vehicle density sensor system to manage traffic
Vehicle density sensor system to manage trafficVehicle density sensor system to manage traffic
Vehicle density sensor system to manage traffic
 
Vehicle density sensor system to manage traffic
Vehicle density sensor system to manage trafficVehicle density sensor system to manage traffic
Vehicle density sensor system to manage traffic
 
Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...
 
[IJET V2I3P3] Authors: Kavya K, Dr. Geetha C R
[IJET V2I3P3] Authors: Kavya K, Dr. Geetha C R[IJET V2I3P3] Authors: Kavya K, Dr. Geetha C R
[IJET V2I3P3] Authors: Kavya K, Dr. Geetha C R
 
Smart Metro - Rail System
Smart Metro - Rail SystemSmart Metro - Rail System
Smart Metro - Rail System
 
Automatic Notch Indication and Identification of Compartment in Emergency
Automatic Notch Indication and Identification of Compartment in EmergencyAutomatic Notch Indication and Identification of Compartment in Emergency
Automatic Notch Indication and Identification of Compartment in Emergency
 
IRJET- Automatic Railway Crack Locator
IRJET-	 Automatic Railway Crack LocatorIRJET-	 Automatic Railway Crack Locator
IRJET- Automatic Railway Crack Locator
 
Traffic Density Control and Accident Indicator Using WSN
Traffic Density Control and Accident Indicator Using WSNTraffic Density Control and Accident Indicator Using WSN
Traffic Density Control and Accident Indicator Using WSN
 
IRJET- Smart Accident Detection and Emergency Notification System using IoT a...
IRJET- Smart Accident Detection and Emergency Notification System using IoT a...IRJET- Smart Accident Detection and Emergency Notification System using IoT a...
IRJET- Smart Accident Detection and Emergency Notification System using IoT a...
 
A new method to prevent accidents in railways using microcontroller based on
A new method to prevent accidents in railways using microcontroller based onA new method to prevent accidents in railways using microcontroller based on
A new method to prevent accidents in railways using microcontroller based on
 
IRJET- Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...
IRJET-  	  Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...IRJET-  	  Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...
IRJET- Iot Based Automatic Vehicle Accident Tracking Down and Salvage Sys...
 
WIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLES
WIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLESWIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLES
WIRELESS BLACK BOX REPORT FOR TRACKING OF ACCIDENTAL MONITORING IN VEHICLES
 
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
 
Intelligent traffic regulation system for roads using car two way communication
Intelligent traffic regulation system for roads using car two way communicationIntelligent traffic regulation system for roads using car two way communication
Intelligent traffic regulation system for roads using car two way communication
 
Congestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportationCongestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportation
 
Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...
Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...
Wireless Smart Traffic Control System based on Vehicle density in Traffic Lan...
 
IRJET- Automatic Detection of Crack Fault in Railway Track
IRJET- Automatic Detection of Crack Fault in Railway TrackIRJET- Automatic Detection of Crack Fault in Railway Track
IRJET- Automatic Detection of Crack Fault in Railway Track
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 

Recently uploaded (20)

Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 

An enhanced method for human life rescue system

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 262 AN ENHANCED METHOD FOR HUMAN LIFE RESCUE SYSTEM K. Arunkumar Associate Professor, Department of ECE, Jeppiaar Institute of Technology, Tamil Nadu, India Abstract In the Modern World, Traffic is one of the main problem in our daily life. During Emergency conditions Vehicles like Ambulances and Fire Controllers are delayed to reach their destination due to the Traffic Jams. Every one minute there will be an accident in India, which causes loss of lives. This is a wireless module system which generates information from the accident zone to the ambulance facility very quickly. Traffic blocking and management of free movement of vehicles were recognized as major problem in modern urban areas. The accidents in the city have been increased due to negligible of rules and rise in motor vehicles leads to the loss of life. The main idea behind this system is to endow with a flow for the rescue vehicles to reach the hospitals in moment. The novelty in this paper is to manage the traffic signals in the alleyway of the rescue vehicle. This scheme is fully programmed, thus it finds the accident point, to be in command of traffic lights, helps to reach the hospital in instance. Keywords: SMAC, HLRS, etc --------------------------------------------------------------------***---------------------------------------------------------------------- 1. INTRODUCTION This Paper focuses on the safety of the human lives at the time of accidents using Tri-axial Micro-Electro Mechanical Systems (MEMS) and to intimate the nearest receiving ambulance facility by sending the Global Positioning System (GPS) reading of the vehicle through Sensor Medium Access Control (SMAC) Protocol. This paper makes use of a sensor to detect the condition of the patient and to transfer it to the nearest hospital zone and to monitor the patient condition. The traffic congestion is a major problem in modern urban areas, which cause disturbance to Ambulance and this is overcome by using RF transmitter and receiver to terminate the traffic signal and to ensure a tidal flow. This paper introduces a scheme called Human Life Rescue System (HLRS) to solve the problem faced by the rescue vehicle to reach the destination in moment. The idea behind this scheme is to control the traffic lights in the path of the ambulance. This is fully automated, thus it finds the accident spot, controls the traffic lights, helping to reach the hospital in time. 2. LITERATURE REVIEW 2.1 Existing system In the earlier paper Global System for Mobile communication (GSM) module was used but using this module may cause delay while sending the information from the accident zone due to network problems. Vibration Sensors are used but this may not be much effective. The PIC16F874A Microcontroller is preferred in this system and it produce more heat and also expensive than other Microcontrollers. 2.2 Proposed system In the proposed system the microcontroller AT89S52 is used and it is a CMOS 8-bit microcontroller. MEMS incorporate miniature electro-mechanical components fabricated with processing techniques. MEMS decrease the cost and increase the reliability. SMAC is used for sending the information and the transmission speed is high. 2.3 Vehicle section Fig 1. Block diagram of Vehicle Section In the Vehicle section Tri-axial MEMS is used to detect the variation in the range and sends to the microcontroller. Then the microcontroller reads the GPS value using Global Positioning System and sends the GPS reading to the Ambulance section through the SMAC. SMAC is used for the transmitting and receiving the message using encoder and decoder concept. SMAC is used to Reduce Energy Consumption due to Overhearing, Collision and support Self-Configuration. SMAC is used for Fast Transmission and Multi Node Transmission 2.4 Ambulance section
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 263 Fig 2 : Ambulance Section Block diagram In the Ambulance section, the message from the vehicle section is received via SMAC and the motor runs. Radio Frequency (RF) transmitter in this section is used to transmit the signal to the RF receiver. Heart Beat sensor is used to detect the heart beat of the patient. 2.5 Hospital section Fig 3: Hospital section Block diagram In the hospital side an UART, Universal Asynchronous Receiver / Transmitter is used to convert the signal into serial information from parallel ie sent on a communication line. The information gone for several process and the required things send to personal computer in the receiver side. The Personal Computer (PC) is used for displaying the GPS reading of the vehicle and the heart beat value. 2.6 Signal section Fig 4 : Signal section Block diagram Radio Frequency (RF) acts in the range as high of 300GHz to low as 3KHZ. In this paper the frequency used in the range of 430MHZ to 440MHZ.The signal can be send to microcontroller through wireless transmission which incorporated the signal to same frequency used in traffic lights and turn on green for the rescue vehicle path and other direction it switch on to red to stall the vehicular movement. 3. PROGRAM #include <REGX51.H> sbit rs=P3^2; sbit rw=P3^3; sbit en=P3^4; sfr datas=0xA0; void lcdinit(void); void lcddata(unsigned char ldat); void del1(); void sms1(); void sendd(); int amount,cost,fl,fl1; void INITLCD() { lcdinit(); } void COMMAND(unsigned char val) { lcdcmd(val); } void DISPLAY(unsigned char val) { lcddata(val); } void lcdinit(void) { lcdcmd(0x38); lcdcmd(0x38); lcdcmd(0x38); lcdcmd(0x06); lcdcmd(0x0e); lcdcmd(0x01); void lcdcmd(unsigned char lcmd) {
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 264 datas=lcmd; rs=0; rw=0; en=1; delay(100); en=0; } void delay(unsigned int del) { while(del--); } void lcddata(unsigned char ldat) { datas=ldat; rs=1; rw=0; en=1; delay(100); en=0; } char flags=0; char flagt=0; char kval=0; char flagr=0; int recharge=0; char flagtick=0; unsigned char keypad(); void disp(unsigned char dat) { DISPLAY(dat); } else int value,ps,ct,fg,c1,c2; long ct1,ct2,i; char val,j; void main() { SCON=0x50; TMOD=0x20; TH1=0xfd; TR1=1; INITLCD(); lcdcmd(0x80); putchar("Traffic System ",16); while(1) { while(RI==0) { delay(5); while((P0&0x0F)==0x0A); lcdcmd(0x80);
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 05 Issue: 01 | Jan-2016, Available @ http://www.ijret.org 265 4. RESULT Fig 5. Hardware section Fig:6. Hardware part Connected with Computer The human life rescue system working in a efficient manner than the previous system. 5. CONCLUSION and FUTURE SCOPE In this paper I have developed a new product using micro controller projecting an advance technology in controlling both the traffic signals and the ambulances/fire service during an emergency. The Human Life Rescue System (HLRS) can be used in major metro cities and second level cities of urban India which are more populated. The analysis proves that HLRS surpass the existing manually operated system. The system can be updated with latest ARM processor and raseperry board and implement this in our metrocities with efficient manner to save priceless human life. REFERENCES [1]Varaprasad G,etal. “Flexible Routing Algorithm for Vehicular Area Networks”, in Proc. IEEE Conference on Intelligent Transport Systems Telecommunications, Osaka, Japan, pp.30-38, 2010. [2] Gokulan B.P., Srinivasan D., “Distributed Geometric Fuzzy Multi-agent Urban Traffic Signal Control”, IEEE Transactions on Intelligent Transportation Systems, vol.11, no.3, pp.714-727, 2010. [3] Kumar S., Abhilash P.G., Jyothi D.G., Varaprasad G., “Violation Detection Method for Vehicular Ad Hoc Networking”, ACM/Wiley Security and Communication Networks, 2014, DOI:10.1002/sec.427. [4] Abdoos M., Mozayani N and Bazzan A.L.C., “Traffic Light Control in Non- Stationary Environments based on Multi agent Q-learning”, in Proc. IEEE Conference on Intelligent Transportation Systems, pp.580- 1585, 2011. [5] Ayush K.R. Mittal, Deepika Bhandari, “A Novel Approach to Implement Green Wave system and Detection of Stolen Vehicles”, in Proc. IEEE Conference on Advance Computing, pp.1055-1059, 2013. [6] Suresh Sharma, Alok Pithora, Gaurav Gupta, Mohit Goel, Mohit Sinha, “Traffic Light Priority Control For Emergency Vehicle Using RFID”, International Journal of Innovations in Engineering and Technology, vol.2, no.2, pp.363-366, 2013.