diff options
Diffstat (limited to '3816/CH3/EX3.2/3_2.sce')
-rw-r--r-- | 3816/CH3/EX3.2/3_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3816/CH3/EX3.2/3_2.sce b/3816/CH3/EX3.2/3_2.sce new file mode 100644 index 000000000..fb4cab769 --- /dev/null +++ b/3816/CH3/EX3.2/3_2.sce @@ -0,0 +1,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:')
|