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.9/8_9.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.9/8_9.sce')
-rw-r--r-- | 1319/CH8/EX8.9/8_9.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1319/CH8/EX8.9/8_9.sce b/1319/CH8/EX8.9/8_9.sce new file mode 100644 index 000000000..e755e1a07 --- /dev/null +++ b/1319/CH8/EX8.9/8_9.sce @@ -0,0 +1,23 @@ +// To determine the various parameters of a 3 phase 400V 6 poles Induction Motor
+
+clc;
+clear;
+
+f=50;
+p=6;
+s=3/100;
+V=400;
+
+N=120*f/p; // Synchronous speed
+Ns=0; // Speed of stator
+rf=s*f; // Rotor Frequency
+Nr=N*(1-s); // Rotor speed
+Nrs=N-Ns; // Speed of Rotor field wrt stator
+Nrr=120*rf/6; // Speed of rotor field wrt rotor
+Nrmsm=0; // Speed of rotor field wrt stator field
+
+printf('i) The speed of the rotor = %g rpm \n',Nr)
+printf('ii) The frequency of rotor current = %g Hz \n',rf)
+printf('iii) The Speed of the rotor magnetic field w.r.t the stator = %g rpm \n',Nrs)
+printf('iv) The speed of the rotor magnetic field w.r.t the rotor = %g rpm \n',Nrr)
+printf('v) The speed of the rotor magnetic field w.r.t the stator magnetic field = %g rpm \n',Nrmsm)
|