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 /1319/CH8/EX8.1/8_1.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 '1319/CH8/EX8.1/8_1.sce')
-rw-r--r-- | 1319/CH8/EX8.1/8_1.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/1319/CH8/EX8.1/8_1.sce b/1319/CH8/EX8.1/8_1.sce new file mode 100644 index 000000000..75bf78051 --- /dev/null +++ b/1319/CH8/EX8.1/8_1.sce @@ -0,0 +1,28 @@ +//Find the percentage slip and poles of the motor
+
+clc;
+clear;
+
+p=12;
+n=500;
+nlim=1440;
+f=p*n/120;
+c=1;
+
+while(c>0) // Used to find out the poles of the motor nearest to the full load slip
+ P=2*c;
+ N=120*f/P;
+ g=(5/100)*N;
+ if((N-nlim)>(0.05*N))
+ c=c+1;
+ else
+ c=0;
+ end
+end
+
+slip=(N-nlim)*100/N;
+
+printf('The Number of poles of the induction motor is %g \n',P)
+printf('The percentage slip is %g percent \n',slip)
+
+
|