blob: fb4cab769f1e06065b794c4add61eea2830bd849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc;
clear;
S=108;//slot
m=3;
p=8;
disp('for 16 pole 3 phase machine :')
g1=S/(p*m);
disp(g1,'The integral slot winding is:')
disp('For 10 pole 3 phase machine :')
p1=5;
g2=S/(p1*m);
disp(g2,'The integral slot winding is:')
|