summaryrefslogtreecommitdiff
path: root/2258/CH4/EX4.9/4_9.sce
blob: 240e5c51716cf6f37eca56291be4a0c92ac6433a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc();
clear;
// To calculate the intensity of magnetisation and flux density
chi=-0.5*10^-5;    //susceptibility 
H=9.9*10^4;      //field strength in amp/m
mew_0=4*%pi*10^-7;
I=chi*H;
B=mew_0*H*(1+chi);
printf("intensity of magnetisation is %f Amp/m",I);
printf("flux density in Weber/m^2 is");
disp(B);

//answer for flux density given in the book is wrong