diff options
Diffstat (limited to '1092/CH2/EX2.4/Example2_4.sce')
-rwxr-xr-x | 1092/CH2/EX2.4/Example2_4.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1092/CH2/EX2.4/Example2_4.sce b/1092/CH2/EX2.4/Example2_4.sce new file mode 100755 index 000000000..38c38eeb6 --- /dev/null +++ b/1092/CH2/EX2.4/Example2_4.sce @@ -0,0 +1,21 @@ +// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 2: Dynamo Construction and Windings
+// Example 2-4
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+fractional_pitch = 13 / 16;
+slot =96; // No. of slots
+P = 6; // No. of poles
+
+// Calculation
+k_p = sind( ( fractional_pitch * 180 ) / 2 ); // Pitch factor
+
+// Display the result
+disp("Example 2-4 Solution : ")
+printf("\n kp = %.4f ", k_p );
|