summaryrefslogtreecommitdiff
path: root/3574/CH4/EX4.6/EX4_6.sce
blob: ca4a27b8cf9086af29e21d4d94b47f149103da64 (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
49
50
51
52
53
54
55
// Example 4.6
// Determine (a) Power input (b) Total losses (c) Air gap power (d) Shaft speed
// (e) Power factor (f) Combined windage, friction and stray load loss
// (g) Shaft torque
// Page No. 159

clc;
clear;
close;

// Given data
Pshaft=74600;                // Shaft power
eeta=0.910;                  // Rated efficiency
ns=1200;                     // Speed of stator
Pcore=1697;                  // Power in core
Pscl=2803;                   // Stator copper loss
Prcl=1549;                   // Rotor copper loss
fs=60;                       // Synchronous frequency
p=6;                         // Number of poles
Vline=230;                   // Line voltage
Iline=248;                   // Line current

// (a) Power input
Pin=Pshaft/eeta;             // Parallel resistance

// (b) Total losses
Ploss=Pin-Pshaft;

//(c) Air gap power
Pgap=Pin-Pcore-Pscl;

// (d) Shaft speed
s=Prcl/Pgap;      // Parallel resistance
ns=120*fs/p;
nr=ns*(1-s);

// (e) Power factor
Sin=sqrt(3)*Vline*Iline;
FP=Pin/Sin;

//(f) Combined windage, friction and stray load loss
Closs=Ploss-Pcore-Pscl-Prcl;

//(g) Shaft torque
Tshaft=5252*100/nr;


// Display result on command window
printf("\n Power input = %0.0f W",Pin);
printf("\n Total losses = %0.0f W",Ploss);
printf("\n Air gap power = %0.0f W ",Pgap);
printf("\n Shaft speed = %0.0f r/min ",nr);
printf("\n Power factor = %0.2f ",FP);
printf("\n Combined windage, friction and stray load loss = %0.0f W ",Closs);
printf("\n Shaft torque = %0.1f lb-ft ",Tshaft);