All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
WEEK 11- BRAKING Question 1: For a defined driving cycle, calculate the energy required for braking. Answer: Under the condition of braking, some amount of energy is required to do the same as that of energy required for accelerating the vehicle. Hence to calculate energy, we use the acceleration energy equarion,…
Vyshakh Raju
updated on 21 May 2020
WEEK 11- BRAKING
Question 1:
For a defined driving cycle, calculate the energy required for braking.
Answer:
Under the condition of braking, some amount of energy is required to do the same as that of energy required for accelerating the vehicle. Hence to calculate energy, we use the acceleration energy equarion,
Calculating the energy required for braking for a defined drive cycle:
https://docs.google.com/spreadsheets/d/13nHLen4RWr-UipOxB3stwWwatrf3POpL5MuRZqXd8PE/edit?usp=sharing
From the drive cycle, there are 4 different situations of decceleration of which the energy has to be calculated.
First Braking : 24 - 15km/hr in 4 seconds
Second Braking : 35 - 30km/hr in 1 second
Third braking : 45 - 23 km/hr in 5 seconds
Fourth braking : 63 - 5 km/hr in 7 seconds
Using Excel Calculator:
Solution:
Total Braking energy Required = 0.114 kWh = 413KJ
Question 2:
Why electric motor can’t develop braking torque at high speed similar to starting? How electric and mechanical brakes are coordinated?
Answer:
Regenerative braking allows electric vehicles to use the motor as a generator when the brakes are applied, to pump vehicle energy from the brakes into an energy storage device. Regenerative braking is an effective approach to extend the driving range of an EV.
Electric and Mechanical brakes Co-ordination:
The regenerative braking system may not be used under many conditions, such as with a high State of Charge (SOC) or a high temperature of the battery. In these cases, the mechanical braking system works to cover the required total braking torque.
Thus, cooperation between the mechanical braking system and the regenerative braking system is a main part of the design of the EV braking control strategy and is known as torque blending.
There are 2 different control strategies for Braking Combinations:
Series Control Strategy:
Parallel Control Strategy:
Application of Braking Combination : EDIB (Electric Driven Intelligent Brake) in NISSAN LEAF
Question 4:
Make a MATLAB program which plots contour of given motor speed, torque and efficiency values.
Answer:
Motor Speed - 0 - 1000rpm
Motor Torque - 0 - 700 N.m
Motor Constants:
MATLAB Code:
clear all
close all
clc
%Defining Speed & Torque
speed = linspace(0,1000,300);
torque = linspace(0,700,300);
%Defining Motor Constants
kc = 0.1; % Copper Loss constant
ki = 0.001; % Iron Loss Constant
kw = 0.0001; % Windage Loss Constant
Cm = 25; % Motor Loss Constant
%obtaining 2-D Grid fpr Speed & Torque
[X,Y] = meshgrid(speed,torque);
Powerout = X.*Y; % Calculating output power
Totalloss = ((Y.^2).*kc)+ (ki.*X)+((X.^3).*kw)+Cm; %Total Loss Calculation
inputpower = Powerout + Totalloss; % Calculating input power
Z = Powerout./inputpower; % Efficiency Calculation
%Defining Efficiency levels for contouring
EL = [0.70,0.72,0.75,0.77,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.95];
%Plotting the Efficiency wrt speed & Torque
contourf(X,Y,Z,EL)
colorbar
xlabel('Speed (rpm)');
ylabel('Torque (N.m)');
title(' Efficiency Contour');
OUTPUT:
The contour plot for a motor with defined constants are plotted in the defined Speed Vs Torque Region based on efficiency. It can be seen that for increasing speed and torque, the efficiency of the motor gradually decreases. The level of efficiency is depicted using colorbar.
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...
Radar Mast & Final Assembly of Yacht
Modelling a Yacht with Solidworks OBJECTIVE: To model different parts of a Yacht To assemble each parts of yacht to create the full model INTRODUCTION: This project is focused in partwise modelling of the Yacht and then assembly of the parts together inorder to obtain the full Yacht model DESIGN METHODOLOGY:…
14 Jun 2021 10:52 AM IST
Photo Realistic Rendering
MODELLING OF AN RT66 AMERICAN CHOPPER OBJECTIVE: To model each parts of an RT66 Chopper Assemble the each parts of Chopper to obtain full Scale model of RT66 Chopper Render the Chopper model to a realistic View INTRODUCTION: This projuct is focused on modelling of an American Chopper model part wise,…
07 Jun 2021 04:07 PM IST
Advanced Sheet Metal Design Using NX Cad Challenge_7_ Metal bracket-II
DESIGNING A METAL BRACKET WITH NX SHEET METAL APPLICATION OBJECTIVE: To create a Metal bracket with respect to the given 2-D Drawing with NX sheet Metal Application. INTRODUCTION: This work focuses on designing a Metal Bracket with NX Sheet metal Application with respect to a given 2-D Drawing for dimensions.…
30 May 2021 01:35 PM IST
Advanced Sheet Metal Design Using NX Cad Challenge_6_Bracket
BRACKET DESIGN USING NX SHEET METAL APPLICATION OBJECTIVE: To design a Bracket with the specified dimensions and contour using NX CAD Sheet Metal Application. INTRODUCTION: This work is focused to design and create a Bracket as per specified dimensions and contour in the 2-D drawing. DESIGN METHODOLOGY: PROCEDURE:…
30 May 2021 06:34 AM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.