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 /2384/CH11/EX11.6 | |
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 '2384/CH11/EX11.6')
-rwxr-xr-x | 2384/CH11/EX11.6/ex11_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2384/CH11/EX11.6/ex11_6.sce b/2384/CH11/EX11.6/ex11_6.sce new file mode 100755 index 000000000..5556100fc --- /dev/null +++ b/2384/CH11/EX11.6/ex11_6.sce @@ -0,0 +1,19 @@ +// Exa 11.6
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+P = 4;
+S =4/100;
+f = 50;// in Hz
+Ns = (120*f/P);// in rpm
+disp(Ns,"The value of Ns in rpm is");
+// The rotor speed when slip is 4 %
+N = Ns*(1-S);// in rpm
+disp(N,"The rotor speed when slip is 4% in rpm is");
+// The rotor speed when rotor runs at 600 rpm
+N1 = 600;// in rpm
+s1 = ((Ns-N1)/Ns)*100;// in %
+f_r = (s1/100)*f;// in Hz
+disp(f_r,"The rotor frequency when rotor runs at 600 rpm in Hz is");
|