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.1/Ex11_1.sce | |
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.1/Ex11_1.sce')
-rwxr-xr-x | 833/CH11/EX11.1/Ex11_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/833/CH11/EX11.1/Ex11_1.sce b/833/CH11/EX11.1/Ex11_1.sce new file mode 100755 index 000000000..533bfaac9 --- /dev/null +++ b/833/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,13 @@ +//Caption: Find (a)Number of poles and (b)% slip
+//Exa:11.1
+clc;
+clear;
+close;
+f=50//Frequency(in hertz)
+n=960//Speed of induction motor on full load(in r.p.m)
+n_s=1000//Synchronous speed(in r.p.m)
+p=(f*120)/(n_s)
+disp(p,'(a)Number of poles is=')
+s=n_s-n
+S=(s/n_s)*100
+disp(S,'(b)%Slip is(in%)=')
\ No newline at end of file |