diff options
Diffstat (limited to 'Working_Examples/2777/CH6/EX6.15/Ex6_15.sce')
-rwxr-xr-x | Working_Examples/2777/CH6/EX6.15/Ex6_15.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH6/EX6.15/Ex6_15.sce b/Working_Examples/2777/CH6/EX6.15/Ex6_15.sce new file mode 100755 index 0000000..277dbeb --- /dev/null +++ b/Working_Examples/2777/CH6/EX6.15/Ex6_15.sce @@ -0,0 +1,36 @@ +
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 6 : SYNCHRONOUS MACHINES
+
+// EXAMPLE : 6.15
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+
+If = 1.25; // Given that rated voltage at air gap line for this field current in pu
+IF = 0.75; // Rated current in SC test for this field current in pu
+Ia = 1.0; // Rated current in Per unit
+pf = 0.8; // Power factor
+V = 1.0; // Rated Volatge in pu
+
+
+// CALCULATIONS
+
+pfa = acosd(pf); // Power factor angle in deg
+Voc = (V*IF)/If; // Open circuit volatge in pu
+xs = Voc/Ia; // Syncronous reactance in pu
+E = V + Ia*(cosd(pfa)-(%i)*sind(pfa))*(%i*xs); // Induced EMF in pu
+a = abs(E)*If;
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 6.15: SOLUTION :-");
+printf("\n Induced EMF, E = %.2f < %.2f pu \n ",abs(E),atand(imag(E),real(E)))
+printf("\n The field current required for %.2f pu voltage on air gap line %.1f pu \n",abs(E),a)
|