summaryrefslogtreecommitdiff
path: root/3665/CH11/EX11.3/Ex11_3.sce
blob: 2bbe579ce727bf07857f25131d1e3b0947d748ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc//
//
//

//Variable declaration
H=10^6;  //magnetic field(amp/m)
chi=1.5*10^-3;
mew0=4*%pi*10^-7;

//Calculation
M=chi*H;     //magnetisation of material(A/m)
B=mew0*(M+H);     //flux density(T)

//Result
printf("\n magnetisation of material is %0.3f *10^3 A/m",M/10^3)
printf("\n flux density is %0.4f T",B)
printf("\n answer given in the book varies due to rounding off errors")