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 /1541/CH3/EX3.7 | |
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 '1541/CH3/EX3.7')
-rwxr-xr-x | 1541/CH3/EX3.7/Chapter3_Example7.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1541/CH3/EX3.7/Chapter3_Example7.sce b/1541/CH3/EX3.7/Chapter3_Example7.sce new file mode 100755 index 000000000..cc5cf208a --- /dev/null +++ b/1541/CH3/EX3.7/Chapter3_Example7.sce @@ -0,0 +1,23 @@ +//Chapter-3, Example 3.7, Page 3.18
+//=============================================================================
+clc
+clear
+
+//INPUT DATA
+P=6;//Number of poles
+f=50;//Supply frequency in Hz
+R2=0.4;//Rotor reisitance in ohm
+X2=4;//Rotor standstill reactance in ohm
+T1=2;//Ratio of maximum torque to starting torque
+
+//CALCULATIONS
+Ns=(120*f)/P;//Synchronous speed in rpm
+Sm=(R2/X2);//Slip at maximum torque
+NTM=(Ns*(1-Sm));//Speed of the motor at maximum torque in rpm
+T=((R2^2+X2^2)/(2*R2*X2));//Ratio of maximum torque to starting torque
+Rext=(sqrt(X2^2/((2*T1)-1))-R2);//Additional resistance required for the ratio of maximum torque to the statring torque to be 2 in ohm
+
+//OUTPUT
+mprintf('a)Speed of the motor at maximum torque is %i rpm \n b)Ratio of maximum torque to starting torque is %3.2f \n c)Additional resistance required for the ratio of maximum torque to the starting torque to be 2 is %3.1f ohm',NTM,T,Rext)
+
+//=================================END OF PROGRAM==============================
|