SlideShare a Scribd company logo
1 of 11
Download to read offline
Name: Siddhesh Ozarkar
MSME Dept. Mechanical Engineering
Wayne State University, Detroit
P: 313.330.5196
E: fr8695@wayne.edu
ACCELERATION
MODELLING
OF GM EV1
9/14/2015
Acceleration Modelling from 0 to 60mph
for GM EV1
Gm Ev1 is a small electric vehicle which has played important
role in the recent developments of electric vehicles. This report
contains simple calculations to predict the acceleration of EV1
computed from the given data. Simple differential equations
solved on MATLAB.
Acceleration Modelling of GM EV1
Page 1
---Equation 2
} Acceleration governing equations
for mass m= 1560kg
---Equation 1
Acceleration Modelling of GM EV1
A C C E L E R AT I O N M O D E L L I N G F R O M 0 T O 6 0 M P H F O R G M E V 1
Part 1: Acceleration Performance Simulation of EV1 using MATLAB script.
Case 1: Mass of vehicle m =1560kg.
The acceleration of the vehicle is computed in two phases. Phase one is considered when the torque
supplied by the motor linearly increases with speed. This is true for most types of motors that are used to
propel electric drive vehicles. The torque of the motor used in ev1 increase linearly till 140 Nm till motor
reaches critical speed ωc. In the later phase this torque reduces in simple relation with velocity & motor
operates at constant power of 102kW replicating the WOT conditions.
Tmax=140Nm ωc=733 rad/s
Torque is maximum until velocity v=19.8m/s (v=71.3km/h)
As velocity reaches 19.8m/s the motor operates at constant power this is the condition of WOT test
T =
10200
37
∗ v
For initial phase of acceleration when T=Tmax
Case: Now considering mass of the vehicle with two passengers each weighing 70 kg we have the overall
mass of the vehicle as 1560kg.
Now substituting the values of constants from table 1 in the Equation 2 & considering Equation 1
Phase 1 of Acceleration: 3.117-0.000136v2=(
𝑑𝑣
𝑑𝑡
)
Phase 2 of acceleration:
62.1
𝑣
-0.046-0.000136v2
Acceleration Modelling of GM EV1
Page 2
Table 1
Parameter Description Value & units
Cd Air Drag(Ultra Low Air Drag
Co-efficient as from vehicle
data)
0.19
μrr Rolling Resistance 0.0048
m Mass of vehicle
m=1560kg
m=1326kg(-15% mass)
m=1794kg(+15% mass)
1560kg
1326kg(Case 1)
1794kg(Case 2)
G Gear Ratio 11:1 11
r Radius of Tyre 0.30m
A Frontal Area of vehicle 1.8m2
ηg Efficiency of transmission 0.95
Acceleration Modelling of GM EV1
Page 3
Description of Graph 1
At 60Mph the time required to
reach the speed is 9.1
seconds.
The values of acceleration are
respectable.
The velocity is observed to be
constant 128kmph.
MATLAB script for obtaining acceleration m=1560kg:
% Acceleration Performance simulation of GM EV1
t=linspace(0,15,151); % time from 0 to 15 seconds with 0.1 second timestep
v=zeros(1,151); % 150 readings of velocity
dT=0.1; %0.1second time step
for n=1:150
if v(n)<19.8
v(n+1)=v(n)+dT*(3.107-(0.000136*(v(n)^2)));
elseif v(n)>35.8
v(n+1)=v(n);
else
v(n+1)=v(n)+dT*((62.1/v(n))-0.046-(0.000137*(v(n)^2)));
end;
end;
v=v.*3.6;
plot(t,v);
xlabel('Time/second');
ylabel('velocity/kph');
title('Acceleration Simulation of GM EV1');
legend('Acceleration of EV1','Location','northwest');
Results for the Case: Graph 1
Acceleration Modelling of GM EV1
Page 4
} Acceleration governing equations
for mass m= 1326kg
Part 2: Acceleration Performance Simulation of EV1 using MATLAB script with reduced
and increase overall mass of the vehicle.
Case 1: Mass of vehicle m =1326kg.
Case: Now considering mass of the vehicle with two passengers each weighing 70 kg we have the overall
mass of the vehicle as 1326kg.
Now substituting the values of constants from table 1 in the Equation 2 & considering Equation 1.
Phase 1 of Acceleration: 3.6641-0.0001606v2=(
𝑑𝑣
𝑑𝑡
)
Phase 2 of acceleration:
73.05
𝑣
-0.047-0.0001606v2
MATLAB script for obtaining acceleration m=1326kg:
% Acceleration Performance simulation of GM EV1
t=linspace(0,15,151); % time from 0 to 15 seconds with 0.1 second timestep
v=zeros(1,151); % 150 readings of velocity
dT=0.1; %0.1second time step
for n=1:150
if v(n)<19.8
v(n+1)=v(n)+dT*(3.6641-(0.0001606*(v(n)^2)));
elseif v(n)>35.8
v(n+1)=v(n);
else
v(n+1)=v(n)+dT*((73.05/v(n))-0.0470-(0.0001606*(v(n)^2)));
end;
end;
v=v.*3.6;
plot(t,v);
xlabel('Time/second');
ylabel('velocity/kph');
title('Acceleration Simulation of GM EV1');
legend('Acceleration of EV1','Location','northwest');
Acceleration Modelling of GM EV1
Page 5
Description of Graph 2
At 60Mph the time required to reach the speed is 7.8 seconds.
The values of acceleration are respectable.
The velocity is observed to be constant 128kmph.
It can be observed that the acceleration of the vehicle is quicker and the the vehicle
approaches the 60mph mark nearly 2 seconds quicker if mass is reduced by 15%.
This is simply governed by Newton’s Law
F=ma
M=mass & a=acceleration
Results for Case 1: Graph 2
Acceleration Modelling of GM EV1
Page 6
} Acceleration governing equations
for mass m= 1794kg
Case 1: Mass of vehicle m =1794kg.
Case: Now considering mass of the vehicle with two passengers each weighing 70 kg we have the overall
mass of the vehicle as 1794kg.
Now substituting the values of constants from table 1 in the Equation 2 & considering Equation 1.
Phase 1 of Acceleration: 2.696-0.000118v2=(
𝑑𝑣
𝑑𝑡
)
Phase 2 of acceleration:
53.998
𝑣
-0.047-0.000118v2
MATLAB script for obtaining acceleration m=1794kg:
% Acceleration Performance simulation of GM EV1
t=linspace(0,15,151); % time from 0 to 15 seconds with 0.1 second timestep
v=zeros(1,151); % 150 readings of velocity
dT=0.1; %0.1second time step
for n=1:150
if v(n)<19.8
v(n+1)=v(n)+dT*(2.696-(0.00011872*(v(n)^2)));
elseif v(n)>35.8
v(n+1)=v(n);
else
v(n+1)=v(n)+dT*((53.998/v(n))-0.04708-(0.0001187*(v(n)^2)));
end;
end;
v=v.*3.6;
plot(t,v);
xlabel('Time/second');
ylabel('velocity/kph');
title('Acceleration Simulation of GM EV1');
legend('Acceleration of EV1','Location','northwest');
Acceleration Modelling of GM EV1
Page 7
Description of Graph 3
At 60Mph the time required to reach the speed is 10.5 seconds.
The values of acceleration are respectable.
The velocity is observed to be constant 128kmph.
It can be observed that the acceleration of the vehicle is slower and the
vehicle approaches the 60mph mark nearly 1.5 seconds later if mass is
increased by 15%.
This is simply governed by Newton’s Law
F=ma
M=mass & a=acceleration
Results for Case 1: Graph 3
Acceleration Modelling of GM EV1
Page 8
Discussion & Comparison:
Mass of Vehicle (kg) Time required to reach the 60mph mark
(Seconds)
1560 9.1
1326 (-15%) 7.8
1794 (+15%) 10.5
It can be observed from the graphs obtained the effect of mass on the acceleration of the vehicle.
As mass increases the acceleration decreases and vice versa.
Part 3: Mathematical solution to find out velocity solution using Calculus.
**For this part of the report I have considered the governing acceleration for phase 1
when vehicle weighs 1560kg.
The reduced differential equation for the acceleration is as follows
3.117-0.000136v2=(
𝑑𝑣
𝑑𝑡
) where, v= velocity in m/s
 This is a First Order Non-linear Ordinary Differential Equation.
 The eqution can be reduced in an alternative form as
