All Courses
All Courses
Aim: To study the EV Drivetrain. Objective: To explain the types of power converter circuits that are employed in an electric and hybrid electric vehicle. To solve the problem by data's that are given in the question and determine what is EV steady-state speed if the duty cycle is 70% To explain Induction…
Berry Jacob
updated on 16 Nov 2020
Aim: To study the EV Drivetrain.
Objective:
1. Which types of power converter circuits are employed in electric and hybrid electric vehicles?
Power Electronic Converters:
Depending on the type of function performed, power electronic converters are categorized into the following types.
AC to DC Converters or Rectifiers:
DC to AC Converters or Inverters:
DC/DC converters for electric vehicles:
Non-isolated converters:
The non-isolated converters type is generally used where the voltage needs to be stepped up or down by a relatively small ratio (less than 4:1). Moreover, when there is no problem with the output and input having no dielectric isolation. There are five main types of the converter in this non-isolated group, usually called the buck, boost, buck-boost, and Cuk and charge-pump converters. The buck converter is used for voltage step-down, while the boost converter is used for voltage step-up. The buck-boost and Cuk converters can be used for either step-down or step-up. The charge-pump converter is used for either voltage step-up or voltage inversion, but only in relatively low power applications.
(a) Step-Down (Buck) Converter:
A step-down circuit is used to generate a lower voltage than the input. It is also called a buck. The polarities are the same as in the input.
(b) Step-Up (Boost) Converter:
A step-up circuit is used to generate a higher voltage than the input voltage. It is called a boost. The polarities are the same as in the input.
(c) Buck-Boost Converter:
In the Buck-Boost converter, the output voltage can be increased or decreased than the input voltage. It works to either boosting or bucking the voltage. The common usage of this converter is to reverse the polarity.
(d) Cuk:
This type of converter is similar to the Buck-Boost converter. The difference is its name, named after Slobodan Cuk, the man who created it.
(e) Charge Pump:
This converter is used to step the voltage up or down in applications that have low power.
Isolated converters:
Usually, in this type of converters, a high-frequency transformer is used. In the applications where the output needs to be completely isolated from the input, an isolated converter is necessary. There are many types of converters in this group such as Half-Bridge, Full-Bridge, Fly-back, Forward, and Push-Pull DC/DC converters (Garcia et al., 2005), (Cacciato et al., 2004). All of these converters can be used as bi-directional converters and the ratio of stepping down or stepping up the voltage is high. Some of the types are explained below,
AC-to-AC Converters:
2. To solve the problem by data are given in the question and determine. What is EV steady-state speed if the duty cycle is 70%?
Given Data,
Formula Used:
Frr = μrr.m.g`
Fad = 0.5.ρ.A.v^2.Cd.
Fte = Frr + Fad.
ω = (V/kφ)-(T.R/(kφ)^2).
Solution:
We find the Rolling Resistance Force.
Then we find the Drag Force.
The Total Tractive Force.
We know that.
Substituting in (1).
The vehicle characteristics are given by equation (2) and it is derived.
Which is given in the question.
We know that.
Speed-Torque Equation for D.C Motor.
By rearranging it in the form torque equation.
Substituting the values of voltage, kphi, Armature Resistance, we get.
In the question, it is given that the duty cycle is 70%.
Therefore, we need the find out the voltage at 70% duty cycle.
At the steady-state condition of EV.
Now substituting the values of T_TR and Tm i.e. equation (2) and (3).
Omega value will always be positive, therefore.
Therefore, EV steady state speed if duty cycle is 70% is, ω = 38.90 rad/sec.
MatLab Code:
clear all
close all
clc
%Given Data
%Rated Armature Voltage
V = 72;
%Rated Armature Current
I = 400;
%Armature Resistance
R_a = 0.5;
%Constant Factor
K_phi = 0.7;
%Chopper switching frequency
f = 400;
omega = linspace(0,100,50);
%Vehicle Speed-Torque Characterstics Equation
T_TR = 24.7+(0.0051*omega.^2);
%To Find
%EV Steady state speed for duty cycle 70%
% V = 72*0.7 = 50.4 v
%Motor Speed -Torque Characterstics Equation
%omega = (V/K_phi)-((R_a*T)/K_phi);
%Rearranging the above equation in terms of Torque
T = ((V*K_phi)/R_a)-((omega*K_phi^2/R_a));
T = ((50.4*0.7)/0.5)-((omega*0.7^2)/0.5);
T = 70.56-(0.98*omega);
%Substitute Vehicle & Motor Speed-Torque eqn in for loop to get EV Steady State Speed
for i=0:length(omega)
T_TR = 24.7+(0.0051*(omega.^2));
T = 70.56-(0.98*omega);
end
plot(omega,T_TR)
hold on
plot(omega,T)
axis([0 80 0 80]);
xlabel("Speed(rad/sec)");
ylabel("Torque(Nm)");
legend("Vehicle Speed-Torque Characterstics","Motor Speed_Torque Characterstics")
Output Graph:
3. Induction Versus DC brushless motors by Wally Rippel, Tesla.
DC brushless drives:
Induction motor drives:
Similarities of Induction And DC brushless drives:
Conclusion:
References:
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...
Powertrain for aircraft in runways
1) Search and list out the total weight of various types of aircraft. Weight is the force generated by the gravitational attraction of the earth on the airplane. Each part of the aircraft has a unique weight and mass, and for some problems, it is important to know the distribution.…
18 Feb 2021 11:35 AM IST
Braking
1) For a defined driving cycle, calculate the energy required for braking. We have to create a drive cycle excel file with random data of velocity concerning that time and plotted them to see the drive cycle Then import that file into Matlab. Then to create an array into the command window by entering code braking_energy…
15 Feb 2021 02:33 PM IST
Duty Cycle
1) Why power electronics circuits are efficient? In practice, which types of losses occur in power electronics circuits? Power Electronics: Power electronics involves the study of electronic circuits intended to control the flow of electrical energy. These circuits handle power flow at levels much higher than the individual…
14 Feb 2021 01:28 PM IST
Induction Motor Characteristics - II
1) Discuss the equivalent circuit network of the induction motor MATLAB model. Equivalent circuit of an Induction motor: In the equivalent circuit, R1 represents the resistance of the stator winding and X1 the stator leakage reactance (flux that does not link with the air gap and rotor). Magnetizing reactance required…
14 Feb 2021 09:26 AM IST
Related Courses
0 Hours of Content