Planning T(r)ips for Hybrid Electric Vehicles

Size: px
Start display at page:

Download "Planning T(r)ips for Hybrid Electric Vehicles"

Transcription

1 Planning T(r)ips for Hybrid Electric Vehicles How to Drive in the 21st Century 16.S949 Student Lecture May 14 th, 2012

2 Example Origin: Sid-Pac Destination: Revere St. Meet Peng in 4 minutes. Need to find a path. Planning Trips for Hybrid Electric Vehicles 2

3 Example: least-time path Google Maps gives the path that minimizes trip duration. Duration: 3.6 minutes. Fuel: 0.193L. Planning Trips for Hybrid Electric Vehicles 3

4 Example: least-fuel path We can find a path that minimize fuel usage [1]. Duration: 5 minutes. Fuel: 0.152L. That s 25% saving! But he will be late. [1]R. K. Ganti, N. Pham, H. Ahmadi, S. Nangia, and T. F. Abdelzaher. Greengps: a participatory sensing fuel efficient maps application. In Proc. of MobiSys 10, pages , San Francisco, CA, Planning Trips for Hybrid Electric Vehicles 4

5 Example: least-fuel path that is on-time We want to find the path that minimizes fuel usage within the timing constraint. Duration: 4 minutes. Fuel: 0.185L. But how? Planning Trips for Hybrid Electric Vehicles 5

6 Planning for Hybrid Electric Vehicles Motivation & Problem Formulation The Best Route The Best Driving Style Examples and Summary Source: D. J. C. MacKay, Sustainabl e Energy Without the Hot Air, UIT Cambridge, Planning Trips for Hybrid Electric Vehicles 6

7 Price of fuel Hybrid cars are popular! Toyota Prius was Japan s best-selling car in ,528 units sold over the year. Why do people like hybrid vehicles? 50% increase in City/Hwy MPG. 40% reduction in carbon emission. Year Planning Trips for Hybrid Electric Vehicles 7

8 The hybrid system Electric motor (batteries) and gasoline engine: Saving energy through: Keep the engine working in its efficient zone. Avoid low speed crawling with ignited engine. Source: G. Davies, Planning Trips for Hybrid Electric Vehicles 8

9 Mile Per Gallon Superb low speed MPG 90 Fuel Consumption Rate: Toyota Prius and Volkswagen Golf MPG (Prius) MPG (Golf) Source: US Environmental Protection Agency and metrompg.com Mile Per Hour Planning Trips for Hybrid Electric Vehicles 9

10 Routing affects fuel economy Planning Trips for Hybrid Electric Vehicles 10

11 Driving style affects fuel economy Percent improvement via route-independent methods Avoid aggressive driving: 5-33%. Keep optimal fuel economy speed: 7-23%. Remove excess weight: 1-2%/100lb. Avoid excessive idling: L/min. Fuel Economy Benefit Drive Sensibly Observe Speed Limit Avoid Excessive Idling Remove Excess Weight 0% 2% 4% 6% 8% 10% 12% 14% 16% 18% 20% Source: US Department of Energy, Planning Trips for Hybrid Electric Vehicles 11

12 A driving advisory system Input: Where you want to go in how long. A map of the road network with traffic conditions. A model of the hybrid car s dynamics. Output: Recommend the route that satisfies timing constraints while minimizing fuel consumption. Provide driving guidance for avoiding aggressive driving and over-speed cruising. Image Source: Pratap Tokekar, Nikhil Karnad, and Volkan Isler.Energyoptimal velocity profiles for car-like robots. In ICRA, 2011(submitted). Planning Trips for Hybrid Electric Vehicles 12

13 The constrained optimization problem Objective: Minimize the fuel consumption of a trip. By: Choosing a smart route: Seg 1, Seg 2,...,Seg N. Using proper acceleration and braking: Acc 1, Dec 1,..., Acc N, Dec N. And economy cruising speed: Vel 1, Vel 2,...,Vel N. To minimize: TotalGas = Fuel(Seg k, Acc k, Dec k, Vel k ) k=1 N Planning Trips for Hybrid Electric Vehicles 13

14 The constrained optimization problem Time: k=1 N Time(Seg k, Acc k, Dec k, Vel k ) < TimeLimit Traffic: Vel k < SpeedLimit k Vehicle dynamics: k, Acc k < MaxAcc, Dec k < MaxBrake A complete path connecting the origin and destination. Planning Trips for Hybrid Electric Vehicles 14

15 The constrained optimization problem Objective: Minimize the fuel consumption of a trip. By: Choosing a smart route: Seg 1, Seg 2,...,Seg N. Using proper acceleration and braking: Acc 1, Dec 1,..., Acc N, Dec N. And economy cruising speed: Vel 1, Vel 2,...,Vel N. 1. Optimize the route. 2. Optimize the driving strategy. Planning Trips for Hybrid Electric Vehicles 15

16 Planning for Hybrid Electric Vehicles Motivation & Problem Formulation The Best Route The Best Driving Style Examples and Summary Planning Trips for Hybrid Electric Vehicles 16

17 Vehicle routing problems Find the best set of road segments from the map: For example, Stata Center to Logan Airport. Planning Trips for Hybrid Electric Vehicles 17

18 Vehicle routing problems Find the best set of road segments from the map: Assume that we already know the fuel consumption and duration of each road segment. Driving Time: Time(Seg k ) e.g. 15 minutes Fuel Consumption: Fuel(Seg k ) e.g L Planning Trips for Hybrid Electric Vehicles 18

19 Definition To minimize: Subject to: TotalGas = Fuel(Seg k ) k=1 N k=1 N Time(Seg k ) < TotalTime An optimal constraint satisfaction problem! Planning Trips for Hybrid Electric Vehicles 19

20 Exact solution Time Constraint Constrained Bellman-Ford [1] routing algorithm. Treat the problem as a Multi-objective optimization. Search the entire Pareto Set. Using Breadth-first search and record all paths that are not dominated Exponential worst-case complexity Fuel Consumption [1] J. Jaffe, Algorithms for finding path with multiple constraints, Networks, vol. 14, pp , Planning Trips for Hybrid Electric Vehicles 20

21 Faster methods? Recall: Dijkstra s algorithm. Solves single-source shortest path problems. Successively update the distance to vertices with newly discovered shortest route. D 9 F C 11 A 7 10 E B 15 Planning Trips for Hybrid Electric Vehicles 21

22 Dijkstra s algorithm Recall: the Dijkstra s algorithm. Solves single-source shortest path problems. Successively update the distance to vertices with newly discovered shortest route. A D 14 2 B C F 6 E Planning Trips for Hybrid Electric Vehicles 22

23 Dijkstra s algorithm Recall: the Dijkstra s algorithm. Solves single-source shortest path problems. Successively update the distance to vertices with newly discovered shortest route. A D 14 2 B C F 6 E 22 Planning Trips for Hybrid Electric Vehicles 23

24 Dijkstra s algorithm Recall: the Dijkstra s algorithm. Solves single-source shortest path problems. Successively update the distance to vertices with newly discovered shortest route. A D B C F 6 E Planning Trips for Hybrid Electric Vehicles 24

25 Dijkstra s algorithm Recall: the Dijkstra s algorithm. Solves single-source shortest path problems. Successively update the distance to vertices with newly discovered shortest route C A B 11 9 D F E 15 Planning Trips for Hybrid Electric Vehicles 25

26 Dijkstra s algorithm Recall: the Dijkstra s algorithm. Solves single-source shortest path problems. Successively update the distance to vertices with newly discovered shortest route C A B 11 9 D F E 15 Runs in polynomial time: O V 2 But, it does not guarantee satisfying the timing constraint! Planning Trips for Hybrid Electric Vehicles 26

27 Backward Forward Heuristic (BFH) algorithm Modified from Dijkstra s algorithm. Using Dijkstra s algorithm to construct shortest path trees for both fuel consumption and time, starting from the end. Planning Trips for Hybrid Electric Vehicles 27

