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.1 | |
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.1')
-rwxr-xr-x | 2384/CH11/EX11.1/ex11_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2384/CH11/EX11.1/ex11_1.sce b/2384/CH11/EX11.1/ex11_1.sce new file mode 100755 index 000000000..0f939d54b --- /dev/null +++ b/2384/CH11/EX11.1/ex11_1.sce @@ -0,0 +1,18 @@ +// Exa 11.1
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+P = 4;
+f = 50;// in Hz
+Ns = (120*f)/P;// in rpm
+disp(Ns,"The synchronous speed in rpm is");
+s = 4;
+//s = ((Ns-N)/Ns)*100;
+N = Ns - ( (s*Ns)/100 );// in rpm
+disp(N,"The speed of the motor in rpm is");
+N = 1000;// in rpm
+s = ((Ns-N)/Ns);
+f_desh= s*f;// in Hz
+disp(f_desh,"The rotor current frequency in Hz is");
|