Quick and Energy-Efficient Routes Computing Constrained Shortest Paths for Electric Vehicles

Size: px
Start display at page:

Download "Quick and Energy-Efficient Routes Computing Constrained Shortest Paths for Electric Vehicles"

Transcription

1 Quick and Energy-Efficient Route Computing Contrained Shortet Path for Electric Vehicle Sabine Storandt FMI, Univerität Stuttgart Stuttgart, Germany ABSTRACT In thi paper we tudy multi-criteria routing problem related to Electric Vehicle (EV). Becaue EV till uffer from a rather mall cruiing range retricted by the battery capacity, and loading tation are pare and reloading i time intenive, previou work focued on computing the mot energy-efficient route efficiently. Unfortunately thee approache do not guarantee anything in term of ditance or travel time. But even a very eco-friendly driver might not be willing to accept a tour three time a long a the quicket one to ave ome energy. Therefore we preent new type of querie conidering energy-conumption and ditance or travel time and reloading effort, e.g. computing the hortet or quicket path on which the EV doe not run out of energy while requiring at mot k recharging event (with k being an input parameter). The repective optimization problem are intance of the contrained hortet path problem, which i NP-hard. Neverthele we will provide preproceing technique that allow for fat query anwering even in large treet graph. Categorie and Subject Decriptor G2.2 [DISCRETE MATHEMATICS]: Graph algorithm General Term Algorithm Keyword Route Planning, Contrained Shortet Path, E-Mobility 1. INTRODUCTION In recent year E-mobility ha been identified a important mean to reduce the conumption of foil fuel. Electric Vehicle (EV) are battery-powered and the neceary electricity can be produced from regenerative ource. Furthermore EV typically exhibit lower emiion to their immediate environment in term of combution gae or noie level. To accelerate the widepread tranition to E-Mobility everal Permiion to make digital or hard copie of all or part of thi work for peronal or claroom ue i granted without fee provided that copie are not made or ditributed for profit or commercial advantage and that copie bear thi notice and the full citation on the firt page. To copy otherwie, to republih, to pot on erver or to reditribute to lit, require prior pecific permiion and/or a fee. ACM SIGSPATIAL IWCTS 12, November 6, Redondo Beach, CA, USA Copyright c 2012 ACM ISBN /12/11...$15.00 Figure 1: Small example for the diverity of path: The energy-optimal path (green, bottom) i 9.203km long, the hortet path (purple, top) only 8.824km. The hortet path on which the EV doe not run out of energy (black, middle) i only 11m longer than the hortet one. government offer reduced taxe for EV compared to fuel driven car, and provide federal funding for the development of green technologie. Neverthele Electric Vehicle till wait for their great breakthrough. One reaon might be the retricted cruiing range of actual EV (up to 150km) reulting from the limited battery capacity. Indeed in ue, there i the poibility to recuperate energy during deceleration phae or when going downhill (a long a the battery capacity i not exceeded!), but till recharging will be neceary when driving longer tour. Here further inconvenience become noticeable: On the one hand loading tation (LS) are till pare in mot countrie certainly not a widepread a ga tation therefore one can not jut plan a trip and rely on the preence of nearby LS when the battery charge level drop. On the other hand reloading take everal hour hence it hould be avoided if poible. Therefore the energy-conumption along a path hould be a mall a poible to tay mobile. At the ame time people are certainly not willing to accept coniderably longer travel time jut to ave a few kwh of energy. Therefore a fair trade-off need to be achieved. The following quetion reflecting multi-criteria objective are natural from a uer perpective (ee Figure 1 for a bit of illutration): 1. What i the hortet or quicket path on which the EV doe not run out of energy? 2. What i the mot energy-efficient path which i at mot x time longer than the hortet one (e.g. x = 1.05)? A path obeying the battery contraint (i.e. the EV doe not run on energy while repecting the prohibition of overcharg-

2 ing the battery) i alo called feaible. If without reloading there exit no feaible path from ource to target, the deciion how often and where to recharge have to be made reaonably. So now we have to balance ditance or time to travel, energy conumption and reloading effort. Thi lead to lightly more complex optimality criteria, which are reflected in the following query type: 3. Find the hortet/quicket feaible path with at mot k recharging event. 4. Find a feaible path with a minimal number of recharging event and bounded ditance/travel time. Note that the problem demand the input of a parameter which allow the uer to modulate between eco-friendly and fat or hort route. Thee kind of querie are called cutomizable becaue the parameter i revealed at runtime only. Thee four optimization problem are intance of or involve the olution of the contrained hortet path problem (CSP), which i NP-hard in general and hence the exitence of polytime algorithm i doubtful. Neverthele we will preent technique which guarantee optimal query anwering in a reaonable time pan for real-world network. Thi enable uer to plan their EV trip according to their preference and permit navigation of EV in large treet network. 1.1 Related Work Becaue of long recharging time and the limited cruiing range of EV, the firt approach for enible route planning wa finding the path with minimal total energy-conumption. Computing uch an energy optimal path for an EV require a lot more effort than conventional route planning. On the one hand the recuperation capability introduce negative edge weight to the graph, a there might be a urplu of energy on a certain road egment. Thi inhibit the direct appliance of Dijktra algorithm, which i the crucial ingredient in mot route planning application. On the other hand the EV mut not run out of energy on the uggeted path and i alo not allowed to overcharge the battery (when recuperating). The problem of finding a path that meet thee requirement (the battery contraint) while minimizing the total energy conumption from ource to target wa introduced in [3]. Here, the author provided an extenion of the Bellman-Ford algorithm that olve the problem in O(nm) (n being the number of node and m the number of edge). In [4] proper cot model and preproceing technique were introduced that reduce both the theoretical and practical runtime of a query: Firt the contant edge cot repreenting energy conumption (e.g. in kwh) were tranformed into edge cot function which fulfil the FIFO-property, hence allowing traightforward ue of Bellman-Ford. Then the partly negative edge cot function were tranformed into non-negative one by uing an adaption of Johnon hifting technique. Upon that bai Dijktra algorithm can be applied, leading to ubequent query time of O(n log(n)+m). Finally the preproceing technique contraction hierarchie [5] wa adapted to the cenario, leading to a total peed-up of two order of magnitude. So very efficient retrieval of energy-optimal path i poible now. But the energy-conumption minimizing path might not alway be the deired route. Many owner of EV can recharge their EV in their garage; therefore driving home after work, the goal i rather to get there a fat a poible than to maximize the battery load at the detination. Accordingly the quicket or hortet path that i feaible i more appropriate here. The technique preented o far do not guarantee anything in term of travel time or ditance. Of coure they alo dealt with contraint, namely the battery contraint. But note that only one metric energy conumption wa involved up to now. So the contraint and the objective were both concerned with the ame metric. In contrat, incorporating travel time or ditance, a econd metric get introduced to the problem and putting a contraint on the one metric while minimizing the other, we end up with intance of CSP. Therefore we can no longer hope for a polytime algorithm like for the previouly tudied problem. Neverthele in [6] it wa hown that peed-up technique originally developed for the conventional hortet path problem like contraction hierarchie or arc-flag can be adapted to olve CSP, enabling practical query time for graph with up to a million node and edge. Note that for conventional CSP intance both involved metric are repreented a contant cot along the edge. But uing the energy conumption edge cot function from [4] a one of the metric, the etting get more complicated and the technique preented in [6] can not be applied traightforward. Alo reloading deciion have to be taken into account. Thi topic wa already tackled in [7]. Here the author aimed for a path with a minimum number of neceary recharging event. Thi problem can be olved in polytime becaue beide feaibility nothing ele i guaranteed for the reulting path. The approach i reaonable under the precondition of very time intenive reloading. But currently more and more o-called battery witch tation get etablihed. Here the complete battery ytem i wapped for a fully loaded one, taking coniderably le time than recharging. Still having to witch the battery i an inconvenience, but the uer might not accept arbitrary long detour anymore jut to avoid thi proce. 1.2 Contribution and Outline For the firt two problem computing the hortet feaible path and the mot energy-efficient one with bounded ditance we preent in Section 3 an adaption of contraction hierarchie for CSP which can alo deal with edge cot function intead of contant value only. Moreover we take loading tation into account and decribe on that bai the contruction of an auxiliary graph, which help to find the optimal path efficiently. Upon that, in Section 4 we propoe preproceing technique and algorithm, that olve the more complex optimization problem 3. and 4. where recharging i limited or minimized. Finally we evaluated the propoed approache on real-world data. The repective experimental reult can be found in Section PRELIMINARIES Baically we are given the capacity of the EV battery M R +, a treet (di)graph G(V, E), a cot function repreenting ditance or travel time d : E R and a function f e on each edge e E repreenting energy conumption. Thee function are modelled in conitency with [4] a follow: Let c : E R be the contant energy cot (in kwh), which might be partly negative (due to recuperation). To atify the battery contraint, it mut be aured that no

