summaryrefslogtreecommitdiff
path: root/3755/CH11/EX11.6/Ex11_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH11/EX11.6/Ex11_6.sce')
-rw-r--r--3755/CH11/EX11.6/Ex11_6.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3755/CH11/EX11.6/Ex11_6.sce b/3755/CH11/EX11.6/Ex11_6.sce
new file mode 100644
index 000000000..db642c40f
--- /dev/null
+++ b/3755/CH11/EX11.6/Ex11_6.sce
@@ -0,0 +1,18 @@
+clear
+//
+//
+//
+
+//Variable declaration
+H=10^6; //magnetizing force(amp/m)
+mew0=4*%pi*10^-7;
+chi=1.5*10^-3; //susceptibility
+
+//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.3f T",B)
+printf("\n answer in the book varies due to rounding off errors")