summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.79/Example1_79.sce
diff options
context:
space:
mode:
Diffstat (limited to '1892/CH1/EX1.79/Example1_79.sce')
-rwxr-xr-x1892/CH1/EX1.79/Example1_79.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1892/CH1/EX1.79/Example1_79.sce b/1892/CH1/EX1.79/Example1_79.sce
new file mode 100755
index 000000000..33031c894
--- /dev/null
+++ b/1892/CH1/EX1.79/Example1_79.sce
@@ -0,0 +1,24 @@
+// Example 1.79
+
+clc;clear;close;
+
+// Given data
+format('v',6);
+P=16;//no. of poles
+f=50;//in Hz
+Z2=0.02+%i*0.15;//in ohm
+Nr=360;//in rpm
+
+//calculations
+Ns=120*f/P;//in rpm
+Sfl=(Ns-Nr)/Ns;//slip at full load
+R2=real(Z2);//in ohm
+X2=imag(Z2);//in ohm
+Sm=R2/X2;//slip at max torque
+Nm=(1-Sm)*Ns;//in rpm
+disp(Nm,"(a) Speed at which max Torque occurs in rpm : ");
+TmaxByTfl=(Sfl^2+Sm^2)/2/Sfl/Sm;//ratio
+disp(TmaxByTfl,"Ratio of maximum to full load torque : ");
+R2dash=X2;//for max Torque
+r=R2dash-R2;//in ohm
+disp(r,"(c) External resistance per phase required in ohm : ");