Charge Station Placement in Electric Vehicle Energy Distribution Network

Size: px
Start display at page:

Download "Charge Station Placement in Electric Vehicle Energy Distribution Network"

Transcription

1 Charge Station Placement in Electric Vehicle Energy Distribution Network Jianwen Xu, Ping Yi, Tiantian Xie, Wei Wang, Xin Liu, Ting Zhu School of Information Security Engineering, Shanghai Jiao Tong University, Shanghai, 00, China Department of Computer Science and Electrical Engineering, University of Maryland, Baltimore County, MD, 21250, USA Abstract Energy internet is now an industry hot spot which enables the interconnection and sharing of energy just like the Internet. Inspired by the concept of energy internet, this paper will focus on a designed energy distribution network, using city bus lines running Electric Vehicles (EV) to achieve electric power storage and transmission. This network is made of renewable energy sources providing power, charge stations for power exchange and bus lines as delivery, electric buses serving as the carriers of flowing power in network. This paper will mainly discuss and solve the problem of placing charge stations on city bus map to compose the network framework. Our work includes two optimization algorithms using some ideas of graph theory, simulating with real-world transporting data of different city maps and analyzing the results to evaluate efficiency as well as advantages and disadvantages on algorithms and data sets. I. INTRODUCTION Nowadays, energy internet, the idea of building relationship between energy industry and Internet of Things (IoT), has drawn more and more attention. Aiming at taking the advantages of both uniformity & mobility of electric power and interconnectivity & sharing property of IoT, a whole network connecting all energy need and supply may reconstruct our cognition about power generation and consumption to a certain extent. clean energy from photovoltaic power, terrestrial heat and wind, energy internet can ensure the improvement of our living environment. Electric vehicle, together with Vehicle-to-Grid (V2G) technology, is playing an important role in energy internet. As fast charging/discharging and large capacity battery have been widely applied, we realize that using EVs to storage and transmit electric power can be achieved. Energy distribution network is a designed power storage and transmission system based on city bus lines running EVs. This network includes three main parts: renewable energy sources providing power, charge stations for power exchange between EVs passing by and EV bus lines as power delivery. To ensure the normal operation of the system, several problems like determining the position of energy sources and charge stations, energy scheduling and allocation, dealing with traffic incidents need to be solved. This paper may focus on the charge stations placement, that is, using as small number as possible of charge stations to cover the whole network that every EV bus line can get energy replenishment when needed, as well as reduce the energy loss on the process of charging/discharging. In this paper, we will focus on the optimization algorithm of placing charge stations. The main contributions are as follows. Build up mathematical model based on basic graph theory, collect and pretreat the bus maps of three cities, some special modifications are needed to cater to the follow-up work; Design two optimizations using idea of Breadth-First Search (BFS) and shortest path method, some further modifications are aimed at resolving the particularity of energy distribution network. Compare the performance among different algorithms and cities data, analyze the stimulation results to evaluate efficiency as well as advantages and disadvantages on algorithms and data sets. Fig. 1. A schematic of energy internet As shown in Fig. 1, energy internet mainly includes power generation from traditional source and renewable source to power transmission and consumption processes like Power Line Communication (PLC), smart home devices, EV (bus, car, bicycle and even newcome unicycle). Especially with the There are six sections in this paper to state the overall details of the research. In Section I, the introduction. Second II will be the problem of analysis, elaborate process from initial idea to formation of algorithm. Section III uses real-world data to simulate the algorithm. Section IV gives results of simulation and some analysis. Section V summarizes the previous work and draw conclusions. Section VI are the acknowledgements /17/$ IEEE

2 II. RELATED WORKS As the technical basis of energy internet, V2G provide the core technology of power exchange. The research group led by Dr. Willett Kempton in University of Delaware has focused on V2G for more than ten years. From initial conception about how an EV market be like in the future in 00s to establishing cooperation with vehicle manufacturing companies like Toyota and also power department like PJM which serves as the leading experimental unit in United States. Other countries such as Japan, Denmark, UK, South Korea also actively build up infrastructure collaborated with University of Delaware [1]. Key technologies of V2G have also inspired a lot on urban traffic improvement like smart charging [2], Bus Rapid Transit (BRT) system [3]. Early in 04, planning ideas like with the help of V2G, large-scale of renewable energy can be supported, which caused great concern. Actually before EV that only consume energy from battery (Battery EV, BEV) coming into view, EV using hybrid power(hybrid EV, HEV) as a transitional product also brought impact on research about distribution network [4] [5]. The idea of electric vehicle energy distribution network was first raised in 12, a paper about energy transmission network using EV described what the blueprint may look like [6], [7]. The authors also proposed ideas on energy routing [8], [9], [10], energy scheduling and allocation [11], [12] and robustness analysis [13]. Follow-up works paid more attention to some preliminary conception like conceptual framework of integrating EV into power system, establishing connection between EV and new source to develop green economy [15]. III. PROBLEM DESCRIPTION Fig. 2. A schematic of energy distribution network Energy distribution network mainly researches on the EV and charge station part circled with dotted line in Fig. 1. As shown in Fig. 2, the network here is made up of city bus lines and motivated electric power from renewable energy sources. Just like fuel vehicles, we drive to gas station to fill up the gasoline tank before running out of fuel, EV s battery also needs charging in the charge station. In consideration of some restriction like battery capacity and energy loss on electricity migration, we may drive battery cars to charge stations more often than refueling gasoline ones. City buses using electric power and charge stations providing power supplement together build up the energy distribution network. Therefore, to organize a city bus network entirely relying on electric power, we need charge stations to play the role of routers in ethernet. That is, charge stations provide energy for low power buses and get supplying from high power ones. All power comes from renewable energy sources, bus lines directly passing by can get full charged and carry power to charge stations also in their fixed routes. Then bus lines passing by these charge stations can get charged while there exists a percentage energy loss rate, which means percentage power carried by bus lines going through energy sources is wasted. In comparison with routing in ethernet, we don t want multiple forwarding since there can be more possibilities for packet loss. What s more, building charge station itself may cost a lot as well as occupying urban area. As a result, the priority target of energy distribution network is choosing optimal location to place as few charge stations as possible to make sure all bus lines can get charged in time. This paper will propose solutions for the charge station placement problem, using the least charge stations to cover all the bus lines, since the cost of building charge stations may sharply increase spend on infrastructure construction. Moreover, after placing fixed number of charge stations, choosing which charge station to supply power for which bus line also need deliberate arrangement that every bus line can get charged when running out of power. Also, we dont want situation that one charge station always overloads and the other one adjacent to it sometimes left unused. Graph theory is a mathematics field studying the structures of graphs, which used to model pairwise relations in objects like nodes, lines, arcs, etc. In relation to our target, some ideas about connecting isolated vertexes with edges. One basic problem in graph theory, the graph search or graph traversal problem, to visit each vertex in a graph, which is similar to the charge station placing problem and has already been widely applied in many subjects or fields. Since problems in any field may have their own characteristics, aiming ar traversing the bus lines rather than bus stops, while mathematics modeling we have to apply some definition on variables. An undirected graph G =(V,E), in which V stands for vertexes and E for edges that connect the vertexes. To build the relationship between this model and our target, vertexes are going to be the bus lines and edges stand for bus stops located at intersections of bus lines, which can be some kind of unusual, however, is necessary for the follow-up work. Algorithms may still start at bus stops with nearby energy sources, which can be regarded as algorithms actually starting at bus lines that stop over energy sources. Algorithm 1: Modified Breadth-First Search Algorithm Our first idea may consider BFS, which is used to find graph data in a tree map starting at tree root and continuing until any nodes or leaves been found. Accordingly, one energy station as one tree root, all these roots may share one First In