V’(t)=-0.00013(v(t)-154.6)(v(t)+154.6)
 Initial conditions as v (t)=0 when t=0 seconds
 On solving we get the solution to differential equation as
V (t) =154.67*(
𝑒0.0402∗𝑡−2.71824021.44𝐶
2.71824021.44𝑐+𝑒0.0402𝑡 ) where C = constant of integration.
Acceleration Modelling of GM EV1
Page 9
The verification from
MATLAB shows that velocity
at 7 seconds is 77.57km/h.
The difference in MATLAB
and hand calculation using
calculus might be due to the
number of decimals that
MATLAB uses during
computation.
The verification from
MATLAB shows that velocity
at 9.1 seconds is 96.17
km/h.
Verification of Solution:
1. Velocity when time t=7 seconds
Using calculus and the solution for the differential equation we get
 v(7) = 21.61m/s = 77.79 km/h
2. Velocity when time t = 9.1 seconds
 V(9.1) = 27.9m/s = 97.2 km/h
Acceleration Modelling of GM EV1
Page 10
The verification from
MATLAB shows that velocity
at 5 seconds is 55.79 km/h.
3. Velocity when time t = 5 seconds
 v(5)= 15.49 m/s = 55.77 km/h
Similar hand calculations can be performed for the phase two of the acceleration and
the obtained first order nonlinear differential equation can be solved accordingly
Conclusion:
 The curve obtained in graph 1 closely resembles the curve obtained from the manufactures data.
 The acceleration of the vehicle reduces as the mass increases as expected.
 The hand calculations done closely match the calculations done by MATLAB.
 There is a slight difference in the values of velocity obtained from hand calculations and MATLAB this
