SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 943
Implementation of Ideal Stop and Go Deactivation Logic for
Passenger Vehicle
Swathi1, Dinesha P2
1,2Department of Electronics and Communication, Dayananda Sagar College of Engineering,Bengaluru-560078
----------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Global warming and pollution are on the rise. The
emission of CO2 is one of the main reasons for it. Of the total
CO2 emissions, the transportation sector contributes to about
14%. The emission of the CO2 does not happen only when the
car is running, but also when the car is in a standstill (the
engine idles). There was a need to implement a system that
would stop the engine of the vehicle when it is not running
hence reducing emissions. Start - Stop feature (ISG or “Idle
Stop and Go”) shuts off the engine when the engine idles while
the vehicle is at standstill (like, at a traffic). However, since
this feature is engine critical, it is of prime importance to
design a safety mechanism to deal with system faults. This
paper focuses on implementation of start-stop feature with
robust deactivation logic. This is done by considering various
inputs from the brake, body and interior devices, electrical
supply system, and other vehicular systems as well as
analyzing all possible error cases. The software developed in
Embedded C is flashed into the engine control unit (ECU) via
the controller area network (CAN) bus and was simulated in
the LABCAR to get results.
Key Words: Ideal Stop and Go, Engine control unit,
Controller area network, Embedded C, LABCAR
1. INTRODUCTION
For the increasing air pollution and global warming issue
nowadays, it seems urgent to develop a new generation of
automotive with low fuel consumption and emission. This
can be achieved by using the vehicleswithstart-stopfeature.
The start-stop technology savefuel byshuttingoffthe engine
when the vehicle is at a stop, such as traffic light and restart
engine instantly when the driver accelerates the vehicle to
proceed [1]. The start-stop technology helps to both the
vehicle manufacturer aswell asthevehicleowner.According
to available data, the fuel benefitofstartandstopapplication
is 4–6%.
The development ofvehicles withcombustionengine,hybrid
vehicles or electrical vehicles leads to an increasing
complexity of the power train. In engine start-stop control
strategy in series-parallel hybridsystemisdiscussed[2]. The
technology helps to reduce emissions to achieve stringent
emission norm. The efficacious idle start stop system, which
uses mild hybrid technology and intelligent traffic control
algorithm, is discussed [3]. Several small electric vehicles
have been developed with various features such as
autonomous obstacle avoidance systems [4-5]. These
technological developments are focused on several features,
however not concerned with energy source and efficiency.
In this paper we are implemented the deactivation logic for
start-stop featured passenger vehicle using LABCAR model.
2. BLOCK DIAGRAM
Figure 1 shows that systemarchitectureofstart-stopsystem.
Start-stop system architecture shows several systems
within the car send release and request signals that
determine the state of working.
ISG implementation requires a Start/ stopcoordinatoralong
with several inputs that decide the state of the coordinator.
The start-stop coordinator module is the main part of the
system and has interfaces with several systemslikethermal,
electrical supply, brake, body interior, gear, human machine
interface and engine systems.
Fig-1: System architecture of start-stop system
Engine coordinator – Engine coordinator provides the
current and previous states of the engine and monitors the
start and stop states as well as the engine speed signal.
Various states like the standby, ready, starting, auto stop,
running stopping and finish are distinguished. Sometimes
the engine will be stalled due to an unsuccessful attempt to
start or due to start / stop functionalityorsomedrivererror.
Body and interior devices - In this component door status
signal and seat belt status signal are acquired via CAN
interface
Thermal system - This component coordinates the
demands to the thermal system. It provides the desired
relative air mass flow to the engine compartment originated
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 944
by the powertrain and the coolant temperatureofthepower
terminated by the powertrain.
Brake system - This provides the brake status. There are
three different states, which are considered: brake pressing,
brake pressed and brake releasing.
While performing analysis for determining the set of all
system faults that affect ISG in order to determine what are
the possible error cases that lead to ISG deactivation, the
inputs from all the above-mentioned systems have to be
considered.
3. System Design and Implementation for ISG
The requirement for starting or stopping of the engine is
generated depending on different conditions that we
consider. Primarily, a start / stop request has to be
generated. Once there is a request, the coordinator checks
whether all other systems affected canreleasethegenerated
request in order to go for a start / stop order. Requests and
releases might be driver related, system relatedor relatedto
other parameters.
Fig-2: State diagram of ISG
The Figure 2 shows the state machine within the start – stop
coordinator. It consists of 5 states, namely:
1. Init: The initialization state represents thatISGisinactive.
This state is indicative of the presence of system faults
(leading to state machine reset) or ignition not being ON or
ISG being deactivated by the driver.
2. Standby: In this state, the coordinator expects to receive
an ISG Start order or waits for the driver to crank the engine
(in case first start has not happened).
3. Start (Transient): It is the equivalentofcrankingphase of
the engine. The coordinator monitors for engine cranking
failures as well.
4. Operation: The combustion engine is operational andthe
ISG Coordinator waits for a stop order to stop the engine
when needed.
5. Stop (Transient): It reflects the engine-stopping phase.
The coordinator essentially looks for change of mind
triggers.
Change of mind means that there is a sudden Start
request during engine stopping phase. The engine cannot
start suddenly during every stopping phase.Forthis,there is
change of mind threshold speed figure3showsthechangeof
mind when engine speed is greater than threshold speed.
If there is a start request before the engine speed goes
below the threshold, then it immediately switches to start
phase. Figure 4 shows the change of mind when engine
speed is less than threshold speed
Fig-3: Change of mind when Engine Speed > Threshold
However, if it is below threshold speed, then the engine first
completes the stop (Reaches zero rpm) and then starts from
there.
Fig-4: Change of mind when Engine Speed < Threshold
4. DEACTIVATION LOGIC
For designing robust deactivation logic for the ISG system, it
is necessary to identify all thepossibleerrorcases,bothfrom
a system perspective as well asISGfunctionalityperspective.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 945
The best way to compile a list of all the faults is by looking
into all the interfaces that act as inputs to the coordinator as
well as considering all the system related faults that affect
ISG functionality directly or indirectly. Further, these faults
are classified based on the transmission type. Hence, there
are AT Faults, MT faults and Common faults (which affect
automatic and manual transmission systems alike).Figure.5
shows the deactivation logic block diagram. The presence of
a fault resets the State machine as well as indicates to the
driver about ISG deactivated status via the display cluster.
This ensures that necessary actions can be taken.
Fig-5: Deactivation logic
5. METHOD OF TESTING
As per the V – Model, different test methods are used in each
level to validate the design.
Testing in Lab car: Lab car is a compact real time testing
system for automotive embedded control units. It contain
electrical loads to simulate different types of loads in a
vehicle
Closed loop systems: Closed Loop systems are used for
Hardware in the Loop Testing, it is also called LCPT (Closed
Loop Power Train). It consists of a LABCAR, ECU and testPC.
It differs from open loop systems in the sense that there is
feedback from the systems is shown in Figure 6
Fig 6.Closed Loop Testing
In closed loop testing system, Software is generated using
ASCET and ECU is flashed with Hex and A2L generated by
software build using INCA tool. The ECU is also connected to
a break out box that can be used to tap the ECU signals to
take measurements. INCA tools are used for development of
ECU and testing the ECU
6. SIMULATION RESULTS
If there are no faults in the vehicle, ISG will be activated. If
any fault occurs then ISG will be deactivated. The figure 7
shows the presence of a starter relay countererror.Ifstarter
relay counter value exceeds the counter threshold, then
starter counter error will set. ISG Deactivation occurs and
this message is conveyed to the driver via Inhibition or fault
display signal, which is transmitted to the display panel via
CAN.
Fig-7: Simulation result
7. CONCLUSION
The design of deactivation logic is completely met by taking
into consideration of all possible fault or error cases with
respect to ISG system. Different categories of faults were
analyzed. Some of which are engine relevant, driver
detection, hardware dependent faults and transmission
relevant. If any fault occurs then ISG will be deactivated and
this message is conveyed to the driver via inhibition or fault
display signal, which is transmitted to the display via CAN.
The software developed in embedded C was flashed into the
ECU via the CAN bus and was simulated intheLABCARtoget
the results.
In this paper we are implemented a deactivation logic in a
start-stop featured vehicle. The deactivation logic is
designed using ASCET tool and simulated the through
LABCAR, if any fault occurred in the vehicle then ISG will be
deactivated and displayed to driver through LED.
REFERENCES
[1] Maria Vittoria Prati and Maria Antonietta Costagliola
Istituto Motor ”Idling Vehicle Emissions and Fuel
Consumption in Urban Use: Influence of the
Stop&Start Technology”, IEEE conference of national
research council Italy pp.978-1--5186 , 2018
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 946
[2] Wang Hongyu, QiaoYunqian,Fang Yong and Yuwen
Zhiqiang,“Study on Engine Start-StopControl Strategy
for Series-Parallel Hybrid Vehicle” , International
Conference on Mechatronics and Automation vol.15
pp.978—7098 August 2015
[3] M.S.Aarathy, S.Abinaya “Efficacious Idle-Stop System
in Automobiles using Intelligent Traffic Control
Algorithm”, IEEE Conference on Control, Automation
and Systems vol.2 2013
[4] R. Hayashi, J. Isogai, S. Fujita, P. Raksincharoensak,
"Development of autonomous forward obstacle
avoidance system by using in-whee I-motor and
steering control of micro electric vehicle",
Transactions of Society of Automotive Engineers of
Japan, vo1.42, no.l, pp.87-93 2011.
[5] M. Sato, T. Tomizawa, S. Kudoh, and T. Suehiro,
"Development of Danger Avoidance Assist System for
Electric Cart," Journal of Robotics and Mechatronics,
vo1.25, No.6, pp.l011-1019 2013

