summaryrefslogtreecommitdiff
path: root/1445/CH10/EX10.10/ch10_ex_10.sce
blob: ce8d85e4a14587406a2de810bf457b87f016bdf3 (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
//CHAPTER 10- THREE-PHASE INDUCTION MACHINES
//Example 10

disp("CHAPTER 10");
disp("EXAMPLE 10");

//VARIABLE INITIALIZATION
P=6;                            //number of poles
f=60;                           //in Hertz
p=48;                           //stator input in Watts
N_r=1140;                       //in rpm
cu_loss=1.4;                    //stator copper loss in Watts 
cr_loss=1.6;                    //stator core loss in Watts
me_loss=1;                      //rotor mechanical loss in Watts

//SOLUTION
N_s=(120*f)/P;
s=(N_s-N_r)/N_s;
p_g=p-(cu_loss+cr_loss);        //rotor input
p_m=p_g*(1-s);                  //output mechanical power
p_sh=p_m-me_loss;               //shaft power
eff=p_sh/p;
disp(sprintf("The motor efficiency is %f %%",eff*100));

//END