might be due to the way matlab handles the decimal numbers.
References:
J.Y. Wong “Theory of ground Vehicles 3rd edition”
Larminie & Lowry, “Electric Vehicle Technology Explained, 2nd ed.” 2012

More Related Content

What's hot

Accident prevention for automobiles with eyeblink and alcohol sensor
Accident prevention for automobiles with eyeblink and alcohol sensorAccident prevention for automobiles with eyeblink and alcohol sensor
Accident prevention for automobiles with eyeblink and alcohol sensorASHOKKUMAR RAMAR
 
Electronic Instrumentation and Measurement Solution Manual
Electronic Instrumentation and Measurement Solution ManualElectronic Instrumentation and Measurement Solution Manual
Electronic Instrumentation and Measurement Solution ManualMafaz Ahmed
 
Fault location for transmission line
Fault location  for transmission lineFault location  for transmission line
Fault location for transmission linemohammed shareef
 
smart grid seminar report
smart grid seminar reportsmart grid seminar report
smart grid seminar reportramesh kumawat
 
Power Electronic Converter
Power Electronic ConverterPower Electronic Converter
Power Electronic ConverterAli
 
Minor Project Report: Automatic Door Control System
Minor Project Report: Automatic Door Control SystemMinor Project Report: Automatic Door Control System
Minor Project Report: Automatic Door Control SystemSaban Kumar K.C.
 
01 introduction to multilevel inverters
01 introduction to multilevel inverters01 introduction to multilevel inverters
01 introduction to multilevel inverterssazuddin
 
Gauss Siedel method of Load Flow
Gauss Siedel method of Load FlowGauss Siedel method of Load Flow
Gauss Siedel method of Load FlowAbdul Azeem
 
Different methods of pwm for inverter control
Different methods of pwm for inverter controlDifferent methods of pwm for inverter control
Different methods of pwm for inverter controlTushar Pandagre
 
Three phase semi converter
Three phase semi converterThree phase semi converter
Three phase semi converterArpit Raval
 
FOOT STEP POWER GENERATION
FOOT STEP POWER GENERATIONFOOT STEP POWER GENERATION
FOOT STEP POWER GENERATIONShyam sivan
 