More Related Content

What's hot

Review Report on SOC on Various Platforms for Vehicles
Review Report on SOC on Various Platforms for VehiclesReview Report on SOC on Various Platforms for Vehicles
Review Report on SOC on Various Platforms for Vehicles
IRJET Journal
 
IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...
IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...
IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...
IRJET Journal
 
Abb technical guide no.10 revd
Abb technical guide no.10 revdAbb technical guide no.10 revd
Abb technical guide no.10 revd
Cesar Enrique Gutierrez Candia
 
Electromagnetic Braking System using Ultrasonic Sensor
Electromagnetic Braking System using Ultrasonic SensorElectromagnetic Braking System using Ultrasonic Sensor
Electromagnetic Braking System using Ultrasonic Sensor
AI Publications
 
Automotive motor control system the brain behind the brushless dc motors in a...
Automotive motor control system the brain behind the brushless dc motors in a...Automotive motor control system the brain behind the brushless dc motors in a...
Automotive motor control system the brain behind the brushless dc motors in a...
Embitel Technologies (I) PVT LTD
 
Health Monitoring of Industrial and Electrical Equipment
Health Monitoring of Industrial and Electrical EquipmentHealth Monitoring of Industrial and Electrical Equipment
Health Monitoring of Industrial and Electrical Equipment
MAJAHARUL IMAM
 
IRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo MotorsIRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo Motors
IRJET Journal
 
Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...
Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...
Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...
IAES-IJPEDS
 
Automatic clutch & braking system
Automatic clutch & braking systemAutomatic clutch & braking system
Automatic clutch & braking system
ecwayerode
 
Design and development of matlab gui based fuzzy logic controllers for ac motor
Design and development of matlab gui based fuzzy logic controllers for ac motorDesign and development of matlab gui based fuzzy logic controllers for ac motor
Design and development of matlab gui based fuzzy logic controllers for ac motorIAEME Publication
 
IRJET- Review: Different Techniques of Speed Control of DC Motor
IRJET-  	  Review: Different Techniques of Speed Control of DC MotorIRJET-  	  Review: Different Techniques of Speed Control of DC Motor
IRJET- Review: Different Techniques of Speed Control of DC Motor
IRJET Journal
 
Webinar presentation on AUTOSAR Multicore Systems
Webinar presentation on AUTOSAR Multicore SystemsWebinar presentation on AUTOSAR Multicore Systems
Webinar presentation on AUTOSAR Multicore Systems
KPIT
 

What's hot (12)

Review Report on SOC on Various Platforms for Vehicles
Review Report on SOC on Various Platforms for VehiclesReview Report on SOC on Various Platforms for Vehicles
Review Report on SOC on Various Platforms for Vehicles
 
IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...
IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...
IRJET- Vibration Analysis and Optimization of Housing for ECU in Automobile u...
 
Abb technical guide no.10 revd
Abb technical guide no.10 revdAbb technical guide no.10 revd
Abb technical guide no.10 revd
 
Electromagnetic Braking System using Ultrasonic Sensor
Electromagnetic Braking System using Ultrasonic SensorElectromagnetic Braking System using Ultrasonic Sensor
Electromagnetic Braking System using Ultrasonic Sensor
 
Automotive motor control system the brain behind the brushless dc motors in a...
Automotive motor control system the brain behind the brushless dc motors in a...Automotive motor control system the brain behind the brushless dc motors in a...
Automotive motor control system the brain behind the brushless dc motors in a...
 
Health Monitoring of Industrial and Electrical Equipment
Health Monitoring of Industrial and Electrical EquipmentHealth Monitoring of Industrial and Electrical Equipment
Health Monitoring of Industrial and Electrical Equipment
 
IRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo MotorsIRJET- Design and Fabrication of Steering System using Servo Motors
IRJET- Design and Fabrication of Steering System using Servo Motors
 
Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...
Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...
Comparison Analysis of Indirect FOC Induction Motor Drive using PI, Anti-Wind...
 
Automatic clutch & braking system
Automatic clutch & braking systemAutomatic clutch & braking system
Automatic clutch & braking system
 
Design and development of matlab gui based fuzzy logic controllers for ac motor
Design and development of matlab gui based fuzzy logic controllers for ac motorDesign and development of matlab gui based fuzzy logic controllers for ac motor
Design and development of matlab gui based fuzzy logic controllers for ac motor
 
IRJET- Review: Different Techniques of Speed Control of DC Motor
IRJET-  	  Review: Different Techniques of Speed Control of DC MotorIRJET-  	  Review: Different Techniques of Speed Control of DC Motor
IRJET- Review: Different Techniques of Speed Control of DC Motor
 
Webinar presentation on AUTOSAR Multicore Systems
Webinar presentation on AUTOSAR Multicore SystemsWebinar presentation on AUTOSAR Multicore Systems
Webinar presentation on AUTOSAR Multicore Systems
 

Similar to IRJET- Implementation of Ideal Stop and Go Deactivation Logic for Passenger Vehicle

Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
IRJET Journal
 
IRJET - Advanced Charging Station for Electric Vehicles
 IRJET - Advanced Charging Station for Electric Vehicles IRJET - Advanced Charging Station for Electric Vehicles
IRJET - Advanced Charging Station for Electric Vehicles
IRJET Journal
 
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
IRJET-  	  Design & Development of Two-Wheeled Self Balancing RobotIRJET-  	  Design & Development of Two-Wheeled Self Balancing Robot
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
IRJET Journal
 
IRJET- Modelling and Control of Variable Frequency Drive using PLC and Ma...
IRJET-  	  Modelling and Control of Variable Frequency Drive using PLC and Ma...IRJET-  	  Modelling and Control of Variable Frequency Drive using PLC and Ma...
IRJET- Modelling and Control of Variable Frequency Drive using PLC and Ma...
IRJET Journal
 
IRJET- Analysis of Emission Data by using Testbed for Euro VI Norms
IRJET- Analysis of Emission Data by using Testbed for Euro VI NormsIRJET- Analysis of Emission Data by using Testbed for Euro VI Norms
IRJET- Analysis of Emission Data by using Testbed for Euro VI Norms
IRJET Journal
 
IRJET- Portable Automated Test System for Automotive Industry
IRJET- Portable Automated Test System for Automotive IndustryIRJET- Portable Automated Test System for Automotive Industry
IRJET- Portable Automated Test System for Automotive Industry
IRJET Journal
 
