SOC estimation of LiFePO 4 Li-ion battery using BP Neural Network

Size: px
Start display at page:

Download "SOC estimation of LiFePO 4 Li-ion battery using BP Neural Network"

Transcription

1 EVS28 KINTEX, Korea, May 3-6, 2015 SOC estimation of LiFePO 4 Li-ion battery using BP Neural Network Liun Qian, Yuan Si, Lihong Qiu. School of Mechanical and Automotive Engineering, Hefei University of Technology, Hefei , Anhui, China Abstract As a new generation of green high-energy rechargeable battery, Li-ion battery has multiple advantages such as high voltage, high energy density, brilliant cycle performance, low self-discharge and no memory effects. Therefore, the application of Li-ion battery in electric cars is getting much more widespread. SOC is an important parameter for battery management system (BMS). Accurately estimating SOC of battery could reduce permanent damage to the battery caused by over-charging and over-discharging which will in turn extend battery life, as well as improve vehicle performances, reduce requirements of the power battery and improve economy. Current SOC estimation methods mainly include electrochemical impedance spectroscopy (EIS), electro motive force (EMF) method, artificial neural network (ANN) model, fuzzy Logic, Kalman Filter, linear parameter varying (LPV) and sliding mode observer method. Compared with other methods, ANN model is highly accurate, adaptive, logically complex, and requires a lot of training data. For this paper, several experiments of rapid charging and discharging of Li-ion battery pack have been conducted under NEDC, obtaining a large number of experimental data. Parameter characteristics of Li-ion battery have been analyzed and performance parameter shave been found out, which affect the data of SOC. Feed-forward network model is built using BP algorithm. Then experimental data are imported, neural network is trained and network structure is constantly adusted for accuracy optimization. After that, Simulation Module based on BP algorithms is founded and its simulation figure is analyzed. It is shown that the average error of the simulation model after training is less than 0.45%. Simulation model based on this method can accurately measure real-time SOC value of battery. SOC variation in other conditions can be obtained by the same way, which is particularly practical in the battery management system. Keywords: LiFePO 4 Li-ion batteries; SOC estimation; BP neural network EVS28 International Electric Vehicle Symposium and Exhibition 1

2 1 Introduction As a new generation of green high-energy rechargeable battery, Li-ion battery has multiple advantages such as high voltage, high energy density, brilliant cycle performance, low self-discharge and no memory effects. Therefore, the application of Li-ion battery in electric cars is getting much more widespread. SOC is an important parameter for battery management system (BMS). Accurately estimating SOC of battery could reduce permanent damage to the battery caused by over-charging and over-discharging which will in turn extend battery life, as well as improve vehicle performances, reduce requirements of the power battery and improve economy. Current SOC estimation methods mainly include electrochemical impedance spectroscopy (EIS), electro motive force (EMF) method, artificial neural network (ANN) model, fuzzy Logic, Kalman Filter, linear parameter varying (LPV) and sliding mode observer method [1]. Neural network model, which is more accurate and sophisticated compared with other methods, requires a large amount of data for training. The accuracy of the model depends on the accuracy of the training data. Based on the large sum of data obtained from experiment, network model is chosen to predict the current SOC. 2 LiFePO 4 Li-ion battery test 2.1 Basic parameters of the battery Table 1.1 basic parameters of the battery framework and device connection is shown in figure1. Battery Test System Remote Console CAN bus Bettery Pack and BMS system control network System Electricity Cabinet DC bus Three-phase Distribution Network Figure 1 test framework and device connection 2.3 The NEDC cycle test The test is according to the auto industry standard that is <lithium ion battery of the electric car>, QC/T Test procedure: (1) Determine the charging current intensify according to the current temperature of the battery measured by the sensor under the ambient temperature. When the cell voltage reaches 3.45V, charge with small current and reduce the current with certain step length till the end. (2) Set aside for half an hour and discharge it in working condition until the DOD reaches 10%. (3) Set aside for half and an hour after the discharge process complete and repeat step (1) and (2). The current of the NEDC working condition changes according to time, as shown in figure 2 Type capacity/ah energy/kwh Cluster placer LiFePO P95S 2.2 Battery test plant The battery test plant consists of CAN bus, electric box, controlling terminal and battery pack. Test EVS28 International Electric Vehicle Symposium and Exhibition 2