Voice and touchscreen operated wheelchair ppt
Voice and touchscreen operated wheelchair pptVoice and touchscreen operated wheelchair ppt
Voice and touchscreen operated wheelchair pptSyed Saleem Ahmed
 
ELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CV
ELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CVELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CV
ELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CVAjith Chandramohan
 
Motor_Control_Library_IITMRP_presentation.pdf
Motor_Control_Library_IITMRP_presentation.pdfMotor_Control_Library_IITMRP_presentation.pdf
Motor_Control_Library_IITMRP_presentation.pdfMani Kandan K
 
Slip test on Synchronous Machine
Slip test on Synchronous MachineSlip test on Synchronous Machine
Slip test on Synchronous MachineVishal Thakur
 
Seminar Report on Smart charging strategy for an electric vehicle fleet to r...
Seminar Report  on Smart charging strategy for an electric vehicle fleet to r...Seminar Report  on Smart charging strategy for an electric vehicle fleet to r...
Seminar Report on Smart charging strategy for an electric vehicle fleet to r...Arpit Kurel
 
SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)
SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)
SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)Arpit Kurel
 

What's hot (20)

Accident prevention for automobiles with eyeblink and alcohol sensor
Accident prevention for automobiles with eyeblink and alcohol sensorAccident prevention for automobiles with eyeblink and alcohol sensor
Accident prevention for automobiles with eyeblink and alcohol sensor
 
Electronic Instrumentation and Measurement Solution Manual
Electronic Instrumentation and Measurement Solution ManualElectronic Instrumentation and Measurement Solution Manual
Electronic Instrumentation and Measurement Solution Manual
 
Fault location for transmission line
Fault location  for transmission lineFault location  for transmission line
Fault location for transmission line
 
Gauss seidel method
Gauss seidel methodGauss seidel method
Gauss seidel method
 
smart grid seminar report
smart grid seminar reportsmart grid seminar report
smart grid seminar report
 
Power Electronic Converter
Power Electronic ConverterPower Electronic Converter
Power Electronic Converter
 
Minor Project Report: Automatic Door Control System
Minor Project Report: Automatic Door Control SystemMinor Project Report: Automatic Door Control System
Minor Project Report: Automatic Door Control System
 
01 introduction to multilevel inverters
01 introduction to multilevel inverters01 introduction to multilevel inverters
01 introduction to multilevel inverters
 
Gauss Siedel method of Load Flow
Gauss Siedel method of Load FlowGauss Siedel method of Load Flow
Gauss Siedel method of Load Flow
 
Different methods of pwm for inverter control
Different methods of pwm for inverter controlDifferent methods of pwm for inverter control
Different methods of pwm for inverter control
 
Three phase semi converter
Three phase semi converterThree phase semi converter
Three phase semi converter
 
FOOT STEP POWER GENERATION
FOOT STEP POWER GENERATIONFOOT STEP POWER GENERATION
FOOT STEP POWER GENERATION
 
Voice and touchscreen operated wheelchair ppt
Voice and touchscreen operated wheelchair pptVoice and touchscreen operated wheelchair ppt
Voice and touchscreen operated wheelchair ppt
 
Multi level inverter
Multi level inverterMulti level inverter
Multi level inverter
 
ELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CV
ELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CVELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CV
ELECTRICAL ENGINEER CV, SITE ENGINEER CV, PROJECT ENGINEER CV
 
UTILIZATION OF ELECTRICAL ENERGY
UTILIZATION OF ELECTRICAL ENERGY UTILIZATION OF ELECTRICAL ENERGY
UTILIZATION OF ELECTRICAL ENERGY
 
Motor_Control_Library_IITMRP_presentation.pdf
Motor_Control_Library_IITMRP_presentation.pdfMotor_Control_Library_IITMRP_presentation.pdf
Motor_Control_Library_IITMRP_presentation.pdf
 
Slip test on Synchronous Machine
Slip test on Synchronous MachineSlip test on Synchronous Machine
Slip test on Synchronous Machine
 
Seminar Report on Smart charging strategy for an electric vehicle fleet to r...
Seminar Report  on Smart charging strategy for an electric vehicle fleet to r...Seminar Report  on Smart charging strategy for an electric vehicle fleet to r...
Seminar Report on Smart charging strategy for an electric vehicle fleet to r...
 
SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)
SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)
SIMULATION AND STUDY OF MULTILEVEL INVERTER (ppt)
 

Similar to Acceleration Modelling of EV1_FR8695

EENG519FinalProjectReport
EENG519FinalProjectReportEENG519FinalProjectReport
EENG519FinalProjectReportDaniel K
 
Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...
Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...
Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...Valerio Salvucci
 
Lag lead compensator design in frequency domain 7th lecture
Lag lead compensator design in frequency domain  7th lectureLag lead compensator design in frequency domain  7th lecture
Lag lead compensator design in frequency domain 7th lectureKhalaf Gaeid Alshammery
 
OConnor_SimulationProject
OConnor_SimulationProjectOConnor_SimulationProject
OConnor_SimulationProjectKevin O'Connor
 
Time response of first order systems and second order systems
Time response of first order systems and second order systemsTime response of first order systems and second order systems
Time response of first order systems and second order systemsNANDHAKUMARA10
 
Modelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptx
Modelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptxModelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptx
Modelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptxKadiriIbrahim2
 
PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)Tsuyoshi Horigome
 
AntennaProject_NathanJaniczek
AntennaProject_NathanJaniczekAntennaProject_NathanJaniczek
AntennaProject_NathanJaniczekNathan Janiczek
 

Similar to Acceleration Modelling of EV1_FR8695 (20)

EENG519FinalProjectReport
EENG519FinalProjectReportEENG519FinalProjectReport
EENG519FinalProjectReport
 
Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...
Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...
Improving EV Lateral Dynamics Control Using Infinity Norm Approach with Close...
 
Lag lead compensator design in frequency domain 7th lecture
Lag lead compensator design in frequency domain  7th lectureLag lead compensator design in frequency domain  7th lecture
Lag lead compensator design in frequency domain 7th lecture
 
Ch2 2011 s
Ch2 2011 sCh2 2011 s
Ch2 2011 s
 
DC servo motor
DC servo motorDC servo motor
DC servo motor
 
OConnor_SimulationProject
OConnor_SimulationProjectOConnor_SimulationProject
OConnor_SimulationProject
 
Time response of first order systems and second order systems
Time response of first order systems and second order systemsTime response of first order systems and second order systems
Time response of first order systems and second order systems
 
Project report. fin
Project report. finProject report. fin
Project report. fin
 
H010245763
H010245763H010245763
H010245763
 
Programming project
Programming projectProgramming project
Programming project
 
Lecture 11
Lecture 11Lecture 11
Lecture 11
 
Lead-lag controller
Lead-lag controllerLead-lag controller
Lead-lag controller
 
Modelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptx
Modelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptxModelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptx
Modelling using differnt metods in matlab2 (2) (2) (2) (4) (1) (1).pptx
 
Report_AKbar_PDF
Report_AKbar_PDFReport_AKbar_PDF
Report_AKbar_PDF
 
Analysis
AnalysisAnalysis
Analysis
 
A010220109
A010220109A010220109
A010220109
 
Fisica ii ic(2020-i) -sem10(a) (2)
Fisica ii  ic(2020-i) -sem10(a) (2)Fisica ii  ic(2020-i) -sem10(a) (2)
Fisica ii ic(2020-i) -sem10(a) (2)
 
PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)
 
Chapter 10-pid-1
Chapter 10-pid-1Chapter 10-pid-1
Chapter 10-pid-1
 
AntennaProject_NathanJaniczek
AntennaProject_NathanJaniczekAntennaProject_NathanJaniczek
AntennaProject_NathanJaniczek
 

More from Siddhesh Ozarkar

FRONTAL FIXED 40 % OFFSET BARRIER TEST
FRONTAL FIXED 40 % OFFSET BARRIER TESTFRONTAL FIXED 40 % OFFSET BARRIER TEST
FRONTAL FIXED 40 % OFFSET BARRIER TESTSiddhesh Ozarkar
 
Casestudy3_TeamPulverisers5_MITPune - report
Casestudy3_TeamPulverisers5_MITPune - reportCasestudy3_TeamPulverisers5_MITPune - report
Casestudy3_TeamPulverisers5_MITPune - reportSiddhesh Ozarkar
 