3 Algorithm 1: Algorithm 1 R Relation matrix of bus lines; 2 x number of renewable energy sources; 3 S n all the bus lines passing by any x energy Sources; 4 m = length(r), FLAG =0, A LIST = ; 5 Q =, Q.HEAD = Q.T AIL =1, HOP = zeros(m); 6 put S n into Q; 7 Q.T AIL = Q.T AIL + n; 8 while Q.HEAD Q.T AIL do 9 i = Q(Q.HEAD); 10 for j =1to m do 11 if can t find j in FLAG && R(i, j) == 1 then 12 Q(Q.T AIL) =j; 13 Q.T AIL Q.T AIL +1; HOP(j) HOP(i)+1; 15 push j into FLAG; push [i, j] into A LIST ; 17 Q.HEAD Q.HEAD +1; First Out (FIFO) queue and check whether the next vertex (bus line) has been visited already. Actually, as we know, the BFS itself may not be so efficient when meeting a quite large tree map that contains thousands of bus lines and countless stops, since both time and space complexity which can be briefly expressed as O( V + E ) show that the augment of data quantity can bring an linear increase on calculating cost. Further optimization based on it would exponentially suffer more. To solve this hidden trouble to some extent and cater to what energy distribution network require, a few modifications on details are also necessary. The steps and pseudo codes are as follow. i. Bring all tree roots into a queue before algorithm begins, use a head and a tail to as marks; ii. Start searching, judge if a vertex has not been visited yet and there is 1-relation in the relation matrix with queue head, then put this vertex into queue tail; iii. Build adjacency list to save connecting edge between newcome vertex and queue head, head mark comes to the next and go back to step ii; iv. Anytime if the queue is empty (head equals tail), algorithm ends. First let R be the relation matrix for all bus lines and x stands for tree roots (energy sources). Then choose fixed number of bus stops to place energy sources and build S n to save all the bus lines stopping over energy sources. Then, let FLAG records the bus lines that have been visited and HOP marks the present the depths of nodes in trees. Q has a head Q.HEAD and a tail Q.T AIL to guarantee the FIFO rule. A simple example is given to describe what actually the algorithm works. In Fig. 3, there are 9 vertexes stands for 9 bus lines waiting to be visited. What we have explained in last paragraph about line 6 in pseudo codes of Algorithm 1, the gray dot ES in Fig. 3 stands for an energy source, node B and F are stop-over bus lines. Line of HOP shows the depth of ES tree which records how many times of charging/discharging processes are needed before reach current bus ES A F D H B G C E I HOP QUEUE B F A D E G H C A-LIST B A B D B E F G F H E C G I Fig. 3. An example of the Algorithm line. The 9 vertexes are pushed into Q in order from the first B to the last I, at the same time A LIST orderly save the pathfinding processes (black edge double arrows) as adjacency list. Arrows in figure have no meaning of directed graph. Then we can get charge station number and energy loss rate from Formula (1) and (2). R E LOSS = 1 m m i=1 3 I [ HOP(i)] (1) R E LOSS stands for average energy loss rate based on charging/discharging times when EVs stop by charge stations. The efficiency of charging or discharging for EVs using DC is about 95% [], which means 5% may just waste on energy exchange. Therefore, we take 90% (actually 90.25%) as the energy efficiency for a complete charging/discharging process. N C STAT = length[unique(c STAT)] (2) C STAT contains bus stops located at intersections between pairs of bus lines in A LIST as shown in Fig. 3. The adjacency list records all the edges building up the tree map, some of them may be repeated which means more than one bus lines using the same charge station. Algorithm 2: Preferred Algorithm The second thought we are going to lay more emphasis on the energy loss. To approach this, an idea easily come into mind that why not each bus line just seek help from its nearest energy source to reduce the percentage loss on delivery, which means we want shortest connections between every bus line and energy source. Another classical problem in graph theory, finding shortest path between two vertexes or nodes in a graph while the sum of the weights of its constituent edges is minimized. Usually the edges in shortest path problem have different weights even negative ones, to deal with this several functional algorithms perform separately with advantages and disadvantages. We only pay attention to one special condition, undirected singlepair shortest path problem without weights on edges. The steps and pseudo codes are as follow. i. Divide all vertexes into two groups, the source group and destination group; ii. Take turns in destination group polling source group to find the shortest path to get connected with any source vertex;

4 Algorithm 2: Algorithm 1 R m Relation matrix of bus lines; 2 x number of renewable energy sources; 3 S n all the bus lines passing by any x energy Sources; 4 A LIST =, Q =, S PATH = zeros(m, 10); 5 put S n into Q; 6 for i =1to m do 7 if i/ Q then 8 for j =1to length(q) do 9 find shortest path between R i,1 and Q i; 10 if shorter than S PATH i S PATH i == 0 then 11 push it into S PATH i; ES A B C E D F C D E F C A D C A E C A C E B F E C B D C E B E B F E B Fig. 4. An example of the Algorithm iii. Build adjacency list to save all the edges in shortest paths. Variables used here are almost the same with Algorithm 1, except S PATH, which stands for a container of all bus lines shortest paths. Also a simple example explains the steps and pseudo codes above. In Fig. 4, there are 6 vertexes stands for 6 bus lines waiting to be visited. Two of them, A and B stand for bus lines that stop by renewable energy source. Then our target here turns into finding path to connect other bus lines to A or B. Algorithm 2 may just try all possibility to build connections between energy source stop-over bus lines and all the others, then record the full path of the shortest one, with least power exchange times, that is, least energy loss. Then bus line C, D, E, F separately choose their shortest paths to A/B. Four paths may be recorded in S PATH, charge station number and energy loss rate are easily to calculate afterwards. The formulas of both are the same with Algorithm 1, we only need to replace the HOP in Formula (1) by the length of each whole path (number of edges) in S PATH. For example, in Fig. 4 bus line D has the shortest path D to C to A, so the power on the energy efficiency (0.9) is 3, which means even bus line A or B have a process of charging/discharging to get energy from energy source ES. Arrows in figure also have no meaning of directed graph. R E LOSS = 1 m m i=1 [ length(s PATHi)+1] (3) IV. SIMULATION AND ANALYSIS In this section, we will compare the performance of the two algorithms using ideas of graph theory and make simulation about the possible effects on metrics from real-world city bus maps. The length of the bus line or number of stops it contains, the density of bus lines and stops and other potential factors may just get different simulation results. There are two city bus maps that available to everyone for study usage through the Internet, Manhattan of New York [17] and Pioneer Valley Transit Authority (PVTA) of Western Massachusetts [], which are already widely used in researches about urban transportation. Recent years in China, as one of the largest and most modern cities worldwide, Shanghai plays important roles in frontiers of science and technology, so do new energy and V2G technology. Electric vehicles such as cars, buses or bicycles and charging/discharging facilities are easy to find all around the city. New energy industry like the photovoltaic power generation is already put into civil use in some area [19] []. Therefore we choose a district of Shanghai, Minhang as the third real-world data set for simulation and analysis, which may also receive some practical significance. City Map Bus Lines Bus Stops Stops on Line Lines Pass Stop Manhattan PVTA Minhang total TABLE I DATA SHEET OF THREE CITY MAPS In TABLE I, while the number of bus lines are alike, Minhang has much more bus stops, which means we can test the performance of algorithms with much longer bus lines. Moreover, Minhang has more than half of the bus stops that are isolated, that is, only one bus line come across these stops, which is also an extra designed condition for testing. The 2 nd and 3 rd columns show the number of bus lines and stops in city maps, 4 th stands for the averages of one bus line containing how many stops, 5 th means the average number of bus lines passing by each bus stop. The last two columns are obtained from parts of algorithms, we list them here to help explaining the simulation results below. After some necessary screening and pretreatment, we get three data sets in special forms which show not only the names of all lines/stops, but the sequences of bus stops in each line and number of bus lines each bus stop is involved. Regard average percentage of energy loss and number of needed charge stations as the metrics to simulate the Algorithm 1, 2 and compare with algorithm in [6] (Charge Station Placement Algorithm, in Fig. 5 and 6). Randomly choose 1 to 10 renewable energy sources at the beginning, each condition repeat 50 times to reach an average result. Simulation environment is MATLAB Ra. Fig. 5 shows the percentage of energy loss of distributing electricity from energy sources to each bus line in three data sets. The broken lines are very close to each other under the real-world data of all three city maps which means two