3 Figure 2 Current of NEDC condition A test cycle lasted 5.5 hours on average, including a charging process and a NEDC discharge process, gathering sample points in a discharging process. Data gathering includes the input and output capacity, energy and power of the battery, the input and output capacity, energy and power of the electric cabinet, each cell voltage, maximum and minimum cell voltage and the corresponding number, total battery voltage, current, temperature, and time. x and d. Calculate the components of Y and O with formula (1) and (2). T y = f ( V X), = 1,2,..., m (1) T o= fwy ( ), k= 1, 2,..., l (2) k 3. Calculate the error of network output: Assume that there are p pairs of training sample. Error E p differs corresponding to different sample. Either E max, the maximum value of the error or (3), root mean square of the error can be utilized. 3 Artificial neural network model The network this paper used is feed forward network based on BP algorithm. 1 P p E p P 1 Erms = (3) 4. Calculate error signal of each layer: calculate v δ k 3.1 Principle of BP algorithm BP algorithm contains forward transmission and reverse transmission. In forward transmission, sample is processed from the input layer and the hidden layers to the output layer, during which the output of each neutron layer only affect the states of the next layer. The algorithm enters the reverse transmission if the network output deviates from the expected output O d. In reverse transmission, error signal is opposite to the direction of the forward transmission and amend the weight coefficient of each neutron layer along the negative gradient direction of the error function so that the expected error function tends to the minimum. Therefore, BP algorithm is a search algorithm on the basis of gradient method, which fully demonstrated the features of parallel process of the neural network [4]. Program realization of BP algorithm: 1. Initialization: assign random value to weight matrix W, V. Set sample mode counter p and training frequency counter q to 1. Set error to 0 and acquisition efficiency to a decimal between 0 and 1 and accuracy of the network training E min to a positive decimal. 2. Input training sample and calculate the output of each layer. Assign current sample x p and d p to vector and δ y with formula (4). ( )( ) o δ = d o 1 o o, k = 1, 2,..., l (4) k k k k k ( ) δ y = o ( ) 1, 1, 2,..., δ w y y = m (5) k k 5. Adust the weight of each layer: calculate the components of W, V with formula (6) and (7). w w + ηδ y (6) o k k k v v + ηδ x (7) y i i i 6. Check for the train completion of all the samples in rotation: if p < P,Counter p, q add 1,return to step (2), otherwise, turn to step (7). In the current applications, there are two methods for Weight adustment. As can be seen from the above steps, each input sample should return errors and adust the weights in the standard BP algorithm, this weight adustment method of rotating for each sample also known as Single-sample training. Because single-sample training is short-sighted to follow selfish departmentalism principle, only adusting the errors for each sample he makes, so that increasing the numbers of the training, and leading to the convergence speed too slow. Another method is EVS28 International Electric Vehicle Symposium and Exhibition 3

4 calculating the errors of the network after all sample inputting. 1 E = d o 2 P l p p 2 ( ) (8) k k p= 1 k= 1 Then calculating layers errors based on the total errors, and adust the weight, this batch mode of cumulative errors can be called Batch training or Epoch training. Due to the Batch training followed the Collectivism principle of the goal of reducing the global errors, which guaranteed the total errors changing to the decreasing direction. When large number of samples, batch training is faster than Single-sample training over the convergence speed [4]. 3.2 Input selection of neural network Neural network's inputs are selected from the factors of related the current SOC. From the perspective of electrochemistry, the integral of charge and discharge current with respect to time is one of the most basic calculating methods of SOC because electronic migration leads to charge. Besides, SOC is influenced by varying degrees polarization phenomena affected by charge or discharge current. There are close ties between voltage and SOC due to the open circuit voltage method which is an interpolating estimation using the relationship between voltage and remaining capacity [8]. Temperature influences SOC through affecting the change of cell resistance. The test subect is the battery pack instead of individual cells, so cell consistency, which affects battery performance, should be considered. Depth of discharge (DOD) and amount of looping also change real battery capacity to a certain extent, which will change the calculated value of SOC [2]. To simplify the neural network model, don't choose DOD and amount of looping which were constant in a certain loop as input. The influence of cell consistency effects are shown on maximum and minimum cell voltage and temperature. From the above, the neural network has eight inputs including total battery voltage, current, the highest cell temperature, the lowest cell temperature, cell voltage maximum, minimum, and cell voltage time and discharge power. We classified the data of tests, checking the relationship between various factors and battery SOC, respectively and the result is shown in figure 3-6. Figure 3 the relationship between total battery voltage and SOC Figure 4 the relationship between time, current and SOC EVS28 International Electric Vehicle Symposium and Exhibition 4

5 Figure 5 the relationship between temperature and SOC model with 29 nodes in hidden layer has a good network convergence performance and can be used. Figure 6 the relationship between power and SOC 4 Neural network training and result After creating artificial neural network, the number of nodes in hidden layer is uncertain, and needs a lot of adustment. We compare the training effect of 8-50 nodes and select 29 nodes with less error and better simulation effect [7]. The training results as follows. Open the performance figure, the change of the neural network training error can be observed in real time. Error reaches after 582 steps training, which is less than the limit error value. Performance is shown in figure 3. Figure 8 Error Histogram Figure 8 shows the training error, validation error and testing error distribution focused around , the error of absolute value is within 0.15, and the training results can achieve better prediction accuracy. Figure 9 is regression performance,in which the training data, validation data and testing data expected response and simulation output show strong linear correlation and regression constant is over Figure 7 Performance It can be seen from above that network converges quickly after 10 steps training, which proves the Figure 9 Regression EVS28 International Electric Vehicle Symposium and Exhibition 5