28 Backward Forward Heuristic (BFH) algorithm Modified from Dijkstra s algorithm. Using Dijkstra s algorithm to construct shortest path trees for both fuel consumption and time, starting from the end. D 9L; 2h F 14L; 2h 2L; 0.2h 6L; 1h 9L; 2h C 11L; 1h A 7L; 0.5h 10L; 1h E B 15L; 3h Planning Trips for Hybrid Electric Vehicles 28

29 BFH: Create least-fuel tree and least-time tree A Modified from Dijkstra s algorithm. Using Dijkstra s algorithm to construct shortest path trees for both fuel consumption and time, starting from the end. 2h D 2h 0.2h 2h 2h 2h C A 1h 0.5h 0L B 9L D 9L F 3h 2L 14L 6L 11L 9L C 11L 10L E 6L 7L B 15L 21L F 0h 1h 1h E 1h 3h Planning Trips for Hybrid Electric Vehicles 29

30 BFH: Create least-fuel tree and least-time tree Modified from Dijkstra s algorithm. Using Dijkstra s algorithm to construct shortest path trees for both fuel consumption and time, starting from the end. 9L; 2h D 9L; 2h F 0L; 0h 14L; 2h 9L; 2h 2L; 0.2h C 11L; 2h 11L; 1h 6L; 1h A 7L; 0.5h 10L; 1h E 6L; 1h B 21L; 3h 15L; 3h Planning Trips for Hybrid Electric Vehicles 30

31 BFH: Restart from the beginning Then start from the beginning, choose between the least time path and least fuel path to proceed. A If the LFP satisfies timing constraint, proceed with it. Otherwise, proceed with LTP. 14L; 2h 9L; 2h D 7L; 0.5h 9L; 2h 2L; 0.2h B 9L; 2h C 11L; 2h 10L; 1h 21L; 3h 11L; 1h 15L; 3h F 0L; 0h 6L; 1h E 6L; 1h Planning Trips for Hybrid Electric Vehicles 31

32 BFH: Propagate with timing constraint If the LFP satisfies timing constraint, proceed with it. Otherwise, proceed with LTP. If the timing constraint is 4h. 9L; 2h D 9L; 2h F 0L; 0h 14L; 2h 9L; 2h 2L; 0.2h C 11L; 2h 11L; 1h 6L; 1h A 7L; 0.5h 10L; 1h E 6L; 1h B 15L; 3h 21L; 3h Planning Trips for Hybrid Electric Vehicles 32

33 BFH: Propagate with timing constraint If the LFP satisfies timing constraint, proceed with it. Otherwise, proceed with LTP. If the timing constraint is 3.5h. 9L; 2h D 9L; 2h F 0L; 0h 14L; 2h 9L; 2h 2L; 0.2h C 11L; 2h 11L; 1h 6L; 1h A 7L; 0.5h 10L; 1h E 6L; 1h B 15L; 3h 21L; 3h Planning Trips for Hybrid Electric Vehicles 33

34 BFH: Propagate with timing constraint If the timing constraint is 3.5h. A 14L; 2h D 9L; 2h 7L; 0.5h 9L; 2h 9L; 2h 2L; 0.2h 11L; 2h C 10L; 1h B 21L; 3h 11L; 1h 15L; 3h F 0L; 0h 6L; 1h 6L; 1h E Planning Trips for Hybrid Electric Vehicles 34

35 BFH: Propagate with timing constraint If the timing constraint is 3.5h. A 14L; 2h D 9L; 2h 7L; 0.5h 9L; 2h 9L; 2h 2L; 0.2h 11L; 2h C 10L; 1h B 21L; 3h 11L; 1h 15L; 3h F 0L; 0h 6L; 1h 6L; 1h E Planning Trips for Hybrid Electric Vehicles 35

36 BFH: Propagate with timing constraint If the timing constraint is 3.5h. A 14L; 2h D 9L; 2h 7L; 0.5h 9L; 2h 9L; 2h 2L; 0.2h 11L; 2h C 10L; 1h B 21L; 3h 11L; 1h 15L; 3h F 0L; 0h 6L; 1h 6L; 1h E Planning Trips for Hybrid Electric Vehicles 36

37 Backward Forward Heuristic (BFH) analysis The complexity is three times of Dijkstra s algorithm. Usually generates suboptimal paths that satisfies timing constraint. The forward procedure only makes locally optimal decision. BFH paths usually less than 10% more expensive than optimal paths [1]. [1] H. F. Salama, D. S. Reeves, and Y. Viniotis, A distributed algorithm for delay-constrained unicast routing, in Proc. IEEE INFOCOM 97, Japan, pp Planning Trips for Hybrid Electric Vehicles 37

38 Runtime performance Log Runtime (ms) The algorithm is efficient on large problems BFH Runtime Least Time Runtime Number of Nodes Planning Trips for Hybrid Electric Vehicles 38

39 Runtime performance We benchmark the algorithm on various problems ranging from 100 nodes to nodes. Planning Trips for Hybrid Electric Vehicles 39

40 Quality of results Improvements in Fuel Efficiency If we want to spend 20-40s more on the trip: Number of Nodes Planning Trips for Hybrid Electric Vehicles 40

41 Planning for Hybrid Electric Vehicles Motivation & Problem Formulation The Best Route The Best Driving Style Examples and Summary Planning Trips for Hybrid Electric Vehicles 41

42 Previously: Vehicle Routing Problems Find the best set of road segments from the map: Assume that we already know the fuel consumption and duration of each road segment. Driving Time: Time(Seg k ) e.g. 15 minutes Fuel Consumption: Fuel(Seg k ) e.g L Planning Trips for Hybrid Electric Vehicles 42

43 Finding Fuel(Seg k ) and Time(Seg k ) Depends on driving behavior Depends on power management traditional: P req = P ice hybrid: P req = P ice + P em additional degree of freedom in the power split P em > 0 : P em < 0 : battery discharging battery charging through regenerative braking or ICE driving EM Planning Trips for Hybrid Electric Vehicles 43

44 Assumptions and solution strategy Assume: v k t = F trap Acc k, Vel k, Dec k. Strategy: optimize the fuel consumption of each segment. Optimize a velocity profile (over P ice,k, P em,k ) Optimize the velocity profile (over Acc k, Dec k ) Planning Trips for Hybrid Electric Vehicles 44

45 Optimize a velocity profile: problem statement Input: v Objective: Fuel(Seg, v ) = min Δm f P em ( ) Output: P ice, P em ( ), Fuel(Seg, v ) Charge-sustaining constraints: SOC min < SOC < SOC max SOC start = SOC end = 1 2 (SOC min + SOC max ) Planning Trips for Hybrid Electric Vehicles 45

46 Optimize a velocity profile: modeling power flow Mechanical power: P req = P ice + P em P req = F req v = C D v 2 + M dv dt v Fuel power: dm f dt = 1 H f P ice η ice (P ice ) Electric power: dsoc dt = 1 Q max V batt P em η em (P em ) Planning Trips for Hybrid Electric Vehicles 46

47 Optimize a velocity profile: solution by ECMS Fuel is to gold as battery charge is to cash. fuel tank = personal stash of gold charge battery = put gold/cash into the bank discharge battery = take cash out of the bank Goal: retain as much gold as possible. Strategy: express everything in terms of gold. Equivalent Consumption Minimization Strategy (ECMS) Source: L. Serrao, S. Onori, and G. Rizzoni, A Comparative Analysis of Energy Management Strategies for Hybrid Electric Vehicles, Journal of Dynamic Systems, Measurement, and Control, Vol. 133, May Planning Trips for Hybrid Electric Vehicles 47

48 Optimize a velocity profile: ECMS algorithm Pontryagin s minimum principle: if P em ( ) is globally optimal i.e. minimizes Δm f = m f dt, then at each time t, P em t is locally optimal w.r.t. m f,e t = m f t + λ(t)m b,e t. m b,e t = 1 H f P em η em (P em ) Assume λ is constant. (actually depends on internal battery parameters) Source: L. Serrao, S. Onori, and G. Rizzoni, A Comparative Analysis of Energy Management Strategies for Hybrid Electric Vehicles, Journal of Dynamic Systems, Measurement, and Control, Vol. 133, May Planning Trips for Hybrid Electric Vehicles 48