5 Percentage of energy loss rate (%) Simulation of Manhattan (a) Percentage of energy loss rate (%) Simulation of PVTA (b) Percentage of energy loss rate (%) Simulation of Minhang District, Shanghai (c) Fig. 5. Percentage of energy loss rate in three city maps algorithms using ideas of graph theory may not raise the observable performance of energy loss. It is possible that percentage of energy loss mostly rely on the data set itself rather algorithm. Whether reasonable or not, we still can draw some conclusion from the scope of y axis to analyze the influence of different features in three data sets. Fig. 5-b has both the maximum and the largest scope of percentage of energy loss rate, with the smallest number of bus stops as options to be chosen to place charge stations, paths connecting energy sources and bus lines can be longer with more adjacent edges. Fig. 6 shows how many charge stations are needed to cover all the bus lines in three data sets. From the whole point of view, along with the increase in number of renewable energy sources, all broken lines in three figures show clear downward trends. Since energy sources themselves also can take the function of charging/discharging EVs, there exists negative correlation between number of energy sources and charge stations. While there are more energy sources, EVs can get power supply directly from sources instead of charge stations, nevertheless in fact, the number of energy sources can never be large, even 10 is too large, we only take the range of energy source numbers as research purpose to see extreme situation that may enhance algorithms improvement. Algorithm in [6] () performs obviously poor to two algorithms designed here in all three city maps with different gaps. Algorithm 1 takes advantage of raising up usage rate of every single charge station by polling the whole bus line pool. Algorithm 2 even behaves better, especially when number of renewable energy sources increases. As shown in TABLE I, the bus stop-line ratios of Manhattan and PVTA are relatively alike comparing to Minhang or total, firstly we will make comparisons between these two. First, the entire quantity of values in y axis, though trends of broken lines in Fig. 6-a/6-b are nearly the same, scopes of y axis are distinct (10 in Fig. 6-a, in Fig. 6-b), which means to achieve the distribution of power in Manhattan, we averagely need to build almost 10 more charge stations to cover just 1 more bus line (35 bus lines in Manhattan and 34 in PVTA as shown in TABLE I). The simulation results infer that some special factor may greatly influence the seemingly abnormal performance. Finally we found it in the 4 th and 5 th columns of TABLE I which providing the information of average numbers of bus stops on each bus line and average bus lines passing by each bus stop. Fig. 7 may just help explaining the phenomenon above. Look at the two parts of graph made from adjacency matrix of bus lines in Fig. 7, bus stop I has three bus lines to choose next and stop II only has two while the same choosing process can be repeated more than once. Thus, independent of algorithm designing, providing that similar numbers of bus lines are waiting to be covered, each bus stop has more passing-by bus lines which further offer chances for other bus stops to choose from. Combined with 4 th and 5 th columns of TABLE I, Manhattan has larger average numbers of bus lines and stops, which means more options in choosing next bus line/stop may bring diversity. Then as more bus lines/stops are involved, we get branch nodes in tree map composed by colorful dots and black edge double arrows in Fig. 3 and 4. However, take a step back to Fig. 5, the decrease of charge station number causes some offset, more percentage of energy loss on PVTA than the other two also suggests that some negative correlation exists, waiting to be proved in further efforts [21]. Second, in Fig. 6-b two designed algorithms almost stay the same while in 6-a Algorithm 2 is obviously superior to other two algorithms. As if Algorithm 2 lost its superiority in PVTA. On the basis of both feature of data set and algorithm theory, compared to Manhattan, similar number of bus lines with rather less bus stops to choose to place charge stations makes it harder to take advantage of finding preferred path for each single bus line. Back to the comparisons among all three city maps. Take data set of Minhang District, Shanghai into account, with features like similar number of bus lines in total, a lot more bus stops both in total and on each bus line. The covering of only dozens of bus lines can be achieved easily through 500 bus stops, even though performances of three algorithms are not so efficient, especially compared to PVTA, since too many options makes local optimization less meaningful, some global and dynamic optimization are needed for improvement. New discoveries can be found with analysis results between Fig. 6-a and 6-b above. Number of bus stops and the effect of Line Pass Stop (5 th column in TABLE I) have some combined action on the charge station number. Quite a lot more bus stops in total (there are 781 bus stops in total while Minhang has 506) and on each bus line averagely (TABLE I 4 th column,

6 Number of charge stations Simulation of Manhattan 10 (a) Number of charge stations Simulation of PVTA 10 (b) Number of charge stations Simulation of Minhang District, Shanghai (c) Fig. 6. Number of charge stations in three city maps Bus line 1 Bus stop Bus line 2 Bus line 3 Bus line 4 Bus stop Bus line 5 Fig. 7. Description of comparison between Fig. 5-a/5-b.83 in Minhang/11.60 in Manhattan) offset the influence of Line Pass Stop (5 th column, in Minhang/2.554 in Manhattan), which make the Fig. 6-c close to 6-a, especially when number of energy sources is small. V. CONCLUSIONS In this paper we put forward two algorithms using ideas of Breadth-First Search and shortest path in graph theory to place charge stations on bus stops providing energy supply for all bus lines in a city bus network. The results proved that we could reduce the number of needed charge stations to a great extent without losing more energy. VI. ACKNOWLEDGEMENTS This work was supported by the National Natural Science Foundation of China ( , 9381, , ), Natural Science Foundation of Shanghai (15ZR23600), State Key Laboratory of Alternate Electrical Power System with Renewable Energy Sources (LAPS010), the NSFC-Zhejiang Joint Fund for the Integration of Industrialization and Informationization (U ), Priority Development Field Project of Doctoral Fund ( ), Shanghai Municipal Science and Technology Project ( , DZ10702),and NSF under grant CNS REFERENCES [1] W. Kempton and J. Tomic, Vehicle-to-grid Power Implementation: From Stabilizing the Grid to Supporting Large-scale Renewable Energy, Journal of power sources, vol.4, no.1, pp , 05 [2] R. Mehta, D. Srinivasan, A. M. Khambadkone, J. Yang and A. Trivedi, Smart Charging Strategies for Optimal Integration of Plug-in Electric Vehicles within Existing Distribution System Infrastructure, IEEE Transactions on Smart Grid, pp.1-1,. [3] M. T. Sebastiani, R. Lders and K. V. O. Fonseca, Evaluating Electric Bus Operation for a Real-World BRT Public Transportation Using Simulation Optimization, IEEE Transactions on Intelligent Transportation Systems, pp.1-10,. [4] R. C. Green L. Wang and M. Alam, The Impact of Plug-in Hybrid Electric Vehicles on Distribution Networks: A Review and Outlook, IEEE PES General Meeting, PP.1-8, July 10 [5] L. Pieltain Fernandez, T. Gomez San Roman, R. Cossent, C. Mateo Domingo and P. Frias, Assessment of the Impact of Plug-in Electric Vehicles on Distribution Networks, IEEE Transactions on Power Systems, vol.26, no.1, pp.6-213, February 11 [6] P. Yi, T. Zhu, B. Jiang, B. Wang and D. Towsley, An Energy Transmission and Distribution Network Using Electric Vehicles, 12 IEEE International Conference on Communications (ICC), pp , June 12 [7] P. Yi, T. Zhu, B. Jiang, R. Jin, and B. Wang, Deploying Energy Routers in an Energy Internet Based on Electric Vehicles, IEEE Transactions on Vehicular Technology, Vol.65, No.6, pp , June, [8] T. Zhu, S. Xiao, P. Yi, D. Towsley and W. Gong, A Secure Energy Routing Mechanism for Sharing Renewable Energy in Smart Microgrid, 11 IEEE International Conference on Smart Grid Communications(SmartGridComm), pp.3-8, October 11 [9] P. Yi, T. Zhu, G. Lin, Q. Zhang, Routing Renewable Energy Using Electric Vehicles in Mobile Electrical Grid, 10th IEEE International Conference on Mobile Ad-hoc and Sensor Systems(MASS13), Hangzhou, China, October -, 13 [10] P. Yi, Y. Tang, Y. Hong, Y. Shen, T. Zhu, Q. Zhang, Miroslav M. Begovic, Renewable Energy Transmission through Multiple Route in Mobile Electrical Grid, IEEE PES Innovative Smart Grid Technologies Conference (ISGT), Washington, USA, February 19-, [11] P. Yi, T. Zhu, G. Lin, X. Jiang, G. Li, L. Si and M. M. Begovic, Energy Scheduling and Allocation in Electric Vehicle Energy Distribution Networks, Innovative Smart Grid Technologies (ISGT), 13 IEEE PES, pp.1-6, February 13 [12] S. li, P. Yi, Z. Huang, T. Xie, T. Zhu, Energy Scheduling and Allocation in Electric Vehicles Energy Internet, IEEE PES Innovative Smart Grid Technologies Conference (ISGT), Minnesota, USA, September 6-9, [13] G. Lin, P. Yi, L. Si, T. Zhu, X. Jiang, G. Li and M. M. Begovic, Robustness Analysis on Electric Vehicle Energy Distribution Networks, 13 IEEE Power Energy Society General Meeting, pp.1-5, July 13 [] S. F. Tie and C. W. Tan, A Review of Energy Sources and Energy Management System in Electric Vehicles, Renewable and Sustainable Energy Reviews, vol., pp , 13 [15] Y. Du, X. Zhou, S. Bai, S. Lukic and A. Huang, Review of Nonisolated Bi-directional DC-DC Converters for Plug-in Hybrid Electric Vehicle Charge Station Application at Municipal Parking Decks, Applied Power Electronics Conference and Exposition (APEC), 10 Twenty- Fifth Annual IEEE, pp , February 10. [] [17] [] X. Wu, D. Xie, M. Dai and W. Zhao, Research of Grid-connection Based on Photovoltaic Power Generation for Residents in Shanghai, Power & Energy (CHINA), vol.35, no.4, pp.517-5, August. [19] B. Wang and H. Tan, Post Evaluation of Distributed PV Power Generation System in a Detached House in Shanghai, Building Energy Efficiency (CHINA), vol.44, no.2, pp.21-,. [] X. Deng, Y. Wu, M. Dong, C. Li and Y. Pan, A Weighted Network Model Based on the Correlation Degree between Nodes, Moile Ad-hoc and Sensor Networks (MSN), pp.2-1 December 15.

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

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

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