6 5 Simulation analysis Artificial neural network prediction model is one of the black box model, the main part of the module is a black box mainly composed of neural network. Input the 8 input values of battery actual works and then get current SOC under the neural network prediction. Comparing with simulation value and measured value and the result is shown in figure 10.Caculating relative error is no more than 0.018, average relative error is (a) 6 Conclusion and reflection 1. After being imported with a large amount of data for training and test, multi-layer feed forward network model, based on the BP algorithm, begin to mature with average error less than 0.45% and regression coefficient more than Then we built the simulation module of the model with simulink. The data obtained from this simulation module coincide to the experimental data, which further demonstrated the accuracy of the model. The simulation module obtained by this method is capable of accurate measurement of SOC value in NEDC condition. 2. The same method can be used to detect the SOC changes when the vehicle is operating in other working conditions through training. The simulation module greatly improves the real time estimation of the SOC which plays a very practical role in the battery management system. 3. The consistency of the cells in a battery has a huge impact on the lifespan of a battery, it still requires our effort to figure out a reasonable description method for cell consistency and to what extent the cell consistency affects the battery s performance. References [1] Seyed Ehsan Samadani, Roydon A. Fraser,Michael Fowler University of Waterloo. A Review Study of Methods for Lithium-ion Battery Health Monitoring and Remaining Life Estimation in Hybrid Electric Vehicles.SAE international,2012. (b) Figure 10 comparisons with simulation value and measured value (a) completed picture (b) local picture [2] Wang Zhengpo, Sun Yingchun. Electric vehicle power battery systems and application technology [M]. Beiing: Mechanical industry press, 2012 [3] Yin Andong, Zhang Wanxing, Zhao Han, Jiang Hao.SOC prediction research of LiFePO4 Li-ion batteries based on neural network[j].ournal of electronic measurement and instrument,2011,25(5) EVS28 International Electric Vehicle Symposium and Exhibition 6

7 [4] Shi Yan, Han Liqun, Lian Xiaoqin. Neural network design and case analysis [M]. Beiing : Beiing university of posts and telecommunications publishing house,2009 [5] W. X. Shen, Student Member, IEEE, C. C. Chan, Fellow, IEEE,E.W.C.Lo, Member, IEEE, and K. T. Chau, Member, IEEE. Adaptive Neuro-Fuzzy Modeling of Battery Residual Capacity for Electric Vehicles. IEEE TRANSACTIONS ON INDUSTRIAL ELECTRONICS, 2002, 49(3): [6] Ye Weiqiong, Li Bei. Dynamic measurement and estimation of power battery residual capacity. Advanced Materials Research, (2013) pp [7] Zhu Kai, Wang Zhenglin. Mastering MATLAB neural network [M]. Beiing: Publishing House of Electronics Industry, [8] Shi Wei, Jiang Jiuchun, Li Suoyu, Jia Rongda. Research on SOC estimation for LiFePO4 Li-ion battery [J]. Journal of electronic measurement and instrument, 2010, 24(8): [9] Charkhgard, M. and Farrokhi, M., State-of-Charge Estimation for Lithium-Ion Batteries Using Neural Networks and EKF, Industrial Electronics, IEEE Transactions on, vol.57, pp , 2010 Authors Liun Qian received his Ph.D. degree in School of Mechanical and Automotive Engineering, Hefei University of Technology, Hefei, China, in Since 2004, he has been a professor in Hefei University of Technology. His research interests include vehicle modern design theory and method, vehicle safety technology, and electrical vehicle technology. Lihong Qiu received his B.E. degree from Hefei University of Technology, Hefei, China, in He is now pursuing his Ph.D. degree in School of Mechanical and Automotive Engineering, Hefei University of Technology. His research interests include the energy management strategy for plug-in 4WD hybrid electric vehicle and the dynamic control for the HEV. Yuan Si received her B.E. degree from Hefei University of Technology, Hefei, China, in She is now pursuing her master degree in School of Mechanical and Automotive Engineering, Hefei University of Technology. Her research interests include battery management, control of electric vehicle. EVS28 International Electric Vehicle Symposium and Exhibition 7

The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized by Particle Swarm Optimization

The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized by Particle Swarm Optimization Journal of Applied Science and Engineering, Vol. 20, No. 4, pp. 483 490 (2017) DOI: 10.6180/jase.2017.20.4.10 The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized

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

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

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

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

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

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

More information

Analysis and Design of the Super Capacitor Monitoring System of Hybrid Electric Vehicles

Analysis and Design of the Super Capacitor Monitoring System of Hybrid Electric Vehicles Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 90 94 Advanced in Control Engineering and Information Science Analysis and Design of the Super Capacitor Monitoring System of Hybrid

More information

This short paper describes a novel approach to determine the state of health of a LiFP (LiFePO 4

This short paper describes a novel approach to determine the state of health of a LiFP (LiFePO 4 Impedance Modeling of Li Batteries for Determination of State of Charge and State of Health SA100 Introduction Li-Ion batteries and their derivatives are being used in ever increasing and demanding applications.

More information

SPEED AND TORQUE CONTROL OF AN INDUCTION MOTOR WITH ANN BASED DTC

SPEED AND TORQUE CONTROL OF AN INDUCTION MOTOR WITH ANN BASED DTC SPEED AND TORQUE CONTROL OF AN INDUCTION MOTOR WITH ANN BASED DTC Fatih Korkmaz Department of Electric-Electronic Engineering, Çankırı Karatekin University, Uluyazı Kampüsü, Çankırı, Turkey ABSTRACT Due

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

Modeling and Simulation of Linear Two - DOF Vehicle Handling Stability

Modeling and Simulation of Linear Two - DOF Vehicle Handling Stability Modeling and Simulation of Linear Two - DOF Vehicle Handling Stability Pei-Cheng SHI a, Qi ZHAO and Shan-Shan PENG Anhui Polytechnic University, Anhui Engineering Technology Research Center of Automotive

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

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle ES27 Barcelona, Spain, November 7-2, 23 Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric ehicle Sungyeon Ko, Chulho Song, Jeongman Park, Jiweon

More information

Power Matching Strategy Modeling and Simulation of PHEV Based on Multi agent

Power Matching Strategy Modeling and Simulation of PHEV Based on Multi agent Power Matching Strategy Modeling and Simulation of PHEV Based on Multi agent Limin Niu* 1, Lijun Ye 2 School of Mechanical Engineering, Anhui University of Technology, Ma anshan 243032, China *1 niulmdd@163.com;

More information

A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries

A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries R1-6 SASIMI 2015 Proceedings A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries Naoki Kawarabayashi, Lei Lin, Ryu Ishizaki and Masahiro Fukui Graduate School of

More information

doi: / Online SOC Estimation of Power Battery Based on Closed-loop Feedback Model

doi: / Online SOC Estimation of Power Battery Based on Closed-loop Feedback Model doi:10.21311/001.39.7.37 Online Estimation of Power Battery Based on Closed-loop Feedbac Model Shouzhen Zhang School of Automotive Engineering, Wuhan University of Technology, Wuhan 430070, Hubei, China

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

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

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

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015)

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) A High Dynamic Performance PMSM Sensorless Algorithm Based on Rotor Position Tracking Observer Tianmiao Wang

