Scheduling for Wireless Energy Sharing Among Electric Vehicles

Size: px
Start display at page:

Download "Scheduling for Wireless Energy Sharing Among Electric Vehicles"

Transcription

1 Scheduling for Wireless Energy Sharing Among Electric Vehicles Zhichuan Huang Computer Science and Electrical Engineering University of Maryland, Baltimore County Ting Zhu Computer Science and Electrical Engineering University of Maryland, Baltimore County Abstract To be able to create a sustainable system for electric vehicles, charging facilities are used as energy providers for these cars and scheduling is done using simple algorithms such as FIFO or EDF. However, these algorithms may not provide the best performance for charging cars and energy is lost during wired transmission. On the contrary to these solutions, our aim is to develop an algorithm for scheduling wireless energy sharing among electric vehicles. We give an optimal offline solution for the scheduling problem. Besides we develop an online algorithm which is based on shortest job first. We conduct system evaluation with simulator that we implemented. Results show our algorithm achieves better throughput than FIFO, EDF and our proposed online algorithm have close performance with optimal solution. I. INTRODUCTION Carbon dioxide emissions of vehicles that run with gas to are very high. With development in technology, vehicles that use electricity become popular. However, since the battery in electrical vehicle is limited, thus how to charge them becomes an important problem. Most common approach for charging these cars is to use charging facilities and charge the vehicles through wires. However, it limits the application of electrical vehicles and makes electrical vehicles difficult for ordinary people to purchase for daily usage. Doing charging wirelessly started to surpass this idea since it is more convenient and easy. Instead of using charging facilities to charge vehicles, our proposed approach is to share energy between electric vehicles wirelessly. In particular, we study the possibility of sharing energy in electrical vehicles among different vehicles when they are parked in parking lot. To apply energy sharing of electrical vehicles in parking lot, we need to investigate how to scheduling the wireless charging among electrical vehicles. Previous works are mostly based on charging electric vehicles over wires using charging facilities and these previous approaches use simple algorithms similar to FIFO or EDF for scheduling charging. In our work, our aim is to have a system in a parking lot for electric vehicles so that they will share energy wirelessly in order to be charged. However, the problem is how to schedule charging. This is important because development in wireless technology is increasing and reusability of energy is a concern. Electric vehicles are green compared to vehicles using gas and without using charging facilities for charge is flexible. However, vehicles need to be parked in parking lots designed for this wireless charging. No need to worry about running out of charge because another car with surplus energy can arrive in the future. We first formulate our problem and define our design goal. Then we analyze the possible optimal solution with given assumptions and provide proof the optimal solution for wireless charging scheduling. The basic idea of our proposed solution is to split problem to sub problems; then find an optimal solution for sub problems, then we prove optimal solution for whole problem is achieved. In addition, we develop an online solution for practical scenarios. The algorithm is based on shortest job first algorithm. However, we add some situation checking to improve the performance of algorithm. To evaluate the performance of our proposed scheduling algorithm, we conduct simulations for 100 electrical vehicles in parking lot with different scenarios. The main contribution of our paper is summarized as follows: To our knowledge, this is the first work to develop a scheduling algorithm for sharing energy wirelessly between electric vehicles. We implement the algorithm and the simulator to run our algorithm and compare it with existent algorithms. Our evaluation indicates that our proposed optimal solution provides better throughput than FIFO, EDF and Shortest Job First. For three online algorithms, our proposed Online Shortest Job First performs better than other two algorithms. The rest of the paper is organized as follows: the problem is formulated in Section II; the detailed design for scheduling charging vehicles is described in Section III; implementation and simulations are provided in Section IV; related work are discussed in Section V; finally, we conclude the paper in Section VI. II. MODEL Electric vehicles are becoming more popular. However, how to charge them is an important problem. In our work, our aim is to have a system in a parking lot for electric vehicles so that they will share energy wirelessly in order to be charged. However, the problem is how to schedule charging. This is important because development in wireless technology is increasing and reusability of energy is a concern. Electric vehicles are green compared to vehicles using gas and without using charging facilities for charge is flexible. However, vehicles need to be parked in parking lots designed for this wireless charging (shown in Figure 1). A. Problem Formulation Let the set of vehicles be N = {1, 2,, n} and D and S are demander set and supplier set with energy shortage and

2 Fig. 1. Parking Lot With Wireless Chargers Algorithm 1 Optimal Scheduling Input: D, S Output: Energy transmission set Q 1: Fetch the vehicle i in D which leaves first; 2: if i is chargeable then 3: Charge i with the energy provided in S in order of latest departure time; 4: else 5: for vehicle j is charged before do 6: if i becomes chargeable after remove j then 7: Recalculate the solution with largest future energy available; 8: end if 9: end for 10: Select the case between Q m and (i, ( Q m - 1) vehicles in Q m ) with largest future energy available; 11: end if 12: Go to Step 1 until the all vehicle in D is processed; Fig. 2. An Example of Scheduling energy surplus. And all the vehicles are parked in the same parking lot. Each vehicle arrives and leaves at a specific time and can supply or need a certain amount of energy. An example is given in Figure 2. Five cars are given in the example. For vehicle 1, it can supply 60kW h energy for other vehicles; for vehicle 2, it needs 40kW h energy; and for vehicles 3-5, they all need 20kW h energy. And the block shows the arriving and leaving time. Then our goal is to maximize the number of vehicles can get enough energy before they leave. In this example, vehicle can either decide to charge vehicle 2 and vehicle 3 or charge vehicles 3-5. To maximize the throughput, we should assign vehicle 1 to charge vehicles 3-5 even vehicle 2 arrives and leaves early. There are other complex cases of charging and the detailed analysis and design in described in latter sections. III. DESIGN With the problem formulation in previous section, we detailed describe our design in this section. We first analyze the possible optimal solution with given assumptions and provide proof the optimal solution. Then we propose an online shortest job first design to solve the problem in real-time. A. Optimal Solution To analyze the possible optimal solution for electrical vehicle charging scheduling, we first give some assumptions to simplify the problem. Assumption 1: Arrival time to parking lot and departure time from parking lot of vehicles are known Assumption 2: Charge status of each car is known. Either demander or supplier. Assumption 3: The charging speed between vehicles is fast enough for energy transmission. In reality, the assumption 2 can be implemented by devices deployed in each vehicle to collect charging status. Then when each vehicle entering the lot sends a charging request to a base station and informs it about its status (demander or supplier). For assumption 3, with the development of charging technology, we believe it can be achieved in near future. For assumption 1, it is generally not possible to predict accurate future information, thus it is only used for analysis of optimal solution. Our proposed approach is to develop a scheduling algorithm that achieves maximum amount of cars with enough charge to reach their destinations. Then with those assumptions, we propose an dynamic programming algorithm to find the optimal scheduling. Firstly, overlaps between cars are generated. An overlap is a time period and starts with a car arrival which makes number of cars in the lot at least 2 and end with a car departure or a new car arrival. Basic idea is for each demander car with earliest departure time in an overlap it is checked if it can be charged. If yes then this is sub-optimal solution. If not, sub-optimal solution is tried to be found either using previous sub-optimal solution without new car or replacing one of the old cars in the previous sub-optimal solution with the new demander car. The detailed algorithm is described in Algorithm 1. We first fetch the vehicle i in D which leaves first (Line 1). Then if i is chargeable, we decide to charge i with the energy provided in S in order of latest departure time (Line 2-3). Otherwise, for vehicle j is charged before, if i becomes chargeable after remove j, we recalculate the solution with largest future energy available (Lines 4-9). After checking for all vehicles charged before, we select the case between Q m and (i, ( Q m - 1) vehicles in Q m ) with largest future energy available (Lines 10-11). Finally, The algorithm goes to Line 1 until the all vehicle in D is processed (Line 12). To prove Algorithm 1 is optimal solution, we first suppose

