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 /2777/CH7/EX7.8 | |
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 '2777/CH7/EX7.8')
-rwxr-xr-x | 2777/CH7/EX7.8/Ex7_8.sce | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/2777/CH7/EX7.8/Ex7_8.sce b/2777/CH7/EX7.8/Ex7_8.sce new file mode 100755 index 000000000..0c7e9eaa0 --- /dev/null +++ b/2777/CH7/EX7.8/Ex7_8.sce @@ -0,0 +1,40 @@ +
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 7 : SPECIAL MOTORS AND INTRODUCTION TO GENERALIZED MACHINE THEORY
+
+// EXAMPLE : 7.8
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+V = 220; // supply voltage in Volts
+f = 50; // Frequency in Hertz
+p = 4; // Number of poles
+Xm = 60; // Mutual reactance in Ohms
+Rs = 1.0; // Resistance of stator windings in Ohms
+Xs = 6.0; // Leakage reactance of stator windings in Ohms
+Ra = 2.5; // Resistance of Armature windings in Ohms
+Xa = 6.0; // Leakage reactance of armature windings in Ohms
+P_hp = 1; // Output power in HP
+N = 1400; // Motor running speed in RPM
+alpha = 15; // Brush displacement from the low-impedance position in degree
+
+// CALCULATIONS
+
+Ns = (120*f)/p; // Synchronous speed in RPM
+s = N/Ns; // Speed ratio
+I = V / (Rs + %i*(Xs+Xm) + (%i*Xm^2*cosd(alpha))*(s*sind(alpha)-(%i*cosd(alpha)))/(Ra+%i*(Xa+Xm))); // Curent in Amphere
+pf = cosd(atand(imag(I),real(I))); // Power factor lagging
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 7.8: SOLUTION :-");
+printf("\n (a) Currents, I = %.2f < %.2f A \n",abs(I),atand(imag(I),real(I)))
+printf("\n (b) Power factor = %.4f lagging \n",pf)
|