More information

Modeling of Lead-Acid Battery Bank in the Energy Storage Systems

Modeling of Lead-Acid Battery Bank in the Energy Storage Systems Modeling of Lead-Acid Battery Bank in the Energy Storage Systems Ahmad Darabi 1, Majid Hosseina 2, Hamid Gholami 3, Milad Khakzad 4 1,2,3,4 Electrical and Robotic Engineering Faculty of Shahrood University

More information

Design and Performance Testing of Lead-acid Battery Experimental Platform in Energy Storage Power Station

Design and Performance Testing of Lead-acid Battery Experimental Platform in Energy Storage Power Station Design and Performance Testing of Lead-acid Battery Experimental Platform in Energy Storage Power Station Wen-Hua Cui, Jie-Sheng Wang, and Yuan-Yuan Chen Abstract The lead-acid battery experimental testing

More information

Modelling and Simulation Study on a Series-parallel Hybrid Electric Vehicle

Modelling and Simulation Study on a Series-parallel Hybrid Electric Vehicle EVS28 KINTEX, Korea, May 3-6, 205 Modelling and Simulation Study on a Series-parallel Hybrid Electric Vehicle Li Yaohua, Wang Ying, Zhao Xuan School Automotive, Chang an University, Xi an China E-mail:

More information

Available online at ScienceDirect. Procedia Engineering 129 (2015 ) International Conference on Industrial Engineering

Available online at  ScienceDirect. Procedia Engineering 129 (2015 ) International Conference on Industrial Engineering Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 129 (2015 ) 201 206 International Conference on Industrial Engineering Simulation of lithium battery operation under severe

More information

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle World Electric ehicle Journal ol. 6 - ISSN 232-6653 - 23 WEA Page Page 86 ES27 Barcelona, Spain, November 7-2, 23 Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for

More information

Model-Based Investigation of Vehicle Electrical Energy Storage Systems

Model-Based Investigation of Vehicle Electrical Energy Storage Systems Model-Based Investigation of Vehicle Electrical Energy Storage Systems Attila Göllei*, Péter Görbe, Attila Magyar Department of Electrical Engineering and Information Systems, Faculty of Information Technology,

More information

Battery Thermal Management System in HEV/EV

Battery Thermal Management System in HEV/EV Battery Thermal Management System in HEV/EV Jun-Young Na and Haeng-Muk Cho* Division of Mechanical Engineering, Kongju National University(KNU), 1223-24, Cheonan-daero, Seobuk-gu, Cheonan-si, Chungcheongnam-do,

More information

DIAGNOSTICS OF THE BATTERIES TECHNICAL STATUS USING SVM METHOD

DIAGNOSTICS OF THE BATTERIES TECHNICAL STATUS USING SVM METHOD 190 Technical Sciences DIAGNOSTICS OF THE BATTERIES TECHNICAL STATUS USING SVM METHOD Róbert SZABOLCSI Óbuda University, Budapest, Hungary szabolcsi.robert@bgk.uni-obuda.hu József MENYHÁRT Óbuda University,

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

Driving Performance Improvement of Independently Operated Electric Vehicle

Driving Performance Improvement of Independently Operated Electric Vehicle EVS27 Barcelona, Spain, November 17-20, 2013 Driving Performance Improvement of Independently Operated Electric Vehicle Jinhyun Park 1, Hyeonwoo Song 1, Yongkwan Lee 1, Sung-Ho Hwang 1 1 School of Mechanical

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

VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE

VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE P. Gopi Krishna 1 and T. Gowri Manohar 2 1 Department of Electrical and Electronics Engineering, Narayana

More information

Increasing the Battery Life of the PMSG Wind Turbine by Improving Performance of the Hybrid Energy Storage System

Increasing the Battery Life of the PMSG Wind Turbine by Improving Performance of the Hybrid Energy Storage System IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, PP 36-41 www.iosrjournals.org Increasing the Battery Life of the PMSG Wind Turbine by Improving Performance

More information

Optimization of PID Parameters of Hydraulic System of Elevating Wheelchair Based on AMESim Hui Cao a*, Hui Guo b

Optimization of PID Parameters of Hydraulic System of Elevating Wheelchair Based on AMESim Hui Cao a*, Hui Guo b Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3710 3714 Advanced in Control Engineering and Information Science Optimization of PID Parameters of Hydraulic System of Elevating

