summaryrefslogtreecommitdiff
path: root/2384/CH11/EX11.10/ex11_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2384/CH11/EX11.10/ex11_10.sce')
-rwxr-xr-x2384/CH11/EX11.10/ex11_10.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2384/CH11/EX11.10/ex11_10.sce b/2384/CH11/EX11.10/ex11_10.sce
new file mode 100755
index 000000000..504520e3d
--- /dev/null
+++ b/2384/CH11/EX11.10/ex11_10.sce
@@ -0,0 +1,15 @@
+// Exa 11.10
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+R2 = 0.024;// in per phase
+X2 = 0.6;// in ohm per phase
+s = R2/X2;
+f = 50;// in Hz
+P = 4;
+Ns = (120*f)/P;// in rpm
+// Speed corresponding to maximum torque
+N = Ns*(1-s);// in rpm
+disp(N,"The speed at which maximum torque is developed in rpm is");