Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 15

Lab : 3 Final

Electro mechanical systems

Name : Ameer said


Registration number : 18pwmct0634
Lab instructor : Eng.Shahbaz khan
Section : A
Department : Mechatronics Engineering
Date : 8/12/2020
Lab: DC motors fundamentals and construction
 Objectives
 The first objective of this lab is to understand the basics DC motors its working principals
its construction.
 To know about the powers its speeds.
 To solve basic problems regarding powers speeds sizes.
 To solve basic examples using the matlab software to simulate and plot the basics of DC
motors.
 Theory of DC motors
Dc motors are dc machines used as motors[ CITATION ste05 \l 1033 ]. The earliest power systems in the
United States were de systems, but by the 1890s ac power systems were clearly winning out over de
systems[ CITATION ste05 \l 1033 ]. Despite this fact, de motors continued to be a significant fraction of
the machinery purchased each year through the 1960s (that fraction has declined in the last 40 years)
[ CITATION ste05 \l 1033 ]. Why were dc motors so common, when dc power systems themselves were
fairly rare? There were several reasons for the continued popularity of dc motors. One was that dc
power systems are still common in cars, trucks, and aircraft. Whe n a vehicle has a dc power system, it
makes sense to consider using dc motors[ CITATION ste05 \l 1033 ]. Another application for dc motors
was a situation in which wide variations in speed are needed. Before the widespread use of power e
lectronic rectifier-inverters, dc motors were unexcelled in speed control applications. Eve n ifno dc
power source were available, solid-state rectifier and chopper circuits were used to create the
necessary dc power, and dc motors were used to provide the desired speed control.[ CITATION ste05 \l
1033 ]

Figure 1 DC motor [ CITATION htt8 \l 1033 ]

 Working principals of DC motors


(Today, induction motors with solid-state drive packages are the preferred choice over dc motors for
most speed control applications. However, there are still some applications where dc motors are
preferred.) DC motors are oft en compared by their speed regul ations.
The basic working principle of a DC motor is: " whenever a current carrying
conductor is placed in a magnetic field, it experiences a mechanical
force". The direction of this force is given by Fleming's left-hand rule and its
magnitude is given by F = BIL.[ CITATION The \l 1033 ]
 Solving examples of DC motors in matlab.
Example 9-2

creating a plot of the torque-speed curve of the shunt dc motor with armature reaction in
% Example 9-2.

% Get the magnetization curve. This file contains the


% three variables if_value, ea_value, and n_0.
% First, initialize the values needed in this program.
v_t = 250; % Terminal voltage (V)
r_f = 50; % Field resistance (ohms)
r_a = 0.06; % Armature resistance (ohms)
i_l = 10:10:300; % Line currents (A)
n_f = 1200; % Number of turns on field
f_ar0 = 840; % Armature reaction @ 200 A (A-t/m)

% Calculate the armature current for each load.


i_a = i_l - v_t / r_f;

% Now calculate the internal generated voltage for


% each armature current.
e_a = v_t - i_a * r_a;

% Calculate the armature reaction MMF for each armature


% current.
f_ar = (i_a / 200) * f_ar0;

% Calculate the effective field current.


i_f = v_t / r_f - f_ar / n_f;

% Calculate the resulting internal generated voltage at


% 1200 r/min by interpolating the motor's magnetization
% curve.
e_a0 = interp1(if_values,ea_values,i_f,'spline');

% Calculate the resulting speed from Equation (9-13).


n = ( e_a ./ e_a0 ) * n_0;

% Calculate the induced torque corresponding to each


% speed from Equations (8-55) and (8-56).
t_ind = e_a .* i_a ./ (n * 2 * pi / 60);

% Plot the torque-speed curve


plot(t_ind,n,'Color','k','LineWidth',2.0);
hold on;
xlabel('\tau_{ind} (N-m)');
ylabel('\itn_{m} \rm\bf(r/min)');
title ('\bfShunt DC motor torque-speed characteristic');
axis([ 0 600 1100 1300]);
grid on;
hold off;
Example 9-3
A constant armature current example 9-3 chapman book DC Motors
create a plot of the speed of a shunt dc
motor as a function of field resistance

Example 9-3
% First, initialize the values needed in this program.
v_t = 250; % Terminal voltage (V)
r_f = 40:1:70; % Field resistance (ohms)
r_a = 0.03; % Armature resistance (ohms)
i_a = 120; % Armature currents (A)
% The approach here is to calculate the e_a0 at the
% reference field current, and then to calculate the
% e_a0 for every field current. The reference speed is
% 1103 r/min, so by knowing the the e_a0 and reference
% speed, we will be able to calculate the speed at the
% other field current.

% Calculate the internal generated voltage at 1200 r/min


% for the reference field current (5 A) by interpolating
% the motor's magnetization curve. The reference speed
% corresponding to this field current is 1103 r/min.
e_a0_ref = interp1(if_values,ea_values,5,'spline');
n_ref = 1103;
% Calculate the field current for each value of field
% resistance.
i_f = v_t ./ r_f;
% Calculate the E_a0 for each field current by
% interpolating the motor's magnetization curve.
e_a0 = interp1(if_values,ea_values,i_f,'spline');
% Calculate the resulting speed from Equation (9-17):
% n2 = (phi1 / phi2) * n1 = (e_a0_1 / e_a0_2 ) * n1
n2 = ( e_a0_ref ./ e_a0 ) * n_ref;

