diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2642/CH2/EX9.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2642/CH2/EX9.2')
-rwxr-xr-x | 2642/CH2/EX9.2/Ex9_2.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2642/CH2/EX9.2/Ex9_2.sce b/2642/CH2/EX9.2/Ex9_2.sce new file mode 100755 index 000000000..8746869ab --- /dev/null +++ b/2642/CH2/EX9.2/Ex9_2.sce @@ -0,0 +1,26 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 9 : SYNCHRONOUS GENERATOR
+// Example : 9.2
+
+clc;clear; // clears the console and command history
+
+// Given data
+P = 8 // number of poles
+m = 3 // number of phase
+S = 144 // number of slots
+
+// caclulations
+T_p = S/P // pole pitch interms of slots
+slots_1 = 180/T_p // pole pitch per slots
+y = 2*slots_1 // short pitch angle in degree
+k_p = cosd(y/2) // pitch factor
+
+// display the result
+disp("Example 9.2 solution");
+printf(" \n Pitch factor is \n k_p = %.2f \n", k_p );
+
+
|