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

PDF
Modification of Material Handling Process Using Automated Guided Vehicle (AGV)
PDF
IRJET- Automatic Sensor Operated Pneumatic Braking System
DOCX
Control systems project report (180501008)(180501016)(180501018)(180501020)
PDF
Bosch Internship presentation
PDF
IRJET- Automated Guided Vehicle Design Methodology - A Review
PDF
Mechatronic system based manual transmission
PDF
IRJET- Control of DC Motor by Cascaded Control Method
PDF
IRJET- Intelligent Braking System for Automobiles
Modification of Material Handling Process Using Automated Guided Vehicle (AGV)
IRJET- Automatic Sensor Operated Pneumatic Braking System
Control systems project report (180501008)(180501016)(180501018)(180501020)
Bosch Internship presentation
IRJET- Automated Guided Vehicle Design Methodology - A Review
Mechatronic system based manual transmission
IRJET- Control of DC Motor by Cascaded Control Method
IRJET- Intelligent Braking System for Automobiles

What's hot (12)

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

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

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

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
PDF
Kiona – A Smart Society Automation Project
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
PDF
Breast Cancer Detection using Computer Vision
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Kiona – A Smart Society Automation Project
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
BRAIN TUMOUR DETECTION AND CLASSIFICATION
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Breast Cancer Detection using Computer Vision
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...

Recently uploaded (20)

PPTX
OOP with Java - Java Introduction (Basics)
PPT
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PPTX
Geodesy 1.pptx...............................................
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
additive manufacturing of ss316l using mig welding
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
Current and future trends in Computer Vision.pptx
PPTX
Artificial Intelligence
PPTX
Construction Project Organization Group 2.pptx
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
composite construction of structures.pdf
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
OOP with Java - Java Introduction (Basics)
Introduction, IoT Design Methodology, Case Study on IoT System for Weather Mo...
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Geodesy 1.pptx...............................................
Lecture Notes Electrical Wiring System Components
CYBER-CRIMES AND SECURITY A guide to understanding
additive manufacturing of ss316l using mig welding
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Current and future trends in Computer Vision.pptx
Artificial Intelligence
Construction Project Organization Group 2.pptx
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
composite construction of structures.pdf
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf

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