All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim: To define driving cycle, calculate the energy required for braking. To define electric motor can’t develop braking torque at high speed similar to starting To Make a MATLAB program which plots contour of given motor speed, torque and efficiency values. Description: 1. For a defined driving…
Praveen Kumar E S
updated on 18 Jan 2022
Aim:
Description:
1. For a defined driving cycle, calculate the energy required for braking.
Here we make the drive cycle data from an excel sheet based on the vehicle speed Vs time. And the excel Sheet drive cycle data is attached below. For our better understanding. we have plotted a graph between time and speed which is m per sec.which is converted into km per hr for our calculation purpose
Mass considered here is 1350
We have plotted the graph between speed vs time and also Energy vs time for our better understanding.
FORMULAS USED TO CALCULATE THE BRAKING POWER:
The Kinetic Energy which assist the Vehicle to move also gets dissipated while the braking is done. Though it depend on multiple parameters on how efficient the braking would be it can be depended upon.
Energy=0.5*m*(Vi-Vf)^2
Deceleration =(Vf - Vi)/Time Taken
Deceleration Force = Mass*Deceleration*Acceleration due to gravity
Deceleration Power=Mass*1.5*((Vf-Vi)^2)/(2*t*1000)
Where
Vi------Initial Velocity: Here the maximum velocity obtained after braking is considered .
Vf------Final Velocity:Here the minimum velocity obtained after braking is considered .
From the above drive cycle, three different situation of deceleration are considered where energy is calculated.
First Braking= 10 - 80Km/hr in 15 sec = 0.4300733
Second Braking= 100 - 20 km/hr in 13 sec =0.648148148
Using Excel, Energy required to calculate braking are shown below
2.Why electric motor can’t develop braking torque at high speed similar to starting? How electric and mechanical brakes are coordinated?
Electric motor cannot develop braking torque at high speed-Reason
Now Speed torque Characteristics of motor is shown below
Electric and Mechanical brakes are coordinated
These are two brake control Strategies namely
Serial regenerative braking:
Parallel regenerative braking:
Electric driven Intelligent Brake developed by Nissan leaf
Technology Functionality:
EBID(Electric driven Intelligent Brake) control the regenerative brake and friction brake to support both of these requirement. Further, it also control the reactive force from the pedal in order to unify the feeling when stepping down on the pedal and in the sense of deceleration.
3.Make MATLAB program which plots contour of given motor speed, torque and efficiency values. Attach the code as a .m file attach a screenshot of all the plots.
In a Motor having a Various types of losses happening inside.The various types of losses are
Copper Losses:
Copper Losses=I²R
Iron Losses:
Iron Losses are nothing but Magnetic Losses,Ki*w
losses could be reduced by:
1) Increasing the length of magnetic structure and thus decreasing flux density.
2) Using thinner laminations in the magnetic structure.
3) Using silicon grades of electrical steel. In general higher the silicon content (up to 4%), the lesser
shall be the magnetic losses.
Iron Losses=Ki*w
Windage Losses:
It is due to mechanical and frictional losses experienced by the motor.It depend upon the shape and size of the motor.The following equation is given by
Windage Losses=Kw*w3
Constant Losses:
Constant losses are these losses that only occur irrespective of the load conditions and whose value will remains constant for a given machine. Mechanical losses, core losses, and shunt field copper losses are to be constant losses.
Total Losses:
The total of above four is said to be total losses
Total Losses=I²R+Ki*w +Constant losses+Kw*w3
MATLAB program which plots contour of given motor speed, torque and efficiency values.
clear all
close all
clc
%Losses Coefficient
K_C=input("Enter the Copper losses constant\n");
K_I=input("Enter the Iron losses constant\n");
K_W=input("Enter the windage losses constant\n");
C_L=input("Constant Loss\n");
% x axis will represent the speed(rad/sec)
X=linspace(1,1000);
% y axis will represent the torque value (N-m
Y=linspace(1,200);
%meshing the speed & torque
[x,y]=meshgrid(X,Y);
%Copper loss
A=K_C.*(y.^2);
%windage loss
B=K_W.*(x.^3);
%Iron loss
C=K_I.*(x);
%output power
O_P=(y.*x);
%Input Power
I_P =A+B+C+O_P+C_L;
%Efficiency
E=O_P./I_P;
%Efficieny plotted with reference of V value
V = [0.60,0.64,0.68,0.70,0.72,0.75,0.77,0.80,0.82,0.85,0.88,0.90,0.92,0.94,0.96];
box off
grid off
contour(x,y,E,V)
xlabel('speed rad/sec')
ylabel('Torque N-m')
title("Speed Torque Charcteristics");
hold on
V = [8000,9000];
contour(x,y,O_P,V)
Explanation for the Program:
Input:
Result:
The above plot shows the Motor Speed-Torque Efficiency Contour Plot. A point is denoted innermost contour line is group of efficiencies which is highest value of the efficiency as 96% because where the height is maximum and another point is denoted outermost contour line is contain group of efficiencies which is the lowest value of efficiency as 70% because where the height reduces.Increasing efficiencie order as going inward and Decreasing efficiency order as going outward. The yellow line shows the 8Kw and 10Kw Power.
Conclusion:
Hence we find out the driving cycle to calculate the energy required for braking and also electric motor can’t develop braking torque at high speed similar to starting finally we Make a MATLAB program which plots contour of given motor speed, torque and efficiency values.
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...
Control Logic of Washing Machine and Gear Shift .
Aim: To Implement control logic of a 'Washing Machine' Using Stateflow as per given Sequence. Make a Simulink chart for the 'Gear Shift' logic as per given conditions. Objective: In Simulink, Implement the Control logic of a Washing Machine using StateFlow as per given input conditions.…
10 Feb 2022 11:26 AM IST
Week 2 Challenge
Question 1:Compare four different types of fuel cells and state their applications. An electrical current is produced via redox reactions occurring on the electrodes of the fuel cell. The most common fuel cell is the hydrogen fuel cell. On the anode, hydrogen molecules, which are fed to the anode from an external supply,…
06 Feb 2022 04:59 PM IST
Project-1: Modelling an electric Car with Li-ion battery
Aim: To Create a MATLAB model of an electric car in which we uses which uses lithium ion battery and suitable motor choosing a suitable blocks from the Powertrain block set and Implement the Vehicle Speed by using PI Controller and generate the accelerator and brake commands. Objectives: …
27 Jan 2022 06:44 AM IST
Final Project: Electric Rickshaw modelling
1.Create a detailed MATLAB model of an electric rickshaw (three wheel passenger vehicle) as per details below: Rear wheels driven by PM brushed type motor Assume efficiency points of motor controller and motor Make an excel sheet of all input and assumed data Results: For any three standard driving cycles show…
27 Jan 2022 05:01 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.