3 first m vehicles solution Q m with throughput Q m is optimal solution, then we prove that solution Q m+1 produced by Algorithm 1 for first m +1 vehicles solution is also optimal solution. Condition 1: i is chargeable. In this case, Q m+1 = Q m + 1. If i is not in Q m+1, then we can have the contradiction that Q m = Q m + 1, thus i is in the solution. Since the other vehicles are the optimal solution of first m vehicles, they should be in the Q m+1 too. We only need to select the way of charging i with largest future energy, which is shown in Line 3 in Algorithm 1. Thus, under this condition, our proposed algorithm is optimal solution. Condition 2: i is chargeable if remove one of the vehicles in Q m. Select the optimal solution of m vehicles or ( Q m 1) vehicles in Q m and i as optimal solution. Then we prove our proposed algorithm is optimal solution under Condition 2. a) Select the optimal solution of m vehicles. Since optimal solution of m vehicles is better than ( Q m 1) vehicles in Q m and i, thus we only need to prove optimal solution of m vehicles is better than i and other ( Q m 1) vehicles which are not all in Q m. Suppose i and other ( Q m 1) vehicles which are not all in Q m is optimal solution of Q m+1, then we can have a subset of Q m with ( Q m 1) vehicles except vehicle k have lower future energy than ( Q m 1) vehicles which are not all in Q m, otherwise ( Q m 1) vehicles which are not all in Q m and k is the optimal solution of Q m. However, the subset of Q m with ( Q m 1) and i should be optimal solution, which contradicts with the assumption. b) Select Q m 1 vehicles in Q and i. Since optimal solution of m vehicles is worse than (Q m 1) vehicles in Q m and i, thus we only need to prove optimal solution of m vehicles is better than i and other ( Q m 1) vehicles which are not all in Q m. Suppose i and other ( Q m 1) vehicles which are not all in Q m is optimal solution of Q m+1, then we can have a subset of Q m with ( Q m 1) vehicles except vehicle k have lower future energy than ( Q m 1) vehicles which are not all in Q m, otherwise ( Q m 1) vehicles which are not all in Q m and k is the optimal solution of Q m. However, the subset of Q m with ( Q m 1) and i should be optimal solution, which contradicts with the assumption. For both two cases a) and b), we can also prove that our proposed algorithm is the optimal solution. Combined with analysis of Condition 1, we can prove that in all scenarios, our proposed algorithm is the optimal solution. B. Online Solution Though optimal solution can be obtained by dynamic programming, it needs whole future information, which is not applicable in reality. In this section, we propose an online algorithm to do the scheduling. Since we want to maximize the throughput, thus we should rather charge cars which need less energy. Thus shortest job first algorithm is our first choice. However, in some case, the shortest job first algorithm fails, shown in Figure 2. When car 2 enters parking lot, we will charge car 2 with car 1. Then when car 4 and 5 enters in, we dont have enough energy to charge the car. Thus we make some revision on shortest job first algorithm for better performance. Algorithm 2 Online Shortest Job First Input: D i, S i in overlap i Output: Energy transmission set Q 1: Find list L of cars which require energy and will arrive soon after overlap; 2: for each vehicle in L do 3: if required energy of car C j is less than car with least required energy in D i then 4: Reserve energy C j needs in supplier in S i which leaves first; 5: end if 6: end for 7: Follow the same process as traditional shortest job first. The basic idea of online shortest job first algorithm is to use short term future information. If we know the information of car 3, 4 and 5, we can skip car 2 and charge other three cars, which performs high throughput. The detailed algorithm is in Algorithm 2. We first find list L of cars which require energy and will arrive soon after overlap (Line 1). Then for each vehicle in L, we check if required energy of car C j is less than car with least required energy in D i. If yes, we reserve energy C j needs in supplier in S i which leaves first (Lines 2-6). After processing each vehicles in L, we follow the same process as traditional shortest job first for scheduling charging vehicles (Line 7). However, we need short term future information to do online shortest job first algorithm. Currently, we use accurate short term future information. In future, we can use GPS in car to predict cars which will arrive soon. For example, if the location of one car is close to parking lot, we can predict its highly possible this car will enter parking lot very soon. IV. EVALUATION To evaluate the performance of online shortest job first algorithm, we implement a simulator to test the performance of four algorithms. Four algorithms are: Online Shortest Job First, Earliest Job First, FIFO and optimal solution. Note that Online Shortest Job First is the Algorithm 2 instead of traditional Shortest Job First. We then do some simulations on three different scenarios. All the results in simulations are the average result of 100 simulations. For each simulation, each electrical vehicle will be randomly assigned to be demander or supplier with specific amount of energy. A. Random Scenario We first do the simulations in a random scenario, in which arrive time and departure time of all vehicles are random generated with uniform distribution. The results are shown in Figure 3. From Figure 3, we can find optimal solution is best algorithm as proved. And online shortest job first algorithm is close to optimal solution. And the advantage of online shortest job first algorithm increases with the increase of number of cars. When there is 100 vehicles in simulation, we can find that the performance of different algorithms are various. Optimal solution performs best and EOF performs worst. And our

4 Fig. 3. Fig. 4. Throughput in Random Scenario Throughput in Mall Scenario proposed online shortest job first algorithm is more than 30% better than EOF. B. Mall Scenario Then we do the simulation under mall parking lot scenario. To simulate the arrive time of departure time of cars in mall parking lot, we first use normal distribution to generate arrive time of cars. And the mean of arrive time is 6PM mostly range from 4PM to 8PM. Then we generate interval of arrive time and departure time with normal distribution. The mean of interval is 2 hours and mostly range from 1 hour to 3 hours. Then we get the departure time of cars by adding arrive time and interval. The simulation result under these data are shown in Figure 4. From Figure 4, we can find optimal solution is best algorithm as proved. And online shortest job first algorithm is better than other algorithms especially when number of cars is large. When there is 100 vehicles in simulation, we can find that the performance of different algorithms are various. Optimal solution performs best and EOF performs worst. And our proposed online shortest job first algorithm is more than 20% better than EOF. C. Commercial Building Scenario We also do the simulation in building scenario. To simulate the arrive time of departure time of cars in an office building, Fig. 5. Throughput in Building Scenario we first use normal distribution to generate arrive time of cars. And the mean of arrive time is 9AM mostly range from 7AM to 11AM. Then we generate departure time with normal distribution. The mean of departure time is 5PM and mostly range from 3PM to 7PM. The simulation result under these data are shown in Figure 5. From Figure 5, we can find optimal solution is best algorithm as proved. However, the difference among four algorithms are very close. A reasonable explanation is in building scenario, all cars stay in parking lot for a long time, thus when decide which car to charge, we have enough information about most of cars. And with more information, each algorithm performs similar throughput. When there is 100 vehicles in simulation, we can find that the performance of different algorithms are various. Optimal solution performs best and EOF performs worst. And our proposed online shortest job first algorithm is more than 10% better than EOF. In summary, for all three scenarios, optimal solution always performs best since it is proved to be optimal. For other three online algorithms, our proposed shortest job first always performs better than other two algorithms. The possible explanation is because our design goal is to maximize the throughput, thus if we finish shortest job first, it provides more time for vehicles with surplus energy to share energy with vehicles need energy. V. RELATED WORK Our work focuses on scheduling wireless charging of electrical vehicles in the parking lot. The related work contains three part: i) energy efficient system; ii) Vehicle-to-Grid; and iii) electrical vehicle charging. Energy efficient systems are widely studied to save energy cost in different areas. In [2], models of HVAC operation, building manager and owner are analyzed to design incentive scheme for energy savings. In [6], local energy storage is colocated with DC appliances to save energy conversion loss. Local generation and renewable energy are investigated to reduce energy cost [12]. A novel architecture is proposed to utilizing existing home resources to reduce energy consumption [8]. Efficient power allocation in AC electrical systems is analyzed with a new variation of knapsack problem [14]. In [5], optimal power flow problem in distributed network is solved with SOCP relaxation of the problem. In [15],