% Plot the speed versus r_f curve.


plot(r_f,n2,'Color','k','LineWidth',2.0);
hold on;
xlabel('Field resistance, \Omega','Fontweight','Bold');
ylabel('\itn_{m} \rm\bf(r/min)','Fontweight','Bold');
title ('Speed vs \itR_{F} \rm\bf for a Shunt DC Motor', ...
'Fontweight','Bold');
axis([40 70 0 1400]);
grid on;
hold off;
Example 9-5
chapman book DC motors
creating a plot of the torque-speed curve of the series dc
motor with armature reaction in
% First, initialize the values needed in this program.
v_t = 250; % Terminal voltage (V)
r_a = 0.08; % Armature + field resistance (ohms)
i_a = 10:10:300; % Armature (line) currents (A)
n_s = 25; % Number of series turns on field

% Calculate the MMF for each load


f = n_s * i_a;

% Calculate the internal generated voltage e_a.


e_a = v_t - i_a * r_a;

% Calculate the resulting internal generated voltage at


% 1200 r/min by interpolating the motor's magnetization
% curve.
e_a0 = interp1(mmf_values,ea_values,f,'spline');

% Calculate the motor's speed from Equation (9-13).


n = (e_a ./ e_a0) * n_0;

% Calculate the induced torque corresponding to each


% speed from Equations (8-55) and (8-56).
t_ind = e_a .* i_a ./ (n * 2 * pi / 60);

% Plot the torque-speed curve


plot(t_ind,n,'Color','k','LineWidth',2.0);
hold on;
xlabel('\tau_{ind} (N-m)','Fontweight','Bold');
ylabel('\itn_{m} \rm\bf(r/min)','Fontweight','Bold');
title ('Series DC Motor Torque-Speed Characteristic', ...
'Fontweight','Bold');
axis([ 0 700 0 5000]);
grid on;
hold off;
 References.

Works Cited

[1 s. j. chapman, Electric machinery fundamentals, newyork usa: McGraw Hill, 2005.


]

[2 [Online]. Available: https://www.bing.com/images/search?


] view=detailV2&ccid=3iIZyYnW&id=81C98FB1AC805E468D81084BB6588CC5B4CBD344&thid=OIP.3iIZyYnWa
TntOMjwzyrIoAHaF2&mediaurl=http%3a%2f%2fi.ebayimg.com%2fimages%2fi%2f331610128568-0-1%2fs-
l1000.jpg&exph=683&expw=864&q=DC+motors&.

[3 [Online]. Available: The basic working principle of a DC motor is: " whenever a current carrying conductor is
] placed in a magnetic field, it experiences a mechanical force". The direction of this force is given by
Fleming's left-hand rule and its magnitude is given by F = BIL.

[4 [Online]. Available: https://www.mathworks.com/help/matlab/learn_matlab/scripts.html.


]

[5 B. D.HAhn, "Essential matlab for engineers and scientists," in Essential matlab for engineers and scientists,
] san diego USA, Mathworks, 2019, p. 406.

[6 [Online]. Available: https://sparks.gogo.co.nz/usbasp_drivers.html.


]

[7 "Google.com," google.com, [Online]. Available: https://www.google.com.pk/search?


] q=universal+testing+machine&sxsrf=ALeKk01TjeUHDWp__TaYWFfipCEU6D7MMQ:1583661306103&source
=lnms&tbm=isch&sa=X&ved=2ahUKEwiA4-
CMzoroAhUQ2BoKHQe3A3QQ_AUoAXoECA0QAw&biw=1366&bih=655#imgrc=jgS5mSjHq1C1CM.

[8 "Google.com," [Online]. Available: https://www.google.com.pk/search?


] q=brinell+hardness+testing+machine&tbm=isch&ved=2ahUKEwjQk_Sbz4roAhWX_IUKHRKeD-IQ2-
cCegQIABAA&oq=bri&gs_l=img.1.0.0i67l9j0.128799.131675..133629...1.0..4.302.2194.2-7j1......0....1..gws-
wiz-img.....10..35i39j35i362i39.eGG2.

[9 "google.com," [Online]. Available: https://www.google.com.pk/search?


] q=strain+gauge&tbm=isch&ved=2ahUKEwijgsPcz4roAhUL5hoKHdpUCVwQ2-
cCegQIABAA&oq=strain&gs_l=img.1.0.0i67l3j0l7.148949.152017..153850...2.0..0.217.1480.2-
7......0....1..gws-wiz-img.....10..35i362i39j35i39j0i131.Xud6TDH8U2E&ei=.

[1 "google.com," [Online]. Available: https://www.google.com.pk/search?


0] q=spring+testing+machine&tbm=isch&ved=2ahUKEwjQk_Sbz4roAhWX_IUKHRKeD-IQ2-
cCegQIABAA&oq=spring+&gs_l=img.1.0.0i67l6j0j0i131j0j0i131.7552.14977..16744...5.0..0.256.2411.0j3j8.....
.0....1..gws-wiz-img.....10..35i362i39j35i39j.

[1 "google.com," [Online]. Available: https://www.google.com.pk/search?


1] q=deformation+measurement+machine&tbm=isch&ved=2ahUKEwiox57o0IroAhVH0RoKHZOQBCQQ2-
cCegQIABAA&oq=deformation+measurement+machine&gs_l=img.12...108930.127037..135794...3.0..1.417.
5612.0j3j15j4j1......0....1..gws-wiz-img......

You might also like