Combination control for photovoltaic-battery-diesel hybrid micro grid system

Combination control for photovoltaic-battery-diesel hybrid micro grid system , pp.93-99 http://dx.doi.org/10.14257/astl.2015.82.18 Combination control for photovoltaic-battery-diesel hybrid micro grid system Yuanzhuo Du 1, Jinsong Liu 2 1 Shenyang Institute of Engineering, Shenyang,

More information

Scheduling for Wireless Energy Sharing Among Electric Vehicles

Scheduling for Wireless Energy Sharing Among Electric Vehicles 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

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

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

Modal Analysis of Automobile Brake Drum Based on ANSYS Workbench Dan Yang1, 2,Zhen Yu1, 2, Leilei Zhang1, a * and Wentao Cheng2

Modal Analysis of Automobile Brake Drum Based on ANSYS Workbench Dan Yang1, 2,Zhen Yu1, 2, Leilei Zhang1, a * and Wentao Cheng2 7th International Conference on Mechatronics, Computer and Education Informationization (MCEI 2017) Modal Analysis of Automobile Brake Drum Based on ANSYS Workbench Dan Yang1, 2,Zhen Yu1, 2, Leilei Zhang1,

More information

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency 2016 3 rd International Conference on Vehicle, Mechanical and Electrical Engineering (ICVMEE 2016) ISBN: 978-1-60595-370-0 Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

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

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

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

RECONFIGURATION OF RADIAL DISTRIBUTION SYSTEM ALONG WITH DG ALLOCATION

RECONFIGURATION OF RADIAL DISTRIBUTION SYSTEM ALONG WITH DG ALLOCATION RECONFIGURATION OF RADIAL DISTRIBUTION SYSTEM ALONG WITH DG ALLOCATION 1 Karamveer Chakrawarti, 2 Mr. Nitin Singh 1 Research Scholar, Monad University, U.P., India 2 Assistant Professor and Head (EED),

More information

The Design of Vehicle Tire Pressure Monitoring System Based on Bluetooth

The Design of Vehicle Tire Pressure Monitoring System Based on Bluetooth 5th International Conference on Advanced Engineering Materials and Technology (AEMT 2015) The Design of Vehicle Tire Pressure Monitoring System Based on Bluetooth Liqing Geng 1, a *, Li Zhao 2,b, Zeyu