49 Optimize a velocity profile: ECMS algorithm Minimize: m f,e t = m f t + λ m b,e t. Algorithm: 1. Select λ. Optimize P em (t) at all times t. 2. Simulate P em ( ) to determine SOC(end). 3. Iterate on 1 and 2, using the Shooting Method to ensure SOC start = SOC(end). Illustration of the Shooting Method Source: Planning Trips for Hybrid Electric Vehicles 49

50 Optimize a velocity profile: ECMS validation Dynamic Programming ECMS Source: P. Pisu and G. Rizzoni, A Comparative Study of Supervisory Control Strategies for Hybrid Electric Vehicles, IEEE Transactions on Control Systems Technology, Vol. 15, No. 3, May Planning Trips for Hybrid Electric Vehicles 50

51 Optimize a velocity profile: ECMS validation Dynamic Programming Rule-based Finite-State Machine (FSM) Source: P. Pisu and G. Rizzoni, A Comparative Study of Supervisory Control Strategies for Hybrid Electric Vehicles, IEEE Transactions on Control Systems Technology, Vol. 15, No. 3, May Planning Trips for Hybrid Electric Vehicles 51

52 Optimize a velocity profile: ECMS validation Source: C. Musardo, G. Rizzoni, and B. Staccia, A-ECMS: An adaptive Algorithm for Hybrid Elecric Vehicle Energy Management, Proceedings of the 44 th IEEE Conference on Decision and Control, Source: P. Pisu and G. Rizzoni, A Comparative Study of Supervisory Control Strategies for Hybrid Electric Vehicles, IEEE Transactions on Control Systems Technology, Vol. 15, No. 3, May Planning Trips for Hybrid Electric Vehicles 52

53 Optimize the velocity profile Input: Dist, SpeedLimit Objective: Fuel Seg = min Fuel(Seg, v ) Subject to constraints: Acc, Dec 0 < Acc < MaxAcc, 0 < Dec < MaxBrake Vel = SpeedLimit v = F trap (Acc, Vel, Dec) v t dt = Dist Output: v ( ) Fuel Seg Time Seg = min t v t = 0 t > 0 Planning Trips for Hybrid Electric Vehicles 53

54 Summary of algorithms BFH v (t) optimizer ECMS Time(Seg) Fuel(Seg) v(t) P req = P ice + P em Planning Trips for Hybrid Electric Vehicles 54

55 Planning for Hybrid Electric Vehicles Motivation & Problem Formulation The Best Route The Best Driving Style Examples and Summary Planning Trips for Hybrid Electric Vehicles 55

56 Recall: The Driving Problem We would like to get to the destination with minimum fuel consumption through: Selecting the best route. Optimizing the driving style. In addition, we want to satisfy the timing constraints. Drive to the Logan airport from the Stata Center in 15 minutes. Planning Trips for Hybrid Electric Vehicles 56

57 Velocity (km/h) Results: hybrid car Path selected by the algorithm. Driving profile Distance (km) Planning Trips for Hybrid Electric Vehicles 57

58 Non-hybrid cars Volkswagen Golf Planning Trips for Hybrid Electric Vehicles 58

59 Non-hybrid cars Path selected by the algorithm. Driving profile Planning Trips for Hybrid Electric Vehicles 59

60 Summary Problems solved: How to select the path that minimize fuel cost, while satisfying timing constraints. The best driving style/modes that minimize the fuel consumption. Remarks The modeling and optimization of energy systems can be very hard. Suboptimal approaches may save a lot of time. Hybrid cars (and ECO driving modes) do help save fuel! Planning Trips for Hybrid Electric Vehicles 60

61 Byproduct Fuel efficient path generator: Compute a path for your trip based on OpenStreetMap Database, then project on Google Map. Satisfies your timing constraint while minimizing fuel consumption. Available for Prius and Golf, in Cambridge and Boston area. Planning Trips for Hybrid Electric Vehicles 61

Using Trip Information for PHEV Fuel Consumption Minimization

Using Trip Information for PHEV Fuel Consumption Minimization Using Trip Information for PHEV Fuel Consumption Minimization 27 th International Battery, Hybrid and Fuel Cell Electric Vehicle Symposium (EVS27) Barcelona, Nov. 17-20, 2013 Dominik Karbowski, Vivien

More information

Route-Based Energy Management for PHEVs: A Simulation Framework for Large-Scale Evaluation

Route-Based Energy Management for PHEVs: A Simulation Framework for Large-Scale Evaluation Transportation Technology R&D Center Route-Based Energy Management for PHEVs: A Simulation Framework for Large-Scale Evaluation Dominik Karbowski, Namwook Kim, Aymeric Rousseau Argonne National Laboratory,

More information

Modeling and Control of Hybrid Electric Vehicles Tutorial Session

Modeling and Control of Hybrid Electric Vehicles Tutorial Session Modeling and Control of Hybrid Electric Vehicles Tutorial Session Ardalan Vahidi And Students: Ali Borhan, Chen Zhang, Dean Rotenberg Mechanical Engineering, Clemson University Clemson, South Carolina

More information

Optimal Predictive Control for Connected HEV AMAA Brussels September 22 nd -23 rd 2016

Optimal Predictive Control for Connected HEV AMAA Brussels September 22 nd -23 rd 2016 Optimal Predictive Control for Connected HEV AMAA Brussels September 22 nd -23 rd 2016 Hamza I.H. AZAMI Toulouse - France www.continental-corporation.com Powertrain Technology Innovation Optimal Predictive

More information

Model Predictive Control of a Power-split Hybrid Electric Vehicle with Combined Battery and Ultracapacitor Energy Storage

Model Predictive Control of a Power-split Hybrid Electric Vehicle with Combined Battery and Ultracapacitor Energy Storage 21 American Control Conference Marriott Waterfront, Baltimore, MD, USA June 3-July 2, 21 FrA1.2 Model Predictive Control of a Power-split Hybrid Electric Vehicle with Combined Battery and Ultracapacitor

More information

Incorporating Drivability Metrics into Optimal Energy Management Strategies for Hybrid Vehicles

Incorporating Drivability Metrics into Optimal Energy Management Strategies for Hybrid Vehicles Incorporating Drivability Metrics into Optimal Energy Management Strategies for Hybrid Vehicles Daniel F. Opila, Deepak Aswani, Ryan McGee, Jeffrey A. Cook, and J.W. Grizzle Abstract Hybrid Vehicle fuel

More information

PHEV Control Strategy Optimization Using MATLAB Distributed Computing: From Pattern to Tuning

PHEV Control Strategy Optimization Using MATLAB Distributed Computing: From Pattern to Tuning PHEV Control Strategy Optimization Using MATLAB Distributed Computing: From Pattern to Tuning MathWorks Automotive Conference 3 June, 2008 S. Pagerit, D. Karbowski, S. Bittner, A. Rousseau, P. Sharer Argonne

More information

Analysis of Fuel Economy and Battery Life depending on the Types of HEV using Dynamic Programming

Analysis of Fuel Economy and Battery Life depending on the Types of HEV using Dynamic Programming World Electric Vehicle Journal Vol. 6 - ISSN 2032-6653 - 2013 WEVA Page Page 0320 EVS27 Barcelona, Spain, November 17-20, 2013 Analysis of Fuel Economy and Battery Life depending on the Types of HEV using

More information

Coordinated Charging of Plug-in Hybrid Electric Vehicles to Minimize Distribution System Losses

Coordinated Charging of Plug-in Hybrid Electric Vehicles to Minimize Distribution System Losses Coordinated Charging of Plug-in Hybrid Electric Vehicles to Minimize Distribution System Losses Presented by: Amit Kumar Tamang, PhD Student Smart Grid Research Group-BBCR aktamang@uwaterloo.ca Supervisor