More information

Design of Remote Monitoring and Evaluation System for UPS Battery Performance

Design of Remote Monitoring and Evaluation System for UPS Battery Performance , pp.291-298 http://dx.doi.org/10.14257/ijunesst.2016.9.5.26 Design of Remote Monitoring and Evaluation System for UPS Battery Performance Chunjie Hou, Jiabin Wang and Chun Gao Daqing Oil Field Chemical

More information

EVS28 KINTEX, Korea, May 3-6, 2015

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

More information

Research on Electric Vehicle Regenerative Braking System and Energy Recovery

Research on Electric Vehicle Regenerative Braking System and Energy Recovery , pp. 81-90 http://dx.doi.org/10.1457/ijhit.016.9.1.08 Research on Electric Vehicle Regenerative Braking System and Energy Recovery GouYanan College of Mechanical and Electrical Engineering, Zaozhuang

More information

Regenerative Braking System for Series Hybrid Electric City Bus

Regenerative Braking System for Series Hybrid Electric City Bus Page 0363 Regenerative Braking System for Series Hybrid Electric City Bus Junzhi Zhang*, Xin Lu*, Junliang Xue*, and Bos Li* Regenerative Braking Systems (RBS) provide an efficient method to assist hybrid

More information

Optimizing Battery Accuracy for EVs and HEVs

Optimizing Battery Accuracy for EVs and HEVs Optimizing Battery Accuracy for EVs and HEVs Introduction Automotive battery management system (BMS) technology has advanced considerably over the last decade. Today, several multi-cell balancing (MCB)

More information

SPEED CONTROL OF FOUR QUADRANT PMDC MOTOR DRIVE USING PI BASED ANN CONTROLLER

SPEED CONTROL OF FOUR QUADRANT PMDC MOTOR DRIVE USING PI BASED ANN CONTROLLER SPEED CONTROL OF FOUR QUADRANT PMDC MOTOR DRIVE USING PI BASED ANN CONTROLLER Visakh Murali 1, Anju G Pillai 2 and Vijai Jairaj 3 1 PG Student [Electrical Machines], Department of EEE, Sree Buddha College

More information

Experiment and Modeling Study on Battery Performance

Experiment and Modeling Study on Battery Performance , pp.4956 http://dx.doi.org/10.14257/astl.2016. Experiment and Modeling Study on Battery Performance Shuang Du a, Ruijuan Guo b, Shangyuan Sun c College of Engineering Technology, Jilin Agricultural University,

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

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

The research on gearshift control strategies of a plug-in parallel hybrid electric vehicle equipped with EMT

The research on gearshift control strategies of a plug-in parallel hybrid electric vehicle equipped with EMT Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):1647-1652 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 The research on gearshift control strategies of

More information

Investigation into partial cycling of lithium-ion cells Report

Investigation into partial cycling of lithium-ion cells Report Investigation into partial cycling of lithium-ion cells Report Tom Fantham 5 th May 2017 Introduction Lithium ion battery lifetime is typically rated by their ability to fully charge and discharge for

More information

Design of HIL Test System for VCU of Pure Electric Vehicle

Design of HIL Test System for VCU of Pure Electric Vehicle 2nd International Conference on Materials Science, Machinery and Energy Engineering (MSMEE 2017) Design of HIL Test System for of Pure Electric Vehicle Pengpeng Nie1, a), Youyu Wu1, b) and Xiaoyu Liang1,

More information

The Actuator Fault Diagnosis Based on the Valve Friction

The Actuator Fault Diagnosis Based on the Valve Friction Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Actuator Fault Diagnosis Based on the Valve Friction Jiajiang Li, * Qunli Shang, Zheng Ding, Yayao Fang, Yang Liu College

More information

Online Estimation of Lithium Ion Battery SOC and Capacity with Multiscale Filtering Technique for EVs/HEVs

Online Estimation of Lithium Ion Battery SOC and Capacity with Multiscale Filtering Technique for EVs/HEVs Sep 26, 2011 Online Estimation of Lithium Ion Battery SOC and Capacity with Multiscale Filtering Technique for EVs/HEVs BATTERY MANAGEMENTSYSTEMS WORKSHOP Chao Hu 1,Byeng D. Youn 2, Jaesik Chung 3 and

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

Fuzzy based Adaptive Control of Antilock Braking System

Fuzzy based Adaptive Control of Antilock Braking System Fuzzy based Adaptive Control of Antilock Braking System Ujwal. P Krishna. S M.Tech Mechatronics, Asst. Professor, Mechatronics VIT University, Vellore, India VIT university, Vellore, India Abstract-ABS

More information

The Application of Simulink for Vibration Simulation of Suspension Dual-mass System

The Application of Simulink for Vibration Simulation of Suspension Dual-mass System Sensors & Transducers 204 by IFSA Publishing, S. L. http://www.sensorsportal.com The Application of Simulink for Vibration Simulation of Suspension Dual-mass System Gao Fei, 2 Qu Xiao Fei, 2 Zheng Pei

More information

A highly-integrated and efficient commercial distributed EV battery balancing system

A highly-integrated and efficient commercial distributed EV battery balancing system LETTER IEICE Electronics Express, Vol.15, No.8, 1 10 A highly-integrated and eicient commercial distributed EV battery balancing system Feng Chen 1, Jun Yuan 1, Chaojun Zheng 1, Canbo Wang 1, and Zhan

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

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

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