Zero Turn Radius Presentation - Team Panache
Zero Turn Radius Presentation - Team PanacheZero Turn Radius Presentation - Team Panache
Zero Turn Radius Presentation - Team PanacheSiddhesh Ozarkar
 
Zero Turn Radius Report - Team Panache (1)
Zero Turn Radius Report - Team Panache (1)Zero Turn Radius Report - Team Panache (1)
Zero Turn Radius Report - Team Panache (1)Siddhesh Ozarkar
 

More from Siddhesh Ozarkar (10)

Plug-In Hybrid Simulation
Plug-In Hybrid SimulationPlug-In Hybrid Simulation
Plug-In Hybrid Simulation
 
Side_Impact_Van_MDB
Side_Impact_Van_MDBSide_Impact_Van_MDB
Side_Impact_Van_MDB
 
Roof Crush
Roof CrushRoof Crush
Roof Crush
 
FRONTAL FIXED 40 % OFFSET BARRIER TEST
FRONTAL FIXED 40 % OFFSET BARRIER TESTFRONTAL FIXED 40 % OFFSET BARRIER TEST
FRONTAL FIXED 40 % OFFSET BARRIER TEST
 
IPD
IPDIPD
IPD
 
Casestudy3_TeamPulverisers5_MITPune - report
Casestudy3_TeamPulverisers5_MITPune - reportCasestudy3_TeamPulverisers5_MITPune - report
Casestudy3_TeamPulverisers5_MITPune - report
 
Zero Turn Radius Presentation - Team Panache
Zero Turn Radius Presentation - Team PanacheZero Turn Radius Presentation - Team Panache
Zero Turn Radius Presentation - Team Panache
 
Zero Turn Radius Report - Team Panache (1)
Zero Turn Radius Report - Team Panache (1)Zero Turn Radius Report - Team Panache (1)
Zero Turn Radius Report - Team Panache (1)
 
BAJA 2014 presentation
BAJA 2014 presentationBAJA 2014 presentation
BAJA 2014 presentation
 
FR8695_IndProj
FR8695_IndProjFR8695_IndProj
FR8695_IndProj
 