More information

Supervisory Control of Plug-in Hybrid Electric Vehicle with Hybrid Dynamical System

Supervisory Control of Plug-in Hybrid Electric Vehicle with Hybrid Dynamical System Supervisory Control of Plug-in Hybrid Electric Vehicle with Hybrid Dynamical System Harpreetsingh Banvait, Jianghai Hu and Yaobin chen Abstract In this paper, a supervisory control of Plug-in Hybrid Electric

More information

Incorporating Drivability Metrics into Optimal Energy Management Strategies for Hybrid Vehicles. Daniel Opila

Incorporating Drivability Metrics into Optimal Energy Management Strategies for Hybrid Vehicles. Daniel Opila Incorporating Drivability Metrics into Optimal Energy Management Strategies for Hybrid Vehicles Daniel Opila Collaborators Jeff Cook Jessy Grizzle Xiaoyong Wang Ryan McGee Brent Gillespie Deepak Aswani,

More information

OPTIMAL POWER MANAGEMENT OF HYDROGEN FUEL CELL VEHICLES

OPTIMAL POWER MANAGEMENT OF HYDROGEN FUEL CELL VEHICLES OPTIMAL POWER MANAGEMENT OF HYDROGEN FUEL CELL VEHICLES Giuliano Premier Sustainable Environment Research Centre (SERC) Renewable Hydrogen Research & Demonstration Centre University of Glamorgan Baglan

More information

Energetic Macroscopic Representation and Energy Management Strategy of a Hybrid Electric Locomotive

Energetic Macroscopic Representation and Energy Management Strategy of a Hybrid Electric Locomotive Energetic Macroscopic Representation and Energy Management Strategy of a Hybrid Electric Locomotive J. Baert *, S. Jemei *, D. Chamagne *, D. Hissel *, D. Hegy ** and S. Hibon ** * University of Franche-Comte,

More information

«OPTIMAL ENERGY MANAGEMENT BY EMR AND META-HEURISTIC APPROACH FOR MULTI-SOURCE ELECTRIC VEHICLES»

«OPTIMAL ENERGY MANAGEMENT BY EMR AND META-HEURISTIC APPROACH FOR MULTI-SOURCE ELECTRIC VEHICLES» EMR 13 Lille Sept. 213 Summer School EMR 13 Energetic Macroscopic Representation «OPTIMAL ENERGY MANAGEMENT BY EMR AND META-HEURISTIC APPROACH FOR MULTI-SOURCE ELECTRIC VEHICLES» Dr. João Pedro TROVÃO,

More information

Stochastic Dynamic Programming based Energy Management of HEV s: an Experimental Validation

Stochastic Dynamic Programming based Energy Management of HEV s: an Experimental Validation Preprints of the 19th World Congress The International Federation of Automatic Control Stochastic Dynamic Programming based Energy Management of HEV s: an Experimental Validation T. Leroy F. Vidal-Naquet

More information

Convex optimization for design and control problems in electromobility

Convex optimization for design and control problems in electromobility Convex optimization for design and control problems in electromobility - Recent developments through case studies - Nikolce Murgovski Department of Signals and Systems, Chalmers University of Technology

More information

Real-time Bus Tracking using CrowdSourcing

Real-time Bus Tracking using CrowdSourcing Real-time Bus Tracking using CrowdSourcing R & D Project Report Submitted in partial fulfillment of the requirements for the degree of Master of Technology by Deepali Mittal 153050016 under the guidance

More information

Modeling Driver Behavior in a Connected Environment Integration of Microscopic Traffic Simulation and Telecommunication Systems.

Modeling Driver Behavior in a Connected Environment Integration of Microscopic Traffic Simulation and Telecommunication Systems. Modeling Driver Behavior in a Connected Environment Integration of Microscopic Traffic Simulation and Telecommunication Systems Alireza Talebpour Information Level Connectivity in the Modern Age Sensor

More information

The MathWorks Crossover to Model-Based Design

The MathWorks Crossover to Model-Based Design The MathWorks Crossover to Model-Based Design The Ohio State University Kerem Koprubasi, Ph.D. Candidate Mechanical Engineering The 2008 Challenge X Competition Benefits of MathWorks Tools Model-based

More information

MECA0500: PARALLEL HYBRID ELECTRIC VEHICLES. DESIGN AND CONTROL. Pierre Duysinx

MECA0500: PARALLEL HYBRID ELECTRIC VEHICLES. DESIGN AND CONTROL. Pierre Duysinx MECA0500: PARALLEL HYBRID ELECTRIC VEHICLES. DESIGN AND CONTROL Pierre Duysinx Research Center in Sustainable Automotive Technologies of University of Liege Academic Year 2017-2018 1 References R. Bosch.

More information

ELECTRIC VEHICLE MARKET UPDATE

ELECTRIC VEHICLE MARKET UPDATE 16TH ANNUAL ENERGY FORECASTING MEETING / EFG AUSTIN, TX APRIL 26-28, 2018 ELECTRIC VEHICLE MARKET UPDATE MIKE RUSSO, ITRON, INC. MONTHLY U.S. EV SALES Source: Monthly Plug-in Sales Scorecard, Inside EVs.

More information

Offline and Online Optimization of Plug-in Hybrid Electric Vehicle Energy Usage (Home-to-Vehicle and Vehicle-to-Home)

Offline and Online Optimization of Plug-in Hybrid Electric Vehicle Energy Usage (Home-to-Vehicle and Vehicle-to-Home) Offline and Online Optimization of Plug-in Hybrid Electric Vehicle Energy Usage (Home-to-Vehicle and Vehicle-to-Home) Florence Berthold, Benjamin Blunier, David Bouquain, Sheldon Williamson, Abdellatif

More information

Integration of Dual-Clutch Transmissions in Hybrid Electric Vehicle Powertrains

Integration of Dual-Clutch Transmissions in Hybrid Electric Vehicle Powertrains POLITECNICO DI TORINO Cluster MOBILITA - Project ITALY 2020 gomma CRF PhD in Mechanical Engineering XXX cycle Integration of Dual-Clutch Transmissions in Hybrid Electric Vehicle Powertrains Torino, October

More information

Switching Control for Smooth Mode Changes in Hybrid Electric Vehicles

Switching Control for Smooth Mode Changes in Hybrid Electric Vehicles Switching Control for Smooth Mode Changes in Hybrid Electric Vehicles Kerem Koprubasi (1), Eric Westervelt (2), Giorgio Rizzoni (3) (1) PhD Student, (2) Assistant Professor, (3) Professor Department of

More information

Developing a Platoon-Wide Eco-Cooperative Adaptive Cruise Control (CACC) System

Developing a Platoon-Wide Eco-Cooperative Adaptive Cruise Control (CACC) System Developing a Platoon-Wide Eco-Cooperative Adaptive Cruise Control (CACC) System 2017 Los Angeles Environmental Forum August 28th Ziran Wang ( 王子然 ), Guoyuan Wu, Peng Hao, Kanok Boriboonsomsin, and Matthew

More information

Numerical Analysis of Speed Optimization of a Hybrid Vehicle (Toyota Prius) By Using an Alternative Low-Torque DC Motor

Numerical Analysis of Speed Optimization of a Hybrid Vehicle (Toyota Prius) By Using an Alternative Low-Torque DC Motor Numerical Analysis of Speed Optimization of a Hybrid Vehicle (Toyota Prius) By Using an Alternative Low-Torque DC Motor ABSTRACT Umer Akram*, M. Tayyab Aamir**, & Daud Ali*** Department of Mechanical Engineering,

More information

Effectiveness of Plug-in Hybrid Electric Vehicle Validated by Analysis of Real World Driving Data

Effectiveness of Plug-in Hybrid Electric Vehicle Validated by Analysis of Real World Driving Data World Electric Vehicle Journal Vol. 6 - ISSN 32-663 - 13 WEVA Page Page 416 EVS27 Barcelona, Spain, November 17-, 13 Effectiveness of Plug-in Hybrid Electric Vehicle Validated by Analysis of Real World

