diff options
Diffstat (limited to '1628/CH14/EX14.2/Ex14_2.sce')
-rwxr-xr-x | 1628/CH14/EX14.2/Ex14_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1628/CH14/EX14.2/Ex14_2.sce b/1628/CH14/EX14.2/Ex14_2.sce new file mode 100755 index 000000000..fa7c720b0 --- /dev/null +++ b/1628/CH14/EX14.2/Ex14_2.sce @@ -0,0 +1,18 @@ + + // Example 14.2 + +alfa=20; // Slot angle +q1=120/20; // No.Of slots for group p +sa=sind((q1*alfa)/2); +sb=sind(alfa/2); +kd1=sa/(q1*sb); // Three phase Winding (with 120 phase group) +disp('(a) A Three phase Winding (with 120 phase group) = '+string(kd1)); +q2=60/20; // No.Of slots for group q +sa1=sind((q2*alfa)/2); +kd2=sa1/(q2*sb); // TThree phase Winding (with 60 phase group) +disp('(b) A Three phase Winding (with 60 phase group) = '+string(kd2)); + + + + + // p 554 Ex 14.2 |