More information

Development of Regenerative Braking Co-operative Control System for Automatic Transmission-based Hybrid Electric Vehicle using Electronic Wedge Brake

Development of Regenerative Braking Co-operative Control System for Automatic Transmission-based Hybrid Electric Vehicle using Electronic Wedge Brake World Electric Vehicle Journal Vol. 6 - ISSN 232-6653 - 213 WEVA Page Page 278 EVS27 Barcelona, Spain, November 17-2, 213 Development of Regenerative Braking Co-operative Control System for Automatic Transmission-based

More information

Application of PLC in automatic control system in the production of steel. FAN Zhechao, FENG Hongwei

Application of PLC in automatic control system in the production of steel. FAN Zhechao, FENG Hongwei International Conference on Manufacturing Science and Engineering (ICMSE 2015) Application of PLC in automatic control system in the production of steel FAN Zhechao, FENG Hongwei Inner Mongolia Technical

More information

Research on the charging system of electric vehicle photovoltaic cells HUANG Jun ( Hunan Railway Professional Technology College, Zhuzhou, )

Research on the charging system of electric vehicle photovoltaic cells HUANG Jun ( Hunan Railway Professional Technology College, Zhuzhou, ) 6th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2016) Research on the charging system of electric vehicle photovoltaic cells HUAG Jun ( Hunan Railway Professional

More information

Modeling Reversible Self-Discharge in Series- Connected Li-ion Battery Cells

Modeling Reversible Self-Discharge in Series- Connected Li-ion Battery Cells Modeling Reversible Self-Discharge in Series- Connected Li-ion Battery Cells Valentin Muenzel, Marcus Brazil, Iven Mareels Electrical and Electronic Engineering University of Melbourne Victoria, Australia

More information

Influence of Parameter Variations on System Identification of Full Car Model

Influence of Parameter Variations on System Identification of Full Car Model Influence of Parameter Variations on System Identification of Full Car Model Fengchun Sun, an Cui Abstract The car model is used extensively in the system identification of a vehicle suspension system

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

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

A Measuring Method About the Bullet Velocity in Electromagnetic Rail Gun

A Measuring Method About the Bullet Velocity in Electromagnetic Rail Gun Sensors & Transducers 214 by ISA Publishing, S. L. http://www.sensorsportal.com A Measuring Method About the Bullet Velocity in Electromagnetic Rail Gun Jianming LIU, Zhiyong BAO, Yang LIU, Zhenchun WANG,

More information

Investigation of CO 2 emissions in usage phase due to an electric vehicle - Study of battery degradation impact on emissions -

Investigation of CO 2 emissions in usage phase due to an electric vehicle - Study of battery degradation impact on emissions - EVS27 Barcelona, Spain, November 17 -, 13 Investigation of CO 2 emissions in usage phase due to an electric vehicle - Study of battery degradation impact on emissions - Abstract Tetsuya Niikuni, Kenichiroh

More information

Simulation Analysis of Automobile Air Suspension Dynamics based on ADAMS Shuai Li 1, Zhongliang Meng 1, Weikai Jiang 2

Simulation Analysis of Automobile Air Suspension Dynamics based on ADAMS Shuai Li 1, Zhongliang Meng 1, Weikai Jiang 2 International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 205) Simulation Analysis of Automobile Air Suspension Dynamics based on ADAMS Shuai Li, Zhongliang Meng, Weikai

More information

Study on V2V-based AEB System Performance Analysis in Various Road Conditions at an Intersection

Study on V2V-based AEB System Performance Analysis in Various Road Conditions at an Intersection , pp. 1-10 http://dx.doi.org/10.14257/ijseia.2015.9.7.01 Study on V2V-based AEB System Performance Analysis in Various Road Conditions at an Intersection Sangduck Jeon 1, Gyoungeun Kim 1 and Byeongwoo

More information

Battery Models Parameter Estimation based on Matlab/Simulink

Battery Models Parameter Estimation based on Matlab/Simulink Battery Models Parameter Estimation based on Matlab/Simulink Mohamed Daowd 1, Noshin Omar 1, Bavo Verbrugge 2, Peter Van Den Bossche 2, Joeri Van Mierlo 1 1 Vrije Universiteit Brussel, Pleinlaan 2, 1050

More information

Modeling Discharge Characteristics for Predicting Battery Remaining Life

Modeling Discharge Characteristics for Predicting Battery Remaining Life Modeling Discharge Characteristics for Predicting Battery Remaining Life Jide Lu, Longfei Wei, Manali Malek Pour, Yemeserach Mekonnen and Arif I. Sarwat Department of Electrical and Computer Engineering

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

The Research of Full Automatic Intelligent Oil Filtering System Based on Flow Totalizer Control

The Research of Full Automatic Intelligent Oil Filtering System Based on Flow Totalizer Control 2017 2nd International Conference on Mechanical Control and Automation (ICMCA 2017) ISBN: 978-1-60595-460-8 The Research of Full Automatic Intelligent Oil Filtering System Based on Flow Totalizer Control

More information

SOH Estimation of LMO/NMC-based Electric Vehicle Lithium-Ion Batteries Using the Incremental Capacity Analysis Technique