3 overcharging and no running out of energy i poible. So let e = (v, w) be ome edge with contant cot c(e), and b(v) the battery load of the EV at node v. If c(e) > 0 the battery load b(v) might be inufficient to ue the edge. To make ure that no optimal path will contain e in uch a cae, we et the repective edge cot to if c(e) > b(v). So for poitive contant cot the function look a follow: { b(v) < c(e) f e(b(v)) = c(e) otherwie If c(e) < 0 the edge can alway be ued, but one mut be careful not to overcharge the battery, i.e. if b(v) c(e) > M the final load at w will till be M only. Thi can be achieved uing the following edge cot function: { c(e) b(v) < M + c(e) f e(b(v)) = b(v) M otherwie So a feaible path p =, v 1,, v k, t from ource = v 0 V to target t = v k+1 V i characterized by b(v i) [0, M] for all i = 0,, k 1. In congruency with [7] we call a node w reachable from v if there exit a feaible path p = v,, w. The et of all node reachable from v i denoted by R(v), the et of node from which v can be reached by R 1 (v). Node in the latter et are alo called invere reachable from v. Both et can be computed efficiently a decribed in [7]. Label Setting: In the general CSP etting, there are contant cot c : E R + and contant reource conumption r : E R +. Moreover on query time, we are given a ource/ target, t V a well a a bound B R + on the reource conumption. The goal i to find the path from to t which minimize the cot while not exceeding the reource bound B. One claical approach to olve intance of CSP i the label etting computation (LSC) [1]. A LSC aign to each node v the lit of all pareto-optimal tuple (c(p), r(p)) for an -v-path p. Pareto-optimal mean that there i no dominating path p with c(p ) c(p) and r(p ) r(p) (and inequality hold at leat once). Thee label are created by an approach very imilar to Dijktra algorithm for computing plain hortet path. Here alo label are tored in a priority queue (PQ). A label i a triple coniting of a node ID, cot and reource conumption. The PQ ort the label in the increaing order of cot. The initial PQ contain only the label (, 0, 0). In every round the label (v, c, r) with minimal cot c i extracted and for the repective node v all outgoing edge e = (v, w) become relaxed, i.e. if (c = c + c(e), r = r + r(e)) i pareto-optimal for w the new label (w, c, r ) get puhed into the PQ. If (c, r ) dominate any olution that wa already aigned to w the dominated olution get pruned. Simple Pruning: The number of label that can be aigned to a ingle node i exponential and o i the runtime of LSC. Therefore pruning the earch pace i of utmot importance to achieve practical runtime in larger graph. A imple attempt to reduce the graph ize i baed on minimal reource label [2]. Here the minimal reource label r min of a node v i the minimal reource conumption of an -tpath that viit v. Obviouly, all node with r min(v) > B can never be on a feaible path, and hence thee node a well a their adjacent edge can be excluded a priori. Thi condition can be checked efficiently for all node by running two conventional Dijktra computation on the reource conumption tarting in, and t (on the revered graph). Afterward the two reulting label r (v) and r t(v) are ummed for each node to receive r min(v). Contraction Hierarchie: The peed-up technique contraction hierarchie (CH) wa introduced in [5]. The baic idea i augmenting the graph with hortcut that allow to kip a lot of edge relaxation at query time. To that end, in a preproceing phae an importance value i aigned to each node, and node are orted in increaing order of importance. Afterward the node get removed/ contracted one by one in that order, while preerving all hortet path ditance in the remaining graph by inerting additional edge (o called hortcut). More preciely, when contracting a node v for every path u, v, w the ditance from u to w mut tay unchanged. Therefore the edge e = (u, w) ha to be added if the only hortet path from u to w i u, v, w. The cot of e equal the chained cot of the edge (u, v) and (v, w). If there exit a path with cot le than the one of u, v, w, a o called witne path i found (normally via a Dijktra run from u to w) and the hortcut can be omitted. After all node have been removed, a new graph G i created coniting of all node and edge of the original graph and all hortcut. An edge e = (v, w) (original or hortcut) i called upward if the importance of v i maller than that of w and downward otherwie. In G -t-querie can be anwered bidirectionally, with the forward run (tarting at ) conidering only upward edge and the backward run (tarting at t) conidering excluively downward edge. Therefore thi trategy prune the repective earch pace dramatically. If unidirectional query anwering i neceary, all edge on downward path ending in t can be marked via a run of breadth-firt-earch and the forward run from conidering edge on upward path and the marked edge will provide the optimal olution. In [4] the technique wa adapted to the energy conumption function. Here one mut aure that all energy-optimal path are maintained during the contraction proce. In particular thi mean, that for every poible battery load b(u) [0, M] the optimal path to w i not allowed to viit v in order to omit the hortcut. A CH-variant for CSP wa introduced in [6]. In thi cenario a witne path mut dominate the reference path u, v, w in order to make the hortcut (u, w) uperfluou. In the following we will decribe how thee two approache can be plugged together to olve our CSP intance with energy conumption function a cot or reource conumption. 3. SHORT & ENERGY-EFFICIENT PATHS Energy-optimal Path with Bounded Ditance: Even very eco-friendly EV owner might not accept driving a route three time a long a the repective hortet path in order to ave energy. But mot likely they would be willing to drive a detour of e.g. 10% of the hortet path ditance. Hence in a realitic etting we earch for a route which obey the battery contraint, but i not longer than ome given ditance bound B. So we are confronted with an intance of CSP, where the cot are given by a function repreenting the energy con-

4 umption, the reource uage i equivalent to the edge length, and the reource bound i given by B = x π(, t) with x 1 being choen by the uer and π(, t) being the hortet path ditance. Hence a LSC will aign tuple (c(p), r(p) = d(p)) to the node coniting of ummed cot and ditance. Note that the ummed cot equal the difference between initial and actual battery charge tatu, therefore we could alo aign tuple (b, d(p)), where the ummed cot are replaced with the actual battery load. Here of coure the tuple dominate (b, d (p)), if b b and d(p) d (p). Simple pruning can be performed conventionally in thi cae by running two Dijktra computation tarting at and t repectively and conidering only the ditance value. To peed up the LSC via CH, we firt have to clarify how a witne i characterized in thi cenario. Of coure we can only omit a hortcut (u, w) for a path p = u, v, w if for any initial battery load b(u) = I [0, M] there exit an alternative path which i not longer than p and lead to at leat the ame final battery load in w a p. Oberve that equivalent to the CH contruction for uncontrained energyoptimal path, there i no neceity that thi i the ame path for every I. Therefore a witne can be decribed a et of path q 1,, q t with min(f q1,, f qk ) f p (f being the chained energy conumption function of all path edge) and d(q i) d(p) i = 1,, k. To perform the witne earch efficiently we chooe a et of initial battery load I 1, like in [4] but tart a LSC with reource bound d(p) intead of a imple Dijktra computation for every b(u) = I. Shortet/Quicket Feaible Path: If the objective i reaching the detination a fat a poible without running out of energy, no additional parameter i required to determine the reource bound. Intead the bound i alway given implicitly by the battery capacity M. In thi cenario the cot are contant value (ditance or travel time) while the reource conumption i decribed by the energy conumption function. Accordingly the imple pruning technique ha to be adapted. Here we firt compute R() and R 1 (t) and tore the repective battery load b and b min for all contained node. All node v V with b(v) < b min(v) are not part of any feaible path from to t and hence can be ignored completely (thi i epecially true for v / R() R 1 (t)). Oberve that the CH-graph can be obtained jut like decribed in the lat ection (or reued), becaue the definition for a witne propoed there i till valid in thi cenario. Regarding Loading Station: The preence of loading tation might affect the hortet feaible route or might be the bai for the exitence of a feaible path at all. A LS i a node v V at which the EV completely recharge whenever it viit. The et of LS i denoted by L V. To incorporate LS efficiently, we make the following obervation: Firtly an optimal path viit at mot L (all) LS once, becaue any cycle tarting and ending at a LS would increae the ditance, but could not lead to a higher battery charge tatu at that vertex. Secondly the pairwie hortet feaible path between LS are not influenced by the choice of and t; therefore thoe path can be preproceed. Thee two obervation give rie to the contruction of an auxiliary graph imilar to the one propoed in [7]. Here we create a node for every loading tation l L and edge (l, l ), if there exit a feaible path from l to l (without the uage of any further LS). In contrat to the approach decribed in [7], we now weigh the edge with the hortet feaible path ditance (we refer to thi graph alo a reach graph). At query time we have to add the node and t and proper edge. For thi purpoe we firt compute R() and R 1 (t) and interect thee et with L to derive the directly (invere) reachable LS. For every l R() L we have to compute the hortet feaible path from to l. Of coure thi can be achieved imultaneouly for all of the concerned LS via a ingle LSC. The ame yield for t reverely. After adding the edge (, l), l R() L and (l, t), l R 1 (t) to the auxiliary graph, a ingle Dijktra run from v to v t return the deired equence of LS on the hortet feaible path from to t. To benefit from applying CH when computing R() and R 1 (t) we leave all LS node uncontracted. Therefore they all lay on upward path from and downward path to t, i.e. exploring the repective graph i ufficient to determine the et of (invere) reachable LS. Moreover thi peed up the computation of the auxiliary graph, becaue the hortet feaible ditance from one LS to all the other can be computed in the remaining (much maller) graph with a plain LSC. Naturally uch a route might contain a large number of recharging event, becaue a fully loaded battery might allow for driving a much horter/quicker tour than a heavily dicharged one. In cae of minimizing travel time, we can find a more reaonable path by conidering alo the time needed for the recharging event. Thee penalty time have to be added to all edge in the auxiliary graph which end in a LS. Then again a ingle run of Dijktra algorithm lead to the optimal equence of LS, ee Figure 2 for a mall example (+3) 8(+3) v 1 v (+3) 2(+3) Figure 2: Computing the quicket feaible path in the preence of loading tation. If no penalty time for viiting a LS are aigned, the optimal path (orange, c = 11) include two recharging event. If penalty time are added (value in bracket, here 3 unit for each LS), the new optimal path (green, c = ) require recharging only once. 4. CONTROLLING THE NUMBER OF RECHARGING EVENTS In the lat ection we howed how one can incorporate penalty time for recharging event in order to keep their number mall on quicket feaible path. But it i difficult to etimate the penalty time reaonably, a they actually include poibly waiting time, time to intall the new battery (if it i completely witched, otherwie time to recharge), time to pay and o on. Moreover if ditance i minimized intead of travel time, the optimal path till might include a lot of recharging event. Therefore we will now preent two way to control the number of recharging event without accepting long detour. t

5 k L R() L L L L R 1 (t) L t Figure 3: Layered graph to find the hortet feaible path from to t viiting with at mot k loading tation. Each node ha an edge to every node in the next layer (black) apart from edge that indicate the viit of the ame LS conecutively. Node in R 1 (t) L have an additional edge to t (blue). Edge are weighted according to the hortet feaible path ditance in G neglecting LS ( if no feaible path exit). Limiting Recharging Event: While the natural limit of recharging event i L, a driver i normally only willing to accept a few recharging event, e.g. one for mall tour and three for longer tour. Therefore we would like to compute the hortet feaible path that require at mot k recharging event. For that purpoe we turn the auxiliary reach-graph propoed in the lat ection into a layered graph a depicted in Figure 3. The main and invariant part of the graph conit of L layer each containing a vertex v l for every loading tation l L. We call i(v l) {1,, L } the layer index of v l. Between equent layer j and j + 1, there exit all edge (v l, v l ) l l with i(v l ) = j and i(v l ) = j +1. Edge are weighted according to the hortet feaible path ditance that can be achieved from l to l in G without uing any other LS. To anwer an -t-query we have to augment the layered graph a well. We inert v into the layered graph at layer 0 and connect it to the firt layer by adding edge (v, v l ) l R() L, i(v l ) = 1 with the precomputed ditance. Then we inert v t at layer L + 1. To enable path with an arbitrary number of LS, we have to connect every layer to t. Hence we add edge (v l, v t) to the layered graph with l R 1 (t) and i(v l ) = 1,, L. For a given bound k on the number of recharging event, we only connect the layer 1,, k to t or ignore all layer with an index of k + 1 or higher. In the reulting graph a plain Dijktra computation reveal the optimal path. Minimizing the Number of Recharging Event under a Ditance Contraint: A uer could alo be intereted to input a limit on the path length and ak for the path with a minimum number of recharging event and the length not exceeding the given limit. For thi purpoe we could ue the ame layered graph a for finding the hortet feaible path regarding LS, but now let the ditance be the reource conumption and the actual cot are 1 for all edge not adjacent to t and 0 otherwie, ee Figure 4 (left) for a mall example. A LSC from to t in the layered graph with the given ditance limit anwer the query. But a the layered graph i a DAG (directed and acyclic) and the reource conumption for all node except t i equivalent to the node layer index, the LSC will aign only one pareto-optimal tuple to every node except t, namely the index combined with the hortet path ditance from to the node in the layered graph. Accordingly there will be at mot L + 1 tuple aigned to t a there are only L + 1 different cot value poible. The label for v V \ {t} could alo be obtained by computing the hortet path ditance for all node in the original layered graph without conidering edge adjacent to t. A thi graph i alo a DAG the ditance label are computed layerwie. For the firt layer thi require time O( L ) a there are only L incoming edge, for every ubequent layer we need time O( L 2 ). A oon a the ditance label of a node v i ettled, we relax the edge (v, t) (if it exit). If we aign a ditance label to t that doe not exceed the limit, we are done and the minimal number of recharging event k min equal the layer index i(v). Accordingly the runtime of thi approach i in O(k min L 2 ) (excluding the runtime for creating the graph with edge from/to /t). Of coure, we could alo retrieve the et of all pareto-optimal olution for t by toring the tuple (i(v), d(v) + c(v, t)) in a lit and pruning dominated one (ee Figure 4, right). Becaue the node get pared in layer order we only have to compare a new tuple to the tail of the lit to decide whether one of them need to be pruned. Hence we need L comparion and the overall runtime i O( L 3 ). Oberve that if for all node v in layer j 1 the tuple (j, d(v)+c(v, t)) i not pareto-optimal for t, then for all node w in a layer with an index j j the tuple (j, d(w)+c(w, t)) i not pareto-optimal for t a well. Accordingly we can abort the earch for pareto-optimal label for t a oon a we derive no pareto-optimal olution from a certain layer. While thi doe of coure not change the theoretical runtime, it might ave a lot of time in practice. 5. EXPERIMENTAL RESULTS We implemented the decribed approache in C++ and evaluated their performance on three tet graph, conidering varying cruiing range (CR) and number of loading tation (where taken into account). The tet graph are cutout of the treet network of Germany and baed on OpenStreetMap data: Winnenden (W) with node and edge, Baden-Württemberg (B) with node and edge, and Southern Germany (S) with node and edge. All timing (t) were taken on a ingle core of an Intel i3-2310m proceor with 2.1 GHz and 8 GB RAM. Firt we computed quicket feaible path. Without any preproceing the LSC take everal econd and about 5M priority queue poll in Southern German (ee the third and fouth column of Table 1).The CH only add about CR LSC CH CH-LSC (km) poll t(m) t() edge poll t(m) W B S Table 1: Experimental reult for CH-contruction and computation of quicket feaible path (averaged over 1000 random querie).

6 (0,25) (0,4) v 1 v 3 (1,6) (0,4) (1,10) (0,12) (1,3) (1,5) v 2 v 4 (0,12) t 10 3 v 1 v v 3 v 4 v l(v) d(v) c(v, t) label(t) (0,25) v (1,14) v (1,15) v (2,12) v (2,28) Figure 4: Example for finding the path with a minimum number of recharging event under a ditance contraint. On the left the augmented layered graph i given on which a label etting computation will output the optimal path. On the right an alternative approach i preented: Firt the hortet path ditance of all node v {, v 1, v 2, v 3, v 4} are computed in the diminihed layered graph. Then all poible pareto-optimal label for t are derived by paring through the node in layer order and combine their layer index with the minimal ditance from to t over v. Dominated tuple get pruned (croed out in the table). # CR reach-graph query reach avg/max LS (km) t() edge t() able # reload W / /0 B / / /4 S / / / / / /5 Table 2: Experimental reult for computing quicket feaible path regarding loading tation (averaged over 10 randomly choen et of LS and 100 ubequent random querie each). reachable denote the fraction of target to which a feaible path from the ource (via LS) exited. time the number of original edge a hortcut to the graph (ee the total number of original + hortcut edge in column 6) which i comparable to the conventional cae for hortet path. Note that a mall cruiing range lead to more hortcut inertion, becaue a greater diverity of path i optimal for different battery charge level. Therefore and becaue the runtime for pure LSC correlate with the CR the peed-up for the 25km range i only about 4-55, while for 250km we get up to a factor of 354. Incorporating LS increae the runtime, becaue more of the cruiing range ha to be explored to find all (invere) reachable LS from (from t) and the Dijktra run on the auxiliary (reach-)graph take additional time, ee Table 2. Neverthele we till end up with practical runtime about a econd on maximum. Moreover we oberved that the average number of reloading event eem to be acceptable for the conidered cenario, while the maximum number indicate that our approach alo output ome unreaonable route (ee the lat column of Table 2). Adding reloading penaltie reduce both value of coure, but chooing them in a realitic fahion there a till optimal route no uer would be willing to take. Therefore we performed experiment with a limit of k = 2 and k = 3 on the number of recharging event in Southern Germany. Unurpriingly we got comparable query time, becaue the layered graph i only about k time a large a the original reach-graph. Comparing the pure hortet feaible route to the one with the recharging limit, we aw that the ratio of reachable target remain almot unchanged (reduction by only 4% for k = 2) and the average travel time (without reloading time) increae lightly by about 3 10%. So taking reloading effort into account lead to more practical route in ome cae. Similar reult were obtained for minimizing the number of recharging event under a ditance contraint: Setting the bound to 1.05 time the hortet feaible path ditance we could already ave 1-2 recharging event on average, reulting in much more ueful EV route. 6. CONCLUDING REMARKS In thi paper we howed that the peed-up technique contraction hierarchie work for contrained hortet path even if one of the metric i repreented by a function intead of a contant value. Thi allow for anwering EV route planning querie, like computing the hortet path on which the EV doe not run out of energy, efficiently. Moreover we propoed preproceing approache for incorporating reloading deciion, allowing for minimizing recharging under a ditant contraint or limiting the number of uch event. Partly our algorithm are cutomizable, i.e. the uer can trade between eco-friendly and hort route with an input parameter. All our approache guarantee optimality and were proven to work well on real-world intance. Future work include conideration of incomplete reloading and dynamic change in the energy conumption function, e.g. due to traffic volume, trunk load or weather condition. 7. REFERENCES [1] V. Aggarwal, Y. Aneja, and K. Nair. Minimal panning tree ubject to a ide contraint. In 32nd ACM Sympoium on Theory of Computing (STOC), page , [2] Y. P. Aneja, V. Aggarwal, and K. P. K. Nair. Shortet chain ubject to ide contraint. Network, 13(2): , [3] Andrea Artmeier, Julian Haelmayr, Martin Leucker, and Martin Sachenbacher. The hortet path problem reviited: Optimal routing for electric vehicle. In 33rd Annual German Conference on Artificial Intelligence (KI-2010), [4] Jochen Einer, Stefan Funke, and Sabine Storandt. Optimal route planning for electric vehicle in large network. In AAAI, [5] Robert Geiberger, Peter Sander, Dominik Schulte, and Chritian Vetter. Exact routing in large road network uing contraction hierarchie. Tranportation Science, 46(3): , [6] Sabine Storandt. Route planning for bicycle - exact contrained hortet path made practical via contraction hierarchy. In ICAPS, [7] Sabine Storandt and Stefan Funke. Cruiing with a battery-powered vehicle and not getting tranded. In AAAI, 2012.

Truck Driver Scheduling in the United States

Truck Driver Scheduling in the United States Truck Driver Scheduling in the United State Avin Goel,2 and Leendert Kok 3 MIT-Zaragoza International Logitic Program Zaragoza Logitic Center, Spain avin@mit.edu 2 Applied Telematic/e-Buine Group, Department

More information

Computer Aided Spur Gear Design and Analysis

Computer Aided Spur Gear Design and Analysis 66 Computer Aided Spur Gear Deign and Analyi Edward M. Vavrek Purdue Univerity North Central I. Introduction Thi paper decribe a pur gear analyi program written in viual baic. The program i ued to ait

More information

Truck Driver Scheduling in Canada

Truck Driver Scheduling in Canada Truck Driver Scheduling in Canada Avin Goel 1,2, Loui-Martin Roueau 3 1 MIT-Zaragoza International Logitic Program, Zaragoza Logitic Center, Zaragoza, Spain, avin@mit.edu 2 Applied Telematic/e-Buine Group,

More information

PULSATION & VIBRATION CONTROL FOR SMALL RECIPROCATING COMPRESSORS

PULSATION & VIBRATION CONTROL FOR SMALL RECIPROCATING COMPRESSORS PULSATION & VIBRATION CONTROL FOR SMALL RECIPROCATING COMPRESSORS N. Sackney B. Fofonoff Beta Machinery Analyi Ltd. Calgary AB, Canada, T3C J7 ABSTRACT Low horepower (below 4) reciprocating natural ga

More information

CEE nd Midterm Examination (50 minutes)

CEE nd Midterm Examination (50 minutes) CEE 30 nd Midterm, Fall 009 CEE 30 nd Midterm Examination (50 minute) Pleae write your name on thi cover. Pleae write you lat name on all other exam page You are allowed to ue one 8.5 by heet of note..

More information

3.2 Steer Design. A. Concept Development & Selection Process. B. Configuration Summary

3.2 Steer Design. A. Concept Development & Selection Process. B. Configuration Summary 3. Steer Deign A. Concept Development & Selection Proce The teering ytem for the RP1 motor module ha undergone ignificant deign improvement. The team elected to move forward with a timing belt drive ytem

More information

Study on Battery Fast Charge and Discharge Model and its Parameters

Study on Battery Fast Charge and Discharge Model and its Parameters Send Order for Reprint to reprint@benthamcience.ae The Open Electrical & Electronic Engineering Journal, 204, 8, 367-37 367 Open Acce Study on Battery Fat Charge and Dicharge Model and it Parameter Lun-qiong

More information

Investigation #6: Driving Safety Solutions

Investigation #6: Driving Safety Solutions Invetigation #6: Driving Safety Solution 1. How far can a car travelling at 60 mi/h go in: (a) 0.1? 60 mi x 1 h x 1 min x 5280 ft = 88 ft h 60 min 60 1 mi x = v x t = 88 ft x 0.1 = 8.8 ft (b) 0.5? x =

More information

Investigation of the Idea of Active Suspension System Application in Hybrid Electric Vehicles

Investigation of the Idea of Active Suspension System Application in Hybrid Electric Vehicles Invetigation of the Idea of Active Supenion Sytem Application in Hybrid Electric Vehicle Seyedmohen Hoeini, Ruhed Abdolah, and Amir Khani Abtract - Thi paper decribe the idea of application of active upenion

More information

Long-Haul Vehicle Routing and Scheduling with Working Hour Rules

Long-Haul Vehicle Routing and Scheduling with Working Hour Rules Long-Haul Vehicle Routing and Scheduling with Working Hour Rule Marie-Ève Rancourt Jean-Françoi Cordeau Gilbert Laporte October 2010 Bureaux de Montréal : Bureaux de Québec : Univerité de Montréal Univerité

More information

Target Setting for Inefficient DMUs for an Acceptable Level of Efficient Performance

Target Setting for Inefficient DMUs for an Acceptable Level of Efficient Performance Global Journal of Pure and Applied Mathematic. ISSN 0973-1768 Volume 13, Number 6 (2017), pp. 1893-1902 Reearch India Publication http://www.ripublication.com Target Setting for Inefficient DMU for an

More information

International Conference on Transportation and Development

International Conference on Transportation and Development International Conference on Tranportation and Development 2018 156 Modeling Freight Tranportation a a Sytem-of-Sytem to Determine Adoption of Emerging Vehicle Technologie A. Guerrero de la Peña 1 ; N.

More information

MEBS Utilities services M.Sc.(Eng) in building services Department of Electrical & Electronic Engineering University of Hong Kong

MEBS Utilities services M.Sc.(Eng) in building services Department of Electrical & Electronic Engineering University of Hong Kong MEBS 6000 00 Utilitie ervice Joint peed torque characteritic of electric motor and mechanical load Electric motor exhibit a variety of peed-torque characteritic that are uitable for a wide range of load

More information

Individual and Global Optimization of Switched Flux Permanent Magnet Motors

Individual and Global Optimization of Switched Flux Permanent Magnet Motors 3 Journal of International Conference on Electrical Machine and Sytem, Vol., No., pp.3~39, Individual and Optimization of Switched Flux Permanent Magnet Motor Z.Q. Zhu *, X. Liu ** Abtract With the aid

More information

Dep. Arquitectura de Computadores y Automática Universidad Complutense de Madrid Av. Complutense S/N, Madrid, Spain SPAIN

Dep. Arquitectura de Computadores y Automática Universidad Complutense de Madrid Av. Complutense S/N, Madrid, Spain SPAIN Modelling and imulation of the fuel tranfer for CoG poition control in an Aircraft J. M. GIRON-SIERRA., J.F. JIMENEZ, C. C. INSAURRALDE, M. A. SEMINARIO, B. HIGHAM (), R. A. MELVILLE () Dep. Arquitectura

More information

Solar recharging stations - selling hours of solar lighting in the evenings

Solar recharging stations - selling hours of solar lighting in the evenings 1 Solar recharging tation - elling hour of olar lighting in the evening The olar lantern ervice of Sunlabob uing commercial charging tation in the village May 2008 Summary Village entrepreneur rent large

More information

Simulation Studies of Waiting Time Approximation for the Multi Priority Dual Queue (MPDQ) with Finite Waiting Room and Non-Preemptive Scheduling

Simulation Studies of Waiting Time Approximation for the Multi Priority Dual Queue (MPDQ) with Finite Waiting Room and Non-Preemptive Scheduling Simulation Studie of aiting Time Approximation for the Multi Priority Dual Queue (MPDQ) with Finite aiting Room and Non-Preemptive Scheduling ANTHONY BEDFORD PANLOP ZEEPHONGSEKUL Department of Statitic

More information

Intelligent Parking Method for Truck and Trailer in Presence of Fixed and Moving Obstacles

Intelligent Parking Method for Truck and Trailer in Presence of Fixed and Moving Obstacles Autralian Journal of Baic and Applied Science, 5(11): 98-416, 11 ISSN 1991-8178 Intelligent Parking Method for Truck and Trailer in Preence of Fixed and Moving Obtacle 1 Morteza Sharafi, 2 A.Zare and Khalil

More information

Three-Phase Induction Motor Preliminar Design Assisted by CAD Software based on Brazilian Standards

Three-Phase Induction Motor Preliminar Design Assisted by CAD Software based on Brazilian Standards Three-Phae Induction Motor Preliminar Deign Aited by CAD Software baed on Brazilian Standard Victor de Paula Brandão Aguiar 2, Ricardo Silva Thé Ponte, Tobia Rafael Fernande Neto Department of Electrical

More information

CONSIDERATIONS ON OPERATION OF A TURBOJET ENGINE WITH THE BYPASS DESIGN

CONSIDERATIONS ON OPERATION OF A TURBOJET ENGINE WITH THE BYPASS DESIGN Proceeding of the 6th International Conference on Mechanic and Material in Deign, Editor: J.F. Silva Gome & S.A. Meguid, P.Delgada/Azore, 26-30 July 2015 PAPER REF: 5603 CONSIDERATIONS ON OPERATION OF

More information

Single-Phase Motors. Chapter (9) Introduction. 9.1 Types of Single-Phase Motors. 9.2 Single-Phase Induction Motors

Single-Phase Motors. Chapter (9) Introduction. 9.1 Types of Single-Phase Motors. 9.2 Single-Phase Induction Motors Chapter (9) Single-Phae Motor Introduction A the name ugget, thee motor are ued on ingle-phae upply. Singlephae motor are the mot familiar of all electric motor becaue they are extenively ued in home appliance,

More information

AUCTION BASED DISPATCH MODEL IN ONLINE MOTORCYCLE TAXI SYSTEM

AUCTION BASED DISPATCH MODEL IN ONLINE MOTORCYCLE TAXI SYSTEM AUCTION BASED DISPATCH MODEL IN ONLINE MOTORCYCLE TAXI SYSTEM PURBA DARU KUSUMA School of Electrical Engineering, Telkom Univerity, Indoneia E-mail: purbodaru@gmail.com ABSTRACT One problem in the exiting

More information

Equivalent Circuit of Induction Motor Referred to Stator Side

Equivalent Circuit of Induction Motor Referred to Stator Side Electrical Machine IV Code: CECE 437 http://bu.edu.eg/taff/emadattwa3 Equivalent Circuit of Induction Motor Referred to Stator Side Fig. 3: eqt. circuit of induction motor per phae at any lip referred

More information

Synchronous Motors. Chapter (11) Introduction Construction

Synchronous Motors. Chapter (11) Introduction Construction Chapter (11) Synchronou Motor Introduction It may be recalled that a d.c. generator can be run a a d.c. motor. In like manner, an alternator may operate a a motor by connecting it armature winding to a

More information

3VF2 Circuit-Breakers

3VF2 Circuit-Breakers Circuit-Breaker - and -pole, up to Technical data or other circuit-breaker Specification IEC 0 97, EN 0 97 ax. rated current I n to Rated inulation voltage U i ain current path uxiliary circuit Rated impule

More information

2. A 50 Hz, 6 pole, 3 phase induction motor runs at 970 rpm. Find slip. Rotor Speed, N r =970 r.p.m 120f. Synchronous Speed, N s 1000

2. A 50 Hz, 6 pole, 3 phase induction motor runs at 970 rpm. Find slip. Rotor Speed, N r =970 r.p.m 120f. Synchronous Speed, N s 1000 1 Unit 3 - Induction Motor PAT - A 1. Why the rotor lot are lightly kewed in quirrel cage IM? (or)why are the clot on the cage rotor of induction motor uually kewed? The rotor bar are not parallel to the

More information

Frequency Control of Isolated Power System with Wind Farm by Using Flywheel Energy Storage System

Frequency Control of Isolated Power System with Wind Farm by Using Flywheel Energy Storage System Frequency Control of Iolated Power Sytem with Wind Farm by Uing Flywheel Energy Storage Sytem 4 Rion Takahahi Kitami Intitute of Technology Japan. Introduction For the recent expanion of renewable energy

More information

OPTIMAL PLUG-IN HYBRID ELECTRIC VEHCILE DESIGN AND ALLOCATION FOR DIVERSE CHARGING PATTERNS

OPTIMAL PLUG-IN HYBRID ELECTRIC VEHCILE DESIGN AND ALLOCATION FOR DIVERSE CHARGING PATTERNS Proceeding of the 29 ASME International Deign Engineering Technical Conference and Computer and Information in Engineering Conference IDETC/CIE 29 Augut 3 to September 2, 29, San Diego, California, USA

More information

Locational Marginal Pricing (LMP) in Deregulated Electricity Market

Locational Marginal Pricing (LMP) in Deregulated Electricity Market Locatal Marginal Pricing () in Deregulated Electricity Market ABSTRACT The deregulat of electricity market ha a very large impact on almot all the power ytem around the world. Competitive market are complex

More information

Detection of Exhaust Manifold Leaks on a Turbocharged SI-engine with Wastegate

Detection of Exhaust Manifold Leaks on a Turbocharged SI-engine with Wastegate 2002-0-0844 Detection of Exhaut Manifold Leak on a Turbocharged SI-engine with Wategate Per Anderon and Lar Erikon Vehicular Sytem, Linköping Univerity, SWEDEN Copyright c 2002 Society of Automotive Engineer,

More information

The New Evolution compact. A One-of-a-kind Elevator, with a Shallow 300 mm Recess.

The New Evolution compact. A One-of-a-kind Elevator, with a Shallow 300 mm Recess. The New Evolution compact. A One-of-a-kind Elevator, with a Shallow 300 mm Rece. Revolutionary: Only 300 mm haft rece. A Company of ThyenKrupp Elevator ThyenKrupp Aufzüge TK Evolution compact rie above

More information

United States Patent (19) Steiner et al.

United States Patent (19) Steiner et al. United State Patent (19) Steiner et al. (54) INSUFFLATOR 76 Inventor: Rolf Steiner, Schietingertr.-22, 7270 Nagold-Gundringen; Volker Walz, Walddorfertr. 40, 727 Rohrdorf, both of Fed. Rep. of Germany

More information

CONTROL OF AN ELECTROMECHANICAL CAMLESS VALVE ACTUATOR

CONTROL OF AN ELECTROMECHANICAL CAMLESS VALVE ACTUATOR Proceeding of the American Control Conference Anchorage, AK May 8-, CONROL OF AN ELECROMECHANICAL CAMLESS VALVE ACUAOR Chun ai, u-chin ao Department of Mechanical and Aeropace Engineering Univerity of

More information

Comparison between Induction Motor and Transformer An induction motor is considered as a transformer with a rotating short-circuited secondary.

Comparison between Induction Motor and Transformer An induction motor is considered as a transformer with a rotating short-circuited secondary. Comparion between Induction Motor and Tranformer An induction motor i conidered a a tranformer with a rotating hort-circuited econdary. The tator winding correpond to tranformer primary and the rotor winding

More information

Chain & Flite Conveyors

Chain & Flite Conveyors Chain & Flite Conveyor High-Glo Polyeter Powder Coating 262 162-A 166-A FLEXIBLE PAYMENT PLANS AVAILABLE. ASK FOR DETAILS. 262 Elevate up to 40 for intallation veratility. Trough Width Bottom: 10 (254

More information

Torque of Induction Motor under Running Condition (T r )

Torque of Induction Motor under Running Condition (T r ) Torque of Induction Motor under unning Condition T r It i the torque developed by the motor under running condition i.e., at lip. From figure, the rotor circuit/phae at lip. Let, E =E : rotor e.m.f/phae

More information

RTDF ROOT CAUSE OF UNDESIRED HOSE SEPARATIONS AND A SOLUTION

RTDF ROOT CAUSE OF UNDESIRED HOSE SEPARATIONS AND A SOLUTION Proceeding of the ASME 29 Rail Tranportation Diviion all Conference RTD29 ctober 19-21, 29, ort Worth, Texa, USA RTD29-1824 RT CAUSE UNDESIRED HSE SEPARATINS AND A SLUTIN Edgardo Jimenez Product Engineer

More information

Ultracapacitor Based Ride Through System for Control Power Supplies in High Power Converters

Ultracapacitor Based Ride Through System for Control Power Supplies in High Power Converters 16th NATIONAL POWER SYSTEMS CONFERENCE, 15th-17th DECEMBER, 2010 447 Ultracapacitor Baed Ride Through Sytem for Control Power Supplie in High Power Converter Anand Vivek Ravi Department of Electrical Engineering

More information

brem RADIATORS FOR ARCHITECTURE

brem RADIATORS FOR ARCHITECTURE brem RADIATORS FOR ARCHITECTURE Brem radiator and towel rail are made uing different ize of teel tube or are tranformed into plate. Welding i carried out by ophiticated automatic ytem the weld are all

More information

About Electric Scooter Mobility. Aspects Regarding the Designing of a Brushless DC Motor for an Electric Scooter

About Electric Scooter Mobility. Aspects Regarding the Designing of a Brushless DC Motor for an Electric Scooter ISSN: 49 8958, Volume-5, Iue-4, April 06 About Electric Scooter Mobility. Apect Regarding the Deigning of a Bruhle DC Motor for an Electric Scooter Ionuț Daniel Smărăndecu, Petre-Marian Nicolae Abtract:

More information

(12) Patent Application Publication (10) Pub. No.: US 2011/ A1

(12) Patent Application Publication (10) Pub. No.: US 2011/ A1 (19) United State US 2011 0005694A1 (12) Patent Application Publication (10) Pub. No.: US 2011/0005694 A1 NG (43) Pub. Date: Jan. 13, 2011 (54) ADJUSTABLE SPRING ASSIST FOR WINDOW (52) U.S. Cl.... 160/311;

More information

SIGNATURE SERIES. Qualified Manufacturer Declared Replacement Part

SIGNATURE SERIES. Qualified Manufacturer Declared Replacement Part SIGNATURE SERIES Qualified Manufacturer Declared Replacement Part APPLICATION YEAR MODEL 206 Honda CB500X PRODUCT 256E0220 256E0520 R77 SS Slip-On Exhaut with Carbon Fiber Sleeve; Carbon Fiber Endcap R77

More information

Contents 3 The clever connection 4 The OK coupling explained 6 OKC OKC OKC OKC OKC OKF

Contents 3 The clever connection 4 The OK coupling explained 6 OKC OKC OKC OKC OKC OKF OK haft coupling 2 Content 3 The clever connection 4 The OK coupling explained 6 OKC 100-190 7 OKC 200-400 8 OKC 410-490 8 OKC 500-520 9 OKC 530-1000 10 OKF 100-300 11 OKF 310-700 12 OKCS 178-360 13 OKTC

More information

Computers & Operations Research

Computers & Operations Research Computer & Operation Reearch 9 () Content lit available at ScienceDirect Computer & Operation Reearch journal homepage: www.elevier.com/locate/caor Integrated efficiency and trade-off analye uing a DEA-oriented

More information

ELECTROMAGNETIC SINGLE-DISC CLUTCHES

ELECTROMAGNETIC SINGLE-DISC CLUTCHES ELECTROMAGNETIC SINGLE-DISC CLUTCHES Type EBA & EBK EBA EBK Catalogue No. : V/C/14/01 Optional On Requet 01 02 03 04 05 06 07 Part No Decription 01 Rivet 02 Spring plate 03 Armature plate 04 Friction plate

More information

Steady State Operability Characteristics of an Adiabatic Fixed-Bed Reactor for Methanol Dehydration

Steady State Operability Characteristics of an Adiabatic Fixed-Bed Reactor for Methanol Dehydration Iran. J. Chem. Chem. Eng. Reearch Note Vol. 30, No. 4, 2011 Steady State Operability Characteritic of an Adiabatic Fixed-Bed Reactor for Methanol Dehydration Fari, Mohammad; Mazinani, Saeid; Jahanmiri,

More information

(12) Patent Application Publication (10) Pub. No.: US 2013/ A1

(12) Patent Application Publication (10) Pub. No.: US 2013/ A1 (19) United State (12) Patent Application Publication (10) Pub. No.: US 2013/0134109 A1 TWeit et al. US 2013 0134109A1 (43) Pub. Date: (54) (75) (73) (21) (22) SETTLING VESSEL AND METHOD OF USE Inventor:

More information

Clusterwise PLS regression on a stochastic process

Clusterwise PLS regression on a stochastic process 1 Cluterwie PLS regreion on a tochatic proce Critian Preda 1 and Gilbert Saporta 2 1 CERIM - Département de Statitique, Faculté de Médecine, Univerité de Lille 2, 5945 Lille Cedex, France 2 Chaire de Statitique

More information

Study of an electric vehicle drive dynamic testing system with energy recovery

Study of an electric vehicle drive dynamic testing system with energy recovery Available online at www.ciencedirect.com Procedia Engineering 23 (2011) 608 615 2011 International Conference on Power Electronic and Engineering Application (PEEA 2011) Study of an electric vehicle drive

More information

A Combined Diesel-Engine Gas-Turbine System for Distributed Power Generation

A Combined Diesel-Engine Gas-Turbine System for Distributed Power Generation A Combined ieel-engine Ga-urbine for itributed Power Generation Mohamed M. El-Awad, Mohamed A. Siraj Abtract hi paper preent a combined dieel-engine gaturbine ytem that enable ditributed power generation

More information

Generator output and static capacitor control considering voltage stability for large penetration of photovoltaic power

Generator output and static capacitor control considering voltage stability for large penetration of photovoltaic power International Journal of Smart Grid and Clean Energ Generator output and tatic capacitor control conidering voltage tabilit for large penetration of photovoltaic power Atuhi Enomoto a, Shunuke Aida a*,

More information

April 2, N. R. POST ET AL 2,195,631 PLOW . M26%/W 2 A A3 a. A257 INVENTOR5. x7-rás ATTORNEYS.

April 2, N. R. POST ET AL 2,195,631 PLOW . M26%/W 2 A A3 a. A257 INVENTOR5. x7-rás ATTORNEYS. April 2, 1940. N. R. POST ET AL 2,19,631 Filed July 31, 1937 3. Sheet-Sheet l Sl K. t K. M26%/W 2 A.267 262A3 a. A27 INVENTOR S. BY x7-rá 7 ATTORNEYS. April 2, 1940. N. R. POST ET AL 2,19,631 Fillied July

More information

fore, United States Patent to GS ES (45) Apr. 26, Mr V (11) 4,019,360 shaft and the rolling stand drive shafts are equal in their

fore, United States Patent to GS ES (45) Apr. 26, Mr V (11) 4,019,360 shaft and the rolling stand drive shafts are equal in their United State Patent to Biernot et al. 4 WIRE ROD ROLLING MILL 76) Inventor: Okar Biermot, Enheimer Str. 48; Albert Bier, Am Kloterhang 1, both of St. Ingbert, Germany, 6670 22 Filed: Sept. 22, 197 (21)

More information

P ro T ec Series of HMIS & AWD SYSTEMS PAYLOAD. PERFORMANCE. PROTECTION.

P ro T ec Series of HMIS & AWD SYSTEMS PAYLOAD. PERFORMANCE. PROTECTION. P ro T ec Serie of HMIS & AWD SYSTEMS High-Mobility Independent Supenion for Severe Off-Road Application The Iron Triangle of Payload, Performance and Protection, repreenting the three abolute mut-have

More information

Design Study of Doubly-Fed Induction Generators for a 2MW Wind Turbine

Design Study of Doubly-Fed Induction Generators for a 2MW Wind Turbine WIND ENGINEERING VOLUME 33, NO. 5, 29 PP 497 58 497 Deign Study of Doubly-Fed Induction Generator for a 2MW Wind Turbine Rebecca Todd, Mike Barne and Alexander C. Smith School of Electrical & Electronic

More information

Modelling and Force Tracking Control of Hydraulic Actuator for an Active Suspension System

Modelling and Force Tracking Control of Hydraulic Actuator for an Active Suspension System Modelling and Force Tracking Control of Hydraulic Actuator for an Active Supenion Sytem Y. M. Sam and K. Hudha Faculty of Electrical Engineering, Malayia Univerity of Technology, 81310 Skudai, Johor -

More information

A Study of an Electric Drive of a Transport Vehicle with Simulation and Bench Testing of a Prototype

A Study of an Electric Drive of a Transport Vehicle with Simulation and Bench Testing of a Prototype A Study of an Electric Drive of a Tranport Vehicle with Simulation and Bench Teting of a Prototype Timofey Vladimirovich Golubchik Mocow State Automobile & Road Technical Univerity (MADI), Leningradky

More information

Soil Resistivity Structure and Its Implication on the Pole Grid Resistance for Transmission Lines

Soil Resistivity Structure and Its Implication on the Pole Grid Resistance for Transmission Lines Soil Reitivity Structure and It Implication on the Pole Grid Reitance for Tranmiion Line M. Naereddine, J. Rizk, and G. Naerddine Abtract High Voltage (HV) tranmiion line are widely pread around reidential

More information

Fault Behavior of Wind Turbines. Sulla, Francesco. Published: Link to publication

Fault Behavior of Wind Turbines. Sulla, Francesco. Published: Link to publication Fault Behavior of Wind Turbine Sulla, Franceco Publihed: 1-1-1 Link to publication Citation for publihed verion (APA): Sulla, F. (1). Fault Behavior of Wind Turbine General right Copyright and moral right

More information

Heavy Industrial Shock Absorbers CA2 to CA4

Heavy Industrial Shock Absorbers CA2 to CA4 Heavy Indutrial Shock Aborber CA2 to CA4 Self-Compenating 50 The CA2 to CA4 complete the ACE product range of elf-compenating hock aborber. With thee unit ACE ha a continou range of elf-compenating unit

More information

Industrial Shock Absorbers

Industrial Shock Absorbers 48 Automation Control Indutrial Shock Aborber Aborber to uit for all load ACE indutrial hock aborber work hard. Their application mean moving load are evenly decelerated over the full troke. The reult:

More information

COVER STORY. By Michael L. Dillon, seepex, Inc.

COVER STORY. By Michael L. Dillon, seepex, Inc. COVER STORY Maximize the Performance of Progreive Cavity Pump If you chooe the right geometry, protect your part, conider the application carefully, control temperature and preure, your PC pump could lat

More information

Hierarchical Charging Management Strategy of Plug-in Hybrid Electric Vehicles to Provide Regulation Service

Hierarchical Charging Management Strategy of Plug-in Hybrid Electric Vehicles to Provide Regulation Service 3rd IEEE PES Innovative Smart Grid Technologie Europe (ISGT Europe), Berlin Hierarchical Charging Management Strategy of Plug-in Hybrid Electric Vehicle to Provide Regulation Service Shouxiang Wang, Senior

More information

Weigh Station All Trucks Stop!

Weigh Station All Trucks Stop! Weigh Station All Truck Stop! Computer 26 Do you ever wonder if truck would roll down a hill fater when they have a full load or when they are empty? Thi activity will help you tet a truck on a downhill

More information

Optimum Sway Control for Overhead Traveling Cranes

Optimum Sway Control for Overhead Traveling Cranes Optimum Sway Control for Overhead Traveling Crane KAMAL A. KHANDAKJI, K. P. ZDROZIS Department of Electrical Engineering, Tafila Technical Univerity Tafila, JORDAN; drkhandakji@yahoo.com Department of

More information

METHODS FOR THE CALCULUS OF THE ROAD WHEEL VERTICAL LOAD

METHODS FOR THE CALCULUS OF THE ROAD WHEEL VERTICAL LOAD The 3rd International Conference on Computational Mechanic and Virtual Engineering COMEC 29 29 3 OCTOBER 29, Braov, Romania METHODS FOR THE CALCULUS OF THE ROAD WHEEL VERTICAL LOAD Profeor Ticuşor CIOBOTARU,

More information

Switched Reluctance Motors with Concentrated Stator Windings and Salient Poles of Different Shape on Rotor

Switched Reluctance Motors with Concentrated Stator Windings and Salient Poles of Different Shape on Rotor Switched eluctance Motor with Concentrated Stator Windin and Salient ole of Different Shape on otor Nicoleta MEDEA, Ioan Adrian VIOEL, Member IEEE SC EneroBit SL, Univeritatea Tehnica Cluj-Napoca Nicoleta.medrea@enerobit.com,

More information

Analysis of Overloading Prevention System in Trucks

Analysis of Overloading Prevention System in Trucks e t International Journal on Emerging Technologie (Special Iue on NCRIET-2015) 6(2): 224-228(2015) ISSN No (Print) : 0975-8364 ISSN No (Online) : 2249-3255 Analyi of Overloading Prevention Sytem in Truck

More information

A copy can be downloaded for personal non-commercial research or study, without prior permission or charge

A copy can be downloaded for personal non-commercial research or study, without prior permission or charge Heiliger, J., Hiddink,., Noomen, R., and McInne, C. R. (04) Multiple pacecraft tranfer to un-earth ditant retrograde orbit for Ateroid detection miion. In: International Atronautical Congre 04 (IAC 04),

More information

Industrial Shock Absorbers MC33 to MC64

Industrial Shock Absorbers MC33 to MC64 Indutrial Shock Aborber MC33 to MC64 40 Thi range of elf-compenating hock aborber i part of the innovative MAGUM erie from ACE. You profit from the enhanced product life in the mot difficult operating

More information

Injury prevention; Motorcyclists Responses and Practices on the Use of Helmets in Mwanza, Tanzania

Injury prevention; Motorcyclists Responses and Practices on the Use of Helmets in Mwanza, Tanzania 49 49 ISSN 2073-9990 Eat Cent. Afr. J. urg Injury prevention; Motorcyclit Repone and Practice on the Ue of Helmet in Mwanza, Tanzania S. Kilawa 1, O.V. Nyongole 2. 1Medical tudent, School of Medicine,

More information

McDonald (45) Date of Patent: Oct. 7, (54) LITHIUM ION BATTERY COOLING SYSTEM (56) References Cited

McDonald (45) Date of Patent: Oct. 7, (54) LITHIUM ION BATTERY COOLING SYSTEM (56) References Cited (12) United tate Patent U008852772B2 (10) Patent No.: U 8,852,772 B2 McDonald (45) Date of Patent: Oct. 7, 2014 (54) LITHIUM ION BATTERY COOLING YTEM (56) Reference Cited COMPRIING DELECTRICFLUID U.. PATENT

More information

Cooperative Real-Time Search and Task Allocation in UAV Teams

Cooperative Real-Time Search and Task Allocation in UAV Teams Cooperative Real-Time Search and Tak Allocation in UAV Team Yan Jin, Ali A. Minai, Mario M. Polycarpou ECECS Department Univerity of Cincinnati Cincinnati, OH 45221-0030 Abtract In thi paper, we conider

More information

EGU. Technical Data. Pedestrian Low Lift Pallett Truck. Low lift pallet truck with driver s stand-on platform

EGU. Technical Data. Pedestrian Low Lift Pallett Truck. Low lift pallet truck with driver s stand-on platform EGU Technical Data Pedetrian Low Lift Pallett Truck Low lift pallet truck with driver tand-on platform EGU Pedetrian Low Lift Pallett Truck Drive Comfortable, economical and hence cot aving operation thank

More information

Although it is a company with more

Although it is a company with more The ART of Tug Deign ROBERT G. ALLAN P.ENG. Although it i a company with more than a century of corporate hitory, when Kotug introduced the Rotor Tug concept they were really put onto centre tage in the

More information

Which US President was most responsible for the development of the US Interstate System?

Which US President was most responsible for the development of the US Interstate System? EE 30 Midterm Sample Quetion Short Anwer Which US Preident wa mot reponible for the deelopment of the US Intertate Sytem? Eienhower What metric i ued to calculate interection Leel of Serice? Etimated aerage

More information

103 Pa.P.U.C. 554, 2008 WL (Pa.P.U.C.) Re Trans-Allegheny Interstate Line Company

103 Pa.P.U.C. 554, 2008 WL (Pa.P.U.C.) Re Trans-Allegheny Interstate Line Company 103 Pa.P.U.C. 554, 2008 WL 5786507 (Pa.P.U.C.) Application 110172 et al. Pennylvania Public Utility Commiion November 13, 2008; entered December 12, 2008 ORDER granting a certificate of public convenience

More information

equipment transformers single-phase

equipment transformers single-phase equipment tranformer connection trip upplied up to 450 V (except at.no 428 46) 428 40 + 428 99 428 41 upplied with connection trip 428 75 427 92 IP 2X or XX up to 450 V (up to 310 V in 12-24 V) - IK 04

More information

SIVACON The Versatile Low-Voltage Switchboard

SIVACON The Versatile Low-Voltage Switchboard Control & Ditribution Ditribution Board & Motor Control Center SIVACON The Veratile Low-Voltage Switchboard SIVACON A&D CD DM PM, 1004 Power Ditribution Board 1 Control & Ditribution Ditribution Board

More information

Proportional Valves. Additionally, both of these valve types can be supplied with or without an integral amplifier built directly onto the valve.

Proportional Valves. Additionally, both of these valve types can be supplied with or without an integral amplifier built directly onto the valve. VICKERS roportional Valve roportional Directional Valve Without Feed ack K(A)D/TGV-5, 3* Serie Typical Section KTGV-5 KAD/TGV-5KAD/TGV-5 A range of proportional directional and throttle valve with control

More information

ANALYSIS AND ACTIVE/REACTIVE POWER CONTROL OF DOUBLY FED INDUCTION GENERATOR (DYNAMIC MODELLING)

ANALYSIS AND ACTIVE/REACTIVE POWER CONTROL OF DOUBLY FED INDUCTION GENERATOR (DYNAMIC MODELLING) International Journal of Engineering Reearch and Application (IJERA) ISSN: 2248-9622 ANALYSIS AND ACTIVE/REACTIVE POWER CONTROL OF DOUBLY FED INDUCTION GENERATOR (DYNAMIC MODELLING) Dr.K.Chandra Sekhar,

More information

Significance of Subgrade Damping on Vehicle-Pavement Interactions

Significance of Subgrade Damping on Vehicle-Pavement Interactions Technical Paper ISSN 1996-6814 Int. J. Pavement Re. Technol. 6(4):358-363 Copyright @ Chinee Society of Pavement Engineering Significance of Subgrade Damping on Vehicle-Pavement Interaction Chen-Ming Kuo

More information

S&C Remote Supervisory PMH Pad-Mounted Gear Outdoor Distribution (14.4 kv and 25 kv) INSTRUCTIONS. For Operation

S&C Remote Supervisory PMH Pad-Mounted Gear Outdoor Distribution (14.4 kv and 25 kv) INSTRUCTIONS. For Operation Outdoor Ditribution (14.4 kv and 25 kv) INSTRUCTIONS For Operation Thi publication contain intruction for operation of fue and manual Mini-Rupter Switche in S&C Remote Superviory PMH Pad-Mounted Gear.

More information

INSTRUCTIONS S&C Switch Operators Type AS-10 INSTRUCTION SHEET. For Installation TABLE OF CONTENTS INTRODUCTION.

INSTRUCTIONS S&C Switch Operators Type AS-10 INSTRUCTION SHEET. For Installation TABLE OF CONTENTS INTRODUCTION. S&C Switch Operator Type AS-10 INSTRUCTIONS For Intallation TABLE OF CONTENTS Section Page Number INTRODUCTION....................................... 1 SAFETY INFORMATION Undertanding Safety-Alert Meage.....................

More information

Modeling and Architecture Examples of Model Based Engine Control

Modeling and Architecture Examples of Model Based Engine Control Modeling and Architecture Example of Model Baed Engine Control Per Anderon, Lar Erikon and Lar Nielen Vehicular Sytem, ISY Linköping Univerity SE-58 83 Linköping SWEDEN E-mail: peran@iy.liu.e Abtract Environmental

More information

Assembly Diagram. No. Item Description Qty.

Assembly Diagram. No. Item Description Qty. RESEARCH&DEVELOPMENT OF AMERICA, INC. 0 DANIELS STREET STE A, CHINO CA., 70 (800)6-66 (0)68-7 FACSIMILE (0)-8 www.yohimura-rd.com Yamaha FJR00 0E00 (CF) 0E00 (SS) R77 Slip-On Exhaut Sytem Thi product i

More information

POWER FLOW OPTIMIZATION USING BOOSTER TRANSFORMERS IN HIGH VOLTAGE DISTRIBUTION NETWORKS

POWER FLOW OPTIMIZATION USING BOOSTER TRANSFORMERS IN HIGH VOLTAGE DISTRIBUTION NETWORKS BULETINUL INSTITUTULUI POLITEHNIC DIN IAŞI Publicat de Univeritatea Tehnică Gheorghe Aachi din Iaşi Tomul LX (LXIV), Fac. 3, 2014 Secţia ELECTROTEHNICĂ. ENERGETICĂ. ELECTRONICĂ POWER FLOW OPTIMIZATION

More information

ECA Ships Bunker Fuels

ECA Ships Bunker Fuels (19) United State US 20150353851A1 (12) Patent Application Publication (10) Pub. No.: US 2015/0353851 A1 Buchanan (43) Pub. Date: (54) LOW SULFUR MARINE FUEL (52) U.S. Cl. CPC. CI0L I/08 (2013.01); CIOL

More information

Increased security with the double flange design. Good wear resistance. Maintenance-free and predictable lifetime. Material: iglidur M250

Increased security with the double flange design. Good wear resistance. Maintenance-free and predictable lifetime. Material: iglidur M250 Eay to fit Increaed ecurity with the double flange deign Good wear reitance Maintenance-free and predictable lifetime Material: iglidur M250 Special dimenion are poible 31.3 iglidur Clip Bearing 1 tyle

More information

CHE302 LECTURE III ACTUATOR AND CONTROL VALVE SELECTION. Professor Dae Ryook Yang INTRODUCTION TO ACTUATOR

CHE302 LECTURE III ACTUATOR AND CONTROL VALVE SELECTION. Professor Dae Ryook Yang INTRODUCTION TO ACTUATOR CHE30 LECTURE III ACTUATOR AND CONTROL VALVE SELECTION Profeor Dae Ryook Yang Fall 001 Dept. of Chemical and Biological Engineering Korea Univerity CHE30 Proce Dynamic and Control Korea Univerity 3-1 INTRODUCTION

More information

TC-200 Series. Application. Features. Applicable Literature. Single Bulb Thermostats General Instructions

TC-200 Series. Application. Features. Applicable Literature. Single Bulb Thermostats General Instructions T-200 Serie Single ulb Thermotat General Intruction Application Thee unit are ued for on-off control of media temperature in duct, tank, etc. Feature Mechanim encloed in rugged die cat cae with metal cover.

More information

Highly flexible GKN Stromag Periflex VN

Highly flexible GKN Stromag Periflex VN Product Catalog Coupling Highly flexible GKN Stromag Periflex VN dic coupling GKN Stromag Periflex VN dic coupling Serie overview: GKN Stromag Periflex dic coupling > Periflex VN / -VP...G erie Nominal

More information

Estimating Free-flow Speed from Posted Speed Limit Signs

Estimating Free-flow Speed from Posted Speed Limit Signs Available online at www.ciencedirect.com Procedia Social and Behavioral Science 16 (011) 306 316 6 th International Sympoium on Highway Capacity and Quality of Service Stockholm, Sweden June 8 July 1,

More information

AXIOMATIC DESIGN OF CUSTOMIZABLE AUTOMOTIVE SUSPENSION

AXIOMATIC DESIGN OF CUSTOMIZABLE AUTOMOTIVE SUSPENSION Proceeding of ICAD004 The Third International Conference on Axiomatic Deign Seoul June 1-4, 004 ICAD-004-38 AIOMATIC DESIGN OF CUSTOMIZABLE AUTOMOTIVE SUSPENSION Hrihikeh V Deo HVD@mit.edu Maachuett Intitute

More information

Industrial Shock Absorbers MC33 to MC64

Industrial Shock Absorbers MC33 to MC64 Indutrial Shock Aborber MC33 to MC64 Self-Compenating Thi range of elf-compenating hock aborber i part of the innovative MAGUM erie from ACE. You profit from the enhanced product life in the mot difficult

More information

Comparative Study of a Fault-Tolerant Multiphase Wound-Field Doubly Salient Machine for Electrical Actuators

Comparative Study of a Fault-Tolerant Multiphase Wound-Field Doubly Salient Machine for Electrical Actuators Energie 2015, 8, 3640-3660; doi:10.3390/en8053640 Article OPEN ACCESS energie ISSN 1996-1073 www.mdpi.com/journal/energie Comparative Study of a Fault-Tolerant Multiphae Wound-Field Doubly Salient Machine

More information

World Leader In Variable Speed Motor Products

World Leader In Variable Speed Motor Products World Leader In Variable Speed Motor Product Baldor offer the widet, mot comprehenive product line of motor deigned pecifically for variable peed control. More product and more capability than any other

More information

Interest in Eco-Conscious Cars in 16 Cities around the World

Interest in Eco-Conscious Cars in 16 Cities around the World Interet in Eco-Conciou Car in 16 Citie around the World Augut 31, 2012 Vol. 4 Interet in eco-conciou car varie greatly between citie, from around 15% to around 75%. Interet in, and Metro Manila top interet

More information

Power Reducer Box. Sunny WebBox PLC. Inverter unit. Fig. 1: SMA Sunny GEU STP STP 15000TLEE-10

Power Reducer Box. Sunny WebBox PLC. Inverter unit. Fig. 1: SMA Sunny GEU STP STP 15000TLEE-10 Unit Certificate FGH-E-212-8 Duly igned copy no. 1; Page 2 of 7 Section A of the certificate: General Layout Diagram Mater decoupling protection I> >, U>, U

More information

World Leader In Variable Speed Motor Products

World Leader In Variable Speed Motor Products World Leader In Variable Speed Motor Product Baldor offer the widet, mot comprehenive product line of motor deigned pecifically for variable peed control. More product and more capability than any other

More information