All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
1) How is the induction motor operation similar to the clutch? Clutch operation Induction Motor operation Mechanical device that engages and disengages power transmission between driving and driven shaft Driving shaft is attached to the motor while the driven shaft produces the output power to move the wheels…
Parth Maheshwari
updated on 10 Feb 2021
1) How is the induction motor operation similar to the clutch?
Clutch operation | Induction Motor operation |
|
|
![]() |
|
2) Calculate the starting time of a drive with the following parameters:
J = 10 kg-m2, Tm = 15 + 0.5wm, Tl = 5+0.6ωm
The "starting time" of a motor drive refers to the time it takes to reach steady state operation. It could be during braking, acceleration, deceleration, etc.
At steady state: Tm=TL
15+0.5ωm=5+0.6ωm
10=0.1ωm --> ωm=100radsec
It is to be realized that the drive starts off in a transient state and reaches steady state at ωm=100 (calculated above). Hence, a safe estimation would be that the transient state is over when 95% of the change in speed has occured. Beyond this point, the motor can be considered fully operational at steady state, where Tm and TL counterbalance each other to keep the vehicle moving at constant speed. Hence, it is determined that there is net torque acting on the vehicle until ωm=95, which can be used as the upper bound to calculate the starting time.
T=Tm−TL
T=Jdωmdt
10−0.1ωm=10dωmdt --> 1−0.01ωm=dωmdt
∫dt=∫11−0.01ωmdωm
t = ∫95011−0.01ωmdωm
t = [−100ln|1−0.01ωm|]950
t = 299.57 seconds
3) A drive has following equations for motor and load torques:
Tm = (1+2ωm), Tl = 3 √ωm
Obtain the equilibrium points and determine the stability
As steady state is reached, the equilibrium or operational points can be found by Tm=TL:
1+2ωm=3√ωm -----> ωm=0.25andωm=1
Condition for stability:
dTLdωm−dTmdωm>0
If dω>0 then TL>Tm -------- When the change in speed is positive, the load torque needs to be greater so that it can prevent the speed from reaching an extremely high value (which would happen if motor torque exceeded load torque) and losing its stability.
If dω<0 then Tm>TL -------- When the change in speed in negative, the motor torque needs to be greater so that it can prevent the car from coming to a complete stop (retardation), which would happen if the motor torque was insufficient to support the load torque when the speed of the car is going down. This would also be unstable.
d(3√ωm)dωm−d(1+2ωm)dωm>0
32√ωm−2>0
When ωm=0.25 ----> stable
When ωm=1 ----> unstable
Code:
clear all; close all; clc
Wm = linspace(0,2);
%---------governing equations--------
Tm = 1 + 2.*Wm; %motor torque
Tl = 3.*sqrt(Wm); %load torque
plot(Wm,Tm,'linew',1.5,'color','r')
hold on
plot(Wm,Tl, 'linew',1.5,'color','b')
axis([0 2 0 5])
xlabel('Motor speed (rad/sec)')
ylabel('Motor torque (Nm)')
[xout,yout] = polyxpoly(Wm,Tm,Wm,Tl);
plot(xout,yout,'k.','markersize',18)
text(0.23,1.3,'Stable','fontsize',11)
text(0.95,2.8,'Unstable','fontsize',11)
legend('Motor torque','Load torque')
grid on
title('Speed-torque relation of an Induction Motor drive')
Output:
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...
Thermal Modeling of 10S1P Battery Pack
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/SIMULINK All types of electric vehicles, whether BEVs, HEVs, or PHEVs, contain a battery pack that powers the vehicle. Lithium-ion batteries…
30 Mar 2022 02:25 PM IST
Parsing NASA's thermodynamic data file using MATLAB
Aim: To parse and create value out of NASA's thermodynamic data Objectives: Extract the 14 coefficients and calculate specific heat (Cp), enthalpy (H), and entropy (S) for all the species in the given data Calculate the molecular weight of each species and display it in the command window Plot the Cp, H, and S with respect…
02 Feb 2022 06:21 PM IST
Design of an Electric Vehicle - Tesla Model 3 (PMDC motor)
OBJECTIVES: Design and simulate the Tesla Model 3 Standard Range RWD that uses a PMDC motor Introduction Earth is heading for a disaster. Humanity is having a material and irreversible impact on Earth - we've destroyed half of the world's forests and will soon wipe out most of the rest. The human and economic consequences…
05 Jan 2022 09:30 PM IST
Design of an Electric Vehicle - Tesla Model 3 (PMSM motor)
OBJECTIVES: Design and simulate the Tesla Model 3 Standard Range RWD that uses a PMSM motor I've previously designed a Tesla Model 3 using a PMDC motor (here), even though in actuality the Tesla Model 3 uses an Interior Permanent Magnet Synchronous Motor (IPMSM). The fact that a PMDC motor and its control works…
05 Jan 2022 09:30 PM 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.