More information

Fuel Economy Comparisons of Series, Parallel and HMT Hydraulic Hybrid Architectures

Fuel Economy Comparisons of Series, Parallel and HMT Hydraulic Hybrid Architectures 2013 American Control Conference (ACC) Washington, DC, USA, June 17-19, 2013 Fuel Economy Comparisons of Series, Parallel and HMT Hydraulic Hybrid Architectures Zhekang Du, Kai Loon Cheong, Perry Y. Li

More information

Eco-driving: Strategic, Tactical, and Operational Decisions of the Driver that Influence Vehicle Fuel Economy

Eco-driving: Strategic, Tactical, and Operational Decisions of the Driver that Influence Vehicle Fuel Economy Eco-driving: Strategic, Tactical, and Operational Decisions of the Driver that Influence Vehicle Fuel Economy Brandon Schoettle Project Manager Sustainable Worldwide Transportation Sustainable Worldwide

More information

Executive Summary. Light-Duty Automotive Technology and Fuel Economy Trends: 1975 through EPA420-S and Air Quality July 2006

Executive Summary. Light-Duty Automotive Technology and Fuel Economy Trends: 1975 through EPA420-S and Air Quality July 2006 Office of Transportation EPA420-S-06-003 and Air Quality July 2006 Light-Duty Automotive Technology and Fuel Economy Trends: 1975 through 2006 Executive Summary EPA420-S-06-003 July 2006 Light-Duty Automotive

More information

An Energy Management Controller to Optimally Tradeoff Fuel Economy and Drivability for Hybrid Vehicles

An Energy Management Controller to Optimally Tradeoff Fuel Economy and Drivability for Hybrid Vehicles An Energy Management Controller to Optimally Tradeoff Fuel Economy and Drivability for Hybrid Vehicles Daniel F. Opila, Xiaoyong Wang, Ryan McGee, R. Brent Gillespie, Jeffrey A. Cook, and J.W. Grizzle

More information

Suburban bus route design

Suburban bus route design University of Wollongong Research Online Faculty of Engineering and Information Sciences - Papers: Part A Faculty of Engineering and Information Sciences 2013 Suburban bus route design Shuaian Wang University

More information

A Thesis. Presented in Partial Fulfillment of the Requirements for the Degree Master of Science in the Graduate School of The Ohio State University

A Thesis. Presented in Partial Fulfillment of the Requirements for the Degree Master of Science in the Graduate School of The Ohio State University Cloud Computing based Velocity Profile Generation for Minimum Fuel Consumption A Thesis Presented in Partial Fulfillment of the Requirements for the Degree Master of Science in the Graduate School of The

More information

Optimally Controlling Hybrid Electric Vehicles using Path Forecasting

Optimally Controlling Hybrid Electric Vehicles using Path Forecasting Optimally Controlling Hybrid Electric Vehicles using Path Forecasting The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation As

More information

Rule-Based Equivalent Fuel Consumption Minimization Strategies for Hybrid Vehicles

Rule-Based Equivalent Fuel Consumption Minimization Strategies for Hybrid Vehicles Rule-Based Equivalent Fuel Consumption Minimization Strategies for Hybrid Vehicles T. Hofman, M. Steinbuch, R.M. van Druten, and A.F.A. Serrarens Technische Universiteit Eindhoven, Dept. of Mech. Eng.,

More information

Adaptive Control of a Hybrid Powertrain with Map-based ECMS

Adaptive Control of a Hybrid Powertrain with Map-based ECMS Milano (Italy) August 8 - September, 11 Adaptive Control of a Hybrid Powertrain with Map-based ECMS Martin Sivertsson, Christofer Sundström, and Lars Eriksson Vehicular Systems, Dept. of Electrical Engineering,

More information

BP Target Neutral Online travel calculators: Method for calculating transport emissions

BP Target Neutral Online travel calculators: Method for calculating transport emissions BP Target Neutral Online travel calculators: Method for calculating transport emissions 1.1 EXECUTIVE SUMMARY BP Target Neutral has committed to helping individuals to tackle their personal carbon footprint

More information

A conceptual design of main components sizing for UMT PHEV powertrain

A conceptual design of main components sizing for UMT PHEV powertrain IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS A conceptual design of main components sizing for UMT PHEV powertrain Related content - Development of a KT driving cycle for

More information

Unmanned autonomous vehicles in air land and sea

Unmanned autonomous vehicles in air land and sea based on Ulrich Schwesinger lecture on MOTION PLANNING FOR AUTOMATED CARS Unmanned autonomous vehicles in air land and sea Some relevant examples from the DARPA Urban Challenge Matteo Matteucci matteo.matteucci@polimi.it

More information

Predictive Control Strategies using Simulink

Predictive Control Strategies using Simulink Example slide Predictive Control Strategies using Simulink Kiran Ravindran, Ashwini Athreya, HEV-SW, EE/MBRDI March 2014 Project Overview 2 Predictive Control Strategies using Simulink Kiran Ravindran

More information

Optimal Catalyst Temperature Management of Plug-in Hybrid Electric Vehicles

Optimal Catalyst Temperature Management of Plug-in Hybrid Electric Vehicles American Control Conference on O'Farrell Street, San Francisco, CA, USA June 9 - July, Optimal Catalyst Temperature Management of Plug-in Hybrid Electric Vehicles Dongsuk Kum, Huei Peng, and Norman K.

More information

Transition to Electric Vehicles and the Next Generation Energy System

Transition to Electric Vehicles and the Next Generation Energy System Transition to Electric Vehicles and the Next Generation Energy System Aviral Shukla Joseph Pekny Venkat Venkatasubramanian School of Chemical Engineering Purdue University Conventional Petroleum Based

More information

Simulation of Collective Load Data for Integrated Design and Testing of Vehicle Transmissions. Andreas Schmidt, Audi AG, May 22, 2014

Simulation of Collective Load Data for Integrated Design and Testing of Vehicle Transmissions. Andreas Schmidt, Audi AG, May 22, 2014 Simulation of Collective Load Data for Integrated Design and Testing of Vehicle Transmissions Andreas Schmidt, Audi AG, May 22, 2014 Content Introduction Usage of collective load data in the development

More information

Review and Comparison of Power Management Approaches for Hybrid Vehicles with Focus on Hydraulic Drives

Review and Comparison of Power Management Approaches for Hybrid Vehicles with Focus on Hydraulic Drives Energies 2014, 7, 3512-3536; doi:10.3390/en7063512 OPEN ACCESS energies ISSN 1996-1073 www.mdpi.com/journal/energies Review Review and Comparison of Power Management Approaches for Hybrid Vehicles with

More information

PARALLEL HYBRID ELECTRIC VEHICLES: DESIGN AND CONTROL. Pierre Duysinx. LTAS Automotive Engineering University of Liege Academic Year

PARALLEL HYBRID ELECTRIC VEHICLES: DESIGN AND CONTROL. Pierre Duysinx. LTAS Automotive Engineering University of Liege Academic Year PARALLEL HYBRID ELECTRIC VEHICLES: DESIGN AND CONTROL Pierre Duysinx LTAS Automotive Engineering University of Liege Academic Year 2015-2016 1 References R. Bosch. «Automotive Handbook». 5th edition. 2002.

More information

Vehicie Propulsion Systems

Vehicie Propulsion Systems Lino Guzzella Antonio Sciarretta Vehicie Propulsion Systems Introduction to Modeling and Optimization Second Edition With 202 Figures and 30 Tables Springer 1 Introduction 1 1.1 Motivation 1 1.2 Objectives

More information

Fundamentals and Classification of Hybrid Electric Vehicles Ojas M. Govardhan (Department of mechanical engineering, MIT College of Engineering, Pune)

