diff options
Diffstat (limited to 'Working_Examples/2777/CH6/EX6.28/Ex6_28.sce')
-rwxr-xr-x | Working_Examples/2777/CH6/EX6.28/Ex6_28.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH6/EX6.28/Ex6_28.sce b/Working_Examples/2777/CH6/EX6.28/Ex6_28.sce new file mode 100755 index 0000000..264cf05 --- /dev/null +++ b/Working_Examples/2777/CH6/EX6.28/Ex6_28.sce @@ -0,0 +1,38 @@ +
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 6 : SYNCHRONOUS MACHINES
+
+// EXAMPLE : 6.28
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+
+V = 400; // Operating voltage of the Synchronous generator in Volts
+f = 50; // Operating Frequency of the Synchronous generator in Hertz
+xd = 12; // Direct axis reactances in Ohms
+xq = 5; // Quadrature axis reactances in Ohms
+delta = 15; // Power(Torque) angle in degree
+p = 2; // Number of the poles
+m = 3; // Number of the phase
+
+
+// CALCULATIONS
+
+v = V/sqrt(3); // Rated Phase Votage in Volts
+Ns = (120*f)/p; // Operating speed in RPM
+Ws = (2*%pi*f)/(p/2); // Synchronous speed in radians/s
+T = (3*v^2*sind(2*delta)/(2*Ws))*((1/xq)-(1/xd)); // Developed Torque in Newton-meter
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 6.28: SOLUTION :-");
+printf("\n (a) Operating speed, Ns = %.f RPM \n",Ns)
+printf("\n (b) Developed Torque , T = %.2f N-m \n",T)
|