diff options
Diffstat (limited to '1092/CH2/EX2.5/Example2_5.sce')
-rwxr-xr-x | 1092/CH2/EX2.5/Example2_5.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1092/CH2/EX2.5/Example2_5.sce b/1092/CH2/EX2.5/Example2_5.sce new file mode 100755 index 000000000..fe7ee3132 --- /dev/null +++ b/1092/CH2/EX2.5/Example2_5.sce @@ -0,0 +1,26 @@ +// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 2: Dynamo Construction and Windings
+// Example 2-5
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+P = 12; // No. of poles
+theta = 360; // No. of mechanical degrees of rotation
+alpha_b = 180; // No. of electrical degrees for finding case b in the question
+
+// Calculations
+alpha = ( P * theta ) / 2; // No. of electrical degrees in one revolution
+n = alpha / 360; // No. of ac cycles
+theta_b = ( 2 * alpha_b ) / P; // No. of mechanical degrees of rotation
+// for finding case b in the question
+
+// Display the results
+disp("Example 2-5 Solution : ")
+printf("\n a: alpha = %d degrees", alpha);
+printf("\n n = %d cycles ", n);
+printf("\n b: theta = %d mechanical degrees ", theta_b );
|