5 different types of energy storage devices are investigated to reduce energy cost in datacenters. [3] evaluates the effect of storage on the electrical grid under different electricity pricing schemes and discusses possible pricing schemes under which storage adoption is profitable for homeowners. [1] analyzes the hourly aggregate load data to study whether the choice of TOU parameters adequately reflects the aggregate load, and to study whether TOU pricing has actually resulted in a decrease in the mean peak-to-average ratio. In [13], a novel demand response mechanism is proposed to exploits appliance elasticity to decrease peak loads, a fuzzy-logic based controller for appliances and a signal generator for the utility are designed to reduce the power consumed by appliances. Vehicle-to-Grid (V2G) is a very promising research area in EV applications. In [10], authors proposed that electrical vehicles can get electricity from power grid and feed power back to the power grid in some conditions. They thought that V2G can help the storage and backup of renewable energy, since the battery in electrical vehicles is large and can supply for daily usage in residential buildings [11]. In [7], authors developed techniques for V2G frequency regulation to better control strategy. The above papers are mainly related to the V2G technology, which is focused on technology to feed energy stored in electrical vehicles back to the power grid. Different from V2G, our work is to share energy among electrical vehicles by wireless charging. Compared to V2G, our approach can be more flexible since we do not restrict the electrical vehicles to get energy from traditional power grid. Large scale charging of electric vehicles [4] is one of the works that has been done for schedule charging for electric vehicles. However, proposed approach is to use a charging facility and an operator to manually schedule charging. Also in order be charged vehicle, owners have to make payment and the most profitable vehicles have priority over others. Dynamic Energy-Oriented Scheduling (DEOS) [16] is similar to our case. Proposed approach is to make scheduling according to real time available energy and energy consumptions by each task. Like in our system energy changes dynamically however, this scheduling is for tasks in wireless sensor networks. Previous works are mostly based on charging electric vehicles over wires using charging facilities and these previous approaches use simple algorithms similar to FIFO or EDF for scheduling charging. In our work, our aim is to have a system in a parking lot for electric vehicles so that they will share energy wirelessly in order to be charged. VI. CONCLUSION To sum up, using electric vehicles is the very convenient compared to vehicles that use gas or fuel. It is cheaper compared to large facilities, green and more flexible. But to create a sustainable system for electric vehicles, there should be an efficient way to charge them. In order to achieve this, an efficient scheduling algorithm is necessary to charge maximum amount of cars to reach their destinations in a parking lot. After couple of researches we came up with two particular papers that are similar to our approach in some ways. But these approaches are for either using wires and facilities or for tasks. Existent scheduling algorithms do not give the optimal solution for our case. Therefore, we developed our own algorithms. First algorithm uses dynamic programming to charge maximum amount of cars in a parking lot. We also proved this algorithm. However, in order to implement it, future information should be known. In reality, this is not true all the time. Therefore, we developed a second algorithm that uses shorter term future information and prediction. We compared our algorithms with FIFO, Shortest Job First and Earliest Deadline First algorithms. In our simulation results we find that FIFO and EDF never reach the maximum output that our algorithms have reached. On the other hand, we realize that Shortest Job First almost reached optimal solution but never as high as our dynamic programming. Our goal for future is to expand the scale of parking lots to bigger parking lots. ACKNOWLEDGMENT This work was supported by NSF CNS REFERENCES [1] A. Adepetu, E. Rezaei, D. Lizotte, and S. Keshav. Critiquing time-ofuse pricing in ontario. In IEEE International Conference on Smart Grid Communications, [2] A. Aswani and C. Tomlin. Incentive design for efficient building quality of service. In 50th Annual Allerton Conference on Communication, Control, and Computing, [3] T. Carpenter, S. Singla, P. Azimzadeh, and S. Keshav. The impact of electricity pricing schemes on storage adoption in ontario. In e-energy, [4] S. Chen and L. Tong. iems for large scale charging of electric vehicles: Architecture and optimal online scheduling. In Smart Grid Communications (SmartGridComm), 2012 IEEE Third International Conference on, pages , Nov [5] L. Gan, N. Li, U. Topcu, and S. H. Low. Optimal power flow in distribution networks. In IEEE Conference on Decision and Control, [6] S. K. Ghai, Z. Charbiwala, S. Mylavarapu, D. P. Seetharamakrishnan, and R. Kunnath. DC picogrids: A case for local energy storage for uninterrupted power to DC appliances. In e-energy, [7] S. Han, S. Han, and K. Sezaki. Development of an optimal vehicle-togrid aggregator for frequency regulation. Smart Grid, IEEE Transactions on, 1(1):65 72, [8] H. Hlavacs, K. Hummel, R. Weidlich, A. Houyou, A. Berl, and H. Meer. Energy efficiency in future home environments: A distributed approach. Home Networking, 256:69 84, [9] J. K. Johnson and M. Chertkov. A majorization-minimization approach to design of power transmission networks. In Decision and Control (CDC), th IEEE Conference on, pages IEEE, [10] W. Kempton and J. Tomić. Vehicle-to-grid power fundamentals: calculating capacity and net revenue. Journal of power sources, 144(1): , [11] W. Kempton and J. Tomić. Vehicle-to-grid power implementation: From stabilizing the grid to supporting large-scale renewable energy. Journal of Power Sources, 144(1): , [12] L. Lu, J. Tu, C.-K. Chau, M. Chen, and X. Lin. Online energy generation scheduling for microgrids with intermittent energy sources and co-generation. In SIGMETRICS, [13] P. Srikantha, S. Keshav, and C. Rosenberg. Distributed control for reducing carbon footprint in the residential sector. In 2012 IEEE Third International Conference on Smart Grid Communications, [14] D. Wang, C. Ren, A. Sivasubramaniam, B. Urgaonkar, and H. Fathy. Energy storage in datacenters: What, where, and how much? In SIGMETRICS, [15] L. Yu and C.-K. Chau. Complex-demand knapsack problems and incentives in AC power systems. In AAMAS, [16] T. Zhu, A. Mohaisen, Y. Ping, and D. Towsley. Deos: Dynamic energy-oriented scheduling for sustainable wireless sensor networks. In INFOCOM, 2012 Proceedings IEEE, pages , March 2012.

Renewable Energy Transmission through Multiple Routes in a Mobile Electrical Grid

