summaryrefslogtreecommitdiff
path: root/3850/CH37/EX37.1/Ex37_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH37/EX37.1/Ex37_1.sce')
-rw-r--r--3850/CH37/EX37.1/Ex37_1.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH37/EX37.1/Ex37_1.sce b/3850/CH37/EX37.1/Ex37_1.sce
new file mode 100644
index 000000000..5aa9dfa6a
--- /dev/null
+++ b/3850/CH37/EX37.1/Ex37_1.sce
@@ -0,0 +1,20 @@
+
+//To Calculate the Intensity of Magnetization of Bar Magnet
+
+//Example 37.1
+
+clear;
+
+clc;
+
+m=6.6*10^-3;//Mass of bar magnet (made of steel) in kg
+
+rho=7.9*10^3;//Density of steel in kg/m^3
+
+M=2.5;//Magnetic Moment of Bar Magnet in A-m^2
+
+V=m/rho;//Volume of bar magnet in m^3
+
+I=M/V;//Intensity of Magnetization in A/m
+
+printf("Intensity of magnetization of bar magnet = %.1f*10^6 A/m",I*10^-6);