All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
1) How induction motor operation is similar to the clutch? Working of Clutch: In a manual transmission car, a clutch is a component that is needed to change the gear to transition from one-speed range to another in a smooth manner. When the driver wants to change the gear in order to achieve a higher or lower speed,…
Palukury Bereshith Jacob Alapan
updated on 14 Feb 2021
1) How induction motor operation is similar to the clutch?
Working of Clutch:
Induction Motor & Clutch:
ω2=ω1(1−s)
where,
driving shaft speed = ω1
driven shaft speed = ω2
slip = s
Slip,s=Ns−NrNs
where,
Synchronous speed = Ns
Rotor speed = Nr
slip = s
This can be written as,
Nr=Ns(1−s)
From this, we can see that the clutch and the induction motor have some similarities in their operation.
2) Calculate the starting time of a drive with the following parameters:
To find the steady-state speed, we need to equate the load torque and motor torque equations:
Given:
MATLAB Code:
clear all
close all
clc
t_p = [0 300];
i_c = [0 0];
[t w] = ode45(@functionomega, t_p, i_c);
plot (t,w)
title('w-dot (dw/ dt)');
xlabel('time(sec)');
ylabel('omega (rad /sec)');
grid on
Function Code:
function [w_dot] = functionomega(t,w)
w_dot = 1-0.01*(w);
end
Output Graph:
Tm=Tl
15+(0.5⋅ωm)=5+(0.6⋅ωm)
0.1⋅ωm=100
ωm=100rad/s..........steady state speed
Therefore,
15+0.5⋅ωm=5+0.6⋅ωm⋅dωmdt
dωmdt=10−0.1⋅ωm10
1−0.01⋅ωm
dt=11−0.01⋅ωm⋅dωm
Now, integrating above eqn w.r.to time (t),
The integral limits should be considered from the initial condition of the motor to the end of the transit state after which the motor attains its steady speed. So we consider steady speed. So we consider Wm1 = 0 & Wm2 = 95% of Wm.
ωm=100rad/s
ωm1=0rad/s
ωm2=95rad/s
Therefore,
when t=0, Wm=0
C=0
Applying integral limits,
Therefore, starting time for a given induction motor is t=3s
3) A drive has the following equations for motor and load torques:
Obtain the equilibrium points and determine the stability
To find the equilibrium points and the stability of the drive, we need to first equate the equations of the motor and load torques.
Motor torque:Tm=1+(2⋅ωm)
Load torque: Tl=3⋅√ωm
on equating, we get
1+(2⋅ωm)=3⋅√ωm
squaring on both sides,
4⋅(ωm)2−(5⋅ωm)+1=0
solving,
ωm=0.25
ωm=1
This is verified by a MATLAB program I created which plots the curves of both motor and load's torque-speed characteristics.
MATLAB Code:
clear all
close all
clc
% Motor Speed Array
x = linspace(0, 5, 20);
% Motor Torque
y1 = 1 + 2*x;
% Load Torque
y2 = 3*(x.^0.5);
% Plotting
plot(x, y1, 'linewidth', 2)
hold on
plot(x, y2, 'linewidth', 2)
title('Speed Vs. Torque characteristics')
xlabel('Speed, rpm')
ylabel('Torque, Nm')
legend('Motor Torque', 'Load Torque')
Output Graph:
As we can see from the graph, the 2 curves intersect at 2 points which means there are 2 solutions. The 2 curves intersect exactly at x=0.25rad/s and x=1rad/s.
Now that we have the 2 equilibrium points, we need to determine at what speed the drive is stable.
The stability condition is,
dTldωm−dTmdωm>0
First, we will differentiate the load torque equation:
dTldωm=3⋅0.5⋅ωm0.5−1
dTldωm=32⋅ωm−0.5
on differentiating, we get
dTldωm=2
The differential of the motor torque equation is just a constant, 2.
Therefore, the stability eqn for this is:
(32⋅(ωm)−0.5)−2>0
For this equation, we will substitute the 2 equilibrium points and check if the condition is satisfied.
=32⋅(0.25)−0.5−2
=3
So, when the angular speed is 0.25 rad/s, the stability condition is satisfied, because the difference in the differential between the motor and the load torque is greater than 0. Now we can check when the angular speed is 1.
=32⋅1−0.5−2
=1.5−2
=−0.5
So when the angular speed is 1 rad/s, the stability condition is not satisfied, because the difference in the differential between the motor and the load torque is lesser than 0.
So, the Induction Motor drive is only stable at 0.25rad/s.
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.