Renewable Energy Transmission through Multiple Routes in a Mobile Electrical Grid Renewable Energy Transmission through Multiple Routes in a Mobile Electrical Grid Ping Yi, Yixiong Tang, Yijie Hong, Yuzhe Shen, Ting Zhu, Qingquan Zhang, Miroslav M. Begovic Shanghai Jiao Tong University,

More information

THE alarming rate, at which global energy reserves are

THE alarming rate, at which global energy reserves are Proceedings of the 12th International IEEE Conference on Intelligent Transportation Systems, St. Louis, MO, USA, October 3-7, 2009 One Million Plug-in Electric Vehicles on the Road by 2015 Ahmed Yousuf

More information

International Conference on Advances in Energy and Environmental Science (ICAEES 2015)

International Conference on Advances in Energy and Environmental Science (ICAEES 2015) International Conference on Advances in Energy and Environmental Science (ICAEES 2015) Design and Simulation of EV Charging Device Based on Constant Voltage-Constant Current PFC Double Closed-Loop Controller

More information

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Preetika Kulshrestha, Student Member, IEEE, Lei Wang, Student Member, IEEE, Mo-Yuen Chow,

More information

The design and implementation of a simulation platform for the running of high-speed trains based on High Level Architecture

The design and implementation of a simulation platform for the running of high-speed trains based on High Level Architecture Computers in Railways XIV Special Contributions 79 The design and implementation of a simulation platform for the running of high-speed trains based on High Level Architecture X. Lin, Q. Y. Wang, Z. C.

More information

Electric Vehicles Coordinated vs Uncoordinated Charging Impacts on Distribution Systems Performance

Electric Vehicles Coordinated vs Uncoordinated Charging Impacts on Distribution Systems Performance Electric Vehicles Coordinated vs Uncoordinated Charging Impacts on Distribution Systems Performance Ahmed R. Abul'Wafa 1, Aboul Fotouh El Garably 2, and Wael Abdelfattah 2 1 Faculty of Engineering, Ain

More information

Multi-agent systems and smart grid modeling. Valentin Robu Heriot-Watt University, Edinburgh, Scotland, UK

Multi-agent systems and smart grid modeling. Valentin Robu Heriot-Watt University, Edinburgh, Scotland, UK Multi-agent systems and smart grid modeling Valentin Robu Heriot-Watt University, Edinburgh, Scotland, UK Challenges in electricity grids Fundamental changes in electricity grids: 1. Increasing uncertainty

More information

Optimization for Charge Station Placement in Electric Vehicles Energy Network

Optimization for Charge Station Placement in Electric Vehicles Energy Network Optimization for Charge Station Placement in Electric Vehicles Energy Network Yu Sui, Ping Yi, Xin Liu, Wei Wang, Ting Zhu School of Electronic, Information and Electrical Engineering, Shanghai Jiao Tong

More information

Harnessing Demand Flexibility. Match Renewable Production

Harnessing Demand Flexibility. Match Renewable Production to Match Renewable Production 50 th Annual Allerton Conference on Communication, Control, and Computing Allerton, IL, Oct, 3, 2012 Agenda 1 Introduction and Motivation 2 Analysis of PEV Demand Flexibility

More information

DEMAND RESPONSE ALGORITHM INCORPORATING ELECTRICITY MARKET PRICES FOR RESIDENTIAL ENERGY MANAGEMENT

DEMAND RESPONSE ALGORITHM INCORPORATING ELECTRICITY MARKET PRICES FOR RESIDENTIAL ENERGY MANAGEMENT 1 3 rd International Workshop on Software Engineering Challenges for the Smart Grid (SE4SG @ ICSE 14) DEMAND RESPONSE ALGORITHM INCORPORATING ELECTRICITY MARKET PRICES FOR RESIDENTIAL ENERGY MANAGEMENT

More information

IBM SmartGrid Vision and Projects

IBM SmartGrid Vision and Projects IBM Research Zurich September 2011 IBM SmartGrid Vision and Projects Eleni Pratsini Head, Department of Mathematical & Computational Sciences IBM Research Zurich SmartGrid for a Smarter Planet SmartGrid

More information

Electric Vehicle-to-Home Concept Including Home Energy Management

Electric Vehicle-to-Home Concept Including Home Energy Management Electric Vehicle-to-Home Concept Including Home Energy Management Ahmed R. Abul'Wafa 1, Aboul Fotouh El Garably 2, and Wael Abdelfattah 2 1 Faculty of Engineering, Ain Shams University, Cairo, Egypt 2

More information

Performance Evaluation of Electric Vehicles in Macau

Performance Evaluation of Electric Vehicles in Macau Journal of Asian Electric Vehicles, Volume 12, Number 1, June 2014 Performance Evaluation of Electric Vehicles in Macau Tze Wood Ching 1, Wenlong Li 2, Tao Xu 3, and Shaojia Huang 4 1 Department of Electromechanical

More information

V2G and V2H The smart future of vehicle-to-grid and vehicle-to-home. September 2016

V2G and V2H The smart future of vehicle-to-grid and vehicle-to-home. September 2016 V2G and V2H The smart future of vehicle-to-grid and vehicle-to-home September 2016 V2G is the future. V2H is here. V2G enables the flow of power between an electrical system or power grid and electric-powered

More information

Energy Management Through Peak Shaving and Demand Response: New Opportunities for Energy Savings at Manufacturing and Distribution Facilities

Energy Management Through Peak Shaving and Demand Response: New Opportunities for Energy Savings at Manufacturing and Distribution Facilities Energy Management Through Peak Shaving and Demand Response: New Opportunities for Energy Savings at Manufacturing and Distribution Facilities By: Nasser Kutkut, PhD, DBA Advanced Charging Technologies

More information

AGENT-BASED MICRO-STORAGE MANAGEMENT FOR THE SMART GRID. POWER AGENT: Salman Kahrobaee, Rasheed Rajabzadeh, Jordan Wiebe

AGENT-BASED MICRO-STORAGE MANAGEMENT FOR THE SMART GRID. POWER AGENT: Salman Kahrobaee, Rasheed Rajabzadeh, Jordan Wiebe AGENT-BASED MICRO-STORAGE MANAGEMENT FOR THE SMART GRID POWER AGENT: Salman Kahrobaee, Rasheed Rajabzadeh, Jordan Wiebe Source Vytelingum, P., T. D. Voice, S. D. Ramchurn, A. Rogers, and N. R. Jennings

More information

Train Group Control for Energy-Saving DC-Electric Railway Operation

Train Group Control for Energy-Saving DC-Electric Railway Operation Train Group Control for Energy-Saving DC-Electric Railway Operation Shoichiro WATANABE and Takafumi KOSEKI Electrical Engineering and Information Systems The University of Tokyo Bunkyo-ku, Tokyo, Japan

More information

Long Term Incentives for Residential Customers Using Dynamic Tariff

Long Term Incentives for Residential Customers Using Dynamic Tariff Downloaded from orbit.dtu.dk on: Nov 15, 2018 Long Term Incentives for Residential Customers Using Dynamic Tariff Huang, Shaojun; Wu, Qiuwei; Nielsen, Arne Hejde; Zhao, Haoran; Liu, Zhaoxi Published in:

More information

International Journal of Advance Engineering and Research Development. Demand Response Program considering availability of solar power

International Journal of Advance Engineering and Research Development. Demand Response Program considering availability of solar power Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 3, March -2016 e-issn (O): 2348-4470 p-issn (P): 2348-6406 Demand

