summaryrefslogtreecommitdiff
path: root/3665/CH11/EX11.4/Ex11_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH11/EX11.4/Ex11_4.sce')
-rw-r--r--3665/CH11/EX11.4/Ex11_4.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3665/CH11/EX11.4/Ex11_4.sce b/3665/CH11/EX11.4/Ex11_4.sce
new file mode 100644
index 000000000..c6ba74b94
--- /dev/null
+++ b/3665/CH11/EX11.4/Ex11_4.sce
@@ -0,0 +1,16 @@
+clc//
+//
+//
+
+//Variable declaration
+H=10^4; //magnetic field(amp/m)
+chi=3.7*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 A/m",M)
+printf("\n flux density is %0.4f wb/m^2",B)