summaryrefslogtreecommitdiff
path: root/3574/CH5/EX5.1/EX5_1.sce
blob: da00ee38f31dbd50f649b28c64f4fc82e8cfb676 (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
// Example 5.1
// Computation of minimum value of (a) Locked rotor torque (b) Breakdown torque
// (c) Pull up torque
// Page No. 173

clc;
clear;
close;

// Given data
f=60;               // Frequency in Hz
p=6;                // Number of poles
hp=10;              // Horsepower
n=1150;             // Rated speed of machine
ns=120*f/p;


// (a) Locked rotor torque
Trated=hp*5252/n;   // Rated torque 
Tlockedrotor=2.25*Trated;

// (b) Breakdown torque
Tbreakdown=1.90*Trated;

// (c) Pull up torque
Tpullup=1.65*Trated;


// Display result on command window
printf("\n Locked rotor torque = %0.1f lb-ft ",Tlockedrotor);
printf("\n Breakdown torque = %0.1f lb-ft ",Tbreakdown);
printf("\n Pull up torque = %0.1f  lb-ft",Tpullup);