More information

Power Distribution Scheduling for Electric Vehicles in Wireless Power Transfer Systems

Power Distribution Scheduling for Electric Vehicles in Wireless Power Transfer Systems Power Distribution Scheduling for Electric Vehicles in Wireless Power Transfer Systems Chenxi Qiu*, Ankur Sarker and Haiying Shen * College of Information Science and Technology, Pennsylvania State University

More information

Control Methodology for Peak Demand through Multi-Source Environment at Demand Side

Control Methodology for Peak Demand through Multi-Source Environment at Demand Side IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 8, Issue 3 (Nov. - Dec. 2013), PP 09-13 Control Methodology for Peak Demand through Multi-Source

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

Multi-level Feeder Queue Dispatch based Electric Vehicle Charging Model and its Implementation of Cloud-computing

Multi-level Feeder Queue Dispatch based Electric Vehicle Charging Model and its Implementation of Cloud-computing , pp.76-81 http://dx.doi.org/10.14257/astl.2016.137.14 Multi-level Feeder Queue Dispatch based Electric Vehicle Charging Model and its Implementation of Cloud-computing Wei Wang 1, Minghao Ai 2 Naishi

More information

Scheduling Electric Vehicles for Ancillary Services

Scheduling Electric Vehicles for Ancillary Services Scheduling Electric Vehicles for Ancillary Services Mira Pauli Chair of Energy Economics KIT University of the State of Baden-Wuerttemberg and National Research Center of the Helmholtz Association http://www.greenerkirkcaldy.org.uk/wp-content/uploads/electric-vehicle-charging.jpg

More information

Tariff Design Issues: Approaches for Recovering Grid and System Costs

Tariff Design Issues: Approaches for Recovering Grid and System Costs Tariff Design Issues: Approaches for Recovering Grid and System Costs DG Energy - Workshop on Renewable Energy Self-Consumption Andreas Jahn Senior Associate 27 th March 2015 The Regulatory Assistance

More information

STABILIZATION OF ISLANDING PEA MICRO GRID BY PEVS CHARGING CONTROL

STABILIZATION OF ISLANDING PEA MICRO GRID BY PEVS CHARGING CONTROL STABILIZATION OF ISLANDING PEA MICRO GRID BY PEVS CHARGING CONTROL Montree SENGNONGBAN Komsan HONGESOMBUT Sanchai DECHANUPAPRITTHA Provincial Electricity Authority Kasetsart University Kasetsart University

More information

Ron Schoff Senior Program Manager, EPRI. USEA Energy Supply Forum Washington, DC October 2, 2014

Ron Schoff Senior Program Manager, EPRI. USEA Energy Supply Forum Washington, DC October 2, 2014 Ron Schoff Senior Program Manager, EPRI USEA Energy Supply Forum Washington, DC October 2, 2014 2014 Electric Power Research Institute, Inc. 2014 Electric Power Research All rights reserved. Institute,

More information

Study on State of Charge Estimation of Batteries for Electric Vehicle

Study on State of Charge Estimation of Batteries for Electric Vehicle Study on State of Charge Estimation of Batteries for Electric Vehicle Haiying Wang 1,a, Shuangquan Liu 1,b, Shiwei Li 1,c and Gechen Li 2 1 Harbin University of Science and Technology, School of Automation,

More information

NORDAC 2014 Topic and no NORDAC

NORDAC 2014 Topic and no NORDAC NORDAC 2014 Topic and no NORDAC 2014 http://www.nordac.net 8.1 Load Control System of an EV Charging Station Group Antti Rautiainen and Pertti Järventausta Tampere University of Technology Department of

More information

Veridian s Perspectives of Distributed Energy Resources

Veridian s Perspectives of Distributed Energy Resources Veridian s Perspectives of Distributed Energy Resources Falguni Shah, M. Eng., P. Eng Acting Vice President, Operations March 09, 2017 Distributed Energy Resources Where we were and where we are planning

More information

Smart Operation for AC Distribution Infrastructure Involving Hybrid Renewable Energy Sources

Smart Operation for AC Distribution Infrastructure Involving Hybrid Renewable Energy Sources Milano (Italy) August 28 - September 2, 211 Smart Operation for AC Distribution Infrastructure Involving Hybrid Renewable Energy Sources Ahmed A Mohamed, Mohamed A Elshaer and Osama A Mohammed Energy Systems

More information

MPPT Control System for PV Generation System with Mismatched Modules

MPPT Control System for PV Generation System with Mismatched Modules Journal of Energy and Power Engineering 9 (2015) 83-90 doi: 10.17265/1934-8975/2015.01.010 D DAVID PUBLISHING MPPT Control System for PV Generation System with Mismatched Modules Chengyang Huang 1, Kazutaka

More information

A.Arun 1, M.Porkodi 2 1 PG student, 2 Associate Professor. Department of Electrical Engineering, Sona College of Technology, Salem, India

A.Arun 1, M.Porkodi 2 1 PG student, 2 Associate Professor. Department of Electrical Engineering, Sona College of Technology, Salem, India A novel anti-islanding technique in a Distributed generation systems A.Arun 1, M.Porkodi 2 1 PG student, 2 Associate Professor Department of Electrical Engineering, Sona College of Technology, Salem, India

More information

Opportunistic Energy Sharing Between Power Grid and Electric Vehicles: A Game Theory-based Nonlinear Pricing Policy

Opportunistic Energy Sharing Between Power Grid and Electric Vehicles: A Game Theory-based Nonlinear Pricing Policy Opportunistic Energy Sharing Between Power Grid and Electric Vehicles: A Game Theory-based Nonlinear Pricing Policy Ankur Sarker, Zhuozhao Li, William Kolodzey,, and Haiying Shen Department of Computer

More information

Energy Management for Regenerative Brakes on a DC Feeding System

Energy Management for Regenerative Brakes on a DC Feeding System Energy Management for Regenerative Brakes on a DC Feeding System Yuruki Okada* 1, Takafumi Koseki* 2, Satoru Sone* 3 * 1 The University of Tokyo, okada@koseki.t.u-tokyo.ac.jp * 2 The University of Tokyo,

More information

Data envelopment analysis with missing values: an approach using neural network

Data envelopment analysis with missing values: an approach using neural network IJCSNS International Journal of Computer Science and Network Security, VOL.17 No.2, February 2017 29 Data envelopment analysis with missing values: an approach using neural network B. Dalvand, F. Hosseinzadeh

More information

Wireless Networks. Series Editor Xuemin Sherman Shen University of Waterloo Waterloo, Ontario, Canada

Wireless Networks. Series Editor Xuemin Sherman Shen University of Waterloo Waterloo, Ontario, Canada Wireless Networks Series Editor Xuemin Sherman Shen University of Waterloo Waterloo, Ontario, Canada More information about this series at http://www.springer.com/series/14180 Miao Wang Ran Zhang Xuemin

More information

Layout Analysis using Discrete Event Simulation: A Case Study

Layout Analysis using Discrete Event Simulation: A Case Study Proceedings of the 2010 Industrial Engineering Research Conference A. Johnson and J. Miller, eds. Layout Analysis using Discrete Event Simulation: A Case Study Abstract ID: 439 Robbie Holt, Lucas Simmons,

More information

Distributing Power to Electric Vehicles on a Smart Grid