Fundamentals and Classification of Hybrid Electric Vehicles Ojas M. Govardhan (Department of mechanical engineering, MIT College of Engineering, Pune) RESEARCH ARTICLE OPEN ACCESS Fundamentals and Classification of Hybrid Electric Vehicles Ojas M. Govardhan (Department of mechanical engineering, MIT College of Engineering, Pune) Abstract: Depleting fossil

More information

Step on It: Driving Behavior and Vehicle Fuel Economy

Step on It: Driving Behavior and Vehicle Fuel Economy Step on It: Driving Behavior and Vehicle Fuel Economy Ashley Langer and Shaun McRae University of Arizona and University of Michigan November 1, 2014 How do we decrease gasoline use? Drive more efficient

More information

Optimal Decentralized Protocol for Electrical Vehicle Charging. Presented by: Ran Zhang Supervisor: Prof. Sherman(Xuemin) Shen, Prof.

Optimal Decentralized Protocol for Electrical Vehicle Charging. Presented by: Ran Zhang Supervisor: Prof. Sherman(Xuemin) Shen, Prof. Optimal Decentralized Protocol for Electrical Vehicle Charging Presented by: Ran Zhang Supervisor: Prof. Sherman(Xuemin) Shen, Prof. Liang-liang Xie Main Reference Lingwen Gan, Ufuk Topcu, and Steven Low,

More information

ECO-DRIVING ASSISTANCE SYSTEM FOR LOW FUEL CONSUMPTION OF A HEAVY VEHICLE : ADVISOR SYSTEM

ECO-DRIVING ASSISTANCE SYSTEM FOR LOW FUEL CONSUMPTION OF A HEAVY VEHICLE : ADVISOR SYSTEM ECO-DRIVING ASSISTANCE SYSTEM FOR LOW FUEL CONSUMPTION OF A HEAVY VEHICLE : ADVISOR SYSTEM L. NOUVELIERE (University of Evry, France) H.T. LUU (INRETS/LIVIC, France) F.R. DUVAL (CETE NC, France) B. JACOB

More information

An Analytic Method for Estimation of Electric Vehicle Range Requirements, Electrification Potential and Prospective Market Size*

An Analytic Method for Estimation of Electric Vehicle Range Requirements, Electrification Potential and Prospective Market Size* An Analytic Method for Estimation of Electric Vehicle Range Requirements, Electrification Potential and Prospective Market Size* Mike Tamor Chris Gearhart Ford Motor Company *Population Statisticians and

More information

EVS28 KINTEX, Korea, May 3-6, 2015

EVS28 KINTEX, Korea, May 3-6, 2015 EVS28 KINTEX, Korea, May 3-6, 25 Pattern Prediction Model for Hybrid Electric Buses Based on Real-World Data Jing Wang, Yong Huang, Haiming Xie, Guangyu Tian * State Key laboratory of Automotive Safety

More information

Hybrid Vehicle (City Bus) Optimal Power Management for Fuel Economy Benchmarking

Hybrid Vehicle (City Bus) Optimal Power Management for Fuel Economy Benchmarking Low Carbon Economy, 013, 4, 45-50 http://dx.doi.org/10.436/lce.013.41005 Published Online March 013 (http://www.scirp.org/journal/lce) 45 Hybrid Vehicle (City Bus) Optimal Power Management for Fuel Economy

More information

Modeling a Phlegmatized Diesel-Engine in a Hybrid Electric Vehicle Using a Transient Predictive Model Michael Auerbach, October 25th, 2010, Frankfurt

Modeling a Phlegmatized Diesel-Engine in a Hybrid Electric Vehicle Using a Transient Predictive Model Michael Auerbach, October 25th, 2010, Frankfurt Modeling a Phlegmatized Diesel-Engine in a Hybrid Electric Vehicle Using a Transient Predictive Model Michael Auerbach, October 25th, 2010, Frankfurt a. M. Institut für Verbrennungsmotoren und Kraftfahrwesen

More information

