blob: bde0c0ef8252677e38719c6febb0d96e800b9228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Calculating the minimum number of poles
clc;
disp('Example 9.32, Page No. = 9.92')
// Given Data
P = 1200;// Power rating (in kW)
Ec = 15;// Average voltage between commutator segments (in Volts)
ATa = 10000;// Armature mmf per pole
// Calculation of the minimum number of poles
a = P*10^(3)/(ATa*Ec);// Minimum number of parallel paths
p = a;// Minimum number of poles. Since these parallel paths can be obtained by using a simplex winding
disp(p,'Minimum number of poles =');
//in book answer is 8 poles. The answers vary due to round off error
|