blob: ff1d72fb39606accea5fc4ee245053bb394e6740 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Example 10.11
// Determine (a) Electrical losses (b) Rotational losses (c) Efficiency
// Page No. 430
clc;
clear;
close;
// Given data
T=124; // Hp rating of motor
Rf=32.0; // Field resistance
VT=240; // Rated voltade of the machine
IT=420; // Total current
Ra=0.00872; // Armature resistance
RipRcw=0.0038; // Resistance of interpolar winding and compensating windings
Pout=92504;
Vb=2.0; // Rated speed of the machine
Racir=Ra+RipRcw;
// (a) Electrical losses
If=VT/Rf; // Field current
Ia=IT-If; // Armature current
Pf=If^2*Rf; // Field power
Paipcw=Ia^2*(Ra+RipRcw);
Pb=Vb*Ia; // Brush loss power
Plosses=Pf+Paipcw+Pb; // Total power loss
// (b) Rotational losses
Ea=VT-(Ia*Racir)-Vb; // Armature emf
Pmech=Ea*Ia; // Mechanical power
Pshaft=T*746; // Shaft power
Protational=Pmech-Pshaft;
// (c) Ffficiency
eeta=Pout/(VT*IT)*100;
// Display result on command window
printf("\n Electrical losses = %0.1f W ",Plosses);
printf("\n Rotational losses = %0.0f W ",Protational);
printf("\n Efficiency = %0.1f Percent ",eeta);
|