More information

A Method of Spot Price Bidding in Day-Ahead Power Market With the consideration of power shortage factor

A Method of Spot Price Bidding in Day-Ahead Power Market With the consideration of power shortage factor A Method of Spot Price Bidding in Day-Ahead Power Market With the consideration of power shortage factor CHEN YUCHEN 1,2, CAO MINNIAN 2, HOU ZHIJIAN 1 1. The Electrical Engineering Dept. 2. The Electrical

More information

Effect of driving patterns on fuel-economy for diesel and hybrid electric city buses

Effect of driving patterns on fuel-economy for diesel and hybrid electric city buses EVS28 KINTEX, Korea, May 3-6, 2015 Effect of driving patterns on fuel-economy for diesel and hybrid electric city buses Ming CHI, Hewu WANG 1, Minggao OUYANG State Key Laboratory of Automotive Safety and

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

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

Research on Bill of Engineering Quantity and Calculation Standard for Power Grid Marketing Project Bin ZHU 1, Yun HE 1 and Zhang-hua CAI 2

Research on Bill of Engineering Quantity and Calculation Standard for Power Grid Marketing Project Bin ZHU 1, Yun HE 1 and Zhang-hua CAI 2 2017 2nd International Conference on Information Technology and Management Engineering (ITME 2017) ISBN: 978-1-60595-415-8 Research on Bill of Engineering Quantity and Calculation Standard for Power Grid

More information

The Assist Curve Design for Electric Power Steering System Qinghe Liu1, a, Weiguang Kong2, b and Tao Li3, c

The Assist Curve Design for Electric Power Steering System Qinghe Liu1, a, Weiguang Kong2, b and Tao Li3, c 2nd International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 26) The Assist Curve Design for Electric Power Steering System Qinghe Liu, a, Weiguang Kong2, b and

More information

Structure Parameters Optimization Analysis of Hydraulic Hammer System *

Structure Parameters Optimization Analysis of Hydraulic Hammer System * Modern Mechanical Engineering, 2012, 2, 137-142 http://dx.doi.org/10.4236/mme.2012.24018 Published Online November 2012 (http://www.scirp.org/journal/mme) Structure Parameters Optimization Analysis of

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

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

A Study of Suitable Bi-Directional DC-DC Converter Topology Essential For Battery Charge Regulation In Photovoltaic Applications

A Study of Suitable Bi-Directional DC-DC Converter Topology Essential For Battery Charge Regulation In Photovoltaic Applications IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 11, Issue 2 Ver. I (Mar. Apr. 2016), PP 92-96 www.iosrjournals.org A Study of Suitable Bi-Directional

More information

Smarter Bus Information in Leeds

Smarter Bus Information in Leeds Smarter Bus Information in Leeds Thomas Forth project demonstration url : www.tomforth.co.uk/dynamicbusmaps email : thomas.forth@gmail.com twitter : @thomasforth Executive summary: Leeds, an English city

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

Adaptive Power Flow Method for Distribution Systems With Dispersed Generation

Adaptive Power Flow Method for Distribution Systems With Dispersed Generation 822 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 17, NO. 3, JULY 2002 Adaptive Power Flow Method for Distribution Systems With Dispersed Generation Y. Zhu and K. Tomsovic Abstract Recently, there has been

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

THE Internet has become a critical infrastructure for people

THE Internet has become a critical infrastructure for people 4714 IEEE TRANSACTIONS ON VEHICULAR TECHNOLOGY, VOL. 65, NO. 6, JUNE 2016 Deploying Energy Routers in an Energy Internet Based on Electric Vehicles Ping Yi, Ting Zhu, Bo Jiang, Ruofan Jin, and Bing Wang

More information

Study on Flow Characteristic of Gear Pumps by Gear Tooth Shapes

Study on Flow Characteristic of Gear Pumps by Gear Tooth Shapes Journal of Applied Science and Engineering, Vol. 20, No. 3, pp. 367 372 (2017) DOI: 10.6180/jase.2017.20.3.11 Study on Flow Characteristic of Gear Pumps by Gear Tooth Shapes Wen Wang 1, Yan-Mei Yin 1,

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

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

Global Standards Development:

Global Standards Development: Global Standards Development: From Technology to Renewables Integration Advanced Energy Conference Hyatt Regency Buffalo October 12-13, 2011 Dr. Mary E. Reidy, P.E. IEEE Chair P2030.1 Working Group Integration

More information

Reactive power support of smart distribution grids using optimal management of charging parking of PHEV

Reactive power support of smart distribution grids using optimal management of charging parking of PHEV Journal of Scientific Research and Development 2 (3): 210-215, 2015 Available online at www.jsrad.org ISSN 1115-7569 2015 JSRAD Reactive power support of smart distribution grids using optimal management

More information

Optimization of Three-stage Electromagnetic Coil Launcher

Optimization of Three-stage Electromagnetic Coil Launcher Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Optimization of Three-stage Electromagnetic Coil Launcher 1 Yujiao Zhang, 1 Weinan Qin, 2 Junpeng Liao, 3 Jiangjun Ruan,

More information

Smart Power Management System for Leisure-ship

Smart Power Management System for Leisure-ship Journal of Navigation and Port Research International Edition Vol.35, No.9 pp. 749~753, 2011 (ISSN-1598-5725) DOI : http://dx.doi.org/10.5394/kinpr.2011.35.9.749 Smart Power Management System for Leisure-ship

More information

Grouped and Segmented Equalization Strategy of Serially Connected Battery Cells

Grouped and Segmented Equalization Strategy of Serially Connected Battery Cells 5th International Conference on Environment, Materials, Chemistry and Power Electronics (EMCPE 2016) Grouped and Segmented Equalization Strategy of Serially Connected Battery Cells Haolin Li1, a, Guojing

More information

Power Flow Management and Control of Hybrid Wind / PV/ Fuel Cell and Battery Power System using Intelligent Control

Power Flow Management and Control of Hybrid Wind / PV/ Fuel Cell and Battery Power System using Intelligent Control I J C T A, 9(2) 2016, pp. 987-995 International Science Press Power Flow Management and Control of Hybrid Wind / PV/ Fuel Cell and Battery Power System using Intelligent Control B. Yugesh Kumar 1, S.Vasanth

More information

Chapter 7: DC Motors and Transmissions. 7.1: Basic Definitions and Concepts

Chapter 7: DC Motors and Transmissions. 7.1: Basic Definitions and Concepts Chapter 7: DC Motors and Transmissions Electric motors are one of the most common types of actuators found in robotics. Using them effectively will allow your robot to take action based on the direction

More information

Chapter 4. Design and Analysis of Feeder-Line Bus. October 2016

Chapter 4. Design and Analysis of Feeder-Line Bus. October 2016 Chapter 4 Design and Analysis of Feeder-Line Bus October 2016 This chapter should be cited as ERIA (2016), Design and Analysis of Feeder-Line Bus, in Kutani, I. and Y. Sado (eds.), Addressing Energy Efficiency

More information

Test Based Optimization and Evaluation of Energy Efficient Driving Behavior for Electric Vehicles

