diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH10/EX10.8/ch10_ex_8.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1445/CH10/EX10.8/ch10_ex_8.sce')
-rw-r--r-- | 1445/CH10/EX10.8/ch10_ex_8.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/1445/CH10/EX10.8/ch10_ex_8.sce b/1445/CH10/EX10.8/ch10_ex_8.sce new file mode 100644 index 000000000..1ab32dcaa --- /dev/null +++ b/1445/CH10/EX10.8/ch10_ex_8.sce @@ -0,0 +1,37 @@ +//CHAPTER 10- THREE-PHASE INDUCTION MACHINES +//Example 8 + +disp("CHAPTER 10"); +disp("EXAMPLE 8"); + +//VARIABLE INITIALIZATION +N_s=1200; //in rpm +p_in=80; //in kW +loss=5; //copper and iron losses in kW +f_loss=2; //friction and windage loss in kW +N=1152; //in rpm + +//SOLUTION + +//solution (a) +p_rotor=p_in-loss; +disp(sprintf("(a) The active power transmitted to rotor is %d kW",p_rotor)); + +//solution (b) +s=(N_s-N)/N_s; +cu_loss=s*p_rotor; +disp(sprintf("(b) The rotor copper loss is %d kW",cu_loss)); + +//solution (c) +p_m=(1-s)*p_rotor; +disp(sprintf("(c) The mechanical power developed is %d kW",p_m)); + +//solution (d) +p_shaft=p_m-f_loss; //output power +disp(sprintf("(d) The mechanical power developed to load is %d kW",p_shaft)); + +//solution (e) +eff=p_shaft/p_in; +disp(sprintf("(e) The efficiency of the motor is %f %%",eff*100)); + +//END |