diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /833/CH11/EX11.2/Ex11_2.txt | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '833/CH11/EX11.2/Ex11_2.txt')
-rwxr-xr-x | 833/CH11/EX11.2/Ex11_2.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/833/CH11/EX11.2/Ex11_2.txt b/833/CH11/EX11.2/Ex11_2.txt new file mode 100755 index 000000000..78eda61ae --- /dev/null +++ b/833/CH11/EX11.2/Ex11_2.txt @@ -0,0 +1,14 @@ +//Caption: Find (a)Speed of motor (b)%Slip
+//Exa:11.2
+clc;
+clear;
+close;
+p=6//Number of poles
+f_s=50//Stator frequency(in c/s)
+f_r=2//Rotor frequency(in c/s)
+n_s=(120*f_s)/p
+n=(f_r*120)/p
+s=n_s-n
+disp(s,'(a)Speed of motor(in r.p.m)=')
+S=(n/n_s)*100
+disp(S,'(b)%Slip(in %)=')
\ No newline at end of file |