Test Based Optimization and Evaluation of Energy Efficient Driving Behavior for Electric Vehicles Test Based Optimization and Evaluation of Energy Efficient Driving Behavior for Electric Vehicles Bachelorarbeit Zur Erlangung des akademischen Grades Bachelor of Science (B.Sc.) im Studiengang Wirtschaftsingenieur

More information

The Testing and Data Analyzing of Automobile Braking Performance. Peijiang Chen

The Testing and Data Analyzing of Automobile Braking Performance. Peijiang Chen International Conference on Computational Science and Engineering (ICCSE 2015) The Testing and Data Analyzing of Automobile Braking Performance Peijiang Chen School of Automobile, Linyi University, Shandong,

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

Parameters Matching and Simulation on a Hybrid Power System for Electric Bulldozer Hong Wang 1, Qiang Song 2,, Feng-Chun SUN 3 and Pu Zeng 4

Parameters Matching and Simulation on a Hybrid Power System for Electric Bulldozer Hong Wang 1, Qiang Song 2,, Feng-Chun SUN 3 and Pu Zeng 4 2nd International Conference on Electronic & Mechanical Engineering and Information Technology (EMEIT-2012) Parameters Matching and Simulation on a Hybrid Power System for Electric Bulldozer Hong Wang

More information

INVENTION DISCLOSURE MECHANICAL SUBJECT MATTER EFFICIENCY ENHANCEMENT OF A NEW TWO-MOTOR HYBRID SYSTEM

INVENTION DISCLOSURE MECHANICAL SUBJECT MATTER EFFICIENCY ENHANCEMENT OF A NEW TWO-MOTOR HYBRID SYSTEM INVENTION DISCLOSURE MECHANICAL SUBJECT MATTER EFFICIENCY ENHANCEMENT OF A NEW TWO-MOTOR HYBRID SYSTEM ABSTRACT: A new two-motor hybrid system is developed to maximize powertrain efficiency. Efficiency

More information

Adaptive Power Grids: Responding to Generation Diversity

Adaptive Power Grids: Responding to Generation Diversity Short Course on Future Trends for Power Systems, The University of Sydney, 12 th October, 2009 Adaptive Power Grids: Responding to Generation Diversity David J Hill Research School of Information Sciences

More information

A Method for Determining the Generators Share in a Consumer Load

A Method for Determining the Generators Share in a Consumer Load 1376 IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 15, NO. 4, NOVEMBER 2000 A Method for Determining the Generators Share in a Consumer Load Ferdinand Gubina, Member, IEEE, David Grgič, Member, IEEE, and Ivo

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

National Road Safety Action Plan in China

National Road Safety Action Plan in China Sixth SHRP 2 Safety Research Symposium National Road Safety Action Plan in China Dr. Yan Wang July 14, 2011 Washington DC, USA Outline 1 Initiative of Road Safety Action Plan 2 Phase I 3 For Next Phase?

More information

2nd Annual International Conference on Advanced Material Engineering (AME 2016)

2nd Annual International Conference on Advanced Material Engineering (AME 2016) 2nd Annual International Conference on Advanced Material Engineering (AME 2016) Design of Novel Energy Recovery Damper Based on EAP Zhen-Tao WANG1,a, Jian-Bo CAO1,b*, Shi-Ju E1,b, Tian-Feng ZHAO2,a, Can

More information

An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG

An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG 2017 2 nd International Conference on Test, Measurement and Computational Method (TMCM 2017) ISBN: 978-1-60595-465-3 An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG

More information

Abstract- In order to increase energy independency and decrease harmful vehicle emissions, plug-in hybrid electric vehicles

Abstract- In order to increase energy independency and decrease harmful vehicle emissions, plug-in hybrid electric vehicles An Integrated Bi-Directional Power Electronic Converter with Multi-level AC-DC/DC-AC Converter and Non-inverted Buck-Boost Converter for PHEVs with Minimal Grid Level Disruptions Dylan C. Erb, Omer C.

More information

THE IMPACT OF BATTERY OPERATING TEMPERATURE AND STATE OF CHARGE ON THE LITHIUM-ION BATTERY INTERNAL RESISTANCE

THE IMPACT OF BATTERY OPERATING TEMPERATURE AND STATE OF CHARGE ON THE LITHIUM-ION BATTERY INTERNAL RESISTANCE Jurnal Mekanikal June 2017, Vol 40, 01-08 THE IMPACT OF BATTERY OPERATING TEMPERATURE AND STATE OF CHARGE ON THE LITHIUM-ION BATTERY INTERNAL RESISTANCE Amirul Haniff Mahmud, Zul Hilmi Che Daud, Zainab

More information

Abstract. 1. Introduction. 1.1 object. Road safety data: collection and analysis for target setting and monitoring performances and progress

Abstract. 1. Introduction. 1.1 object. Road safety data: collection and analysis for target setting and monitoring performances and progress Road Traffic Accident Involvement Rate by Accident and Violation Records: New Methodology for Driver Education Based on Integrated Road Traffic Accident Database Yasushi Nishida National Research Institute

More information

THE REAL-WORLD SMART CHARGING TRIAL WHAT WE VE LEARNT SO FAR

THE REAL-WORLD SMART CHARGING TRIAL WHAT WE VE LEARNT SO FAR THE REAL-WORLD SMART CHARGING TRIAL WHAT WE VE LEARNT SO FAR ELECTRIC NATION INTRODUCTION TO ELECTRIC NATION The growth of electric vehicles (EVs) presents a new challenge for the UK s electricity transmission

More information

Tooth Shape Optimization of the NGW31 Planetary Gear Based on Romax Designer

Tooth Shape Optimization of the NGW31 Planetary Gear Based on Romax Designer 6th International Conference on Electronics, Mechanics, Culture and Medicine (EMCM 2015) Tooth Shape Optimization of the NGW31 Planetary Gear Based on Romax Designer Chunming Xu 1, a *, Ze Liu 1, b, Wenjun

More information

Analysis and Design of Independent Pitch Control System

Analysis and Design of Independent Pitch Control System 5th International Conference on Civil Engineering and Transportation (ICCET 2015) Analysis and Design of Independent Pitch Control System CHU Yun Kai1, a *, MIAO Qiang2,b, DU Jin Song1,c, LIU Yi Yang 1,d

More information

Theoretical and Experimental Investigation of Compression Loads in Twin Screw Compressor

Theoretical and Experimental Investigation of Compression Loads in Twin Screw Compressor Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2004 Theoretical and Experimental Investigation of Compression Loads in Twin Screw Compressor

More information

CITY DRIVING ELEMENT COMBINATION INFLUENCE ON CAR TRACTION ENERGY REQUIREMENTS

CITY DRIVING ELEMENT COMBINATION INFLUENCE ON CAR TRACTION ENERGY REQUIREMENTS CITY DRIVING ELEMENT COMBINATION INFLUENCE ON CAR TRACTION ENERGY REQUIREMENTS Juris Kreicbergs, Denis Makarchuk, Gundars Zalcmanis, Aivis Grislis Riga Technical University juris.kreicbergs@rtu.lv, denis.mkk@gmail.com,

More information

A Model of Wind Turbine s Flexibility Shaft

