All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim: Which types of power converter circuits are employed in electric and hybrid electric vehicles? An Electric Vehicle's powertrain with a 72V battery pack is shown in the diagram below. The duty ratio for acceleration operation is 'd1' and for the braking operation the duty ratio is 'd2'. What is EV steady-state speed…
UmaMaheshwar Reddy
updated on 12 May 2021
Aim:
Induction Versus DC brushless motors by Wally Rippel, Tesla
Explain in brief about author’s perspective.
Procedure:
Power Converter:
Power Conversion is the process of converting electric energy from one form to another. A power converter is an electrical or electro-mechanical device for converting electrical energy. A power converter can convert alternating current (AC) into direct current (DC) and vice versa.
The power converter can be as simple as a transformer or it can be a far more complex system, such as a resonant converter. Power conversion systems often incorporate redundancy and voltage regulation.
Types of Power Converters:
There are four types of converters for Electric and Hybrid Electric Vehicles.
AC-DC(Rectifier):
A rectifier is an electrical device that converts alternating current (AC), which periodically reverses direction, to direct current (DC), which flows in only one direction. The process is known as rectification since it "straightens" the direction of the current.
Physically, rectifiers take several forms, including vacuum tube diodes, wet chemical cells, mercury-arc valves, stacks of copper and selenium oxide plates, semiconductor diodes, silicon-controlled rectifiers, and other silicon-based semiconductor switches.
Uses:
More complex circuitry that performs the opposite function, that is converting DC to AC, is called an inverter.
DC-AC (Inverter):
A power inverter, or inverter, is a power electronic device or circuitry that changes direct current (DC) to alternating current (AC). The resulting AC frequency obtained depends on the particular device employed. Inverters do the opposite of “converters” which were originally large electromechanical devices converting AC to DC.
The input voltage, output voltage and frequency, and overall power handling depend on the specific device or circuitry design. The inverter does not produce any power; the power is provided by the DC source.
A power inverter can be entirely electronic or maybe a combination of mechanical effects (such as a rotary apparatus) and electronic circuitry. Static inverters do not use moving parts in the conversion process.
Power inverters are primarily used in electrical power applications where high currents and voltages are present; circuits that perform the same function for electronic signals, which usually have very low currents and voltages, are called oscillators.
DC-DC:
A DC-to-DC converter is an electronic circuit or electromechanical device that converts a direct current (DC) source from one voltage level to another. It is a type of electric power converter. Power levels range from very low (small batteries) to very high (high-voltage power transmission).
Uses:
Most DC-to-DC converter circuits also regulate the output voltage. Some exceptions include high-efficiency LED power sources, a kind of DC to DC converter that regulates the current through the LEDs, and simple charge pumps that double or triple the output voltage.
DC-to-DC converters designed to maximize the energy harvest for photovoltaic systems and wind turbines are called power optimizers.
Electronic conversions:
Step-down:
A converter where the output voltage is lower than the input voltage (such as a buck converter).
Step-up:
A converter that outputs a voltage higher than the input voltage (such as a boost converter).
Continuous current mode:
Current and thus the magnetic field in the inductive energy storage never reaches zero.
Discontinuous current mode:
Current and thus the magnetic field in the inductive energy storage may reach or cross zero.
Noise:
Unwanted electrical and electromagnetic signal noise, typically switching artifacts.
AC-AC:
A solid-state AC-to-AC converter converts an AC waveform to another AC waveform, where the output voltage and frequency can be set arbitrarily.
AC to AC converters is used for converting the AC waveforms with one particular frequency and magnitude to AC waveform with another frequency at another magnitude. This conversion is mainly required in the case of speed controlling of machines, for low frequency and variable voltage magnitude applications as well. We know that different types of loads work with different types of power supplies like single-phase, three-phase supply, and the supplies can be differentiated based on the voltage and frequency range.
Current Source Inverter Converter:
In this type of inverter, one or two series inductors are used between one or both limbs of the connection between the rectifier and inverter. The rectifier used here is a phase-controlled switching device like Thyristor Bridge.
The other parameters of the electric vehicle are given below,
Motor and Controller Parameters:
Rated Armature voltage= 72 V
Rated armature current= 400 A
R_a= 0.5Ω, KΦ= 0.7 Volt second
Chopper Switching frequency= 400 Hz
What is EV steady-state speed if the duty cycle is 70%?
Given,
Rated Armature Voltage, =72 V
Rated Armature Current, = 400 A
KΦ= 0.7
The Duty Cycle (dc) is given as 70% - 0.7
The Average Voltage is given by the product of the battery voltage and the duty cycle.
Vo=V×dc=72×0.7=50.4 V
The Average voltage is 50.4 V.
The Vehicle Characteristics are given in the form of the equation
Tv=24.7+0.0051ω2_______(1)
The derived formula for the motor speed characteristics
T=V×KΦRa−((KΦ)2Ra×ω)
By substituting the Values,
T=50.4×0.70.5−((0.7)20.5×ω)
T=70.56−0.98ω _________(2)
Compare the Equations 1 and 2, we get
0.0051ω2+0.98ω−45.89=0
By using the Quadratic Equation Formula we get
x=−b±√b2−4ac2a
ω=−0.98±√0.982−4(0.0051×(−45.89))2(0.0051)
ω=−0.98±1.3770.0102
We get two solutions for this angular speed
ω=38.92rad/sec or ω=−231.078rad/sec
We can consider only the positive value considering the positive value.
% Input
V_a= 72; % Rated Armature Voltage in Volts
I_a= 400; % Rated Armature Current in Amps
R_a= 0.5; % Rated Armature Resistance in Ohms
K_Phi= 0.7; % Proportionality Constant
d_c= 0.7; % Duty Cycle
speed = linspace(0,300,301);
% For the vehicle and Motor torque
for i=1:length(speed)
T_v(i)= 24.7+(0.0051*speed(i)^2);
T_m(i)= (((K_Phi*V_a)/R_a)-(((K_Phi^2)/R_a)*speed(i)));
end
% Motor Torque by using the equation 70.56-0.98*w
Motor_Torque = 70.56-0.98.*speed;
%Plotting of Graphs
figure()
plot(T_v, speed)
hold on
plot (T_m, speed)
hold on
plot (Motor_Torque, speed)
xlabel('Angular Speed (rad/sec)');
ylabel('Torque (N-m)');
legend('Vehicle Torque','Motor Torque','Motor Torque at steady state');
saveas(gcf,'speed vs torque.png');
Code:
clear;clc;
% Speed Torque Characteristics of DC motor
% Input
V_a= 72; % Rated Armature Voltage in Volts
I_a= 400; % Rated Armature Current in Amps
R_a= 0.5; % Rated Armature Resistance in Ohms
K_Phi= 0.7; % Proportionality Constant
d_c= 0.7; % Duty Cycle
speed = linspace(0,300,301);
% For the vehicle and Motor torque
for i=1:length(speed)
T_v(i)= 24.7+(0.0051*speed(i)^2);
T_m(i)= (((K_Phi*V_a)/R_a)-(((K_Phi^2)/R_a)*speed(i)));
end
% Motor Torque by using the equation 70.56-0.98*w
Motor_Torque = 70.56-0.98.*speed;
%Plotting of Graphs
figure()
plot(T_v, speed)
hold on
plot (T_m, speed)
hold on
plot (Motor_Torque, speed)
xlabel('Angular Speed (rad/sec)');
ylabel('Torque (N-m)');
legend('Vehicle Torque','Motor Torque','Motor Torque at steady state');
saveas(gcf,'speed vs torque.png');
ω=VKΦ−(Ra(KΦ)2×T)
%Inputs
angular_speed = linspace(0,300,100); % Motor Speed in rad/sec
E_b= 1; % Back EMF
speed= angular_speed*(60/2*pi); % Motor Speed in RPM
W= input('Enter the Speed Constant of Motor value: ');
V= input('Enter the Voltage Supply value: ');
R_a= input('Enter the Rated Armature Resistance value: ');
K_PHI= (E_b/W)*(60/(2*pi)); % Calculating the K-Phi value and converting it to RPM.
%Torque Characteristics
T= (((V*K_PHI)/R_a)-((((K_PHI)^2)/R_a).*angular_speed));
%Plotting of graphs
figure()
plot(speed,T)
title('Torque Speed Characteristics of DC Motor');
xlabel('Speed (RPM)');
ylabel('Torque (N-m)');
saveas(gcf,'torque vs Speed graph.png');
Code:
clear;clc;
% Torque-Speed Characteristics of DC motor
%Inputs
angular_speed = linspace(0,300,100); % Motor Speed in rad/sec
E_b= 1; % Back EMF
speed= angular_speed*(60/2*pi); % Motor Speed in RPM
W= input('Enter the Speed Constant of Motor value: ');
V= input('Enter the Voltage Supply value: ');
R_a= input('Enter the Rated Armature Resistance value: ');
K_PHI= (E_b/W)*(60/(2*pi)); % Calculating the K-Phi value and converting it to RPM.
%Torque Characteristics
T= (((V*K_PHI)/R_a)-((((K_PHI)^2)/R_a).*angular_speed));
%Plotting of graphs
figure()
plot(speed,T)
title('Torque Speed Characteristics of DC Motor');
xlabel('Speed (RPM)');
ylabel('Torque (N-m)');
saveas(gcf,'torque vs Speed graph.png');
Induction Versus DC brushless motors by Wally Rippel, Tesla
According to the blog ‘Induction vs DC Brushless motors by Wally Rippel, Tesla’, the writer states the changes in the world years ago and the latest technological trends that are happening. He then explains about the DC Brushless motors and Induction motors.
DC Brushless Machines:
According to him, the rotor has two or more permanent magnets that generate a DC magnetic field. This magnetic field will enter the stator core which interacts with the currents flowing in the windings to produce an interaction between rotor and stator. It needs a proper flow of current into the rotor and stator if it’s not connected properly the current will not generate and the torque decreases. During the Electric and mechanical conversion when the rotor is rotating, the magnitude and polarity of the stator current will continuously vary such that the torque remains constant and optimal efficiency is achieved.
Induction Motor:
The 3-phase induction motor was invented by Nikola Tesla sometime before 1889. The stators for the 3-phase induction motor and the DC brushless motor are virtually identical. Both have three sets of distributed windings that are inserted within the stator core. The essential difference between the two machines is with the rotor.
Unlike the DC brushless rotor, the induction rotor has no magnets. They have just stacked steel laminations with buried peripheral conductors that form a shorted structure. Currents flowing in the stator windings produce a rotating magnetic field that enters the rotor. The frequency of this magnetic field as seen by the rotor is equal to the difference between the applied electrical frequency and the rotational frequency of the rotor itself. An induced voltage exists across the shorted structure that is proportionate to this speed difference between the rotor and electrical frequency. The currents are produced within the rotor conductors that are approximately proportionate to the voltage, hence there’s a speed difference. Finally, these currents interact with the original magnetic field to produce forces.
When a 3-phase induction motor is connected to utility type 3-phase power, torque is produced at the outset. The motor has the ability to start under load. No inverter is needed. The fact that induction motors are directly compatible with conventional utility power is the main reason for their success. In contrast, a brushless DC motor produces no starting torque when directly connected to fixed frequency utility power. They really need the aid of an inverter whose phase is maintained in step with the angular position of the rotor.
Differences:
He then explained that there were only a few brushless drives in the past but now most of the Hybrid Electric Vehicles use it. There’s a difference between brushless and inverter controls is the control. The Dc brushless requires a position sensor but an induction motor requires only a speed sensor.
Less rotor heat is generated in DC brushless drive and Rotor cooling is easier and peak point efficiency is generally higher.
DC brushless drive operates at a power factor of one, whereas the induction drive power factor is 85%.
With the increase in the size of the DC Brushless machine, magnetic losses increase and the part-load efficiency decreases, whereas the induction drives, as the machine size increases, losses don’t grow. During high-performance tasks, induction drives are suitable.
Finally, we can know that the writer says that the DC brushless will dominate the Hybrid Electric Vehicle Markets but the Induction drive will maintain dominance in the High performance in the pure electric vehicles. As of now, there is no winner out of the two as each has its own pros and cons and excels at its own forte.
Result:
Steady State Speed vs Torque Graph:
Workspace:
The Mathematical model for the equation is created in the Simulink block and the plot is shown below.
Command Prompt:
Torque vs Speed Graph:
Workspace:
References:
Many articles helped to gain knowledge on the problems faced most of them are from google.
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...
Project 2 Adaptive Cruise Control
Aim: The main aim is to develop an Adaptive Cruise Control Feature as per the Requirement Document using MATLAB Simulink following Requirement Tagging and & Traceability, Creation of Data Dictionary, Configuration Parameters changes, Model Advisor check & Code Generation. Theory: Adaptive Cruise Control Feature…
07 May 2024 05:39 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
Aim: The main aim is to create the Vehicle Direction Determination logic with the given requirements, using Data Dictionaries in Simulink. Theory: Identifying the direction of the vehicle is one of the important & diverse features in Autonomous driving & Advanced Driver Assistance Features. This particular…
03 May 2024 03:45 PM IST
Week 3.5 - Deriving 4th order approximation of a 2nd order derivative using Taylor Table method
Aim: The main aim is to derive the central difference, skewed right difference and skewed left difference scheme for the fourth-order approximation of the second-order derivative and creating the Taylor table. Theory: Central Differencing Scheme: The central Difference scheme is a finite difference Method that optimizes…
13 Oct 2021 04:14 PM IST
Project 2 Thermal modeling of battery pack
Aim: The aim is as follows: For a 10 cell series lithium-ion battery model, simulate the thermal effects and compare life cycle performance at various temperatures, charge & discharge rates using MATLAB. Lithium-Ion Battery: A lithium-ion battery is a type of rechargeable battery. Lithium-ion batteries are commonly…
09 Sep 2021 06:47 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.