blob: 30ba7663f4b966eec49eb24ee98a50843ebeab73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 4: DC Dynamo Torque Relations-DC Motors
// Example 4-7
clear; clc; close; // Clear the work space and console.
// Given data
R_a = 0.25 ; // Armature resistance in ohm
BD = 3 ; // Brush contact drop in volt
V = 120 ; // Applied voltage in volt
E_a = 110 ; // EMF in volt at a given load
E_b = 105 ; // EMF in volt due to application of extra load
// Calculations
I_a_a = ( V - ( E_a + BD ) ) / R_a ; // Armature current for E_a
I_a_b = ( V - ( E_b + BD ) ) / R_a ; // Armature current for E_b
del_E = ( ( E_a - E_b ) / E_a ) * 100 ; // % change in counter EMF
del_I = ( ( I_a_a - I_a_b ) / I_a_a ) * 100 ; // % change in armature current
// Display the result
disp("Example 4-7 Solution : ")
printf("\n a : Ia = %d A " , I_a_a );
printf("\n b : At increased load \n Ia = %d A " , I_a_b );
printf("\n c : del_Ec = %.2f percent \n del_Ia = %.2f percent " , del_E , del_I);
|