blob: 5da7290f5ea1241ca5f49360a7620f064423ec0a (
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
29
30
31
|
// FUNDAMENTALS OF ELECTICAL MACHINES
// M.A.SALAM
// NAROSA PUBLISHING HOUSE
// SECOND EDITION
// Chapter 5 : DIRECT CURRENT MOTORS
// Example : 5.5
clc;clear; // clears the console and command history
// Given data
P = 6 // number of poles
V_t = 230 // supply to shunt motor in V
Z = 450 // number of conductors
R_a = 0.8 // armature resistance in ohm
I = 30 // supply current in A
P_0 = 5560 // out put power in W
I_F = 3 // current through field winding
phi = 25*10^-3 // flux per pole in Wb
// caclulations
A = 6 // for lap wond A=P
I_a = I-I_F // armature current in A
E_b = V_t-I_a*R_a // back emf in V
N = 60*A*E_b/(P*Z*phi) // speed in rpm
T_sh = 9.55*P_0/N // shaft torque in N-m
// display the result
disp("Example 5.5 solution");
printf(" speed \n N = %.1f rpm \n", N );
printf(" shaft torque \n T_sh = %.1f N-m \n", T_sh );
|