A Model of Wind Turbine s Flexibility Shaft Advanced Materials Research Online: 2014-06-18 ISSN: 1662-8985, Vols. 953-954, pp 384-388 doi:10.4028/www.scientific.net/amr.953-954.384 2014 Trans Tech Publications, Switzerland A Model of Wind Turbine

More information

Technology for Estimating the Battery State and a Solution for the Efficient Operation of Battery Energy Storage Systems

Technology for Estimating the Battery State and a Solution for the Efficient Operation of Battery Energy Storage Systems Technology for Estimating the Battery State and a Solution for the Efficient Operation of Battery Energy Storage Systems Soichiro Torai *1 Masahiro Kazumi *1 Expectations for a distributed energy system

More information

EXTENDING PRT CAPABILITIES

EXTENDING PRT CAPABILITIES EXTENDING PRT CAPABILITIES Prof. Ingmar J. Andreasson* * Director, KTH Centre for Traffic Research and LogistikCentrum AB. Teknikringen 72, SE-100 44 Stockholm Sweden, Ph +46 705 877724; ingmar@logistikcentrum.se

More information

Application of Airborne Electro-Optical Platform with Shock Absorbers. Hui YAN, Dong-sheng YANG, Tao YUAN, Xiang BI, and Hong-yuan JIANG*

Application of Airborne Electro-Optical Platform with Shock Absorbers. Hui YAN, Dong-sheng YANG, Tao YUAN, Xiang BI, and Hong-yuan JIANG* 2016 International Conference on Applied Mechanics, Mechanical and Materials Engineering (AMMME 2016) ISBN: 978-1-60595-409-7 Application of Airborne Electro-Optical Platform with Shock Absorbers Hui YAN,

More information

Application of Simulation-X R based Simulation Technique to Notch Shape Optimization for a Variable Swash Plate Type Piston Pump

Application of Simulation-X R based Simulation Technique to Notch Shape Optimization for a Variable Swash Plate Type Piston Pump Application of Simulation-X R based Simulation Technique to Notch Shape Optimization for a Variable Swash Plate Type Piston Pump Jun Ho Jang 1, Won Jee Chung 1, Dong Sun Lee 1 and Young Hwan Yoon 2 1 School

More information

Effect of driving pattern parameters on fuel-economy for conventional and hybrid electric city buses

Effect of driving pattern parameters on fuel-economy for conventional and hybrid electric city buses EVS28 KINTEX, Korea, May 3-6, 2015 Effect of driving pattern parameters on fuel-economy for conventional and hybrid electric city buses Ming CHI 1, Hewu WANG 1, Minggao OUYANG 1 1 Author 1 State Key Laboratory

More information

THE ELECTRIC VEHICLE ROUTING OPTIMIZING ALGORITHM AND THE CHARGING STATIONS LAYOUT ANALYSIS IN BEIJING

THE ELECTRIC VEHICLE ROUTING OPTIMIZING ALGORITHM AND THE CHARGING STATIONS LAYOUT ANALYSIS IN BEIJING ISSN 176-459 Int j simul model 13 (014) 1, 116-17 Original scientific paper THE ELECTRIC VEHICLE ROUTING OPTIMIZING ALGORITHM AND THE CHARGING STATIONS LAYOUT ANALYSIS IN BEIJING Lu, X. C.; Chen, Q. B.

More information

Effects of Smart Grid Technology on the Bulk Power System

Effects of Smart Grid Technology on the Bulk Power System Effects of Smart Grid Technology on the Bulk Power System Rana Mukerji Senior Vice President Market Structures New York Independent System Operator Union College 2013 Environmental Science, Policy & Engineering

More information

Research of the vehicle with AFS control strategy based on fuzzy logic

Research of the vehicle with AFS control strategy based on fuzzy logic International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Print): 2320-9356 Volume 3 Issue 6 ǁ June 2015 ǁ PP.29-34 Research of the vehicle with AFS control strategy

More information

IEEE Transactions on Applied Superconductivity, 2012, v. 22 n. 3, p :1-5

IEEE Transactions on Applied Superconductivity, 2012, v. 22 n. 3, p :1-5 Title Transient stability analysis of SMES for smart grid with vehicleto-grid operation Author(s) Wu, D; Chau, KT; Liu, C; Gao, S; Li, F Citation IEEE Transactions on Applied Superconductivity, 2012, v.

More information

The Optimal Design of a Drum Friction Plate Using AnsysWorkbench

The Optimal Design of a Drum Friction Plate Using AnsysWorkbench Advances in Natural Science Vol. 8, No. 1, 2015, pp. 59-64 DOI: 10.3968/6438 ISSN 1715-7862 [PRINT] ISSN 1715-7870 [ONLINE] www.cscanada.net www.cscanada.org The Optimal Design of a Drum Friction Plate

More information

Using ABAQUS in tire development process

Using ABAQUS in tire development process Using ABAQUS in tire development process Jani K. Ojala Nokian Tyres plc., R&D/Tire Construction Abstract: Development of a new product is relatively challenging task, especially in tire business area.

More information

Curbing emissions and energy consumption in the transport sector how can we deal with it in Warsaw 2012 Annual POLIS Conference

