blob: 0cb889a05e98d374630f5cbe0ef5189b035ab7ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc//
//
//
//Variable declaration
M=1.4; //magnetic field(T)
H=6.5*10^-4; //magnetic field(T)
//Calculation
chi=M/H;
mew_r=1+chi; //relative permeability of iron
//Result
printf("\n relative permeability of iron is %0.3f ",mew_r)
printf("\n answer given in the book is wrong")
|