diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH9/EX9.32 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3681/CH9/EX9.32')
-rw-r--r-- | 3681/CH9/EX9.32/Ans9_32.PNG | bin | 0 -> 4149 bytes | |||
-rw-r--r-- | 3681/CH9/EX9.32/Ex9_32.sce | 12 |
2 files changed, 12 insertions, 0 deletions
diff --git a/3681/CH9/EX9.32/Ans9_32.PNG b/3681/CH9/EX9.32/Ans9_32.PNG Binary files differnew file mode 100644 index 000000000..c79d322dd --- /dev/null +++ b/3681/CH9/EX9.32/Ans9_32.PNG diff --git a/3681/CH9/EX9.32/Ex9_32.sce b/3681/CH9/EX9.32/Ex9_32.sce new file mode 100644 index 000000000..bde0c0ef8 --- /dev/null +++ b/3681/CH9/EX9.32/Ex9_32.sce @@ -0,0 +1,12 @@ +// Calculating the minimum number of poles
+clc;
+disp('Example 9.32, Page No. = 9.92')
+// Given Data
+P = 1200;// Power rating (in kW)
+Ec = 15;// Average voltage between commutator segments (in Volts)
+ATa = 10000;// Armature mmf per pole
+// Calculation of the minimum number of poles
+a = P*10^(3)/(ATa*Ec);// Minimum number of parallel paths
+p = a;// Minimum number of poles. Since these parallel paths can be obtained by using a simplex winding
+disp(p,'Minimum number of poles =');
+//in book answer is 8 poles. The answers vary due to round off error
|