All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
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…
Palukury Bereshith Jacob Alapan
updated on 15 Feb 2021
1) For a defined driving cycle, calculate the energy required for braking.
MATLAB Code:
% Brake Energy Calculation For a Drive Cycle
clear all
close all
clc
load drivecycle.txt % drive cycle file
time = drivecycle(:,1); % assigning the first coloumn of the drive cycle as time values in sec
speed = drivecycle(:,2); % assigning the second coloumn of the drive cycle as speed values in m/sec
figure
plot(time,speed, 'Color','r') % drive cycle graphically
title('DRIVE CYCLE') % title
hold on
xlabel('time (sec)') % labelling x axis
ylabel('speed (m/sec)') % labelling y axis
grid on % making grids ON
kerb_weight = 1400; % vehicle mass in Kg
brake_energy = (0.5.*kerb_weight.*speed.^2)./1000; % braking energy calculation
figure
plot(time,brake_energy) % plotting brake energy vs time graph
grid on % making grids ON
colorbar
title('BRAKE ENERGY vs TIME')
xlabel('time (sec)') % labelling x axis
ylabel('brake energy (KJ)') % labelling y axis
Workspace:
Output Graph:
2) Why electric motor can’t develop braking torque at a high speed similar to starting? How electric and mechanical brakes are coordinated?
Why electric motor can’t develop braking torque at a high speed similar to starting?
Types of Torque:
Starting torque also referred to as locked rotor torque, is the torque that the motor develops each time it is started at rated voltage and frequency. It is the torque produced when power is applied to a motor at rest, i.e. when the motor is energized at full voltage and the shaft is locked in place. This is the torque used to start accelerating the load. The starting torque is indicated on the torque/speed curve shown above.
This term is used for the lowest point on the torque-speed curve for an electric motor which is accelerating a load up to full speed. As the motor picks up speed, torque decreases slightly to the lowest point shown on the curve above. The torque available at this point is called pull-up torque.
Reasons why the torque actual is NOT the real torque:
Maximum achievable torque depending on motor speed:
To prevent this:
How electric and mechanical brakes are coordinated?
Types of Brakes:
Mechanical:
Electrical:
Mechanical Braking System:
Mechanical braking mostly used in scooters, motor vehicles, and motorcycles where small power is required. It is essential in manufacturing power transmission applications, material handling, etc. It delivers forces to the axle or a wheel in order to stop motion. It helps to reduce the speed of the system slowly by the mechanical process when compared to electrical braking. The working of a mechanical brake depends on the pedal. When the pedal is pressed, the brake shoes are pushed outwards and rotates against the drum which is connected to the wheels. Hence the machine or vehicle gets slow down and stopped. And when the pedal is released, it goes to a normal position due to the pullback action of spring shoes.
Electrical Braking System:
Electrical braking is used to reduce the speed of the machine depending on flux and torque. This type of braking is mainly used for functional braking to control the speed of the machine. It is easy to handle and comfortable. But it cannot be used for emergency braking and parking braking. The working of electrical braking depends on the electromagnetic force (EMF) acting on the brake shoes. The battery is used to generate an electric current which helps to energize the electromagnet mounted on the backplate. This results in activating the cam and expanding the brake shoes. Hence the vehicle or machine is stopped by braking the wheel.
Comparison between Electrical and Mechanical Braking:
3) Make a MATLAB program that plots the contour of given motor speed, torque, and efficiency values. Attach the code as a .m file attach a screenshot of all the plots.
MATLAB Code:
% PROGRAM TO PLOT CONTOUR LINES FOR THE DEFINED MOTOR SPEED, TORQUE AND EFFICIENCY
close all
clear all
clc
%SPEED & TORQUE ARRAY
w = linspace(1,1250,250); % SPEED ARRAY
T = linspace(1,100,250); % TORQUE ARRAY
%MESHGRID
[X,Y] = meshgrid(w,T); % 2D COORDINATES FOR SPEED & TORQUE
%LOSS CONSTANTS
kc = 0.2; % COPPER CONSTANT
ki = 0.008; % IRON CONSTANT
kw = 0.00001; % WINDAGE CONSTANT
const = 20; % CONDUCTION CONSTANT
%MOTOR LOSS CALCULATIONS
l_copper = (Y.^2)*kc; % COPPER LOSS
l_iron = (X*ki); % IRON LOSS
l_windage = (X.^3)*kw; % WINDAGE LOSS
%OUTPUT POWER,INPUT POWER & EFFICICENCY CALCULATIONS
pout = X.*Y; % OUTPUT POWER
pin = pout + l_copper + l_iron + l_windage + const; % OUTPUT POWER
eff = pout./pin % EFFICICNCY CALCULATION
%EFFICIENCY VALUES FOR CONTOUR
V = [0.70,0.80,0.85,0.90,0.91,0.92,0.925,0.93]; % DEFINES AN ARRAY FOR EFFICIENCY THE CONTOUR LIMITS
%COMMANDS FOR READABILITY
figure
box off % REMOVES THE BOX OUTLINE AROUND THE AXES
grid OFF % GRIDS ARE NOT SHOWN
contourf(X,Y,eff,V); % CONTOUR COMMAND
colorbar % COLORBAR FOR BETTER UNDERSTANDING
xlabel('Speed rad/sec') % X AXIS IS LABELLED
ylabel('Torque N/m') % Y AXIS IS LABELLED
zlabel('Efficiency') % Z AXIS IS LABELLED
title('Torque-Speed curve for the Induction Motor') % TITLE OF THE PLOT
figure
surf(X,Y,eff) % SURFACE COMMAND
colorbar % COLORBAR FOR BETTER UNDERSTANDING
xlabel('Speed rad/sec') % X AXIS IS LABELLED
ylabel('Torque') % Y AXIS IS LABELLED
zlabel('Efficiency') % Z AXIS IS LABELLED
title('Efficiency curve for the Induction Motor') % TITLE OF THE PLOT
Workspace:
Command Window:
Output Graph:
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
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.