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/CH3/EX3.2 | |
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/CH3/EX3.2')
-rw-r--r-- | 3681/CH3/EX3.2/Ans3_2.PNG | bin | 0 -> 4767 bytes | |||
-rw-r--r-- | 3681/CH3/EX3.2/Ex3_2.sce | 22 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3681/CH3/EX3.2/Ans3_2.PNG b/3681/CH3/EX3.2/Ans3_2.PNG Binary files differnew file mode 100644 index 000000000..250a98a07 --- /dev/null +++ b/3681/CH3/EX3.2/Ans3_2.PNG diff --git a/3681/CH3/EX3.2/Ex3_2.sce b/3681/CH3/EX3.2/Ex3_2.sce new file mode 100644 index 000000000..7b462963a --- /dev/null +++ b/3681/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,22 @@ +// Calculating the mmf required for the air gap of a machine
+clc;
+disp('Example 3.2, Page No. = 3.12')
+// Given Data
+L = 0.32;// Core length in meter
+nd = 4;// Number of ducts
+Wd = 10;// Duct width in mm
+Pa = 0.19;// Pole arc in meter
+ys=65.4;//Slot Pitch in mm
+lg = 5;// Length of air gap in mm
+Wo = 5;// Slot opening in mm
+Fpp = 52;// Flux per pole in mWb
+Kcs = 0.18;//Carter's co-efficient for slots
+Kcd = 0.28;//Carter's co-efficient for ducts
+// Calculation of mmf required for the air gap
+Kgs=ys/(ys-(Kcs*Wo));//Gap contraction for slots
+Kgd=L/(L-(Kcd*nd*Wd*10^(-3)));//Gap contraction for ducts
+Kg=Kgs*Kgd;//Total gap contracion factor
+Bg=Fpp*10^(-3)/(Pa*L);//Flux density at the centre of pole in Wb per meter square
+ATg=800000*Kg*Bg*lg*10^(-3);//mmf required for air gap in A
+disp(ATg,'mmf required for air gap(A)=');
+//in book answer is 3587 A. The answers vary due to round off error
|