blob: ad69787dcef6b4acb4982443275bcd8cb49fd6fd (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
s=24; // number of slots
p=4; // number of poles
ph=60; // phase spread
ap=(p*180)/s; // slot angular pitch
pp=s/p; // pole pitch
printf('Pole pitch is %d slots\n',pp);
printf('slot angular pitch is %d degrees',ap);
disp('using these data, half coil and whole coil single layer concentric windings diagram are drawn');
|