Distributing Power to Electric Vehicles on a Smart Grid Distributing Power to Electric Vehicles on a Smart Grid Yingjie Zhou *,, Student Member, IEEE, Xiangying Qian, Chen Wang and Nicholas Maxemchuk, Fellow, IEEE * School of Communication and Information Engineering,

More information

Optimal Centralized Renewable Energy Transfer Scheduling for Electrical Vehicles

Optimal Centralized Renewable Energy Transfer Scheduling for Electrical Vehicles Optimal Centralized Renewable Energy Transfer Scheduling for Electrical Vehicles Abdurrahman Arikan, Ruofan Jin, Bing Wang, Song Han, Kyoungwon Suh, Peng Zhang Department of Computer Science & Engineering,

More information

Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge

Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge Qiao Xiang 1, Fanxin Kong 1, Xue Liu 1, Xi Chen 1, Linghe Kong 1 and Lei Rao 2 1 School of Computer Science, McGill University

More information

Hawai'i Island Planning and Operations MEASURES TO IMPROVE RELIABILITY WITH HIGH DER

Hawai'i Island Planning and Operations MEASURES TO IMPROVE RELIABILITY WITH HIGH DER 1 Hawai'i Island Planning and Operations MEASURES TO IMPROVE RELIABILITY WITH HIGH DER Lisa Dangelmaier Hawaii Electric Light lisa.dangelmaier@hawaiielectriclight.com Hawai'i Electric Light System Overview

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

A Cost Benefit Analysis of Faster Transmission System Protection Schemes and Ground Grid Design

A Cost Benefit Analysis of Faster Transmission System Protection Schemes and Ground Grid Design A Cost Benefit Analysis of Faster Transmission System Protection Schemes and Ground Grid Design Presented at the 2018 Transmission and Substation Design and Operation Symposium Revision presented at the

More information

Economics of Vehicle to Grid

Economics of Vehicle to Grid Economics of Vehicle to Grid Adam Chase, Director, E4tech Cenex-LCV2016, Millbrook Strategic thinking in sustainable energy 2016 E4tech 1 E4tech perspective: Strategic thinking in energy International

More information

A STUDY ON ENERGY MANAGEMENT SYSTEM FOR STABLE OPERATION OF ISOLATED MICROGRID

A STUDY ON ENERGY MANAGEMENT SYSTEM FOR STABLE OPERATION OF ISOLATED MICROGRID A STUDY ON ENERGY MANAGEMENT SYSTEM FOR STABLE OPERATION OF ISOLATED MICROGRID Kwang Woo JOUNG Hee-Jin LEE Seung-Mook BAEK Dongmin KIM KIT South Korea Kongju National University - South Korea DongHee CHOI

More information

Residential Lighting: Shedding Light on the Remaining Savings Potential in California

Residential Lighting: Shedding Light on the Remaining Savings Potential in California Residential Lighting: Shedding Light on the Remaining Savings Potential in California Kathleen Gaffney, KEMA Inc., Oakland, CA Tyler Mahone, KEMA, Inc., Oakland, CA Alissa Johnson, KEMA, Inc., Oakland,

More information

United Power Flow Algorithm for Transmission-Distribution joint system with Distributed Generations

United Power Flow Algorithm for Transmission-Distribution joint system with Distributed Generations rd International Conference on Mechatronics and Industrial Informatics (ICMII 20) United Power Flow Algorithm for Transmission-Distribution joint system with Distributed Generations Yirong Su, a, Xingyue

More information

LOCAL VERSUS CENTRALIZED CHARGING STRATEGIES FOR ELECTRIC VEHICLES IN LOW VOLTAGE DISTRIBUTION SYSTEMS

LOCAL VERSUS CENTRALIZED CHARGING STRATEGIES FOR ELECTRIC VEHICLES IN LOW VOLTAGE DISTRIBUTION SYSTEMS LOCAL VERSUS CENTRALIZED CHARGING STRATEGIES FOR ELECTRIC VEHICLES IN LOW VOLTAGE DISTRIBUTION SYSTEMS Presented by: Amit Kumar Tamang, PhD Student Smart Grid Research Group-BBCR aktamang@uwaterloo.ca

More information

VGI Communications Protocols. April 2018

VGI Communications Protocols. April 2018 VGI Communications Protocols April 2018 Overview CPUC VGI Working Group Objective Assess how and whether the adoption of a communications protocolis necessary to enable Plug-In Electric Vehicle-Grid Integration

More information

Dynamic Modelling of Hybrid System for Efficient Power Transfer under Different Condition

