diff options
Diffstat (limited to '3760/CH7/EX7.11/Ex7_11.sce')
-rw-r--r-- | 3760/CH7/EX7.11/Ex7_11.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3760/CH7/EX7.11/Ex7_11.sce b/3760/CH7/EX7.11/Ex7_11.sce new file mode 100644 index 000000000..d36744414 --- /dev/null +++ b/3760/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,18 @@ +clc;
+disp('a');
+s=24; // total number of slots
+p=4; // number of poles
+np=3; // number of phases
+ph=60; // phase spread
+// given armature has double layer winding and full pitch coil span
+v=(p*180)/s;
+printf('Slot angular pitch is %d degrees\n',v);
+disp('Number of adjacent slots in one phase belt is');
+disp(ph/v);
+cs=s/p;
+printf('Coil span is %d slots\n',cs);
+disp('Using this data winding table for the three phases is shown in Ex7.11')
+disp('d');
+sp=s/(p*np); // slots per pole per phase
+disp('Distribution factor is');
+disp(sind(ph/2)/(sp*sind(v/2)));
|