diff options
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");
|