diff options
Diffstat (limited to '3665/CH11/EX11.3')
-rw-r--r-- | 3665/CH11/EX11.3/Ex11_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3665/CH11/EX11.3/Ex11_3.sce b/3665/CH11/EX11.3/Ex11_3.sce new file mode 100644 index 000000000..2bbe579ce --- /dev/null +++ b/3665/CH11/EX11.3/Ex11_3.sce @@ -0,0 +1,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")
|