summaryrefslogtreecommitdiff
path: root/1628/CH14/EX14.2/Ex14_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH14/EX14.2/Ex14_2.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1628/CH14/EX14.2/Ex14_2.sce')
-rwxr-xr-x1628/CH14/EX14.2/Ex14_2.sce18
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