diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /1445/CH10/EX10.11 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '1445/CH10/EX10.11')
-rw-r--r-- | 1445/CH10/EX10.11/Ex10_11.sce | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/1445/CH10/EX10.11/Ex10_11.sce b/1445/CH10/EX10.11/Ex10_11.sce index 143337fe8..70e926ccb 100644 --- a/1445/CH10/EX10.11/Ex10_11.sce +++ b/1445/CH10/EX10.11/Ex10_11.sce @@ -1,6 +1,7 @@ //CHAPTER 10- THREE-PHASE INDUCTION MACHINES //Example 11 +clc; disp("CHAPTER 10"); disp("EXAMPLE 11"); @@ -18,7 +19,7 @@ N_r=round(N_r); //to round off the value disp(sprintf("(a) The speed of the motor is %d rpm",N_r)); //solution (b) -P2=6; // number of poles +P2=6; N_s=(120*f)/P2; //synchronous speed of generator in rpm with six poles disp(sprintf("(b) The speed of the generator is %d rpm",N_s)); |