summaryrefslogtreecommitdiff
path: root/431/CH5/EX5.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /431/CH5/EX5.1
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 '431/CH5/EX5.1')
-rwxr-xr-x431/CH5/EX5.1/EX5_1.sce17
-rwxr-xr-x431/CH5/EX5.1/resultEX5_1.txt6
2 files changed, 23 insertions, 0 deletions
diff --git a/431/CH5/EX5.1/EX5_1.sce b/431/CH5/EX5.1/EX5_1.sce
new file mode 100755
index 000000000..9fa8853e1
--- /dev/null
+++ b/431/CH5/EX5.1/EX5_1.sce
@@ -0,0 +1,17 @@
+//caption- for calculating distribution factor
+//Chapter 5
+//example 5.1
+//page 424
+clear;
+clc;
+disp("example 5.1");
+printf("\n");
+slots=18;
+p=2; //nmber of poles
+ph=3; //three phase winding
+SA=(360/slots); //slot angle
+m=slots/(p*ph); //m=nmber of slots per pole per phase
+printf("number of slots per pole per phase,m=%d\n",m);
+printf("emfs of the oils of each phase will have a time-phase difference of %d degree mechanical \n",SA);
+k_d=sind((m*SA)/2)/(m*sind(SA/2));
+printf("distribution factor=%f",k_d);
diff --git a/431/CH5/EX5.1/resultEX5_1.txt b/431/CH5/EX5.1/resultEX5_1.txt
new file mode 100755
index 000000000..d12bf24d6
--- /dev/null
+++ b/431/CH5/EX5.1/resultEX5_1.txt
@@ -0,0 +1,6 @@
+
+ example 5.1
+
+number of slots per pole per phase,m=3
+emfs of the oils of each phase will have a time-phase difference of 20 degree mechanical
+distribution factor=0.959795 \ No newline at end of file