Curbing emissions and energy consumption in the transport sector how can we deal with it in Warsaw 2012 Annual POLIS Conference Curbing emissions and energy consumption in the transport sector how can we deal with it in Warsaw 2012 Annual POLIS Conference Perugia, 29 30 November 2012 1 Covenant of Mayors (under the auspices of

More information

Identification of A Vehicle Pull Mechanism

Identification of A Vehicle Pull Mechanism Seoul 2000 FISITA World Automotive Congress June 12-15, 2000, Seoul, Korea F2000G353 Identification of A Vehicle Pull Mechanism Sang-Hyun Oh*, Young-Hee Cho, Gwanghun Gim Vehicle Dynamics Research Team,

More information

The Application of UKF Algorithm for type Lithium Battery SOH Estimation

The Application of UKF Algorithm for type Lithium Battery SOH Estimation Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vols. 519-520, pp 1079-1084 doi:10.4028/www.scientific.net/amm.519-520.1079 2014 Trans Tech Publications, Switzerland The Application

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

MORE CONTROLLERS ON A BATTERY BATTERY CHARGE LIMITATIONS

MORE CONTROLLERS ON A BATTERY BATTERY CHARGE LIMITATIONS Avigliana - 8 March 2015 TECHNICAL REPORT MORE CONTROLLERS ON A BATTERY BATTERY CHARGE LIMITATIONS Photovoltaic panels can be wired in series or in parallel. In the first case only panels with the same

More information

Analysis on natural characteristics of four-stage main transmission system in three-engine helicopter

Analysis on natural characteristics of four-stage main transmission system in three-engine helicopter Article ID: 18558; Draft date: 2017-06-12 23:31 Analysis on natural characteristics of four-stage main transmission system in three-engine helicopter Yuan Chen 1, Ru-peng Zhu 2, Ye-ping Xiong 3, Guang-hu

More information

Clearance Loss Analysis in Linear Compressor with CFD Method

Clearance Loss Analysis in Linear Compressor with CFD Method Clearance Loss Analysis in Linear Compressor with CFD Method Wenjie Zhou, Zhihua Gan, Xiaobin Zhang, Limin Qiu, Yinzhe Wu Cryogenics Laboratory, Zhejiang University Hangzhou, Zhejiang, China, 310027 ABSTRACT

More information

Electric Vehicles in China:

Electric Vehicles in China: Electric Vehicles in China: Technology Trajectories, Policies, and lessons Chen Ling, Doris Fischer, Shen Qunhong, Yang Wenhui Presentation for the final conference in Bonn April 7-8, 2014 Outline Research

More information

Research on vibration reduction of multiple parallel gear shafts with ISFD

Research on vibration reduction of multiple parallel gear shafts with ISFD Research on vibration reduction of multiple parallel gear shafts with ISFD Kaihua Lu 1, Lidong He 2, Wei Yan 3 Beijing Key Laboratory of Health Monitoring and Self-Recovery for High-End Mechanical Equipment,

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

Efficiency Enhancement of a New Two-Motor Hybrid System

Efficiency Enhancement of a New Two-Motor Hybrid System World Electric Vehicle Journal Vol. 6 - ISSN 2032-6653 - 2013 WEVA Page Page 0325 EVS27 Barcelona, Spain, November 17-20, 2013 Efficiency Enhancement of a New Two-Motor Hybrid System Naritomo Higuchi,

More information

Office of Transportation Bureau of Traffic Management Downtown Parking Meter District Rate Report

Office of Transportation Bureau of Traffic Management Downtown Parking Meter District Rate Report Office of Transportation Bureau of Traffic Management 1997 Downtown Parking Meter District Rate Report Introduction The City operates approximately 5,600 parking meters in the core area of downtown. 1

More information

OKLAHOMA CORPORATION COMMISSION REGULATED ELECTRIC UTILITIES 2018 RELIABILITY SCORECARD

OKLAHOMA CORPORATION COMMISSION REGULATED ELECTRIC UTILITIES 2018 RELIABILITY SCORECARD OKLAHOMA CORPORATION COMMISSION REGULATED ELECTRIC UTILITIES 2018 RELIABILITY SCORECARD June 1, 2018 Table of Contents 1.0 Introduction...3 2.0 Summary...3 3.0 Purpose...3 4.0 Definitions...4 5.0 Analysis...5

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

Effect of Police Control on U-turn Saturation Flow at Different Median Widths

Effect of Police Control on U-turn Saturation Flow at Different Median Widths Effect of Police Control on U-turn Saturation Flow at Different Widths Thakonlaphat JENJIWATTANAKUL 1 and Kazushi SANO 2 1 Graduate Student, Dept. of Civil and Environmental Eng., Nagaoka University of

More information

The Experimental Study of the Plateau Performance of the F6L913 Diesel Engine

The Experimental Study of the Plateau Performance of the F6L913 Diesel Engine Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com The Experimental Study of the Plateau Performance of the F6L913 Diesel Engine 1 Weiming Zhang, 2 Jiang Li 1, 2 Dept. of Petroleum Supply

More information

Procurement notes for councils (Scotland)

Procurement notes for councils (Scotland) Procurement notes for councils (Scotland) Reasons for establishing a car club in your area There are two main reasons for local authorities looking to establish a car club: 1. Community benefits of increasing

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

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

Design and Performance Analysis of ISD Suspension Based on New Mechanical Network Isolation Theory Jun Yang, Long Chen, Xiaofeng Yang & Yujie Shen

Design and Performance Analysis of ISD Suspension Based on New Mechanical Network Isolation Theory Jun Yang, Long Chen, Xiaofeng Yang & Yujie Shen International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 05) Design and Performance Analysis of ISD Suspension Based on New Mechanical Network Isolation Theory Jun

More information

Optimal Placement of Distributed Generation for Voltage Stability Improvement and Loss Reduction in Distribution Network

Optimal Placement of Distributed Generation for Voltage Stability Improvement and Loss Reduction in Distribution Network ISSN (Online) : 2319-8753 ISSN (Print) : 2347-6710 International Journal of Innovative esearch in Science, Engineering and Technology Volume 3, Special Issue 3, March 2014 2014 International Conference

More information

Development and Power Measurement of Bicycle Power Generator

Development and Power Measurement of Bicycle Power Generator ISBN 978-93-84422-79-0 9th International Conference on Recent Trends in Science Engineering, Computers and Technology (RTSECT-2017) Singapore Aug. 10-11, 2017 Development and Power Measurement of Bicycle

More information

Public transport traffic management systems simulation in Craiova city

Public transport traffic management systems simulation in Craiova city Public transport traffic management systems simulation in Craiova city Ilie Dumitru Assoc Prof, University of Craiova, Faculty of Mechanics, Romania Dumitru Nicolae Prof, University of Craiova, Faculty

More information

RE: Comments on Proposed Mitigation Plan for the Volkswagen Environmental Mitigation Trust

RE: Comments on Proposed Mitigation Plan for the Volkswagen Environmental Mitigation Trust May 24, 2018 Oklahoma Department of Environmental Quality Air Quality Division P.O. Box 1677 Oklahoma City, OK 73101-1677 RE: Comments on Proposed Mitigation Plan for the Volkswagen Environmental Mitigation

More information

Performance study of combined test rig for metro train traction

Performance study of combined test rig for metro train traction Journal of Modern ransportation Volume 19, Number 3, September 211, Page 163-167 Journal homepage: jmt.swjtu.edu.cn DOI: 1.17/BF3325754 1 Performance study of combined test rig for metro train traction

More information

Maneuvering Experiment of Personal Mobility Vehicle with CVT-Type Steering Mechanism

Maneuvering Experiment of Personal Mobility Vehicle with CVT-Type Steering Mechanism F2012-E01-016 Maneuvering Experiment of Personal Mobility Vehicle with CVT-Type Steering Mechanism 1 Suda, Yoshihiro * ; 1 Hirayama, Yuki; 1 Aki, Masahiko; 2 Takagi, Takafumi; 1 Institute of Industrial

More information

Research of Driving Performance for Heavy Duty Vehicle Running on Long Downhill Road Based on Engine Brake

Research of Driving Performance for Heavy Duty Vehicle Running on Long Downhill Road Based on Engine Brake Send Orders for Reprints to reprints@benthamscience.ae The Open Mechanical Engineering Journal, 2014, 8, 475-479 475 Open Access Research of Driving Performance for Heavy Duty Vehicle Running on Long Downhill

More information

BMW GROUP DIALOGUE. HANGZHOU 2017 TAKE AWAYS.

BMW GROUP DIALOGUE. HANGZHOU 2017 TAKE AWAYS. BMW GROUP DIALOGUE. HANGZHOU 2017 TAKE AWAYS. BMW GROUP DIALOGUE. CONTENT. A B C Executive Summary: Top Stakeholder Expert Perceptions & Recommendations from Hangzhou Background: Mobility in Hangzhou 2017,

More information

A Permanent-magnet Hybrid In-wheel Motor Drive for Electric Vehicles

A Permanent-magnet Hybrid In-wheel Motor Drive for Electric Vehicles A Permanent-magnet Hybrid In-wheel Motor Drive for Electric Vehicles Chunhua Liu 1, K. T. Chau 1, Senior Member, IEEE, and J. Z. Jiang 2 1 Department of Electrical and Electronic Engineering, The University

More information