SOH Estimation of LMO/NMC-based Electric Vehicle Lithium-Ion Batteries Using the Incremental Capacity Analysis Technique Aalborg Universitet SOH Estimation of LMO/NMC-based Electric Vehicle Lithium-Ion Batteries Using the Incremental Capacity Analysis Technique Stroe, Daniel-Ioan; Schaltz, Erik Published in: Proceedings

More information

Modeling of Battery Systems and Installations for Automotive Applications

Modeling of Battery Systems and Installations for Automotive Applications Modeling of Battery Systems and Installations for Automotive Applications Richard Johns, Automotive Director, CD-adapco Robert Spotnitz, President, Battery Design Predicted Growth in HEV/EV Vehicles Source:

More information

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

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

More information

Exploit of Shipping Auxiliary Swing Test Platform Jia WANG 1, a, Dao-hua LU 1 and Song-lian XIE 1

Exploit of Shipping Auxiliary Swing Test Platform Jia WANG 1, a, Dao-hua LU 1 and Song-lian XIE 1 Advanced Materials Research Online: 2013-10-07 ISSN: 1662-8985, Vol. 815, pp 821-826 doi:10.4028/www.scientific.net/amr.815.821 2013 Trans Tech Publications, Switzerland Exploit of Shipping Auxiliary Swing

More information

Modeling, Control Design, Estimation and Diagnostics Algorithms MATLAB/Simulink, dspace, Microsoft Office

Modeling, Control Design, Estimation and Diagnostics Algorithms MATLAB/Simulink, dspace, Microsoft Office Postdoctoral Researcher Energy, Controls, and Applications Lab Department of Civil and Enviromental Engineering University of California, Berkeley Office: 609 Davis Hall, University of California, Berkeley,

More information

Torque Management Strategy of Pure Electric Vehicle Based On Fuzzy Control

Torque Management Strategy of Pure Electric Vehicle Based On Fuzzy Control International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Print): 2320-9356 Volume 6 Issue 4 Ver. II ǁ 2018 ǁ PP. 01-09 Torque Management Strategy of Pure Electric

More information

Forced vibration frequency response for a permanent magnetic planetary gear

Forced vibration frequency response for a permanent magnetic planetary gear Forced vibration frequency response for a permanent magnetic planetary gear Xuejun Zhu 1, Xiuhong Hao 2, Minggui Qu 3 1 Hebei Provincial Key Laboratory of Parallel Robot and Mechatronic System, Yanshan

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

Transient analysis of a new outer-rotor permanent-magnet brushless DC drive using circuit-field-torque coupled timestepping finite-element method

Transient analysis of a new outer-rotor permanent-magnet brushless DC drive using circuit-field-torque coupled timestepping finite-element method Title Transient analysis of a new outer-rotor permanent-magnet brushless DC drive using circuit-field-torque coupled timestepping finite-element method Author(s) Wang, Y; Chau, KT; Chan, CC; Jiang, JZ

More information

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

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

More information

EVS25 Shenzhen, China, Nov 5-9, Battery Management Systems for Improving Battery Efficiency in Electric Vehicles

EVS25 Shenzhen, China, Nov 5-9, Battery Management Systems for Improving Battery Efficiency in Electric Vehicles World Electric ehicle Journal ol. 4 - ISSN 2032-6653 - 20 WEA Page000351 ES25 Shenzhen, China, Nov 5-9, 20 Management Systems for Improving Efficiency in Electric ehicles Yow-Chyi Liu Department of Electrical

More information

PERFORMANCE ANALYSIS OF VARIOUS ULTRACAPACITOR AND ITS HYBRID WITH BATTERIES

PERFORMANCE ANALYSIS OF VARIOUS ULTRACAPACITOR AND ITS HYBRID WITH BATTERIES PERFORMANCE ANALYSIS OF VARIOUS ULTRACAPACITOR AND ITS HYBRID WITH BATTERIES Ksh Priyalakshmi Devi 1, Priyanka Kamdar 2, Akarsh Mittal 3, Amit K. Rohit 4, S. Rangnekar 5 1 JRF, Energy Centre, MANIT Bhopal

More information

Research and Design on Electric Control System of Elevator Tower for Safety Devices Yuan Xiao 1, a, Jianping Ye 2,b, Lijun E 1, Ruomeng Chen 1

Research and Design on Electric Control System of Elevator Tower for Safety Devices Yuan Xiao 1, a, Jianping Ye 2,b, Lijun E 1, Ruomeng Chen 1 Applied Mechanics and Materials Online: 2013-09-11 ISSN: 1662-7482, Vol. 421, pp 601-604 doi:10.4028/www.scientific.net/amm.421.601 2013 Trans Tech Publications, Switzerland Research and Design on Electric

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

A Linear Magnetic-geared Free-piston Generator for Range-extended Electric Vehicles

A Linear Magnetic-geared Free-piston Generator for Range-extended Electric Vehicles A Linear Magnetic-geared Free-piston Generator for Range-extended Electric Vehicles Wenlong Li 1 and K. T. Chau 2 1 Department of Electrical and Electronic Engineering, The University of Hong Kong, wlli@eee.hku.hk

More information

An Experimental System for Battery Management Algorithm Development