{xuelin, yanzhiwa, pbogdan, 2

{xuelin, yanzhiwa, pbogdan, 2 Reinforcement Learning Based Power Management for Hybrid Electric Vehicles Xue Lin 1, Yanzhi Wang 1, Paul Bogdan 1, Naehyuck Chang 2, and Massoud Pedram 1 1 University of Southern California, Los Angeles,

More information

Optimal Design of a Compound Hybrid System consisting of Torque Coupling and Energy Regeneration for Hydraulic Hybrid Excavator *

Optimal Design of a Compound Hybrid System consisting of Torque Coupling and Energy Regeneration for Hydraulic Hybrid Excavator * Optimal Design of a Compound Hybrid System consisting of Torque Coupling and Energy Regeneration for Hydraulic Hybrid Excavator * Yang Xiao, Cheng Guan, Perry Y. Li and Fei Wang Abstract For hydraulic

More information

STUDY OF ENERGETIC BALANCE OF REGENERATIVE ELECTRIC VEHICLE IN A CITY DRIVING CYCLE

STUDY OF ENERGETIC BALANCE OF REGENERATIVE ELECTRIC VEHICLE IN A CITY DRIVING CYCLE ENGINEERING FOR RURAL DEVELOPMENT Jelgava, 24.-25.5.212. STUDY OF ENERGETIC BALANCE OF REGENERATIVE ELECTRIC VEHICLE IN A CITY DRIVING CYCLE Vitalijs Osadcuks, Aldis Pecka, Raimunds Selegovskis, Liene

More information

A Rule-Based Energy Management Strategy for Plugin Hybrid Electric Vehicle (PHEV)

A Rule-Based Energy Management Strategy for Plugin Hybrid Electric Vehicle (PHEV) 29 American Control Conference Hyatt Regency Riverfront, St. Louis, MO, USA June 1-12, 29 FrA1.1 A Rule-Based Energy Management Strategy for Plugin Hybrid Electric Vehicle (PHEV) Harpreetsingh Banvait,

More information

Ming Cheng, Bo Chen, Michigan Technological University

Ming Cheng, Bo Chen, Michigan Technological University THE MODEL INTEGRATION AND HARDWARE-IN-THE-LOOP (HIL) SIMULATION DESIGN FOR THE ANALYSIS OF A POWER-SPLIT HYBRID ELECTRIC VEHICLE WITH ELECTROCHEMICAL BATTERY MODEL Ming Cheng, Bo Chen, Michigan Technological

More information

Optimal Placement of EV Charging Station Considering the Road Traffic Volume and EV Running Distance

Optimal Placement of EV Charging Station Considering the Road Traffic Volume and EV Running Distance Optimal Placement of EV Charging Station Considering the Road Traffic Volume and EV Running Distance Surat Saelee and Teerayut Horanont Sirindhorn International Institute of Technology, Thammasat University,

More information

Modeling Multi-Objective Optimization Algorithms for Autonomous Vehicles to Enhance Safety and Energy Efficiency

Modeling Multi-Objective Optimization Algorithms for Autonomous Vehicles to Enhance Safety and Energy Efficiency 2015 NDIA GROUND VEHICLE SYSTEMS ENGINEERING AND TECHNOLOGY SYMPOSIUM MODELING & SIMULATION, TESTING AND VALIDATION (MSTV) TECHNICAL SESSION AUGUST 4-6, 2015 - NOVI, MICHIGAN Modeling Multi-Objective Optimization

More information

FUNDAMENTAL STRUCTURAL LIMITATIONS OF AN INDUSTRIAL ENERGY MANAGEMENT CONTROLLER ARCHITECTURE FOR HYBRID VEHICLES

FUNDAMENTAL STRUCTURAL LIMITATIONS OF AN INDUSTRIAL ENERGY MANAGEMENT CONTROLLER ARCHITECTURE FOR HYBRID VEHICLES FUNDAMENTAL STRUCTURAL LIMITATIONS OF AN INDUSTRIAL ENERGY MANAGEMENT CONTROLLER ARCHITECTURE FOR HYBRID VEHICLES Daniel F. Opila Dept. of Mechanical Engineering University of Michigan Ann Arbor, Michigan

More information

ISyE 3103 Introduction to Supply Chain Modeling: Transportation and Logistics Spring 2006 Homework 7 Assigned: March 30, 2006 Due: April 6, 2006

ISyE 3103 Introduction to Supply Chain Modeling: Transportation and Logistics Spring 2006 Homework 7 Assigned: March 30, 2006 Due: April 6, 2006 ISyE 3103 Introduction to Supply Chain Modeling: Transportation and Logistics Spring 2006 Homework 7 Assigned: March 30, 2006 Due: April 6, 2006 This assignment is worth 50 points. You are to complete

More information

Velocity Optimization of Pure Electric Vehicles with Traffic Dynamics Consideration

Velocity Optimization of Pure Electric Vehicles with Traffic Dynamics Consideration Velocity Optimization of Pure Electric Vehicles with Traffic Dynamics Consideration Liuwang Kang, Haiying Shen, and Ankur Sarker Department of Computer Science, University of Virginia Outline Introduction

More information

Optimal Design of Hybrid Energy System with PV/ Wind Turbine/ Storage: A Case Study

Optimal Design of Hybrid Energy System with PV/ Wind Turbine/ Storage: A Case Study Optimal Design of Hybrid Energy System with PV/ Wind Turbine/ Storage: A Case Study Presenter: Amit Kumar Tamang PhD Student Supervisor: Prof. Weihua Zhaung Smart Grid Research Group at BBCR September

More information

APVC2009. Genetic Algorithm for UTS Plug-in Hybrid Electric Vehicle Parameter Optimization. Abdul Rahman SALISA 1,2 Nong ZHANG 1 and Jianguo ZHU 1

APVC2009. Genetic Algorithm for UTS Plug-in Hybrid Electric Vehicle Parameter Optimization. Abdul Rahman SALISA 1,2 Nong ZHANG 1 and Jianguo ZHU 1 Genetic Algorithm for UTS Plug-in Hybrid Electric Vehicle Parameter Optimization Abdul Rahman SALISA 1,2 Nong ZHANG 1 and Jianguo ZHU 1 1 School of Electrical, Mechanical and Mechatronic Systems, University

More information

Accurate Remaining Range Estimation for Electric Vehicles

Accurate Remaining Range Estimation for Electric Vehicles Accurate Remaining Range Estimation for Electric Vehicles Joonki Hong, Sangjun Park, Naehyuck Chang Dept. of Electrical Engineering KAIST joonki@cad4x.kaist.ac.kr Outline Motivation: Remaining range estimation

More information

Model Predictive Control of Velocity and Torque Split in a Parallel Hybrid Vehicle

Model Predictive Control of Velocity and Torque Split in a Parallel Hybrid Vehicle Proceedings of the 2009 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA - October 2009 Model Predictive Control of Velocity and Torque Split in a Parallel Hybrid Vehicle

More information

Analysis and Simulation of a novel HEV using a Single Electric Machine

Analysis and Simulation of a novel HEV using a Single Electric Machine Analysis and Simulation of a novel HEV using a Single Electric Machine Presenter: Prof. Chengliang Yin, Shanghai Jiao Tong University Authors: Futang Zhu, Chengliang Yin, Li Chen, Cunlei Wang Nov. 2013

More information

Environmental Impact of Taxis Is there a Business Case for Hybrids. Dr James Tate, Institute for Transport Studies

Environmental Impact of Taxis Is there a Business Case for Hybrids. Dr James Tate, Institute for Transport Studies Environmental Impact of Taxis Is there a Business Case for Hybrids Dr James Tate, Institute for Transport Studies CONTENTS TAXI operations NETWORK impacts 2 Background THE LEEDS TAXI FLEET (Feb 2015) Vehicles

More information

Improve Your Fuel Economy With Advanced Shifting Technology. With DynActive Shifting

Improve Your Fuel Economy With Advanced Shifting Technology. With DynActive Shifting Improve Your Fuel Economy With Advanced Shifting Technology With DynActive Shifting Now Customize Your Fuel Savings And Performance Even Further Much of Allison s continued success has come from building

More information

A Personalized Highway Driving Assistance System

A Personalized Highway Driving Assistance System A Personalized Highway Driving Assistance System Saina Ramyar 1 Dr. Abdollah Homaifar 1 1 ACIT Institute North Carolina A&T State University March, 2017 aina Ramyar, Dr. Abdollah Homaifar (NCAT) A Personalized

More information

Energy Management Strategies for Plug-in Hybrid Electric Vehicles. Master of Science Thesis. Henrik Fride n Hanna Sahlin

Energy Management Strategies for Plug-in Hybrid Electric Vehicles. Master of Science Thesis. Henrik Fride n Hanna Sahlin Energy Management Strategies for Plug-in Hybrid Electric Vehicles Master of Science Thesis Henrik Fride n Hanna Sahlin Department of Signals and Systems Division of Automatic Control, Automation and Mechatronics

More information

PLUG-IN VEHICLE CONTROL STRATEGY: FROM GLOBAL OPTIMIZATION TO REAL-TIME APPLICATION

PLUG-IN VEHICLE CONTROL STRATEGY: FROM GLOBAL OPTIMIZATION TO REAL-TIME APPLICATION PLUG-IN VEHICLE CONTROL STRATEGY: FROM GLOBAL OPTIMIZATION TO REAL-TIME APPLICATION Dominik Karbowski Argonne National Laboratory Aymeric Rousseau, Sylvain Pagerit, Phillip Sharer Argonne National Laboratory

More information

DESIGNING AN ELECTRIFIED VEHICLE:

DESIGNING AN ELECTRIFIED VEHICLE: DESIGNING AN ELECTRIFIED VEHICLE: How Vehicle Level Attributes Drive High Voltage Subsystem Design Dr. Daniel Kok Manager - Advanced Electrified Powertrain Systems Ford Motor Company International Conference

More information

Flexible Public Transport Modelling for Large Urban Areas

Flexible Public Transport Modelling for Large Urban Areas Flexible Public Transport Modelling for Large Urban Areas Jeroen P.T. van der Gun, Rob van Nes, Bart van Arem 1 Introduction Public transport makes travel demand models complex PT enables many potential

More information

Control Design of an Automated Highway System (Roberto Horowitz and Pravin Varaiya) Presentation: Erik Wernholt

Control Design of an Automated Highway System (Roberto Horowitz and Pravin Varaiya) Presentation: Erik Wernholt Control Design of an Automated Highway System (Roberto Horowitz and Pravin Varaiya) Presentation: Erik Wernholt 2001-05-11 1 Contents Introduction What is an AHS? Why use an AHS? System architecture Layers

More information

ParkNet: Drive-by Sensing of Road-side Parking Statistics

ParkNet: Drive-by Sensing of Road-side Parking Statistics ParkNet: Drive-by Sensing of Road-side Parking Statistics Published by: Mathur, Suhas, Tong Jin, Nikhil Kasturirangan, Janani Chandrasekaran, Wenzhi Xue, Marco Gruteser, and Wade Trappe in Mobisys 2010.

More information

Energy Management Control Concepts with Preview for Hybrid Commercial Vehicles

Energy Management Control Concepts with Preview for Hybrid Commercial Vehicles Energy Management Control Concepts with Preview for Hybrid Commercial Vehicles Vital van Reeven, Rudolf Huisman, Michiel Pesgens, Robert Koffrie. Abstract In a Hybrid Electric Vehicle (HEV), the main task

More information

USE OF GT-SUITE TO STUDY PERFORMANCE DIFFERENCES BETWEEN INTERNAL COMBUSTION ENGINE (ICE) AND HYBRID ELECTRIC VEHICLE (HEV) POWERTRAINS

USE OF GT-SUITE TO STUDY PERFORMANCE DIFFERENCES BETWEEN INTERNAL COMBUSTION ENGINE (ICE) AND HYBRID ELECTRIC VEHICLE (HEV) POWERTRAINS Proceedings of the 16 th Int. AMME Conference, 27-29 May, 214 1 Military Technical College Kobry El-Kobbah, Cairo, Egypt. 16 th International Conference on Applied Mechanics and Mechanical Engineering.

More information

Traffic Simulator Model Validation Comparing Real and Virtual Test Result *

Traffic Simulator Model Validation Comparing Real and Virtual Test Result * 特集 Traffic Simulator Model Validation Comparing Real and Virtual Test Result * 山城貴久 Takahisa YAMASHIRO Various kinds of V2X applications have been proposed, for safety and efficiency purposes. To evaluate

More information

Verfication of road test normality Parameter Analysis TF Normalisation

Verfication of road test normality Parameter Analysis TF Normalisation Verfication of road test normality Parameter Analysis TF Normalisation 16.09.2014 Indicators to be analysed with existing PEMS trips and other driving data Following parameters are yet identified for the

More information

Intelligent Mobility for Smart Cities

Intelligent Mobility for Smart Cities Intelligent Mobility for Smart Cities A/Prof Hussein Dia Centre for Sustainable Infrastructure CRICOS Provider 00111D @HusseinDia Outline Explore the complexity of urban mobility and how the convergence

More information

Research on energy management four wheel drive robot assisted YinBo Du 1,a, Pengju Si2,3,b Lei Xia1,a,Da-Hong Wang 3,c, Xian Meng1,a

Research on energy management four wheel drive robot assisted YinBo Du 1,a, Pengju Si2,3,b Lei Xia1,a,Da-Hong Wang 3,c, Xian Meng1,a 3rd International Conference on Materials Engineering, Manufacturing Technology and Control (ICMEMTC 016) Research on energy management four wheel drive robot assisted YinBo Du 1,a, Pengju Si,3,b Lei Xia1,a,Da-Hong

More information

Model-Based Development

Model-Based Development MODPROD Workshop 2014 Model-Based Development Examples of how Optimal Control can Support Design and Evaluation Lars Eriksson lars.eriksson@liu.se Division of Vehicular Systems Department of Electrical

More information

A New Control Algorithm for Doubly Fed Induction Motor with Inverters Supplied by a PV and Battery Operating in Constant Torque Region

A New Control Algorithm for Doubly Fed Induction Motor with Inverters Supplied by a PV and Battery Operating in Constant Torque Region IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 09 March 2017 ISSN (online): 2349-784X A New Control Algorithm for Doubly Fed Induction Motor with Inverters Supplied by

More information

A Simple Approach for Hybrid Transmissions Efficiency

A Simple Approach for Hybrid Transmissions Efficiency A Simple Approach for Hybrid Transmissions Efficiency FRANCESCO BOTTIGLIONE Dipartimento di Meccanica, Matematica e Management Politecnico di Bari Viale Japigia 182, Bari ITALY f.bottiglione@poliba.it

More information

Manual Where Do I Get Cars Save Gas Mileage Than Automatics

Manual Where Do I Get Cars Save Gas Mileage Than Automatics Manual Where Do I Get Cars Save Gas Mileage Than Automatics Where do automatic cars fare now in the big fuel consumption debate: automatic significant moves made to improve the technology in automatic

More information

U.S. Department of Energy s Vehicle Technologies Program -

U.S. Department of Energy s Vehicle Technologies Program - U.S. Department of Energy s Vehicle Technologies Program - A Summary of Results Thus Far from The EV Project John Smart Idaho National Laboratory National Governor s Association State and Local Plug-in

More information

Research and Design of an Overtaking Decision Assistant Service on Two-Lane Roads

Research and Design of an Overtaking Decision Assistant Service on Two-Lane Roads Research and Design of an Overtaking Decision Assistant Service on Two-Lane Roads Shenglei Xu, Qingsheng Kong, Jong-Kyun Hong and Sang-Sun Lee* Department of Electronics and Computer Engineering, Hanyang

More information

Energy Management Strategy Based on Frequency- Varying Filter for the Battery Supercapacitor Hybrid System of Electric Vehicles

Energy Management Strategy Based on Frequency- Varying Filter for the Battery Supercapacitor Hybrid System of Electric Vehicles World Electric Vehicle Journal Vol. 6 - ISSN 2032-6653 - 2013 WEVA Page Page 0623 EVS27 Barcelona, Spain, November 17-20, 2013 Energy Management Strategy Based on Frequency- Varying Filter for the Battery

More information

Model-Based Design and Hardware-in-the-Loop Simulation for Clean Vehicles Bo Chen, Ph.D.

Model-Based Design and Hardware-in-the-Loop Simulation for Clean Vehicles Bo Chen, Ph.D. Model-Based Design and Hardware-in-the-Loop Simulation for Clean Vehicles Bo Chen, Ph.D. Dave House Associate Professor of Mechanical Engineering and Electrical Engineering Department of Mechanical Engineering

More information

Vehicle Performance. Pierre Duysinx. Research Center in Sustainable Automotive Technologies of University of Liege Academic Year

Vehicle Performance. Pierre Duysinx. Research Center in Sustainable Automotive Technologies of University of Liege Academic Year Vehicle Performance Pierre Duysinx Research Center in Sustainable Automotive Technologies of University of Liege Academic Year 2015-2016 1 Lesson 4: Fuel consumption and emissions 2 Outline FUEL CONSUMPTION

More information

Retrospective of EV Testing by Consumer Reports

Retrospective of EV Testing by Consumer Reports EVS28 KINTEX, Korea, May 3-6, 2015 Retrospective of EV Testing by Consumer Reports Gabriel Shenhar Senior Auto Test Engineer & Program Manager CONSUMER REPORTS Colchester, Connecticut, USA - gshenhar@consumer.org

More information

Integrated System Design Optimisation: Combining Powertrain and Control Design

Integrated System Design Optimisation: Combining Powertrain and Control Design Integrated System Design Optimisation: Combining Powertrain and Control Design Dr. Ir. Theo Hofman MSc Emilia Silvas. Size Control Technology Topology Wednesday,, 14:15-14:35 Are we harming the planet

More information

A Chemical Batch Reactor Schedule Optimizer

A Chemical Batch Reactor Schedule Optimizer A Chemical Batch Reactor Schedule Optimizer By Steve Morrison, Ph.D. 1997 Info@MethodicalMiracles.com 214-769-9081 Many chemical plants have a very similar configuration to pulp batch digesters; two examples

More information

Shortening total trip time by short station dwell time and passing local trains

Shortening total trip time by short station dwell time and passing local trains Shortening total trip time by short station dwell time and passing local trains T.Katori, T.Izumi & Y.Takahashi Department of Electronics and Computer Science, College of Science and Technology, Nihon

More information

CONNECTED PROPULSION - THE FUTURE IS NOW

CONNECTED PROPULSION - THE FUTURE IS NOW MOTOR & UMWELT 2018 ENGINE & ENVIRONMENT 2018 CONNECTED PROPULSION - THE FUTURE IS NOW Larry Nitz General Motors 9 We re at a transformative time in automotive history, but a lot of innovation is already

More information

Implementable Strategy Research of Brake Energy Recovery Based on Dynamic Programming Algorithm for a Parallel Hydraulic Hybrid Bus

Implementable Strategy Research of Brake Energy Recovery Based on Dynamic Programming Algorithm for a Parallel Hydraulic Hybrid Bus International Journal of Automation and Computing 11(3), June 2014, 249-255 DOI: 10.1007/s11633-014-0787-4 Implementable Strategy Research of Brake Energy Recovery Based on Dynamic Programming Algorithm

More information

Remarkable CO 2 Reduction of the Fixed Point Fishing Plug-in Hybrid Boat

Remarkable CO 2 Reduction of the Fixed Point Fishing Plug-in Hybrid Boat Journal of Asian Electric Vehicles, Volume 13, Number 1, June 215 Remarkable CO 2 Reduction of the Fixed Point Fishing Plug-in Hybrid Boat Shigeyuki Minami 1, Kazusumi Tsukuda 2, Kazuto Koizumi 3, and

More information