All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM :- To find the Wide-Open throttle (WOT) of an electric vehicle(GM EV1 car) and Using powertrain bolcksets in the MATLAB to diffrerntiate the WOT conditions of the HEV and EV. OBJECTIVE :- Analyse the WOT Condition of GM EV1 car with comparison with initial vehicle…
Mudit Verma
updated on 29 Oct 2020
AIM :-
To find the Wide-Open throttle (WOT) of an electric vehicle(GM EV1 car) and Using powertrain bolcksets in the MATLAB to diffrerntiate the WOT conditions of the HEV and EV.
OBJECTIVE :-
Calculating miles per gallon in HEV model and finding factors considered to model fuel flow.
Simulating HEV and EV WOT condition using Powertrain Blockset and Change the grade and wind velocity in the environment block. Commenting and Comparing the results.
WIDE OPEN THROTTLE :-
Wide open throttle (WOT) can be explained as maximum intake of air and fuel that occurs when the throttle plates inside the carburetor or throttle body are "wide open", providing the least resistance to the incoming air. In the case of an automobile, WOT is when the accelerator is depressed fully, sometimes referred to as "flooring it."
In the case of a diesel engine, which does not have a throttle valve, WOT is the point at which the maximum amount of fuel is being injected relative to the amount of air pumped by the engine, generally in order to bring the fuel-air mixture up to the stoichiometric point.
At wide open throttle, manifold vacuum decreases. The higher manifold pressure in turn allows more air to enter the combustion cylinders, and thus additional fuel is required to balance the combustion reaction. The additional air and fuel reacting together produce more power.
In Electric vehicle, WOT condition refer to the initial acceleration or time taken by the vehicle to reach maximum velocity. Maximum velocity in WOT condition can be obtained by electric motor characteristics of an electric vehicle.
We will calculate the WOT conditions of the GM EV1 car by comparing it with inital vehicle parameter with the 5% increase in the vehicle parameters.
Now,
Subsituting above equation of T we get,
For ω<ωc, In the initial acceleration phase, when T = Tmax, we get
Where,
**Since MOI of the motor is not known, and considering the MOI of Vehicle, MOI of motor can be neglected or an 5% effect can be considered in above Equation !!!!!
CALCULATIONS:-
P=T*W
Power = Torque * Angular Velocity
T = P/W
also, V = W*r Linear Velocity = Angular Velocity * radius
T = P/(V/r)
Considering Fixed Gear Ratio 'G' bw Wheel and Motor
T = P/(GV/r)
Now for region beyond Critical Speed,
Now we have 2 equations,
Substituting the 2 equations in to the Governing Equation,
0.95*37*140 = (0.0048*1500*9.81)+(0.625*0.19*1.8v^2)+(1575)dv/dt
4921 = 70.632 + 0.214v^2 + 1575 dv/dt
4850.37 = 0.214v^2 + 1575 dv/dt
dv/dt = 3.08 - 0.0001358v^2
0.95*37*2757/v = 70.632 + 0.214v^2 +(1575)dv/dt
96908/v = 70.632 + 0.214v^2 + 1575 dv/dt
dv/dt = 61.53/v - 0.045 - 0.0001358v^2
Solving the above 2 differential Equations will gives us the Motor Characterstics & WOT Conditions.
Case 2 : With 5% increase in Vehicle Parameters:-
0.95*37*140 = (0.00504*1575*9.81)+(0.625*0.19*1.8v^2)+(1654)dv/dt
4921 = 77.87 + 0.214v^2 + 1654 dv/dt
4843.13 = 0.214v^2 + 1654 dv/dt
dv/dt = 2.93 - 0.000129v^2
0.95*37*2757/v = 77.87 + 0.214v^2 +(1654)dv/dt
96908/v = 77.87 + 0.214v^2 + 1654 dv/dt
dv/dt = 58.59/v - 0.047 - 0.000129v^2
MATLAB program to evaluate WOT conditions :-
% WOT CONDITION OF GM EV1 CAR
% Time period(sec) in 01sec steps
t1 = linspace(0, 100, 1001);
% Velocity matrix(m/sec)
v1 = zeros(1, 1001);
% 0.1 second time step
dt = 0.1;
for i = 1:1000
if v1(i) < 19.8 % Torque constant below this critical point
v1(i+1) = v1(i) + dt*(3.08 - (0.0001358*(v1(i)^2)));
elseif v1(i) > 36.1 % Top Speed of the vehicle
v1(i+1) = v1(i);
else
v1(i+1) = v1(i)+dt*(-0.045+(61.53/v1(i))-(0.0001358*(v1(i)^2)));
end
end
v1 = v1*3.6; % mps to kph
% CASE-2, with 5% increase in the vehicle parameters
% Time period(sec) in 01sec steps
t2 = linspace(0, 100, 1001);
% Velocity matrix(m/sec)
v2 = zeros(1, 1001);
% 0.1 second time step
dt = 0.1;
for j = 1:1000
if v2(j) < 19.8 % Torque constant below this critical point
v2(j+1) = v2(j) + dt*(2.93 - (0.000129*(v2(j)^2)));
elseif v2(j) > 36.1 % Top Speed of the vehicle
v2(j+1) = v2(j);
else
v2(j+1) = v2(j)+dt*(-0.047+(58.59/v2(j))-(0.000129*(v2(j)^2)));
end
end
v2 = v2*3.6; % mps to kph
% Now Calculating acceleration time for both cases
for n = 1:1000
if v1(n) == v1(n+1)
fprintf('Acceleartion Time for CASE-1 is %f', t1(n));
fprintf('n')
break
end
end
for n = 1:1000
if v2(n) == v2(n+1)
fprintf('Acceleartion Time for CASE-2 is %f', t2(n));
fprintf('n')
break
end
end
% Plotting our Desired Result
plot(t1, v1, t2, v2)
axis([0 30 0 150])
xlabel('Time(sec)')
ylabel('velocity(kmph)')
grid on
legend('With Initial vehicle Parameters','With 5% Increase in vehicle Parameters')
title('WOT CONDITION OF THE GM EV1 CAR')
POWERTRAIN BLOCKSET :-
Features of blockset:-
Figure.1 Powertrain library blocks
Figure.2 Pre-build reference application examples
The Powertrain Blockset are the set of fully assembled reference applications, including gasoline, diesel, and hybrid and electric vehicle systems, as a starting point for your powertrain model.
1. What is the difference between mapped and dynamic model of engine, motor and generator? How can you change model type?
Mapped and Dynamic subsystem of Electric Motor/Generator
Mapped Model:
Dyanamic Model:
Steps to Change the Model Type in the Simulink blocks :-
2. How does the HEV model calculate miles per gallon? Which factors are considered to model fuel flow?
Simulink model calculating miles per gallon as result output for pre-built hybrid models:-
For the model for calculating fuel economy is shown below in the figure in liters per 100 km (miles per gallon ) . It takes fuel flow rate, vehicle speed and battery power(for electric system) as input for visualization of the fuel economy.
It takes the speed from the drive cycle, battery power from soc of battery and fuel flow from engine output to calculate the fuel efficiency.
if we see inside the mask the simulink calculator model look like (see below)
Vehicle speed(1) & Fuel flow(2) :-
Battery Power(3) :-
Calculating Miles per Gallon(4) :-
Simulate HEV and EV WOT condition using Powertrain Blockset and Change the grade and wind velocity in the environment block. Comment and Compare the results
HYBRID ELECTRIC VEHICLE :-
A hybrid electric vehicle (HEV) is a type of hybrid vehicle that combines a conventional internal combustion engine (ICE) system with an electric propulsion system (hybrid vehicle drivetrain). The presence of the electric powertrain is intended to achieve either better fuel economy than a conventional vehicle or better performance. There is a variety of HEV types and the degree to which each function as an electric vehicle (EV) also varies.
Modern HEVs make use of efficiency-improving technologies such as regenerative brakes which convert the vehicle's kinetic energy to electric energy, which is stored in a battery or supercapacitor. Some varieties of HEV use an internal combustion engine to turn an electrical generator, which either recharges the vehicle's batteries or directly powers its electric drive motors; this combination is known as a motor–generator. Many HEVs reduce idle emissions by shutting down the engine at idle and restarting it when needed; this is known as a start-stop system. A hybrid-electric produces fewer tailpipe emissions than a comparably sized gasoline car since the hybrid's gasoline engine is usually smaller than that of a gasoline-powered vehicle. If the engine is not used to drive the car directly, it can be geared to run at maximum efficiency, further improving fuel economy.
In the powertrain blockset we will select the hybrid electric vehicle and this is the simulink model and Input the desired Parameters as our wish and Simulate the HEV.
HEV Simulation 1 :-
Now, we will select the WOT drive cycle for WOT condition using drive cycle source
We will change the WOT Parameters for our desired output as shown below.
The Total cycle time = 100 seconds
The Top speed of this cycle = 80 mph
Time to start deceleration = 50seconds
The Grade angle = 0 degrees
The wind velocity = 0 m/s
Result :-
Plot 1 (Velocity of the vehicle with respect to the Drive cycle data with the Time scale on the x axis) :-
The acceleration time to reach 80 mph = 16.7 seconds (WOT Condition)
The deceleration time from 80 to minimum = 6.2 seconds
Plot 2 (The changes in speed of the Engine,motor and Generator in Rpm) :-
Peak Engine speed = 4780 Rpm
Peak Motor speed = 9497 Rpm
Peak Generator speed = 13690 Rpm
Plot 3 (Torque characteristics and its changes of engine,motor and generator in (Nm)) :-
Peak Engine torque = 138.7 Nm
Peak Motor torque = 206.7 Nm
Peak Generator torque = 42.2 Nm
Plot 4 (Battery Current values (A) and its changes for various acceleration inputs) :-
The peak current discharge from the battery = 163.5 A
The peak current charging to the battery = - 150.86 A
Plot 5 (Battery state of charge SOC (%) ) :-
The state of charge decreased from 60% to 39.8% of charge in a time period of 49.3 seconds in WOT condition.
Plot 6 (Fuel Economy as Mile per Gallons) :-
The maximum miles that the car can run per gallon of fuel equivalent = 46 Miles.
HEV Simulation 2 :-
The simulation is done for Hybrid electric vehicle with Wide open Throttle Drive cycle.
The Total cycle time = 100 seconds
The Top speed of this cycle = 80 mph
Time to start deceleration = 50 seconds
The Grade angle = 8 Degrees
The wind velocity = 10 m/s
Results:-
Plot 1 (Velocity of the vehicle with respect to the Drive cycle data with the Time scale on the x axis) :-
The acceleration time to reach 67.2 mph = 44.5 seconds (WOT Condition)
The deceleration time from 80 to minimum = 5.06 seconds
Plot 2 (The changes in speed of the Engine,motor and Generator in Rpm) :-
Peak Engine speed = 4676 Rpm
Peak Motor speed = 8103.5 Rpm
Peak Generator speed = 12858.5 Rpm
Plot 3 (Torque characteristics and its changes of engine,motor and generator in (Nm)) :-
Peak Engine torque = 139.6 Nm
Peak Motor torque = 206.4 Nm
Peak Generator torque = 48.2 Nm
Plot 4 (Battery Current values (A) and its changes for various acceleration inputs) :-
The peak current discharge from the battery = 167.6 A
The peak current charging to the battery = - 152.46 A
Plot 5 (Battery state of charge SOC (%) ) :-
The state of charge decreased from 60% to 25.98% of charge in a time period of 49.3 seconds in WOT condition.
Plot 6 (Fuel Economy as Mile per Gallons) :-
The maximum miles that the car can run per gallon of fuel equivalent = 17.93 Miles.
PURE ELECTRIC VEHICLE :-
A battery electric vehicle (BEV), pure electric vehicle, only-electric vehicle or all-electric vehicle is a type of electric vehicle (EV) that exclusively uses chemical energy stored in rechargeable battery packs, with no secondary source of propulsion (e.g. hydrogen fuel cell, internal combustion engine, etc.). BEVs use electric motors and motor controllers instead of internal combustion engines (ICEs) for propulsion. They derive all power from battery packs and thus have no internal combustion engine, fuel cell, or fuel tank. BEVs include – but are not limited to – motorcycles, bicycles, scooters, skateboards, railcars, watercraft, forklifts, buses, trucks, and cars.
The concept of battery electric vehicles is to use charged batteries on board vehicles for propulsion. Battery electric cars are becoming more and more attractive with the higher oil prices and the advancement of new battery technology (Lithium Ion) that have higher power and energy density (i.e., greater possible acceleration and more range with fewer batteries).[10] compared to older battery types such as lead-acid batteries. Lithium-ion batteries for example now have an energy density of 0.9–2.63 MJ/L whereas lead-acid batteries had an energy density of 0.36 MJ/L (so 2.5 to 7.3x higher). There is still a long way to go if comparing it to petroleum-based fuels and biofuels however (gasoline having an energy density of 34.2 MJ/L -38x to 12.92x higher- and ethanol having an energy of 24 MJ/L -26x to 9.12x higher-).
In the powertrain blockset we will select the Electric vehicle and this is the simulink model and Input the desired Parameters as our wish and Simulate the HEV and we change the drive cycle to WOT Drive cycle to have WOT conditions.
Now we will comparing both the Pure electric and Hybric electric vehicle with the given conditions in a simulation to observe the behaviour of both the type.
Simulation :-
The simulation is done for Electric vehicle with Wide open Throttle Drive cycle.
The Total cycle time = 100 seconds
The Top speed of this cycle = 80 mph
Time to start deceleration = 50 seconds
The Grade angle = 8 Degrees
The wind velocity = 10 m/s.
Results:-
Plot 1 (Velocity of the vehicle with respect to the Drive cycle data with the Time scale on the x axis) :-
The acceleration time to reach 58.9 mph = 48.8 seconds (WOT Condition)
The deceleration time from 80 to minimum = 4.63 seconds
Plot 2 (The changes in speed of the motor in Rpm) :-
Peak Motor speed = 6254 Rpm
Plot 3 (Torque characteristics and its changes motor in (Nm)) :-
Peak Motor torque = 280 Nm
Plot 4 (Battery Current values (A) and its changes for various acceleration inputs) :-
The peak current discharge from the battery = 225.8 A
The peak current charging to the battery = - 163.7 A
Plot 5 (Battery state of charge SOC (%) ) :-
The state of charge decreased from 80% to 75.5% of charge in a time period of 49 seconds in WOT condition.
Plot 6 (Fuel Economy as Mile per Gallons) :-
Here there is no fuel in pure electric vehicle however this gives equivalent battery enegy required that of the fuel energy,and calculates the Fuel efficiency.
The maximum miles that the car can run per gallon of fuel equivalent = 21.45 Miles.
OBSERVATIONS ( Comparison of Pure electric vs Hybrid vehicle with same load conditions) :-
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Wide-Open throttle (WOT) of an electric vehicle(GM EV1 car) and Using powertrain blocksets in the MATLAB to differentiate the WOT conditions of the HEV and EV
AIM :- To find the Wide-Open throttle (WOT) of an electric vehicle(GM EV1 car) and Using powertrain bolcksets in the MATLAB to diffrerntiate the WOT conditions of the HEV and EV. OBJECTIVE :- Analyse the WOT Condition of GM EV1 car with comparison with initial vehicle…
29 Oct 2020 08:39 AM IST
Study the different DC Motor Control Systems and Analysing optimum DC drive control system
AIM: - Study the different DC Motor Control Systems and Analysing optimum DC drive control system OBJECTIVE: - Overview on the Power semiconductor devices anf there conversion. Speed Control of DC Motor using BJT H-Bridge and its modelling and Analysing Simulation the results such that current didn't Shoot…
26 Sep 2020 10:53 AM IST
Simulating Vehicle Dynamics for designing an Electric Vehicle from an Conventional Vehicle and Calculating Power and Energy Requirements for Different dynamics conditions
AIM :- To convert an conventional vehicle to an electric vehicle and simulate its dynamic system to design an appropriate EV using MATLAB and SIMULINK OBJECTIVE :- Analyse an conventional vehicle to convert…
15 Sep 2020 06:56 AM IST
Analyse the vehicle range and performance using Advanced Vehicle Simulator Tool (ADVISOR Tool) in MATLAB and Simulink
AIM :- To Analyse the vehicle range and performance using Advanced Vehicle Simulator Tool (ADVISOR Tool) in MATLAB and Simulink OBJECTIVE :- To Study the Range of an electric vehicle using FTP drive cycle using ADVISOR tool. To Study the battery capacity of the electric vehicle and battery capacity…
15 Sep 2020 06:54 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.