From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3681/CH3/EX3.2/Ans3_2.PNG | Bin 0 -> 4767 bytes 3681/CH3/EX3.2/Ex3_2.sce | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 3681/CH3/EX3.2/Ans3_2.PNG create mode 100644 3681/CH3/EX3.2/Ex3_2.sce (limited to '3681/CH3/EX3.2') diff --git a/3681/CH3/EX3.2/Ans3_2.PNG b/3681/CH3/EX3.2/Ans3_2.PNG new file mode 100644 index 000000000..250a98a07 Binary files /dev/null and b/3681/CH3/EX3.2/Ans3_2.PNG differ 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 -- cgit