blob: 8a28a7f1e75ea72f4289c682e259cf1fa30a1d16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Example 10_12 page no:462
clc;
//given
area=100*10^-4;
B=5*10^-3*10^4/100;
mu=4*%pi*10^-7;
phi=5*10^-3;
H=B/mu;
len=2.5*10^-3;
mmf_required=H*len;//in text book H of the gap is rounded so mmf_required varies greatly
area1=150*10^-4;
flux_den=phi/area1;
mr=800;
H=flux_den/(mu*mr);
len=0.5;
mmf_required1=len*H;
tot_mmf=mmf_required+mmf_required1;
disp(tot_mmf,"the mmf required is (in AT)");
//H of the air gap is rounded off greatly in textbook so the answer is inaccurate, here the accurate value is used for the calculation
|