IRJET - Design of EV with Fault Detection and Monitoring in Low Voltage S...
IRJET -  	  Design of EV with Fault Detection and Monitoring in Low Voltage S...IRJET -  	  Design of EV with Fault Detection and Monitoring in Low Voltage S...
IRJET - Design of EV with Fault Detection and Monitoring in Low Voltage S...
IRJET Journal
 
Smart vehicle and smart signboard system with zonal speed regulation
Smart vehicle and smart signboard system with zonal speed regulationSmart vehicle and smart signboard system with zonal speed regulation
Smart vehicle and smart signboard system with zonal speed regulation
IAEME Publication
 
IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...
IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...
IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...
IRJET Journal
 
IRJET- Design and Implementation of High Speed FPGA Configuration using SBI
IRJET- Design and Implementation of High Speed FPGA Configuration using SBIIRJET- Design and Implementation of High Speed FPGA Configuration using SBI
IRJET- Design and Implementation of High Speed FPGA Configuration using SBI
IRJET Journal
 
IRJET- Design and Fabrication of a Self Balancing Mono Wheel Vehicle
IRJET- Design and Fabrication of a Self Balancing Mono Wheel VehicleIRJET- Design and Fabrication of a Self Balancing Mono Wheel Vehicle
IRJET- Design and Fabrication of a Self Balancing Mono Wheel Vehicle
IRJET Journal
 
IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...
IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...
IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...
IRJET Journal
 
IRJET- AC Motor Fault Analyser by Characteristic Analysis
IRJET-  	  AC Motor Fault Analyser by Characteristic AnalysisIRJET-  	  AC Motor Fault Analyser by Characteristic Analysis
IRJET- AC Motor Fault Analyser by Characteristic Analysis
IRJET Journal
 
Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...
IAEME Publication
 
Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...
IAEME Publication
 
Can Protocol based Vehicle Brake Control System at Slope
Can Protocol based Vehicle Brake Control System at SlopeCan Protocol based Vehicle Brake Control System at Slope
Can Protocol based Vehicle Brake Control System at Slope
IRJET Journal
 
Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...
IRJET Journal
 
IRJET- Automated Gear Transmission in Two Wheelers using Embedded System
IRJET- Automated Gear Transmission in Two Wheelers using Embedded SystemIRJET- Automated Gear Transmission in Two Wheelers using Embedded System
IRJET- Automated Gear Transmission in Two Wheelers using Embedded System
IRJET Journal
 
IRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for SkyscrapersIRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for Skyscrapers
IRJET Journal
 
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET Journal
 

Similar to IRJET- Implementation of Ideal Stop and Go Deactivation Logic for Passenger Vehicle (20)

Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
 
IRJET - Advanced Charging Station for Electric Vehicles
 IRJET - Advanced Charging Station for Electric Vehicles IRJET - Advanced Charging Station for Electric Vehicles
IRJET - Advanced Charging Station for Electric Vehicles
 
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
IRJET-  	  Design & Development of Two-Wheeled Self Balancing RobotIRJET-  	  Design & Development of Two-Wheeled Self Balancing Robot
IRJET- Design & Development of Two-Wheeled Self Balancing Robot
 
IRJET- Modelling and Control of Variable Frequency Drive using PLC and Ma...
IRJET-  	  Modelling and Control of Variable Frequency Drive using PLC and Ma...IRJET-  	  Modelling and Control of Variable Frequency Drive using PLC and Ma...
IRJET- Modelling and Control of Variable Frequency Drive using PLC and Ma...
 
IRJET- Analysis of Emission Data by using Testbed for Euro VI Norms
IRJET- Analysis of Emission Data by using Testbed for Euro VI NormsIRJET- Analysis of Emission Data by using Testbed for Euro VI Norms
IRJET- Analysis of Emission Data by using Testbed for Euro VI Norms
 
IRJET- Portable Automated Test System for Automotive Industry
IRJET- Portable Automated Test System for Automotive IndustryIRJET- Portable Automated Test System for Automotive Industry
IRJET- Portable Automated Test System for Automotive Industry
 