Dynamic Modelling of Hybrid System for Efficient Power Transfer under Different Condition RESEARCH ARTICLE OPEN ACCESS Dynamic Modelling of Hybrid System for Efficient Power Transfer under Different Condition Kiran Kumar Nagda, Prof. R. R. Joshi (Electrical Engineering department, Collage of

More information

Comparing optimal relocation operations with simulated relocation policies in one-way carsharing systems

Comparing optimal relocation operations with simulated relocation policies in one-way carsharing systems Comparing optimal relocation operations with simulated relocation policies in one-way carsharing systems Diana Jorge * Department of Civil Engineering, University of Coimbra, Coimbra, Portugal Gonçalo

More information

FAULT ANALYSIS OF AN ISLANDED MICRO-GRID WITH DOUBLY FED INDUCTION GENERATOR BASED WIND TURBINE

FAULT ANALYSIS OF AN ISLANDED MICRO-GRID WITH DOUBLY FED INDUCTION GENERATOR BASED WIND TURBINE FAULT ANALYSIS OF AN ISLANDED MICRO-GRID WITH DOUBLY FED INDUCTION GENERATOR BASED WIND TURBINE Yunqi WANG, B.T. PHUNG, Jayashri RAVISHANKAR School of Electrical Engineering and Telecommunications The

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 CONSERVATION OF ENERGY Conservation of electrical energy is a vital area, which is being regarded as one of the global objectives. Along with economic scheduling in generation

More information

How to provide a better charging performance while saving costs with Ensto Advanced Load Management

How to provide a better charging performance while saving costs with Ensto Advanced Load Management How to provide a better charging performance while saving costs with Ensto Advanced Load Management WHAT IS ADVANCED LOAD MANAGEMENT and why is it important for your EV charging infrastructure? In order

More information

Impact Analysis of Fast Charging to Voltage Profile in PEA Distribution System by Monte Carlo Simulation

Impact Analysis of Fast Charging to Voltage Profile in PEA Distribution System by Monte Carlo Simulation 23 rd International Conference on Electricity Distribution Lyon, 15-18 June 215 Impact Analysis of Fast Charging to Voltage Profile in PEA Distribution System by Monte Carlo Simulation Bundit PEA-DA Provincial

More information

Intelligent Power Management of Electric Vehicle with Li-Ion Battery Sheng Chen 1,a, Chih-Chen Chen 2,b

Intelligent Power Management of Electric Vehicle with Li-Ion Battery Sheng Chen 1,a, Chih-Chen Chen 2,b Applied Mechanics and Materials Vols. 300-301 (2013) pp 1558-1561 Online available since 2013/Feb/13 at www.scientific.net (2013) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amm.300-301.1558

More information

Mutual trading strategy between customers and power generations based on load consuming patterns. Junyong Liu, Youbo Liu Sichuan University

Mutual trading strategy between customers and power generations based on load consuming patterns. Junyong Liu, Youbo Liu Sichuan University Mutual trading strategy between customers and power generations based on load consuming patterns Junyong Liu, Youbo Liu Sichuan University 2 Outline Ⅰ Ⅱ Research Background Reviews on the development of

More information

Impact of Plug-in Electric Vehicles on the Supply Grid

Impact of Plug-in Electric Vehicles on the Supply Grid Impact of Plug-in Electric Vehicles on the Supply Grid Josep Balcells, Universitat Politècnica de Catalunya, Electronics Eng. Dept., Colom 1, 08222 Terrassa, Spain Josep García, CIRCUTOR SA, Vial sant

More information

SMART MICRO GRID IMPLEMENTATION

SMART MICRO GRID IMPLEMENTATION SMART MICRO GRID IMPLEMENTATION Aleena Fernandez 1, Jasmy Paul 2 1 M.Tech student, Electrical and Electronics, ASIET, Kerala, India 2 Assistant professor, Electrical and Electronics, ASIET, Kerala, India

More information

Optimizing the Performance of Wireless Rechargeable Sensor Networks

Optimizing the Performance of Wireless Rechargeable Sensor Networks IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 4, Ver. VII (Jul.-Aug. 2017), PP 61-69 www.iosrjournals.org Optimizing the Performance of Wireless

More information

GEODE Report: Flexibility in Tomorrow s Energy System DSOs approach

GEODE Report: Flexibility in Tomorrow s Energy System DSOs approach 1 GEODE Report: Flexibility in Tomorrow s Energy System DSOs approach Report was prepared by Working Group Smart Grids of GEODE GEODE Spring Seminar, Brussels, 13th of May 2014 Hans Taus, Wiener Netze

More information

Beyond Net Metering Issues for Washington State

Beyond Net Metering Issues for Washington State Beyond Net Metering Issues for Washington State Washington Solar Summit Bellevue, WA Jim Lazar, RAP Senior Advisor October 13, 207 The Regulatory Assistance Project 50 State Street, Suite 3 Montpelier,

More information

The Tanktwo String Battery for Electric Cars

The Tanktwo String Battery for Electric Cars PUBLIC FOR GENERAL RELEASE The String Battery for Electric Cars Architecture and introduction questions@tanktwo.com www.tanktwo.com Introduction In March 2015, introduced a completely new battery for Electric

More information

SOME ISSUES OF THE CRITICAL RATIO DISPATCH RULE IN SEMICONDUCTOR MANUFACTURING. Oliver Rose

SOME ISSUES OF THE CRITICAL RATIO DISPATCH RULE IN SEMICONDUCTOR MANUFACTURING. Oliver Rose Proceedings of the 22 Winter Simulation Conference E. Yücesan, C.-H. Chen, J. L. Snowdon, and J. M. Charnes, eds. SOME ISSUES OF THE CRITICAL RATIO DISPATCH RULE IN SEMICONDUCTOR MANUFACTURING Oliver Rose

More information

5 th NEAESF. Outline

5 th NEAESF. Outline 1 5 th NEAESF Outline 1. 2. 3. 4. Energy Prosumer : Concept An electricity consumer who also produces it and can sell it back to the grid Sell self-generated electricity through net-metering, P2P transaction,

More information

A Novel GUI Modeled Fuzzy Logic Controller for a Solar Powered Energy Utilization Scheme

A Novel GUI Modeled Fuzzy Logic Controller for a Solar Powered Energy Utilization Scheme 1 A Novel GUI Modeled Fuzzy Logic Controller for a Solar Powered Energy Utilization Scheme I. H. Altas 1, * and A.M. Sharaf 2 ihaltas@altas.org and sharaf@unb.ca 1 : Dept. of Electrical and Electronics

More information

Optimal Vehicle to Grid Regulation Service Scheduling

Optimal Vehicle to Grid Regulation Service Scheduling Optimal to Grid Regulation Service Scheduling Christian Osorio Introduction With the growing popularity and market share of electric vehicles comes several opportunities for electric power utilities, vehicle

More information

Design Modeling and Simulation of Supervisor Control for Hybrid Power System

Design Modeling and Simulation of Supervisor Control for Hybrid Power System 2013 First International Conference on Artificial Intelligence, Modelling & Simulation Design Modeling and Simulation of Supervisor Control for Hybrid Power System Vivek Venkobarao Bangalore Karnataka

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

Energy storages in flexible energy systems. Kari Mäki VTT

Energy storages in flexible energy systems. Kari Mäki VTT Energy storages in flexible energy systems Kari Mäki VTT Contents Short status overview Needs for storage units Storage integration in energy systems Ancillary services Aggregator business logics Case

More information

Cost Benefit Analysis of Faster Transmission System Protection Systems

Cost Benefit Analysis of Faster Transmission System Protection Systems Cost Benefit Analysis of Faster Transmission System Protection Systems Presented at the 71st Annual Conference for Protective Engineers Brian Ehsani, Black & Veatch Jason Hulme, Black & Veatch Abstract

More information

Y9. GEH2.3: FREEDM Cost Benefit Analysis based on Detailed Utility Circuit Models

Y9. GEH2.3: FREEDM Cost Benefit Analysis based on Detailed Utility Circuit Models Y9. GEH2.3: FREEDM Cost Benefit Analysis based on Detailed Utility Circuit Models Project Leader: Faculty: Students: M. Baran David Lubkeman Lisha Sun, Fanjing Guo I. Project Goals The goal of this task

More information

Grid Services From Plug-In Hybrid Electric Vehicles: A Key To Economic Viability?

Grid Services From Plug-In Hybrid Electric Vehicles: A Key To Economic Viability? Grid Services From Plug-In Hybrid Electric Vehicles: A Key To Economic Viability? Paul Denholm (National Renewable Energy Laboratory; Golden, Colorado, USA); paul_denholm@nrel.gov; Steven E. Letendre (Green

More information

Electric Mobility and Smart Grids: Cost-effective Integration of Electric Vehicles with the Power Grid

Electric Mobility and Smart Grids: Cost-effective Integration of Electric Vehicles with the Power Grid Electric Mobility and Smart Grids: Cost-effective Integration of Electric Vehicles with the Power Grid Gerald Glanzer Department of Electronics FH JOANNEUM - University of Applied Sciences, Werk-VI-Straße

More information

Abstract. Executive Summary. Emily Rogers Jean Wang ORF 467 Final Report-Middlesex County

Abstract. Executive Summary. Emily Rogers Jean Wang ORF 467 Final Report-Middlesex County Emily Rogers Jean Wang ORF 467 Final Report-Middlesex County Abstract The purpose of this investigation is to model the demand for an ataxi system in Middlesex County. Given transportation statistics for

More information

Study on Braking Energy Recovery of Four Wheel Drive Electric Vehicle Based on Driving Intention Recognition

Study on Braking Energy Recovery of Four Wheel Drive Electric Vehicle Based on Driving Intention Recognition Open Access Library Journal 2018, Volume 5, e4295 ISSN Online: 2333-9721 ISSN Print: 2333-9705 Study on Braking Energy Recovery of Four Wheel Drive Electric Vehicle Based on Driving Intention Recognition

More information

A Distributed Agent Based Mechanism for Shaping of Aggregate Demand on the Smart Grid

A Distributed Agent Based Mechanism for Shaping of Aggregate Demand on the Smart Grid ENERGYCON 214 May 13-16, 214 Dubrovnik, Croatia A Distributed Agent Based Mechanism for Shaping of Aggregate Demand on the Smart Grid Colin Harris #1, Ronan Doolan *2, Ivana Dusparic #3, Andrei Marinescu

More information

Variable Intake Manifold Development trend and technology

Variable Intake Manifold Development trend and technology Variable Intake Manifold Development trend and technology Author Taehwan Kim Managed Programs LLC (tkim@managed-programs.com) Abstract The automotive air intake manifold has been playing a critical role

More information

Predicting Solutions to the Optimal Power Flow Problem

Predicting Solutions to the Optimal Power Flow Problem Thomas Navidi Suvrat Bhooshan Aditya Garg Abstract Predicting Solutions to the Optimal Power Flow Problem This paper discusses an implementation of gradient boosting regression to predict the output of

More information

Optimising battery energy storage systems operation

Optimising battery energy storage systems operation Optimising battery energy storage systems operation 02/26/2015-5.17 pm Network management Renewables Smart Grids Storage Grid-tied battery energy storage systems (BESS) are promising smart grid solutions

More information

SDG&E Customer Distributed Generation Programs. Steve Jaffe Senior Market Advisor Customer Innovations Group September 14, 2009

SDG&E Customer Distributed Generation Programs. Steve Jaffe Senior Market Advisor Customer Innovations Group September 14, 2009 SDG&E Customer Distributed Generation Programs Steve Jaffe Senior Market Advisor Customer Innovations Group September 14, 2009 About SDG&E... A regulated public utility that provides service in San Diego

More information

Delta All-In-One Storage solutions

Delta All-In-One Storage solutions Delta All-In-One Storage solutions Hybrid inverter 6.0 kwh Li-ion Smart monitor & control Power meter Model : Model : BX_6.0 Model : R4E Model : PE / PE It is time to embrace true energy independence www.solar-inverter.com

More information

Smart Rate Design for a Smart Future

Smart Rate Design for a Smart Future 1 Smart Rate Design for a Smart Future August 4, 2015 Jim Lazar, Senior Advisor, RAP Wilson Gonzalez, Treehouse Energy and Economic Consulting The Regulatory Assistance Project 50 State Street, Suite 3

More information

10% SIGNPOSTING THE FUTURE INCREASE. Implications of evolving technology for the pricing of New Zealand s distribution services

10% SIGNPOSTING THE FUTURE INCREASE. Implications of evolving technology for the pricing of New Zealand s distribution services SIGNPOSTING THE FUTURE Implications of evolving technology for the pricing of New Zealand s distribution services An exciting range of technologies are starting to transform the way consumers use electricity.

More information

Smart Grid Architecture for Comprehensive Dynamic Pricing for PHEVs

Smart Grid Architecture for Comprehensive Dynamic Pricing for PHEVs Smart Grid Architecture for Comprehensive Dynamic Pricing for PHEVs K.Anuja 1, P.Usha 2 Student, Associate professor anujakakarla@gmail.com, usha.himaja76@gmail.com Abstract Plug-in Hybrid Electric Vehicles

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

Electric Vehicles as a Grid Resource Lessons Learned for Driving Value from EV Charging Programs

Electric Vehicles as a Grid Resource Lessons Learned for Driving Value from EV Charging Programs Electric Vehicles as a Grid Resource Lessons Learned for Driving Value from EV Charging Programs Valerie Nibler Olivine, Inc. PLMA 38 th Conference Austin, Texas November 14, 2018 Overview Transportation

More information

Demand Optimization. Jason W Black Nov 2, 2010 University of Notre Dame. December 3, 2010

Demand Optimization. Jason W Black Nov 2, 2010 University of Notre Dame. December 3, 2010 Demand Optimization Jason W Black (blackj@ge.com) Nov 2, 2010 University of Notre Dame 1 Background Demand response (DR) programs are designed to reduce peak demand by providing customers incentives to

More information

Charge Management Optimization for Future TOU Rates

Charge Management Optimization for Future TOU Rates Page WEVJ8-0521 EVS29 Symposium Montréal, Québec, Canada, June 19-22, 2016 Charge Management Optimization for Future TOU Rates Jiucai Zhang and Tony Markel National Renewable Energy Laboratory, Golden,

More information

Residential Smart-Grid Distributed Resources

Residential Smart-Grid Distributed Resources Residential Smart-Grid Distributed Resources Sharp Overview for EPRI Smart Grid Advisory Meeting Carl Mansfield (cmansfield@sharplabs.com) Sharp Laboratories of America, Inc. October 12, 2009 Sharp s Role

More information

The Modeling and Simulation of DC Traction Power Supply Network for Urban Rail Transit Based on Simulink

The Modeling and Simulation of DC Traction Power Supply Network for Urban Rail Transit Based on Simulink Journal of Physics: Conference Series PAPER OPEN ACCESS The Modeling and Simulation of DC Traction Power Supply Network for Urban Rail Transit Based on Simulink To cite this article: Fang Mao et al 2018

More information

THE SMART GRID CHARGING EVS

THE SMART GRID CHARGING EVS THE SMART GRID CHARGING EVS GRANT BY THE MINISTRY OF ENERGY Benny Lutati, Vadim Levit, Tal Grinshpoun and Amnon meisels (Smart) Motivation 2 The Smart Grid is here Much work on up-to-date information for

More information

SEPA Grid Evolution Summit: Rethinking Rate Design

SEPA Grid Evolution Summit: Rethinking Rate Design SEPA Grid Evolution Summit: Rethinking Rate Design Doug Benevento, Director of Energy Policy July 27, 2017 Outline Xcel Energy Overview Rate Design Principles and Goals Rate Design Initiatives and Pilots

More information

Vehicle Use Case Task Force E: General Registration & Enrollment Process

Vehicle Use Case Task Force E: General Registration & Enrollment Process Document History Revision History Revision Number Revision Date Revision/ Reviewed By Summary of Changes Changes marked Approvals This document requires the following approvals. Name Title 1.1 Use Case

More information

Fuel Consumption, Exhaust Emission and Vehicle Performance Simulations of a Series-Hybrid Electric Non-Automotive Vehicle

Fuel Consumption, Exhaust Emission and Vehicle Performance Simulations of a Series-Hybrid Electric Non-Automotive Vehicle 2017 Published in 5th International Symposium on Innovative Technologies in Engineering and Science 29-30 September 2017 (ISITES2017 Baku - Azerbaijan) Fuel Consumption, Exhaust Emission and Vehicle Performance

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

Intelligent CAD system for the Hydraulic Manifold Blocks

Intelligent CAD system for the Hydraulic Manifold Blocks Advances in Intelligent Systems Research, volume th International Conference on Sensors, Mechatronics and Automation (ICSMA 0) Intelligent CAD system for the Hydraulic Manifold Blocks Jinwei Bai, Guang

More information

Deploying Power Flow Control to Improve the Flexibility of Utilities Subject to Rate Freezes and Other Regulatory Restrictions

Deploying Power Flow Control to Improve the Flexibility of Utilities Subject to Rate Freezes and Other Regulatory Restrictions 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2013 Grid of the Future Symposium Deploying Power Flow Control to Improve the Flexibility of Utilities Subject to Rate

More information

1) The locomotives are distributed, but the power is not distributed independently.

1) The locomotives are distributed, but the power is not distributed independently. Chapter 1 Introduction 1.1 Background The railway is believed to be the most economical among all transportation means, especially for the transportation of mineral resources. In South Africa, most mines

More information