Acceleration Modelling of EV1_FR8695

  • 1. Name: Siddhesh Ozarkar MSME Dept. Mechanical Engineering Wayne State University, Detroit P: 313.330.5196 E: fr8695@wayne.edu ACCELERATION MODELLING OF GM EV1 9/14/2015 Acceleration Modelling from 0 to 60mph for GM EV1 Gm Ev1 is a small electric vehicle which has played important role in the recent developments of electric vehicles. This report contains simple calculations to predict the acceleration of EV1 computed from the given data. Simple differential equations solved on MATLAB.
  • 2. Acceleration Modelling of GM EV1 Page 1 ---Equation 2 } Acceleration governing equations for mass m= 1560kg ---Equation 1 Acceleration Modelling of GM EV1 A C C E L E R AT I O N M O D E L L I N G F R O M 0 T O 6 0 M P H F O R G M E V 1 Part 1: Acceleration Performance Simulation of EV1 using MATLAB script. Case 1: Mass of vehicle m =1560kg. The acceleration of the vehicle is computed in two phases. Phase one is considered when the torque supplied by the motor linearly increases with speed. This is true for most types of motors that are used to propel electric drive vehicles. The torque of the motor used in ev1 increase linearly till 140 Nm till motor reaches critical speed ωc. In the later phase this torque reduces in simple relation with velocity & motor operates at constant power of 102kW replicating the WOT conditions. Tmax=140Nm ωc=733 rad/s Torque is maximum until velocity v=19.8m/s (v=71.3km/h) As velocity reaches 19.8m/s the motor operates at constant power this is the condition of WOT test T = 10200 37 ∗ v For initial phase of acceleration when T=Tmax Case: Now considering mass of the vehicle with two passengers each weighing 70 kg we have the overall mass of the vehicle as 1560kg. Now substituting the values of constants from table 1 in the Equation 2 & considering Equation 1 Phase 1 of Acceleration: 3.117-0.000136v2=( 𝑑𝑣 𝑑𝑡 ) Phase 2 of acceleration: 62.1 𝑣 -0.046-0.000136v2
  • 3. Acceleration Modelling of GM EV1 Page 2 Table 1 Parameter Description Value & units Cd Air Drag(Ultra Low Air Drag Co-efficient as from vehicle data) 0.19 μrr Rolling Resistance 0.0048 m Mass of vehicle m=1560kg m=1326kg(-15% mass) m=1794kg(+15% mass) 1560kg 1326kg(Case 1) 1794kg(Case 2) G Gear Ratio 11:1 11 r Radius of Tyre 0.30m A Frontal Area of vehicle 1.8m2 ηg Efficiency of transmission 0.95
  • 4. Acceleration Modelling of GM EV1 Page 3 Description of Graph 1 At 60Mph the time required to reach the speed is 9.1 seconds. The values of acceleration are respectable. The velocity is observed to be constant 128kmph. MATLAB script for obtaining acceleration m=1560kg: % Acceleration Performance simulation of GM EV1 t=linspace(0,15,151); % time from 0 to 15 seconds with 0.1 second timestep v=zeros(1,151); % 150 readings of velocity dT=0.1; %0.1second time step for n=1:150 if v(n)<19.8 v(n+1)=v(n)+dT*(3.107-(0.000136*(v(n)^2))); elseif v(n)>35.8 v(n+1)=v(n); else v(n+1)=v(n)+dT*((62.1/v(n))-0.046-(0.000137*(v(n)^2))); end; end; v=v.*3.6; plot(t,v); xlabel('Time/second'); ylabel('velocity/kph'); title('Acceleration Simulation of GM EV1'); legend('Acceleration of EV1','Location','northwest'); Results for the Case: Graph 1
  • 5. Acceleration Modelling of GM EV1 Page 4 } Acceleration governing equations for mass m= 1326kg Part 2: Acceleration Performance Simulation of EV1 using MATLAB script with reduced and increase overall mass of the vehicle. Case 1: Mass of vehicle m =1326kg. Case: Now considering mass of the vehicle with two passengers each weighing 70 kg we have the overall mass of the vehicle as 1326kg. Now substituting the values of constants from table 1 in the Equation 2 & considering Equation 1. Phase 1 of Acceleration: 3.6641-0.0001606v2=( 𝑑𝑣 𝑑𝑡 ) Phase 2 of acceleration: 73.05 𝑣 -0.047-0.0001606v2 MATLAB script for obtaining acceleration m=1326kg: % Acceleration Performance simulation of GM EV1 t=linspace(0,15,151); % time from 0 to 15 seconds with 0.1 second timestep v=zeros(1,151); % 150 readings of velocity dT=0.1; %0.1second time step for n=1:150 if v(n)<19.8 v(n+1)=v(n)+dT*(3.6641-(0.0001606*(v(n)^2))); elseif v(n)>35.8 v(n+1)=v(n); else v(n+1)=v(n)+dT*((73.05/v(n))-0.0470-(0.0001606*(v(n)^2))); end; end; v=v.*3.6; plot(t,v); xlabel('Time/second'); ylabel('velocity/kph'); title('Acceleration Simulation of GM EV1'); legend('Acceleration of EV1','Location','northwest');
  • 6. Acceleration Modelling of GM EV1 Page 5 Description of Graph 2 At 60Mph the time required to reach the speed is 7.8 seconds. The values of acceleration are respectable. The velocity is observed to be constant 128kmph. It can be observed that the acceleration of the vehicle is quicker and the the vehicle approaches the 60mph mark nearly 2 seconds quicker if mass is reduced by 15%. This is simply governed by Newton’s Law F=ma M=mass & a=acceleration Results for Case 1: Graph 2
  • 7. Acceleration Modelling of GM EV1 Page 6 } Acceleration governing equations for mass m= 1794kg Case 1: Mass of vehicle m =1794kg. Case: Now considering mass of the vehicle with two passengers each weighing 70 kg we have the overall mass of the vehicle as 1794kg. Now substituting the values of constants from table 1 in the Equation 2 & considering Equation 1. Phase 1 of Acceleration: 2.696-0.000118v2=( 𝑑𝑣 𝑑𝑡 ) Phase 2 of acceleration: 53.998 𝑣 -0.047-0.000118v2 MATLAB script for obtaining acceleration m=1794kg: % Acceleration Performance simulation of GM EV1 t=linspace(0,15,151); % time from 0 to 15 seconds with 0.1 second timestep v=zeros(1,151); % 150 readings of velocity dT=0.1; %0.1second time step for n=1:150 if v(n)<19.8 v(n+1)=v(n)+dT*(2.696-(0.00011872*(v(n)^2))); elseif v(n)>35.8 v(n+1)=v(n); else v(n+1)=v(n)+dT*((53.998/v(n))-0.04708-(0.0001187*(v(n)^2))); end; end; v=v.*3.6; plot(t,v); xlabel('Time/second'); ylabel('velocity/kph'); title('Acceleration Simulation of GM EV1'); legend('Acceleration of EV1','Location','northwest');
  • 8. Acceleration Modelling of GM EV1 Page 7 Description of Graph 3 At 60Mph the time required to reach the speed is 10.5 seconds. The values of acceleration are respectable. The velocity is observed to be constant 128kmph. It can be observed that the acceleration of the vehicle is slower and the vehicle approaches the 60mph mark nearly 1.5 seconds later if mass is increased by 15%. This is simply governed by Newton’s Law F=ma M=mass & a=acceleration Results for Case 1: Graph 3
  • 9. Acceleration Modelling of GM EV1 Page 8 Discussion & Comparison: Mass of Vehicle (kg) Time required to reach the 60mph mark (Seconds) 1560 9.1 1326 (-15%) 7.8 1794 (+15%) 10.5 It can be observed from the graphs obtained the effect of mass on the acceleration of the vehicle. As mass increases the acceleration decreases and vice versa. Part 3: Mathematical solution to find out velocity solution using Calculus. **For this part of the report I have considered the governing acceleration for phase 1 when vehicle weighs 1560kg. The reduced differential equation for the acceleration is as follows 3.117-0.000136v2=( 𝑑𝑣 𝑑𝑡 ) where, v= velocity in m/s  This is a First Order Non-linear Ordinary Differential Equation.  The eqution can be reduced in an alternative form as V’(t)=-0.00013(v(t)-154.6)(v(t)+154.6)  Initial conditions as v (t)=0 when t=0 seconds  On solving we get the solution to differential equation as V (t) =154.67*( 𝑒0.0402∗𝑡−2.71824021.44𝐶 2.71824021.44𝑐+𝑒0.0402𝑡 ) where C = constant of integration.
  • 10. Acceleration Modelling of GM EV1 Page 9 The verification from MATLAB shows that velocity at 7 seconds is 77.57km/h. The difference in MATLAB and hand calculation using calculus might be due to the number of decimals that MATLAB uses during computation. The verification from MATLAB shows that velocity at 9.1 seconds is 96.17 km/h. Verification of Solution: 1. Velocity when time t=7 seconds Using calculus and the solution for the differential equation we get  v(7) = 21.61m/s = 77.79 km/h 2. Velocity when time t = 9.1 seconds  V(9.1) = 27.9m/s = 97.2 km/h
  • 11. Acceleration Modelling of GM EV1 Page 10 The verification from MATLAB shows that velocity at 5 seconds is 55.79 km/h. 3. Velocity when time t = 5 seconds  v(5)= 15.49 m/s = 55.77 km/h Similar hand calculations can be performed for the phase two of the acceleration and the obtained first order nonlinear differential equation can be solved accordingly Conclusion:  The curve obtained in graph 1 closely resembles the curve obtained from the manufactures data.  The acceleration of the vehicle reduces as the mass increases as expected.  The hand calculations done closely match the calculations done by MATLAB.  There is a slight difference in the values of velocity obtained from hand calculations and MATLAB this might be due to the way matlab handles the decimal numbers. References: J.Y. Wong “Theory of ground Vehicles 3rd edition” Larminie & Lowry, “Electric Vehicle Technology Explained, 2nd ed.” 2012