blob: 8b66849635e1ca376a045499b8fc91827e24f9e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 5: ARMATURE REACTION AND COMMUTATION IN DYNAMOS
// Example 5-1
clear; clc; close; // Clear the work space and console.
// Given data
conductors = 800 ; // No. of conductors
I_a = 1000 ; // Rated armature current in A
P = 10 ; // No. of poles
pitch = 0.7 ; // Pole-face covers 70% of the pitch
a = P ; // No. of parallel paths ( Simplex lap-wound )
// Calculations
// Using Eq.(5-1)
Z = conductors / P ; // No. of armature conductors/path under each pole
Z_a = Z * pitch ; // Active armature conductors/pole
// Solving for Z_p using Z_p = Z_a / a
Z_p = Z_a / a ; // No. of pole face conductors/pole
// Display the results
disp("Example 5-1 Solution : ");
printf(" \n No. of pole face conductors/pole to give full armature reaction ");
printf(" \n compensation, if the pole covers 70 percent of the pitch is : \n ");
printf(" \n Z_p = %.1f conductors/pole ", Z_p );
|