An Experimental System for Battery Management Algorithm Development An Experimental System for Battery Management Algorithm evelopment Jonas Hellgren, Lei Feng, Björn Andersson and Ricard Blanc Volvo Technology, Göteborg, Sweden E-mail: {jonas.hellgren, lei.feng, bjorn.bj.andersson,

More information

Artificial-Intelligence-Based Electrical Machines and Drives

Artificial-Intelligence-Based Electrical Machines and Drives Artificial-Intelligence-Based Electrical Machines and Drives Application of Fuzzy, Neural, Fuzzy-Neural, and Genetic-Algorithm-Based Techniques Peter Vas Professor of Electrical Engineering University

More information

Ming Cheng, Bo Chen, Michigan Technological University

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

More information

Polarization based charging time and temperature rise optimization for lithium-ion batteries

Polarization based charging time and temperature rise optimization for lithium-ion batteries Available online at www.sciencedirect.com ScienceDirect Energy Procedia 88 (2016 ) 675 681 CUE2015-Applied Energy Symposium and Summit 2015: Low carbon cities and urban energy systems Polarization based

More information

Complex Power Flow and Loss Calculation for Transmission System Nilam H. Patel 1 A.G.Patel 2 Jay Thakar 3

Complex Power Flow and Loss Calculation for Transmission System Nilam H. Patel 1 A.G.Patel 2 Jay Thakar 3 IJSRD International Journal for Scientific Research & Development Vol. 2, Issue 04, 2014 ISSN (online): 23210613 Nilam H. Patel 1 A.G.Patel 2 Jay Thakar 3 1 M.E. student 2,3 Assistant Professor 1,3 Merchant

More information

Fuzzy Logic Controller for BLDC Permanent Magnet Motor Drives

Fuzzy Logic Controller for BLDC Permanent Magnet Motor Drives International Journal of Electrical & Computer Sciences IJECS-IJENS Vol: 11 No: 02 12 Fuzzy Logic Controller for BLDC Permanent Magnet Motor Drives Tan Chee Siong, Baharuddin Ismail, Siti Fatimah Siraj,

More information

Comparison of Standard and Fast Charging Methods for Electric Vehicles

Comparison of Standard and Fast Charging Methods for Electric Vehicles Comparison of Standard and Fast Charging Methods for Electric Vehicles Petr CHLEBIS, Martin TVRDON, Ales HAVEL, Katerina BARESOVA Department of Electronics, Faculty of Electrical Engineering and Computer

More information

Integrated Control Strategy for Torque Vectoring and Electronic Stability Control for in wheel motor EV

Integrated Control Strategy for Torque Vectoring and Electronic Stability Control for in wheel motor EV EVS27 Barcelona, Spain, November 17-20, 2013 Integrated Control Strategy for Torque Vectoring and Electronic Stability Control for in wheel motor EV Haksun Kim 1, Jiin Park 2, Kwangki Jeon 2, Sungjin Choi

More information

The MathWorks Crossover to Model-Based Design

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

More information

INTRODUCTION. I.1 - Historical review.

INTRODUCTION. I.1 - Historical review. INTRODUCTION. I.1 - Historical review. The history of electrical motors goes back as far as 1820, when Hans Christian Oersted discovered the magnetic effect of an electric current. One year later, Michael

More information

Development of a Plug-In HEV Based on Novel Compound Power-Split Transmission

Development of a Plug-In HEV Based on Novel Compound Power-Split Transmission Page WEVJ7-66 EVS8 KINEX, Korea, May 3-6, 5 velopment of a Plug-In HEV Based on Novel Compound Power-Split ransmission ong Zhang, Chen Wang,, Zhiguo Zhao, Wentai Zhou, Corun CHS echnology Co., Ltd., NO.888

More information

SIL, HIL, and Vehicle Fuel Economy Analysis of a Pre- Transmission Parallel PHEV

SIL, HIL, and Vehicle Fuel Economy Analysis of a Pre- Transmission Parallel PHEV EVS27 Barcelona, Spain, November 17-20, 2013 SIL, HIL, and Vehicle Fuel Economy Analysis of a Pre- Transmission Parallel PHEV Jonathan D. Moore and G. Marshall Molen Mississippi State University Jdm833@msstate.edu

More information

Open Access Study on the Relationship Between Energy Storage Efficiency and Charging Mode of Super Capacitor

Open Access Study on the Relationship Between Energy Storage Efficiency and Charging Mode of Super Capacitor Send Orders for Reprints to reprints@benthamscience.ae 328 The Open Electrical & Electronic Engineering Journal, 2015, 9, 328-334 Open Access Study on the Relationship Between Energy Storage Efficiency

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

INTELLIGENT DC MICROGRID WITH SMART GRID COMMUNICATIONS: CONTROL STRATEGY CONSIDERATION AND DESIGN

INTELLIGENT DC MICROGRID WITH SMART GRID COMMUNICATIONS: CONTROL STRATEGY CONSIDERATION AND DESIGN INTELLIGENT DC MICROGRID WITH SMART GRID COMMUNICATIONS: CONTROL STRATEGY CONSIDERATION AND DESIGN Presented by: Amit Kumar Tamang, PhD Student Smart Grid Research Group-BBCR aktamang@uwaterloo.ca 1 Supervisor

More information

Development of Engine Clutch Control for Parallel Hybrid

Development of Engine Clutch Control for Parallel Hybrid EVS27 Barcelona, Spain, November 17-20, 2013 Development of Engine Clutch Control for Parallel Hybrid Vehicles Joonyoung Park 1 1 Hyundai Motor Company, 772-1, Jangduk, Hwaseong, Gyeonggi, 445-706, Korea,

More information