summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.27
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1892/CH1/EX1.27
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1892/CH1/EX1.27')
-rwxr-xr-x1892/CH1/EX1.27/Example1_27.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1892/CH1/EX1.27/Example1_27.sce b/1892/CH1/EX1.27/Example1_27.sce
new file mode 100755
index 000000000..bcd4e1c8e
--- /dev/null
+++ b/1892/CH1/EX1.27/Example1_27.sce
@@ -0,0 +1,22 @@
+// Example 1.27
+
+clear; clc; close;
+format('v',7);
+// Given data
+VL=3300;//in volt
+f=50;//in Hz
+P=10;//no. of poles
+X2=0.25;//in ohm
+R2=0.015;//in ohm
+Sfl=2.5;//Slip in %
+
+//Calculations
+Ns=120*f/P;//in rpm
+N=Ns*(1-Sfl/100);//in rpm
+disp(N,"(1.) The speed of motor, N in rpm : ");
+Sm=R2/X2;//Max Slip
+Nm=Ns*(1-Sm);//Max speed in rpm
+disp(Nm,"(2.) Speed of motor, Ns in rpm : ");
+TmByTfl=Sm*R2/(R2^2+(Sm*X2)^2)*(R2^2+(Sfl/100*X2)^2)/(Sfl/100)/R2;//ratio
+disp(TmByTfl,"(3.) Ratio of max torque to full load torque : ");
+//Answer of 1st part is wrong in the book.