IRJET - Design of EV with Fault Detection and Monitoring in Low Voltage S...
IRJET -  	  Design of EV with Fault Detection and Monitoring in Low Voltage S...IRJET -  	  Design of EV with Fault Detection and Monitoring in Low Voltage S...
IRJET - Design of EV with Fault Detection and Monitoring in Low Voltage S...
 
Smart vehicle and smart signboard system with zonal speed regulation
Smart vehicle and smart signboard system with zonal speed regulationSmart vehicle and smart signboard system with zonal speed regulation
Smart vehicle and smart signboard system with zonal speed regulation
 
IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...
IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...
IRJET- Speed Control of Induction Motors using Proposed Closed Loop V/F Contr...
 
IRJET- Design and Implementation of High Speed FPGA Configuration using SBI
IRJET- Design and Implementation of High Speed FPGA Configuration using SBIIRJET- Design and Implementation of High Speed FPGA Configuration using SBI
IRJET- Design and Implementation of High Speed FPGA Configuration using SBI
 
IRJET- Design and Fabrication of a Self Balancing Mono Wheel Vehicle
IRJET- Design and Fabrication of a Self Balancing Mono Wheel VehicleIRJET- Design and Fabrication of a Self Balancing Mono Wheel Vehicle
IRJET- Design and Fabrication of a Self Balancing Mono Wheel Vehicle
 
IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...
IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...
IoT Based Project for Submersible Motor controlling , monitoring, & Updating ...
 
IRJET- AC Motor Fault Analyser by Characteristic Analysis
IRJET-  	  AC Motor Fault Analyser by Characteristic AnalysisIRJET-  	  AC Motor Fault Analyser by Characteristic Analysis
IRJET- AC Motor Fault Analyser by Characteristic Analysis
 
Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...
 
Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...Design and development of 4 cylinder gasoline engine model for the verificati...
Design and development of 4 cylinder gasoline engine model for the verificati...
 
Can Protocol based Vehicle Brake Control System at Slope
Can Protocol based Vehicle Brake Control System at SlopeCan Protocol based Vehicle Brake Control System at Slope
Can Protocol based Vehicle Brake Control System at Slope
 
Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...Automation of Instrument Air Distribution System using Arduino and Integrate ...
Automation of Instrument Air Distribution System using Arduino and Integrate ...
 
IRJET- Automated Gear Transmission in Two Wheelers using Embedded System
IRJET- Automated Gear Transmission in Two Wheelers using Embedded SystemIRJET- Automated Gear Transmission in Two Wheelers using Embedded System
IRJET- Automated Gear Transmission in Two Wheelers using Embedded System
 
IRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for SkyscrapersIRJET- Smart Wiper System for Skyscrapers
IRJET- Smart Wiper System for Skyscrapers
 
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
symbo111
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
gestioneergodomus
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
aqil azizi
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 

Recently uploaded (20)

Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 

IRJET- Implementation of Ideal Stop and Go Deactivation Logic for Passenger Vehicle

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 943 Implementation of Ideal Stop and Go Deactivation Logic for Passenger Vehicle Swathi1, Dinesha P2 1,2Department of Electronics and Communication, Dayananda Sagar College of Engineering,Bengaluru-560078 ----------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Global warming and pollution are on the rise. The emission of CO2 is one of the main reasons for it. Of the total CO2 emissions, the transportation sector contributes to about 14%. The emission of the CO2 does not happen only when the car is running, but also when the car is in a standstill (the engine idles). There was a need to implement a system that would stop the engine of the vehicle when it is not running hence reducing emissions. Start - Stop feature (ISG or “Idle Stop and Go”) shuts off the engine when the engine idles while the vehicle is at standstill (like, at a traffic). However, since this feature is engine critical, it is of prime importance to design a safety mechanism to deal with system faults. This paper focuses on implementation of start-stop feature with robust deactivation logic. This is done by considering various inputs from the brake, body and interior devices, electrical supply system, and other vehicular systems as well as analyzing all possible error cases. The software developed in Embedded C is flashed into the engine control unit (ECU) via the controller area network (CAN) bus and was simulated in the LABCAR to get results. Key Words: Ideal Stop and Go, Engine control unit, Controller area network, Embedded C, LABCAR 1. INTRODUCTION For the increasing air pollution and global warming issue nowadays, it seems urgent to develop a new generation of automotive with low fuel consumption and emission. This can be achieved by using the vehicleswithstart-stopfeature. The start-stop technology savefuel byshuttingoffthe engine when the vehicle is at a stop, such as traffic light and restart engine instantly when the driver accelerates the vehicle to proceed [1]. The start-stop technology helps to both the vehicle manufacturer aswell asthevehicleowner.According to available data, the fuel benefitofstartandstopapplication is 4–6%. The development ofvehicles withcombustionengine,hybrid vehicles or electrical vehicles leads to an increasing complexity of the power train. In engine start-stop control strategy in series-parallel hybridsystemisdiscussed[2]. The technology helps to reduce emissions to achieve stringent emission norm. The efficacious idle start stop system, which uses mild hybrid technology and intelligent traffic control algorithm, is discussed [3]. Several small electric vehicles have been developed with various features such as autonomous obstacle avoidance systems [4-5]. These technological developments are focused on several features, however not concerned with energy source and efficiency. In this paper we are implemented the deactivation logic for start-stop featured passenger vehicle using LABCAR model. 2. BLOCK DIAGRAM Figure 1 shows that systemarchitectureofstart-stopsystem. Start-stop system architecture shows several systems within the car send release and request signals that determine the state of working. ISG implementation requires a Start/ stopcoordinatoralong with several inputs that decide the state of the coordinator. The start-stop coordinator module is the main part of the system and has interfaces with several systemslikethermal, electrical supply, brake, body interior, gear, human machine interface and engine systems. Fig-1: System architecture of start-stop system Engine coordinator – Engine coordinator provides the current and previous states of the engine and monitors the start and stop states as well as the engine speed signal. Various states like the standby, ready, starting, auto stop, running stopping and finish are distinguished. Sometimes the engine will be stalled due to an unsuccessful attempt to start or due to start / stop functionalityorsomedrivererror. Body and interior devices - In this component door status signal and seat belt status signal are acquired via CAN interface Thermal system - This component coordinates the demands to the thermal system. It provides the desired relative air mass flow to the engine compartment originated
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 944 by the powertrain and the coolant temperatureofthepower terminated by the powertrain. Brake system - This provides the brake status. There are three different states, which are considered: brake pressing, brake pressed and brake releasing. While performing analysis for determining the set of all system faults that affect ISG in order to determine what are the possible error cases that lead to ISG deactivation, the inputs from all the above-mentioned systems have to be considered. 3. System Design and Implementation for ISG The requirement for starting or stopping of the engine is generated depending on different conditions that we consider. Primarily, a start / stop request has to be generated. Once there is a request, the coordinator checks whether all other systems affected canreleasethegenerated request in order to go for a start / stop order. Requests and releases might be driver related, system relatedor relatedto other parameters. Fig-2: State diagram of ISG The Figure 2 shows the state machine within the start – stop coordinator. It consists of 5 states, namely: 1. Init: The initialization state represents thatISGisinactive. This state is indicative of the presence of system faults (leading to state machine reset) or ignition not being ON or ISG being deactivated by the driver. 2. Standby: In this state, the coordinator expects to receive an ISG Start order or waits for the driver to crank the engine (in case first start has not happened). 3. Start (Transient): It is the equivalentofcrankingphase of the engine. The coordinator monitors for engine cranking failures as well. 4. Operation: The combustion engine is operational andthe ISG Coordinator waits for a stop order to stop the engine when needed. 5. Stop (Transient): It reflects the engine-stopping phase. The coordinator essentially looks for change of mind triggers. Change of mind means that there is a sudden Start request during engine stopping phase. The engine cannot start suddenly during every stopping phase.Forthis,there is change of mind threshold speed figure3showsthechangeof mind when engine speed is greater than threshold speed. If there is a start request before the engine speed goes below the threshold, then it immediately switches to start phase. Figure 4 shows the change of mind when engine speed is less than threshold speed Fig-3: Change of mind when Engine Speed > Threshold However, if it is below threshold speed, then the engine first completes the stop (Reaches zero rpm) and then starts from there. Fig-4: Change of mind when Engine Speed < Threshold 4. DEACTIVATION LOGIC For designing robust deactivation logic for the ISG system, it is necessary to identify all thepossibleerrorcases,bothfrom a system perspective as well asISGfunctionalityperspective.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 945 The best way to compile a list of all the faults is by looking into all the interfaces that act as inputs to the coordinator as well as considering all the system related faults that affect ISG functionality directly or indirectly. Further, these faults are classified based on the transmission type. Hence, there are AT Faults, MT faults and Common faults (which affect automatic and manual transmission systems alike).Figure.5 shows the deactivation logic block diagram. The presence of a fault resets the State machine as well as indicates to the driver about ISG deactivated status via the display cluster. This ensures that necessary actions can be taken. Fig-5: Deactivation logic 5. METHOD OF TESTING As per the V – Model, different test methods are used in each level to validate the design. Testing in Lab car: Lab car is a compact real time testing system for automotive embedded control units. It contain electrical loads to simulate different types of loads in a vehicle Closed loop systems: Closed Loop systems are used for Hardware in the Loop Testing, it is also called LCPT (Closed Loop Power Train). It consists of a LABCAR, ECU and testPC. It differs from open loop systems in the sense that there is feedback from the systems is shown in Figure 6 Fig 6.Closed Loop Testing In closed loop testing system, Software is generated using ASCET and ECU is flashed with Hex and A2L generated by software build using INCA tool. The ECU is also connected to a break out box that can be used to tap the ECU signals to take measurements. INCA tools are used for development of ECU and testing the ECU 6. SIMULATION RESULTS If there are no faults in the vehicle, ISG will be activated. If any fault occurs then ISG will be deactivated. The figure 7 shows the presence of a starter relay countererror.Ifstarter relay counter value exceeds the counter threshold, then starter counter error will set. ISG Deactivation occurs and this message is conveyed to the driver via Inhibition or fault display signal, which is transmitted to the display panel via CAN. Fig-7: Simulation result 7. CONCLUSION The design of deactivation logic is completely met by taking into consideration of all possible fault or error cases with respect to ISG system. Different categories of faults were analyzed. Some of which are engine relevant, driver detection, hardware dependent faults and transmission relevant. If any fault occurs then ISG will be deactivated and this message is conveyed to the driver via inhibition or fault display signal, which is transmitted to the display via CAN. The software developed in embedded C was flashed into the ECU via the CAN bus and was simulated intheLABCARtoget the results. In this paper we are implemented a deactivation logic in a start-stop featured vehicle. The deactivation logic is designed using ASCET tool and simulated the through LABCAR, if any fault occurred in the vehicle then ISG will be deactivated and displayed to driver through LED. REFERENCES [1] Maria Vittoria Prati and Maria Antonietta Costagliola Istituto Motor ”Idling Vehicle Emissions and Fuel Consumption in Urban Use: Influence of the Stop&Start Technology”, IEEE conference of national research council Italy pp.978-1--5186 , 2018
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 07 | July 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 946 [2] Wang Hongyu, QiaoYunqian,Fang Yong and Yuwen Zhiqiang,“Study on Engine Start-StopControl Strategy for Series-Parallel Hybrid Vehicle” , International Conference on Mechatronics and Automation vol.15 pp.978—7098 August 2015 [3] M.S.Aarathy, S.Abinaya “Efficacious Idle-Stop System in Automobiles using Intelligent Traffic Control Algorithm”, IEEE Conference on Control, Automation and Systems vol.2 2013 [4] R. Hayashi, J. Isogai, S. Fujita, P. Raksincharoensak, "Development of autonomous forward obstacle avoidance system by using in-whee I-motor and steering control of micro electric vehicle", Transactions of Society of Automotive Engineers of Japan, vo1.42, no.l, pp.87-93 2011. [5] M. Sato, T. Tomizawa, S. Kudoh, and T. Suehiro, "Development of Danger Avoidance Assist System for Electric Cart," Journal of Robotics and Mechatronics, vo1.25, No.6, pp.l011-1019 2013